-
Notifications
You must be signed in to change notification settings - Fork 153
/
spec.go
182 lines (162 loc) · 4.48 KB
/
spec.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package flux
import (
"fmt"
"time"
"github.com/influxdata/flux/codes"
"github.com/influxdata/flux/internal/errors"
)
// Spec specifies a query.
type Spec struct {
Operations []*Operation `json:"operations"`
Edges []Edge `json:"edges"`
Resources ResourceManagement `json:"resources"`
Now time.Time `json:"now"`
sorted []*Operation
children map[OperationID][]*Operation
parents map[OperationID][]*Operation
}
// Edge is a data flow relationship between a parent and a child
type Edge struct {
Parent OperationID `json:"parent"`
Child OperationID `json:"child"`
}
// Walk calls f on each operation exactly once.
// The function f will be called on an operation only after
// all of its parents have already been passed to f.
func (q *Spec) Walk(f func(o *Operation) error) error {
if len(q.sorted) == 0 {
if err := q.prepare(); err != nil {
return err
}
}
for _, o := range q.sorted {
err := f(o)
if err != nil {
return err
}
}
return nil
}
// Validate ensures the query is a valid DAG.
func (q *Spec) Validate() error {
if q.Now.IsZero() {
return errors.New(codes.Invalid, "now time must be set")
}
return q.prepare()
}
// Children returns a list of children for a given operation.
// If the query is invalid no children will be returned.
func (q *Spec) Children(id OperationID) []*Operation {
if q.children == nil {
err := q.prepare()
if err != nil {
return nil
}
}
return q.children[id]
}
// Parents returns a list of parents for a given operation.
// If the query is invalid no parents will be returned.
func (q *Spec) Parents(id OperationID) []*Operation {
if q.parents == nil {
err := q.prepare()
if err != nil {
return nil
}
}
return q.parents[id]
}
// prepare populates the internal datastructure needed to quickly navigate the query DAG.
// As a result the query DAG is validated.
func (q *Spec) prepare() error {
q.sorted = q.sorted[0:0]
parents, children, roots, err := q.determineParentsChildrenAndRoots()
if err != nil {
return err
}
if len(roots) == 0 {
return errors.New(codes.Invalid, "query has no root nodes")
}
q.parents = parents
q.children = children
tMarks := make(map[OperationID]bool)
pMarks := make(map[OperationID]bool)
for _, r := range roots {
if err := q.visit(tMarks, pMarks, r); err != nil {
return err
}
}
//reverse q.sorted
for i, j := 0, len(q.sorted)-1; i < j; i, j = i+1, j-1 {
q.sorted[i], q.sorted[j] = q.sorted[j], q.sorted[i]
}
return nil
}
func (q *Spec) computeLookup() (map[OperationID]*Operation, error) {
lookup := make(map[OperationID]*Operation, len(q.Operations))
for _, o := range q.Operations {
if _, ok := lookup[o.ID]; ok {
return nil, fmt.Errorf("found duplicate operation ID %q", o.ID)
}
lookup[o.ID] = o
}
return lookup, nil
}
func (q *Spec) determineParentsChildrenAndRoots() (parents, children map[OperationID][]*Operation, roots []*Operation, _ error) {
lookup, err := q.computeLookup()
if err != nil {
return nil, nil, nil, err
}
children = make(map[OperationID][]*Operation, len(q.Operations))
parents = make(map[OperationID][]*Operation, len(q.Operations))
for _, e := range q.Edges {
// Build children map
c, ok := lookup[e.Child]
if !ok {
return nil, nil, nil, fmt.Errorf("edge references unknown child operation %q", e.Child)
}
children[e.Parent] = append(children[e.Parent], c)
// Build parents map
p, ok := lookup[e.Parent]
if !ok {
return nil, nil, nil, fmt.Errorf("edge references unknown parent operation %q", e.Parent)
}
parents[e.Child] = append(parents[e.Child], p)
}
// Find roots, i.e operations with no parents.
for _, o := range q.Operations {
if len(parents[o.ID]) == 0 {
roots = append(roots, o)
}
}
return
}
// Depth first search topological sorting of a DAG.
// https://en.wikipedia.org/wiki/Topological_sorting#Algorithms
func (q *Spec) visit(tMarks, pMarks map[OperationID]bool, o *Operation) error {
id := o.ID
if tMarks[id] {
return errors.New(codes.Invalid, "found cycle in query")
}
if !pMarks[id] {
tMarks[id] = true
for _, c := range q.children[id] {
if err := q.visit(tMarks, pMarks, c); err != nil {
return err
}
}
pMarks[id] = true
tMarks[id] = false
q.sorted = append(q.sorted, o)
}
return nil
}
// Functions return the names of all functions used in the plan
func (q *Spec) Functions() ([]string, error) {
funcs := []string{}
err := q.Walk(func(o *Operation) error {
funcs = append(funcs, string(o.Spec.Kind()))
return nil
})
return funcs, err
}