-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd_get_many.go
76 lines (59 loc) · 1.33 KB
/
cmd_get_many.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package flowstate
import (
"fmt"
"time"
)
const GetManyDefaultLimit = 50
type GetManyResult struct {
States []State
More bool
}
func GetManyByLabels(labels map[string]string) *GetManyCommand {
return (&GetManyCommand{}).WithORLabels(labels)
}
type GetManyCommand struct {
command
SinceRev int64
SinceTime time.Time
Labels []map[string]string
LatestOnly bool
Limit int
result *GetManyResult
}
func (cmd *GetManyCommand) Result() (*GetManyResult, error) {
if cmd.result == nil {
return nil, fmt.Errorf("no result set")
}
return cmd.result, nil
}
func (cmd *GetManyCommand) SetResult(result *GetManyResult) {
cmd.result = result
}
func (cmd *GetManyCommand) WithSinceRev(rev int64) *GetManyCommand {
cmd.SinceRev = rev
return cmd
}
func (cmd *GetManyCommand) WithLatestOnly() *GetManyCommand {
cmd.LatestOnly = true
return cmd
}
func (cmd *GetManyCommand) WithSinceLatest() *GetManyCommand {
cmd.SinceRev = -1
return cmd
}
func (cmd *GetManyCommand) WithSinceTime(since time.Time) *GetManyCommand {
cmd.SinceTime = since
return cmd
}
func (cmd *GetManyCommand) WithORLabels(labels map[string]string) *GetManyCommand {
if len(labels) == 0 {
return cmd
}
cmd.Labels = append(cmd.Labels, labels)
return cmd
}
func (cmd *GetManyCommand) Prepare() {
if cmd.Limit == 0 {
cmd.Limit = GetManyDefaultLimit
}
}