-
Notifications
You must be signed in to change notification settings - Fork 292
/
mixed.go
146 lines (115 loc) · 2.9 KB
/
mixed.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
// Copyright 2020 CUE Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package dep
import (
"fmt"
"cuelang.org/go/internal/core/adt"
)
// dynamic visits conjuncts of structs that are defined by the root for all
// of its fields, recursively.
//
// The current algorithm visits all known conjuncts and descends into the
// evaluated Vertex. A more correct and more performant algorithm would be to
// descend into the conjuncts and evaluate the necessary values, like fields
// and comprehension sources.
func dynamic(c *adt.OpContext, n *adt.Vertex, f VisitFunc, m marked, top bool) {
found := false
for _, c := range n.Conjuncts {
if m[c.Expr()] {
found = true
break
}
}
if !found {
return
}
if visit(c, n, f, false, top) != nil {
return
}
for _, a := range n.Arcs {
dynamic(c, a, f, m, false)
}
}
type marked map[adt.Expr]bool
// TODO: factor out the below logic as either a low-level dependency analyzer or
// some walk functionality.
// markExpr visits all nodes in an expression to mark dependencies.
func (m marked) markExpr(x adt.Expr) {
m[x] = true
switch x := x.(type) {
default:
case nil:
case *adt.Vertex:
for _, c := range x.Conjuncts {
m.markExpr(c.Expr())
}
case *adt.BinaryExpr:
if x.Op == adt.AndOp {
m.markExpr(x.X)
m.markExpr(x.Y)
}
case *adt.StructLit:
for _, e := range x.Decls {
switch x := e.(type) {
case *adt.Field:
m.markExpr(x.Value)
case *adt.OptionalField:
m.markExpr(x.Value)
case *adt.BulkOptionalField:
m.markExpr(x.Value)
case *adt.DynamicField:
m.markExpr(x.Value)
case *adt.Ellipsis:
m.markExpr(x.Value)
case adt.Expr:
m.markExpr(x)
case adt.Yielder:
m.markYielder(x)
default:
panic(fmt.Sprintf("unreachable %T", x))
}
}
case *adt.ListLit:
for _, e := range x.Elems {
switch x := e.(type) {
case adt.Expr:
m.markExpr(x)
case adt.Yielder:
m.markYielder(x)
case *adt.Ellipsis:
m.markExpr(x.Value)
default:
panic(fmt.Sprintf("unreachable %T", x))
}
}
case *adt.DisjunctionExpr:
for _, d := range x.Values {
m.markExpr(d.Val)
}
case adt.Yielder:
m.markYielder(x)
}
}
func (m marked) markYielder(y adt.Yielder) {
switch x := y.(type) {
case *adt.ForClause:
m.markYielder(x.Dst)
case *adt.IfClause:
m.markYielder(x.Dst)
case *adt.LetClause:
m.markYielder(x.Dst)
case *adt.ValueClause:
m.markExpr(x.StructLit)
}
}