-
Notifications
You must be signed in to change notification settings - Fork 234
/
thunks.go
300 lines (253 loc) · 7.83 KB
/
thunks.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*
Copyright 2017 Google Inc. All rights reserved.
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 jsonnet
import (
"fmt"
"github.com/google/go-jsonnet/ast"
)
// readyValue
// -------------------------------------
// readyValue is a wrapper which allows to use a concrete value where normally
// some evaluation would be expected (e.g. object fields). It's not part
// of the value interface for increased type safety (it would be very easy
// to "overevaluate" otherwise) and conveniently it also saves us from implementing
// these methods for all value types.
type readyValue struct {
content value
}
func (rv *readyValue) evaluate(i *interpreter, sb selfBinding, origBinding bindingFrame, fieldName string) (value, error) {
return rv.content, nil
}
func (rv *readyValue) loc() *ast.LocationRange {
return &ast.LocationRange{}
}
// potentialValues
// -------------------------------------
// cachedThunk is a wrapper that caches the value of a potentialValue after
// the first evaluation.
// Note: All potentialValues are required to provide the same value every time,
// so it's only there for efficiency.
type cachedThunk struct {
// The environment is a pointer because it may be a cyclic structure. A thunk
// may refer to itself, so inside `env` there will be a variable bound back to us.
env *environment
body ast.Node
// If nil, use err.
content value
// If also nil, content is not cached yet.
err error
}
func readyThunk(content value) *cachedThunk {
return &cachedThunk{content: content}
}
func (t *cachedThunk) getValue(i *interpreter) (value, error) {
if t.content != nil {
return t.content, nil
}
if t.err != nil {
return nil, t.err
}
v, err := i.EvalInCleanEnv(t.env, t.body, false)
if err != nil {
// TODO(sbarzowski) perhaps cache errors as well
// may be necessary if we allow handling them in any way
return nil, err
}
t.content = v
// No need to keep the environment around anymore.
// So, this might reduce memory pressure:
t.env = nil
return v, nil
}
func (t *cachedThunk) aPotentialValue() {}
// unboundFields
// -------------------------------------
type codeUnboundField struct {
body ast.Node
}
func (f *codeUnboundField) evaluate(i *interpreter, sb selfBinding, origBindings bindingFrame, fieldName string) (value, error) {
env := makeEnvironment(origBindings, sb)
val, err := i.EvalInCleanEnv(&env, f.body, false)
return val, err
}
func (f *codeUnboundField) loc() *ast.LocationRange {
return f.body.Loc()
}
// Provide additional bindings for a field. It shadows bindings from the object.
type bindingsUnboundField struct {
inner unboundField
// in addition to "generic" binding frame from the object
bindings bindingFrame
}
func (f *bindingsUnboundField) evaluate(i *interpreter, sb selfBinding, origBindings bindingFrame, fieldName string) (value, error) {
upValues := make(bindingFrame, len(origBindings)+len(f.bindings))
for variable, pvalue := range origBindings {
upValues[variable] = pvalue
}
for variable, pvalue := range f.bindings {
upValues[variable] = pvalue
}
return f.inner.evaluate(i, sb, upValues, fieldName)
}
func (f *bindingsUnboundField) loc() *ast.LocationRange {
return f.inner.loc()
}
// plusSuperUnboundField represents a `field+: ...` that hasn't been bound to an object.
type plusSuperUnboundField struct {
inner unboundField
}
func (f *plusSuperUnboundField) evaluate(i *interpreter, sb selfBinding, origBinding bindingFrame, fieldName string) (value, error) {
err := i.newCall(environment{}, false)
if err != nil {
return nil, err
}
stackSize := len(i.stack.stack)
defer i.stack.popIfExists(stackSize)
context := "+:"
i.stack.setCurrentTrace(traceElement{
loc: f.loc(),
context: &context,
})
defer i.stack.clearCurrentTrace()
right, err := f.inner.evaluate(i, sb, origBinding, fieldName)
if err != nil {
return nil, err
}
if !objectHasField(sb.super(), fieldName) {
return right, nil
}
left, err := objectIndex(i, sb.super(), fieldName)
if err != nil {
return nil, err
}
value, err := builtinPlus(i, left, right)
if err != nil {
return nil, err
}
return value, nil
}
func (f *plusSuperUnboundField) loc() *ast.LocationRange {
return f.inner.loc()
}
// evalCallables
// -------------------------------------
type closure struct {
// base environment of a closure
// arguments should be added to it, before executing it
env environment
function *ast.Function
params []namedParameter
}
func forceThunks(i *interpreter, args *bindingFrame) error {
for _, arg := range *args {
_, err := arg.getValue(i)
if err != nil {
return err
}
}
return nil
}
func (closure *closure) evalCall(arguments callArguments, i *interpreter) (value, error) {
argThunks := make(bindingFrame, len(arguments.named)+len(arguments.positional))
parameters := closure.parameters()
for i, arg := range arguments.positional {
argThunks[parameters[i].name] = arg
}
for _, arg := range arguments.named {
argThunks[arg.name] = arg.pv
}
var calledEnvironment environment
for _, param := range parameters {
if _, exists := argThunks[param.name]; !exists {
argThunks[param.name] = &cachedThunk{
// Default arguments are evaluated in the same environment as function body
env: &calledEnvironment,
body: param.defaultArg,
}
}
}
if arguments.tailstrict {
err := forceThunks(i, &argThunks)
if err != nil {
return nil, err
}
}
calledEnvironment = makeEnvironment(
addBindings(closure.env.upValues, argThunks),
closure.env.selfBinding,
)
return i.EvalInCleanEnv(&calledEnvironment, closure.function.Body, arguments.tailstrict)
}
func (closure *closure) parameters() []namedParameter {
return closure.params
}
func prepareClosureParameters(params []ast.Parameter, env environment) []namedParameter {
preparedParams := make([]namedParameter, 0, len(params))
for _, named := range params {
preparedParams = append(preparedParams, namedParameter{
name: named.Name,
defaultArg: named.DefaultArg,
})
}
return preparedParams
}
func makeClosure(env environment, function *ast.Function) *closure {
return &closure{
env: env,
function: function,
params: prepareClosureParameters(function.Parameters, env),
}
}
// NativeFunction represents a function implemented in Go.
type NativeFunction struct {
Name string
Func func([]interface{}) (interface{}, error)
Params ast.Identifiers
}
// evalCall evaluates a call to a NativeFunction and returns the result.
func (native *NativeFunction) evalCall(arguments callArguments, i *interpreter) (value, error) {
flatArgs := flattenArgs(arguments, native.parameters(), []value{})
nativeArgs := make([]interface{}, 0, len(flatArgs))
for _, arg := range flatArgs {
v, err := i.evaluatePV(arg)
if err != nil {
return nil, err
}
json, err := i.manifestJSON(v)
if err != nil {
return nil, err
}
nativeArgs = append(nativeArgs, json)
}
call := func() (resultJSON interface{}, err error) {
defer func() {
if r := recover(); r != nil {
err = fmt.Errorf("native function %#v panicked: %v", native.Name, r)
}
}()
return native.Func(nativeArgs)
}
resultJSON, err := call()
if err != nil {
return nil, i.Error(err.Error())
}
return jsonToValue(i, resultJSON)
}
// Parameters returns a NativeFunction's parameters.
func (native *NativeFunction) parameters() []namedParameter {
ret := make([]namedParameter, len(native.Params))
for i := range ret {
ret[i].name = native.Params[i]
}
return ret
}