-
Notifications
You must be signed in to change notification settings - Fork 234
/
imports.go
301 lines (270 loc) · 9.51 KB
/
imports.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
/*
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"
"os"
"path/filepath"
"unsafe"
"github.com/google/go-jsonnet/ast"
"github.com/google/go-jsonnet/internal/program"
)
// An Importer imports data from a path.
// TODO(sbarzowski) caching of errors (may require breaking changes)
type Importer interface {
// Import fetches data from a given path. It may be relative
// to the file where we do the import. What "relative path"
// means depends on the importer.
//
// It is required that:
// a) for given (importedFrom, importedPath) the same
// (contents, foundAt) are returned on subsequent calls.
// b) for given foundAt, the contents are always the same
//
// It is recommended that if there are multiple locations that
// need to be probed (e.g. relative + multiple library paths)
// then all results of all attempts will be cached separately,
// both nonexistence and contents of existing ones.
// FileImporter may serve as an example.
//
// IMPORTANT: The passed importedFrom might be "" (an empty string).
// It means that the import is coming from an ad-hoc snippet, e.g.
// code passed on the command line, read from stdin or passed as
// a snippet to execute. Importer may have a "default" path to use
// in such case or it may only allow absolute imports from such
// "anonymous locations".
//
// Importing the same file multiple times must be a cheap operation
// and shouldn't involve copying the whole file - the same buffer
// should be returned.
Import(importedFrom, importedPath string) (contents Contents, foundAt string, err error)
}
// Contents is a representation of imported data. It is a simple
// byte wrapper, which makes it easier to enforce the caching policy.
type Contents struct {
data *[]byte
}
func (c Contents) String() string {
// Construct string without copying underlying bytes.
// NB: This only works because c.data is not modified.
return *(*string)(unsafe.Pointer(c.data))
}
// Data returns content bytes
func (c Contents) Data() []byte {
return *c.data
}
// MakeContents creates Contents from a string.
func MakeContents(s string) Contents {
data := []byte(s)
return Contents{
data: &data,
}
}
// MakeContentsRaw creates Contents from (possibly non-utf8) []byte data.
func MakeContentsRaw(bytes []byte) Contents {
return Contents{
data: &bytes,
}
}
// importCache represents a cache of imported data.
//
// While the user-defined Importer implementations
// are required to cache file content, this cache
// is an additional layer of optimization that caches values
// (i.e. the result of executing the file content).
// It also verifies that the content pointer is the same for two foundAt values.
type importCache struct {
foundAtVerification map[string]Contents
astCache map[string]ast.Node
codeCache map[string]potentialValue
importer Importer
}
// makeImportCache creates an importCache using an Importer.
func makeImportCache(importer Importer) *importCache {
return &importCache{
importer: importer,
foundAtVerification: make(map[string]Contents),
astCache: make(map[string]ast.Node),
codeCache: make(map[string]potentialValue),
}
}
func (cache *importCache) flushValueCache() {
cache.codeCache = make(map[string]potentialValue)
}
func (cache *importCache) importData(importedFrom, importedPath string) (contents Contents, foundAt string, err error) {
contents, foundAt, err = cache.importer.Import(importedFrom, importedPath)
if err != nil {
return Contents{}, "", err
}
if cached, importedBefore := cache.foundAtVerification[foundAt]; importedBefore {
if cached != contents {
panic(fmt.Sprintf("importer problem: a different instance of Contents returned when importing %#v again", foundAt))
}
} else {
cache.foundAtVerification[foundAt] = contents
}
return
}
func (cache *importCache) importAST(importedFrom, importedPath string) (ast.Node, string, error) {
contents, foundAt, err := cache.importData(importedFrom, importedPath)
if err != nil {
return nil, "", err
}
if cachedNode, isCached := cache.astCache[foundAt]; isCached {
return cachedNode, foundAt, nil
}
node, err := program.SnippetToAST(ast.DiagnosticFileName(foundAt), foundAt, contents.String())
cache.astCache[foundAt] = node
return node, foundAt, err
}
// ImportString imports a string, caches it and then returns it.
func (cache *importCache) importString(importedFrom, importedPath string, i *interpreter) (valueString, error) {
data, _, err := cache.importData(importedFrom, importedPath)
if err != nil {
return nil, i.Error(err.Error())
}
return makeValueString(data.String()), nil
}
// ImportString imports an array of bytes, caches it and then returns it.
func (cache *importCache) importBinary(importedFrom, importedPath string, i *interpreter) (*valueArray, error) {
data, _, err := cache.importData(importedFrom, importedPath)
if err != nil {
return nil, i.Error(err.Error())
}
bytes := data.Data()
elements := make([]*cachedThunk, len(bytes))
for i := range bytes {
elements[i] = readyThunk(intToValue(int(bytes[i])))
}
return makeValueArray(elements), nil
}
func nodeToPV(i *interpreter, filename string, node ast.Node) *cachedThunk {
env := makeInitialEnv(filename, i.baseStd)
return &cachedThunk{
env: &env,
body: node,
content: nil,
}
}
func codeToPV(i *interpreter, filename string, code string) *cachedThunk {
node, err := program.SnippetToAST(ast.DiagnosticFileName(filename), "", code)
if err != nil {
// TODO(sbarzowski) we should wrap (static) error here
// within a RuntimeError. Because whether we get this error or not
// actually depends on what happens in Runtime (whether import gets
// evaluated).
// The same thinking applies to external variables.
return &cachedThunk{err: err}
}
return nodeToPV(i, filename, node)
}
// ImportCode imports code from a path.
func (cache *importCache) importCode(importedFrom, importedPath string, i *interpreter) (value, error) {
node, foundAt, err := cache.importAST(importedFrom, importedPath)
if err != nil {
return nil, i.Error(err.Error())
}
var pv potentialValue
if cachedPV, isCached := cache.codeCache[foundAt]; !isCached {
// File hasn't been parsed and analyzed before, update the cache record.
env := makeInitialEnv(foundAt, i.baseStd)
pv = &cachedThunk{
env: &env,
body: node,
content: nil,
}
cache.codeCache[foundAt] = pv
} else {
pv = cachedPV
}
return i.evaluatePV(pv)
}
// Concrete importers
// -------------------------------------
// FileImporter imports data from the filesystem.
type FileImporter struct {
fsCache map[string]*fsCacheEntry
JPaths []string
}
type fsCacheEntry struct {
contents Contents
exists bool
}
func (importer *FileImporter) tryPath(dir, importedPath string) (found bool, contents Contents, foundHere string, err error) {
if importer.fsCache == nil {
importer.fsCache = make(map[string]*fsCacheEntry)
}
var absPath string
if filepath.IsAbs(importedPath) {
absPath = importedPath
} else {
absPath = filepath.Join(dir, importedPath)
}
var entry *fsCacheEntry
if cacheEntry, isCached := importer.fsCache[absPath]; isCached {
entry = cacheEntry
} else {
contentBytes, err := os.ReadFile(absPath)
if err != nil {
if os.IsNotExist(err) {
entry = &fsCacheEntry{
exists: false,
}
} else {
return false, Contents{}, "", err
}
} else {
entry = &fsCacheEntry{
exists: true,
contents: MakeContentsRaw(contentBytes),
}
}
importer.fsCache[absPath] = entry
}
return entry.exists, entry.contents, absPath, nil
}
// Import imports file from the filesystem.
func (importer *FileImporter) Import(importedFrom, importedPath string) (contents Contents, foundAt string, err error) {
// TODO(sbarzowski) Make sure that dir is absolute and resolving of ""
// is independent from current CWD. The default path should be saved
// in the importer.
// We need to relativize the paths in the error formatter, so that the stack traces
// don't have ugly absolute paths (less readable and messy with golden tests).
dir, _ := filepath.Split(importedFrom)
found, content, foundHere, err := importer.tryPath(dir, importedPath)
if err != nil {
return Contents{}, "", err
}
for i := len(importer.JPaths) - 1; !found && i >= 0; i-- {
found, content, foundHere, err = importer.tryPath(importer.JPaths[i], importedPath)
if err != nil {
return Contents{}, "", err
}
}
if !found {
return Contents{}, "", fmt.Errorf("couldn't open import %#v: no match locally or in the Jsonnet library paths", importedPath)
}
return content, foundHere, nil
}
// MemoryImporter "imports" data from an in-memory map.
type MemoryImporter struct {
Data map[string]Contents
}
// Import fetches data from a map entry.
// All paths are treated as absolute keys.
func (importer *MemoryImporter) Import(importedFrom, importedPath string) (contents Contents, foundAt string, err error) {
if content, ok := importer.Data[importedPath]; ok {
return content, importedPath, nil
}
return Contents{}, "", fmt.Errorf("import not available %v", importedPath)
}