Mainly redefine or reused what Terraform did. * allow to used `variables`, `variable` and `local` blocks * import the following functions and their docs from Terraform: abs, abspath, basename, base64decode, base64encode, bcrypt, can, ceil, chomp, chunklist, cidrhost, cidrnetmask, cidrsubnet, cidrsubnets, coalesce, coalescelist, compact, concat, contains, convert, csvdecode, dirname, distinct, element, file, fileexists, fileset, flatten, floor, format, formatdate, formatlist, indent, index, join, jsondecode, jsonencode, keys, length, log, lookup, lower, max, md5, merge, min, parseint, pathexpand, pow, range, reverse, rsadecrypt, setintersection, setproduct, setunion, sha1, sha256, sha512, signum, slice, sort, split, strrev, substr, timestamp, timeadd, title, trim, trimprefix, trimspace, trimsuffix, try, upper, urlencode, uuidv4, uuidv5, values, yamldecode, yamlencode, zipmap.
98 lines
2.3 KiB
Go
98 lines
2.3 KiB
Go
package yaml
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
// Error is an error implementation used to report errors that correspond to
|
|
// a particular position in an input buffer.
|
|
type Error struct {
|
|
cause error
|
|
Line, Column int
|
|
}
|
|
|
|
func (e Error) Error() string {
|
|
return fmt.Sprintf("on line %d, column %d: %s", e.Line, e.Column, e.cause.Error())
|
|
}
|
|
|
|
// Cause is an implementation of the interface used by
|
|
// github.com/pkg/errors.Cause, returning the underlying error without the
|
|
// position information.
|
|
func (e Error) Cause() error {
|
|
return e.cause
|
|
}
|
|
|
|
// WrappedErrors is an implementation of github.com/hashicorp/errwrap.Wrapper
|
|
// returning the underlying error without the position information.
|
|
func (e Error) WrappedErrors() []error {
|
|
return []error{e.cause}
|
|
}
|
|
|
|
func parserError(p *yaml_parser_t) error {
|
|
var cause error
|
|
if len(p.problem) > 0 {
|
|
cause = errors.New(p.problem)
|
|
} else {
|
|
cause = errors.New("invalid YAML syntax") // useless generic error, then
|
|
}
|
|
|
|
return parserErrorWrap(p, cause)
|
|
}
|
|
|
|
func parserErrorWrap(p *yaml_parser_t, cause error) error {
|
|
switch {
|
|
case p.problem_mark.line != 0:
|
|
line := p.problem_mark.line
|
|
column := p.problem_mark.column
|
|
// Scanner errors don't iterate line before returning error
|
|
if p.error == yaml_SCANNER_ERROR {
|
|
line++
|
|
column = 0
|
|
}
|
|
return Error{
|
|
cause: cause,
|
|
Line: line,
|
|
Column: column + 1,
|
|
}
|
|
case p.context_mark.line != 0:
|
|
return Error{
|
|
cause: cause,
|
|
Line: p.context_mark.line,
|
|
Column: p.context_mark.column + 1,
|
|
}
|
|
default:
|
|
return cause
|
|
}
|
|
}
|
|
|
|
func parserErrorf(p *yaml_parser_t, f string, vals ...interface{}) error {
|
|
return parserErrorWrap(p, fmt.Errorf(f, vals...))
|
|
}
|
|
|
|
func parseEventErrorWrap(evt *yaml_event_t, cause error) error {
|
|
if evt.start_mark.line == 0 {
|
|
// Event does not have a start mark, so we won't wrap the error at all
|
|
return cause
|
|
}
|
|
return Error{
|
|
cause: cause,
|
|
Line: evt.start_mark.line,
|
|
Column: evt.start_mark.column + 1,
|
|
}
|
|
}
|
|
|
|
func parseEventErrorf(evt *yaml_event_t, f string, vals ...interface{}) error {
|
|
return parseEventErrorWrap(evt, fmt.Errorf(f, vals...))
|
|
}
|
|
|
|
func emitterError(e *yaml_emitter_t) error {
|
|
var cause error
|
|
if len(e.problem) > 0 {
|
|
cause = errors.New(e.problem)
|
|
} else {
|
|
cause = errors.New("failed to write YAML token") // useless generic error, then
|
|
}
|
|
return cause
|
|
}
|