| // Copyright 2018 The 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 load |
| |
| import ( |
| "io/ioutil" |
| "path/filepath" |
| "strings" |
| |
| "cuelang.org/go/cue/build" |
| "cuelang.org/go/cue/errors" |
| "cuelang.org/go/cue/token" |
| ) |
| |
| var errExclude = errors.New("file rejected") |
| |
| type cueError = errors.Error |
| type excludeError struct { |
| cueError |
| } |
| |
| func (e excludeError) Is(err error) bool { return err == errExclude } |
| |
| // matchFile determines whether the file with the given name in the given directory |
| // should be included in the package being constructed. |
| // It returns the data read from the file. |
| // If returnImports is true and name denotes a CUE file, matchFile reads |
| // until the end of the imports (and returns that data) even though it only |
| // considers text until the first non-comment. |
| // If allTags is non-nil, matchFile records any encountered build tag |
| // by setting allTags[tag] = true. |
| func matchFile(cfg *Config, file *build.File, returnImports, allFiles bool, allTags map[string]bool) (match bool, data []byte, err errors.Error) { |
| if fi := cfg.fileSystem.getOverlay(file.Filename); fi != nil { |
| if fi.file != nil { |
| file.Source = fi.file |
| } else { |
| file.Source = fi.contents |
| } |
| } |
| |
| if file.Encoding != build.CUE { |
| return false, nil, nil // not a CUE file, don't record. |
| } |
| |
| if file.Filename == "-" { |
| b, err2 := ioutil.ReadAll(cfg.stdin()) |
| if err2 != nil { |
| err = errors.Newf(token.NoPos, "read stdin: %v", err) |
| return |
| } |
| file.Source = b |
| return true, b, nil // don't check shouldBuild for stdin |
| } |
| |
| name := filepath.Base(file.Filename) |
| if !cfg.filesMode && strings.HasPrefix(name, ".") { |
| return false, nil, &excludeError{ |
| errors.Newf(token.NoPos, "filename starts with a '.'"), |
| } |
| } |
| |
| if strings.HasPrefix(name, "_") { |
| return false, nil, &excludeError{ |
| errors.Newf(token.NoPos, "filename starts with a '_"), |
| } |
| } |
| |
| f, err := cfg.fileSystem.openFile(file.Filename) |
| if err != nil { |
| return false, nil, err |
| } |
| |
| data, err = readImports(f, false, nil) |
| f.Close() |
| if err != nil { |
| return false, nil, |
| errors.Newf(token.NoPos, "read %s: %v", file.Filename, err) |
| } |
| |
| return true, data, nil |
| } |