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
|
/*
Copyright 2011 The go4 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 jsonconfig
import (
"encoding/json"
"errors"
"fmt"
"io"
"log"
"os"
"path/filepath"
"regexp"
"runtime"
"strconv"
"strings"
"go4.org/errorutil"
"go4.org/wkfs"
)
type stringVector struct {
v []string
}
func (v *stringVector) Push(s string) {
v.v = append(v.v, s)
}
func (v *stringVector) Pop() {
v.v = v.v[:len(v.v)-1]
}
func (v *stringVector) Last() string {
return v.v[len(v.v)-1]
}
// A File is the type returned by ConfigParser.Open.
type File interface {
io.ReadSeeker
io.Closer
Name() string
}
// ConfigParser specifies the environment for parsing a config file
// and evaluating expressions.
type ConfigParser struct {
rootJSON Obj
touchedFiles map[string]bool
includeStack stringVector
// Open optionally specifies an opener function.
Open func(filename string) (File, error)
// IncludeDirs optionally specifies where to find the other config files which are child
// objects of this config, if any. Even if nil, the working directory is always searched
// first.
IncludeDirs []string
}
func (c *ConfigParser) open(filename string) (File, error) {
if c.Open == nil {
return wkfs.Open(filename)
}
return c.Open(filename)
}
// Validates variable names for config _env expresssions
var envPattern = regexp.MustCompile(`\$\{[A-Za-z0-9_]+\}`)
// ReadFile parses the provided path and returns the config file.
// If path is empty, the c.Open function must be defined.
func (c *ConfigParser) ReadFile(path string) (Obj, error) {
if path == "" && c.Open == nil {
return nil, errors.New("ReadFile of empty string but Open hook not defined")
}
c.touchedFiles = make(map[string]bool)
var err error
c.rootJSON, err = c.recursiveReadJSON(path)
return c.rootJSON, err
}
// Decodes and evaluates a json config file, watching for include cycles.
func (c *ConfigParser) recursiveReadJSON(configPath string) (decodedObject map[string]interface{}, err error) {
if configPath != "" {
absConfigPath, err := filepath.Abs(configPath)
if err != nil {
return nil, fmt.Errorf("Failed to expand absolute path for %s", configPath)
}
if c.touchedFiles[absConfigPath] {
return nil, fmt.Errorf("ConfigParser include cycle detected reading config: %v",
absConfigPath)
}
c.touchedFiles[absConfigPath] = true
c.includeStack.Push(absConfigPath)
defer c.includeStack.Pop()
}
var f File
if f, err = c.open(configPath); err != nil {
return nil, fmt.Errorf("Failed to open config: %v", err)
}
defer f.Close()
decodedObject = make(map[string]interface{})
dj := json.NewDecoder(f)
if err = dj.Decode(&decodedObject); err != nil {
extra := ""
if serr, ok := err.(*json.SyntaxError); ok {
if _, serr := f.Seek(0, os.SEEK_SET); serr != nil {
log.Fatalf("seek error: %v", serr)
}
line, col, highlight := errorutil.HighlightBytePosition(f, serr.Offset)
extra = fmt.Sprintf(":\nError at line %d, column %d (file offset %d):\n%s",
line, col, serr.Offset, highlight)
}
return nil, fmt.Errorf("error parsing JSON object in config file %s%s\n%v",
f.Name(), extra, err)
}
if err = c.evaluateExpressions(decodedObject, nil, false); err != nil {
return nil, fmt.Errorf("error expanding JSON config expressions in %s:\n%v",
f.Name(), err)
}
return decodedObject, nil
}
var regFunc = map[string]expanderFunc{}
// RegisterFunc registers a new function that may be called from JSON
// configs using an array of the form ["_name", arg0, argN...].
// The provided name must begin with an underscore.
func RegisterFunc(name string, fn func(c *ConfigParser, v []interface{}) (interface{}, error)) {
if len(name) < 2 || !strings.HasPrefix(name, "_") {
panic("illegal name")
}
if _, dup := regFunc[name]; dup {
panic("duplicate registration of " + name)
}
regFunc[name] = fn
}
type expanderFunc func(c *ConfigParser, v []interface{}) (interface{}, error)
func namedExpander(name string) (fn expanderFunc, ok bool) {
switch name {
case "_env":
return (*ConfigParser).expandEnv, true
case "_fileobj":
return (*ConfigParser).expandFile, true
}
fn, ok = regFunc[name]
return
}
func (c *ConfigParser) evalValue(v interface{}) (interface{}, error) {
sl, ok := v.([]interface{})
if !ok {
return v, nil
}
if name, ok := sl[0].(string); ok {
if expander, ok := namedExpander(name); ok {
newval, err := expander(c, sl[1:])
if err != nil {
return nil, err
}
return newval, nil
}
}
for i, oldval := range sl {
newval, err := c.evalValue(oldval)
if err != nil {
return nil, err
}
sl[i] = newval
}
return v, nil
}
// CheckTypes parses m and returns an error if it encounters a type or value
// that is not supported by this package.
func (c *ConfigParser) CheckTypes(m map[string]interface{}) error {
return c.evaluateExpressions(m, nil, true)
}
// evaluateExpressions parses recursively m, populating it with the values
// that are found, unless testOnly is true.
func (c *ConfigParser) evaluateExpressions(m map[string]interface{}, seenKeys []string, testOnly bool) error {
for k, ei := range m {
thisPath := append(seenKeys, k)
switch subval := ei.(type) {
case string, bool, float64, nil:
continue
case []interface{}:
if len(subval) == 0 {
continue
}
evaled, err := c.evalValue(subval)
if err != nil {
return fmt.Errorf("%s: value error %v", strings.Join(thisPath, "."), err)
}
if !testOnly {
m[k] = evaled
}
case map[string]interface{}:
if err := c.evaluateExpressions(subval, thisPath, testOnly); err != nil {
return err
}
default:
return fmt.Errorf("%s: unhandled type %T", strings.Join(thisPath, "."), ei)
}
}
return nil
}
// Permit either:
// ["_env", "VARIABLE"] (required to be set)
// or ["_env", "VARIABLE", "default_value"]
func (c *ConfigParser) expandEnv(v []interface{}) (interface{}, error) {
hasDefault := false
def := ""
if len(v) < 1 || len(v) > 2 {
return "", fmt.Errorf("_env expansion expected 1 or 2 args, got %d", len(v))
}
s, ok := v[0].(string)
if !ok {
return "", fmt.Errorf("Expected a string after _env expansion; got %#v", v[0])
}
boolDefault, wantsBool := false, false
if len(v) == 2 {
hasDefault = true
switch vdef := v[1].(type) {
case string:
def = vdef
case bool:
wantsBool = true
boolDefault = vdef
default:
return "", fmt.Errorf("Expected default value in %q _env expansion; got %#v", s, v[1])
}
}
var err error
expanded := envPattern.ReplaceAllStringFunc(s, func(match string) string {
envVar := match[2 : len(match)-1]
val := os.Getenv(envVar)
// Special case:
if val == "" && envVar == "USER" && runtime.GOOS == "windows" {
val = os.Getenv("USERNAME")
}
if val == "" {
if hasDefault {
return def
}
err = fmt.Errorf("couldn't expand environment variable %q", envVar)
}
return val
})
if wantsBool {
if expanded == "" {
return boolDefault, nil
}
return strconv.ParseBool(expanded)
}
return expanded, err
}
func (c *ConfigParser) expandFile(v []interface{}) (exp interface{}, err error) {
if len(v) != 1 {
return "", fmt.Errorf("_file expansion expected 1 arg, got %d", len(v))
}
var incPath string
if incPath, err = c.ConfigFilePath(v[0].(string)); err != nil {
return "", fmt.Errorf("Included config does not exist: %v", v[0])
}
if exp, err = c.recursiveReadJSON(incPath); err != nil {
return "", fmt.Errorf("In file included from %s:\n%v",
c.includeStack.Last(), err)
}
return exp, nil
}
// ConfigFilePath checks if configFile is found and returns a usable path to it.
// It first checks if configFile is an absolute path, or if it's found in the
// current working directory. If not, it then checks if configFile is in one of
// c.IncludeDirs. It returns an error if configFile is absolute and could not be
// statted, or os.ErrNotExist if configFile was not found.
func (c *ConfigParser) ConfigFilePath(configFile string) (path string, err error) {
// Try to open as absolute / relative to CWD
_, err = os.Stat(configFile)
if err != nil && filepath.IsAbs(configFile) {
return "", err
}
if err == nil {
return configFile, nil
}
for _, d := range c.IncludeDirs {
if _, err := os.Stat(filepath.Join(d, configFile)); err == nil {
return filepath.Join(d, configFile), nil
}
}
return "", os.ErrNotExist
}
|