mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
We used to treat dummy paths like <stdin>, <std>, <extvar> as real import locations, which causes obvious problem for importers. After this change we consistently pass "" (an empty string) as location for non-imported paths. We exposed new functions to properly handle all paths. The first function family, EvaluateFile* which allow evaluating a Jsonnet program at a specified importable path. It should be used in most cases. The second function family, EvaluateAnonymousSnippet* allows evaluating a snippet without an importable path. It should be used for situations like the code passed as a commandline argument, stdin, etc. The old function family, EvaluateSnippet* is now deprecated, but works the same as before, i.e. the passed filenames are treated as imported paths. Changes are required to custom importers to make sure they satisfy the refined contract. Fixes #329.
269 lines
8.6 KiB
Go
269 lines
8.6 KiB
Go
/*
|
|
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"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
|
|
"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
|
|
// string wrapper, which makes it easier to enforce the caching policy.
|
|
type Contents struct {
|
|
data *string
|
|
}
|
|
|
|
func (c Contents) String() string {
|
|
return *c.data
|
|
}
|
|
|
|
// MakeContents creates Contents from a string.
|
|
func MakeContents(s string) Contents {
|
|
return Contents{
|
|
data: &s,
|
|
}
|
|
}
|
|
|
|
// 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, trace traceElement) (valueString, error) {
|
|
data, _, err := cache.importData(importedFrom, importedPath)
|
|
if err != nil {
|
|
return nil, i.Error(err.Error(), trace)
|
|
}
|
|
return makeValueString(data.String()), 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}
|
|
}
|
|
env := makeInitialEnv(filename, i.baseStd)
|
|
return &cachedThunk{
|
|
env: &env,
|
|
body: node,
|
|
content: nil,
|
|
}
|
|
}
|
|
|
|
// ImportCode imports code from a path.
|
|
func (cache *importCache) importCode(importedFrom, importedPath string, i *interpreter, trace traceElement) (value, error) {
|
|
node, foundAt, err := cache.importAST(importedFrom, importedPath)
|
|
if err != nil {
|
|
return nil, i.Error(err.Error(), trace)
|
|
}
|
|
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, trace)
|
|
}
|
|
|
|
// Concrete importers
|
|
// -------------------------------------
|
|
|
|
// FileImporter imports data from the filesystem.
|
|
type FileImporter struct {
|
|
JPaths []string
|
|
fsCache map[string]*fsCacheEntry
|
|
}
|
|
|
|
type fsCacheEntry struct {
|
|
exists bool
|
|
contents Contents
|
|
}
|
|
|
|
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 path.IsAbs(importedPath) {
|
|
absPath = importedPath
|
|
} else {
|
|
absPath = path.Join(dir, importedPath)
|
|
}
|
|
var entry *fsCacheEntry
|
|
if cacheEntry, isCached := importer.fsCache[absPath]; isCached {
|
|
entry = cacheEntry
|
|
} else {
|
|
contentBytes, err := ioutil.ReadFile(absPath)
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
entry = &fsCacheEntry{
|
|
exists: false,
|
|
}
|
|
} else {
|
|
return false, Contents{}, "", err
|
|
}
|
|
} else {
|
|
entry = &fsCacheEntry{
|
|
exists: true,
|
|
contents: MakeContents(string(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, _ := path.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)
|
|
}
|