2019-01-18 01:50:10 +00:00
|
|
|
// 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 compiler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2021-05-15 10:08:31 +00:00
|
|
|
|
|
|
|
yaml "gopkg.in/yaml.v2"
|
2019-01-18 01:50:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var fileCache map[string][]byte
|
|
|
|
var infoCache map[string]interface{}
|
|
|
|
var count int64
|
|
|
|
|
|
|
|
var verboseReader = false
|
2021-05-15 10:08:31 +00:00
|
|
|
var fileCacheEnable = true
|
|
|
|
var infoCacheEnable = true
|
2019-01-18 01:50:10 +00:00
|
|
|
|
|
|
|
func initializeFileCache() {
|
|
|
|
if fileCache == nil {
|
|
|
|
fileCache = make(map[string][]byte, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func initializeInfoCache() {
|
|
|
|
if infoCache == nil {
|
|
|
|
infoCache = make(map[string]interface{}, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
func EnableFileCache() {
|
|
|
|
fileCacheEnable = true
|
|
|
|
}
|
|
|
|
|
|
|
|
func EnableInfoCache() {
|
|
|
|
infoCacheEnable = true
|
|
|
|
}
|
|
|
|
|
|
|
|
func DisableFileCache() {
|
|
|
|
fileCacheEnable = false
|
|
|
|
}
|
|
|
|
|
|
|
|
func DisableInfoCache() {
|
|
|
|
infoCacheEnable = false
|
|
|
|
}
|
|
|
|
|
|
|
|
func RemoveFromFileCache(fileurl string) {
|
|
|
|
if !fileCacheEnable {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
initializeFileCache()
|
|
|
|
delete(fileCache, fileurl)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RemoveFromInfoCache(filename string) {
|
|
|
|
if !infoCacheEnable {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
initializeInfoCache()
|
|
|
|
delete(infoCache, filename)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetInfoCache() map[string]interface{} {
|
|
|
|
if infoCache == nil {
|
|
|
|
initializeInfoCache()
|
|
|
|
}
|
|
|
|
return infoCache
|
|
|
|
}
|
|
|
|
|
|
|
|
func ClearFileCache() {
|
|
|
|
fileCache = make(map[string][]byte, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ClearInfoCache() {
|
|
|
|
infoCache = make(map[string]interface{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func ClearCaches() {
|
|
|
|
ClearFileCache()
|
|
|
|
ClearInfoCache()
|
|
|
|
}
|
|
|
|
|
2019-01-18 01:50:10 +00:00
|
|
|
// FetchFile gets a specified file from the local filesystem or a remote location.
|
|
|
|
func FetchFile(fileurl string) ([]byte, error) {
|
2021-05-15 10:08:31 +00:00
|
|
|
var bytes []byte
|
2019-01-18 01:50:10 +00:00
|
|
|
initializeFileCache()
|
2021-05-15 10:08:31 +00:00
|
|
|
if fileCacheEnable {
|
|
|
|
bytes, ok := fileCache[fileurl]
|
|
|
|
if ok {
|
|
|
|
if verboseReader {
|
|
|
|
log.Printf("Cache hit %s", fileurl)
|
|
|
|
}
|
|
|
|
return bytes, nil
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
if verboseReader {
|
2021-05-15 10:08:31 +00:00
|
|
|
log.Printf("Fetching %s", fileurl)
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
response, err := http.Get(fileurl)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-05-15 10:08:31 +00:00
|
|
|
defer response.Body.Close()
|
2019-01-18 01:50:10 +00:00
|
|
|
if response.StatusCode != 200 {
|
|
|
|
return nil, errors.New(fmt.Sprintf("Error downloading %s: %s", fileurl, response.Status))
|
|
|
|
}
|
|
|
|
bytes, err = ioutil.ReadAll(response.Body)
|
2021-05-15 10:08:31 +00:00
|
|
|
if fileCacheEnable && err == nil {
|
2019-01-18 01:50:10 +00:00
|
|
|
fileCache[fileurl] = bytes
|
|
|
|
}
|
|
|
|
return bytes, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadBytesForFile reads the bytes of a file.
|
|
|
|
func ReadBytesForFile(filename string) ([]byte, error) {
|
|
|
|
// is the filename a url?
|
|
|
|
fileurl, _ := url.Parse(filename)
|
|
|
|
if fileurl.Scheme != "" {
|
|
|
|
// yes, fetch it
|
|
|
|
bytes, err := FetchFile(filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return bytes, nil
|
|
|
|
}
|
|
|
|
// no, it's a local filename
|
|
|
|
bytes, err := ioutil.ReadFile(filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return bytes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadInfoFromBytes unmarshals a file as a yaml.MapSlice.
|
|
|
|
func ReadInfoFromBytes(filename string, bytes []byte) (interface{}, error) {
|
|
|
|
initializeInfoCache()
|
2021-05-15 10:08:31 +00:00
|
|
|
if infoCacheEnable {
|
|
|
|
cachedInfo, ok := infoCache[filename]
|
|
|
|
if ok {
|
|
|
|
if verboseReader {
|
|
|
|
log.Printf("Cache hit info for file %s", filename)
|
|
|
|
}
|
|
|
|
return cachedInfo, nil
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
if verboseReader {
|
2021-05-15 10:08:31 +00:00
|
|
|
log.Printf("Reading info for file %s", filename)
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
var info yaml.MapSlice
|
|
|
|
err := yaml.Unmarshal(bytes, &info)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-05-15 10:08:31 +00:00
|
|
|
if infoCacheEnable && len(filename) > 0 {
|
2019-01-18 01:50:10 +00:00
|
|
|
infoCache[filename] = info
|
|
|
|
}
|
|
|
|
return info, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadInfoForRef reads a file and return the fragment needed to resolve a $ref.
|
|
|
|
func ReadInfoForRef(basefile string, ref string) (interface{}, error) {
|
|
|
|
initializeInfoCache()
|
2021-05-15 10:08:31 +00:00
|
|
|
if infoCacheEnable {
|
2019-01-18 01:50:10 +00:00
|
|
|
info, ok := infoCache[ref]
|
|
|
|
if ok {
|
|
|
|
if verboseReader {
|
|
|
|
log.Printf("Cache hit for ref %s#%s", basefile, ref)
|
|
|
|
}
|
|
|
|
return info, nil
|
|
|
|
}
|
2021-05-15 10:08:31 +00:00
|
|
|
if verboseReader {
|
|
|
|
log.Printf("Reading info for ref %s#%s", basefile, ref)
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
count = count + 1
|
|
|
|
basedir, _ := filepath.Split(basefile)
|
|
|
|
parts := strings.Split(ref, "#")
|
|
|
|
var filename string
|
|
|
|
if parts[0] != "" {
|
2021-05-15 10:08:31 +00:00
|
|
|
filename = parts[0]
|
|
|
|
if _, err := url.ParseRequestURI(parts[0]); err != nil {
|
|
|
|
// It is not an URL, so the file is local
|
|
|
|
filename = basedir + parts[0]
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
} else {
|
|
|
|
filename = basefile
|
|
|
|
}
|
|
|
|
bytes, err := ReadBytesForFile(filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
info, err := ReadInfoFromBytes(filename, bytes)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("File error: %v\n", err)
|
|
|
|
} else {
|
|
|
|
if len(parts) > 1 {
|
|
|
|
path := strings.Split(parts[1], "/")
|
|
|
|
for i, key := range path {
|
|
|
|
if i > 0 {
|
|
|
|
m, ok := info.(yaml.MapSlice)
|
|
|
|
if ok {
|
|
|
|
found := false
|
|
|
|
for _, section := range m {
|
|
|
|
if section.Key == key {
|
|
|
|
info = section.Value
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
infoCache[ref] = nil
|
|
|
|
return nil, NewError(nil, fmt.Sprintf("could not resolve %s", ref))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-15 10:08:31 +00:00
|
|
|
if infoCacheEnable {
|
|
|
|
infoCache[ref] = info
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
return info, nil
|
|
|
|
}
|