forked from google/go-jsonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thunks.go
334 lines (278 loc) · 9.47 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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/*
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 "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) getValue(i *interpreter, t *TraceElement) (value, error) {
return rv.content, nil
}
func (rv *readyValue) bindToObject(sb selfBinding, origBinding bindingFrame, fieldName string) potentialValue {
return rv
}
func (rv *readyValue) aPotentialValue() {}
// potentialValues
// -------------------------------------
// evaluable is something that can be evaluated and the result is always the same
// It may require computation every time evaluation is requested (in contrast with
// potentialValue which guarantees that computation happens at most once).
type evaluable interface {
// fromWhere keeps the information from where the evaluation was requested.
getValue(i *interpreter, fromWhere *TraceElement) (value, error)
}
// thunk holds code and environment in which the code is supposed to be evaluated
type thunk struct {
env environment
body ast.Node
}
// TODO(sbarzowski) feedback from dcunnin:
// makeThunk returning a cachedThunk is weird.
// Maybe call thunk 'exprThunk' (or astThunk but then it looks like an AST node).
// Then call cachedThunk just thunk?
// Or, call this makeCachedExprThunk because that's what it really is.
func makeThunk(env environment, body ast.Node) *cachedThunk {
return makeCachedThunk(&thunk{
env: env,
body: body,
})
}
func (t *thunk) getValue(i *interpreter, trace *TraceElement) (value, error) {
return i.EvalInCleanEnv(trace, &t.env, t.body, false)
}
// callThunk represents a concrete, but not yet evaluated call to a function
type callThunk struct {
function evalCallable
args callArguments
}
func makeCallThunk(ec evalCallable, args callArguments) potentialValue {
return makeCachedThunk(&callThunk{function: ec, args: args})
}
func call(ec evalCallable, arguments ...potentialValue) potentialValue {
return makeCallThunk(ec, args(arguments...))
}
func (th *callThunk) getValue(i *interpreter, trace *TraceElement) (value, error) {
evaluator := makeEvaluator(i, trace)
err := checkArguments(evaluator, th.args, th.function.Parameters())
if err != nil {
return nil, err
}
return th.function.EvalCall(th.args, evaluator)
}
// deferredThunk allows deferring creation of evaluable until it's actually needed.
// It's useful for self-recursive structures.
type deferredThunk func() evaluable
func (th deferredThunk) getValue(i *interpreter, trace *TraceElement) (value, error) {
return th().getValue(i, trace)
}
func makeDeferredThunk(th deferredThunk) potentialValue {
return makeCachedThunk(th)
}
// 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.
// TODO(sbarzowski) investigate efficiency of various representations
type cachedThunk struct {
pv evaluable
}
func makeCachedThunk(pv evaluable) *cachedThunk {
return &cachedThunk{pv}
}
func (t *cachedThunk) getValue(i *interpreter, trace *TraceElement) (value, error) {
v, err := t.pv.getValue(i, trace)
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.pv = &readyValue{v}
return v, nil
}
func (t *cachedThunk) aPotentialValue() {}
// errorThunk can be used when potentialValue is expected, but we already
// know that something went wrong
type errorThunk struct {
err error
}
func (th *errorThunk) getValue(i *interpreter, trace *TraceElement) (value, error) {
return nil, th.err
}
func makeErrorThunk(err error) *errorThunk {
return &errorThunk{err}
}
func (th *errorThunk) aPotentialValue() {}
// unboundFields
// -------------------------------------
type codeUnboundField struct {
body ast.Node
}
func (f *codeUnboundField) bindToObject(sb selfBinding, origBindings bindingFrame, fieldName string) potentialValue {
// TODO(sbarzowski) better object names (perhaps include a field name too?)
return makeThunk(makeEnvironment(origBindings, sb), f.body)
}
// 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) bindToObject(sb selfBinding, origBindings bindingFrame, fieldName string) potentialValue {
var upValues bindingFrame
upValues = make(bindingFrame)
for variable, pvalue := range origBindings {
upValues[variable] = pvalue
}
for variable, pvalue := range f.bindings {
upValues[variable] = pvalue
}
return f.inner.bindToObject(sb, upValues, fieldName)
}
// PlusSuperUnboundField represents a `field+: ...` that hasn't been bound to an object.
type PlusSuperUnboundField struct {
inner unboundField
}
func (f *PlusSuperUnboundField) bindToObject(sb selfBinding, origBinding bindingFrame, fieldName string) potentialValue {
left := tryObjectIndex(sb.super(), fieldName, withHidden)
right := f.inner.bindToObject(sb, origBinding, fieldName)
if left != nil {
return call(bopBuiltins[ast.BopPlus], left, right)
}
return right
}
// evalCallables
// -------------------------------------
type closure struct {
// base environment of a closure
// arguments should be added to it, before executing it
env environment
function *ast.Function
params Parameters
}
func forceThunks(e *evaluator, args bindingFrame) error {
for _, arg := range args {
_, err := e.evaluate(arg)
if err != nil {
return err
}
}
return nil
}
func (closure *closure) EvalCall(arguments callArguments, e *evaluator) (value, error) {
argThunks := make(bindingFrame)
parameters := closure.Parameters()
for i, arg := range arguments.positional {
var name ast.Identifier
if i < len(parameters.required) {
name = parameters.required[i]
} else {
name = parameters.optional[i-len(parameters.required)].name
}
argThunks[name] = arg
}
for _, arg := range arguments.named {
argThunks[arg.name] = arg.pv
}
var calledEnvironment environment
for i := range parameters.optional {
param := ¶meters.optional[i]
if _, exists := argThunks[param.name]; !exists {
argThunks[param.name] = makeDeferredThunk(func() evaluable {
// Default arguments are evaluated in the same environment as function body
return param.defaultArg.inEnv(&calledEnvironment)
})
}
}
if arguments.tailstrict {
err := forceThunks(e, argThunks)
if err != nil {
return nil, err
}
}
calledEnvironment = makeEnvironment(
addBindings(closure.env.upValues, argThunks),
closure.env.sb,
)
return e.evalInCleanEnv(&calledEnvironment, closure.function.Body, arguments.tailstrict)
}
func (closure *closure) Parameters() Parameters {
return closure.params
}
func prepareClosureParameters(parameters ast.Parameters, env environment) Parameters {
optionalParameters := make([]namedParameter, 0, len(parameters.Optional))
for _, named := range parameters.Optional {
optionalParameters = append(optionalParameters, namedParameter{
name: named.Name,
defaultArg: &defaultArgument{
body: named.DefaultArg,
},
})
}
return Parameters{
required: parameters.Required,
optional: optionalParameters,
}
}
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 {
Func func([]interface{}) (interface{}, error)
Params ast.Identifiers
Name string
}
// EvalCall evaluates a call to a NativeFunction and returns the result.
func (native *NativeFunction) EvalCall(arguments callArguments, e *evaluator) (value, error) {
flatArgs := flattenArgs(arguments, native.Parameters())
nativeArgs := make([]interface{}, 0, len(flatArgs))
for _, arg := range flatArgs {
v, err := e.evaluate(arg)
if err != nil {
return nil, err
}
json, err := e.i.manifestJSON(e.trace, v)
if err != nil {
return nil, err
}
nativeArgs = append(nativeArgs, json)
}
resultJSON, err := native.Func(nativeArgs)
if err != nil {
return nil, e.Error(err.Error())
}
return jsonToValue(e, resultJSON)
}
// Parameters returns a NativeFunction's parameters.
func (native *NativeFunction) Parameters() Parameters {
return Parameters{required: native.Params}
}
// partialPotentialValue
// -------------------------------------
type defaultArgument struct {
body ast.Node
}
func (da *defaultArgument) inEnv(env *environment) potentialValue {
return makeThunk(*env, da.body)
}