2011-01-05 16:17:34 +03:00
|
|
|
package goyaml
|
|
|
|
|
2011-02-07 02:44:46 +03:00
|
|
|
// #cgo LDFLAGS: -lm -lpthread
|
|
|
|
// #cgo CFLAGS: -I. -DHAVE_CONFIG_H=1
|
|
|
|
//
|
2011-01-10 21:03:42 +03:00
|
|
|
// #include "helpers.h"
|
2011-01-05 16:17:34 +03:00
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
2011-04-14 01:20:44 +04:00
|
|
|
"unsafe"
|
|
|
|
"reflect"
|
|
|
|
"strconv"
|
2011-01-05 16:17:34 +03:00
|
|
|
)
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
const (
|
2011-04-14 01:20:44 +04:00
|
|
|
documentNode = 1 << iota
|
|
|
|
mappingNode
|
|
|
|
sequenceNode
|
|
|
|
scalarNode
|
|
|
|
aliasNode
|
2011-01-11 00:41:23 +03:00
|
|
|
)
|
2011-01-05 16:17:34 +03:00
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
type node struct {
|
2011-04-14 01:20:44 +04:00
|
|
|
kind int
|
|
|
|
line, column int
|
|
|
|
tag string
|
|
|
|
value string
|
|
|
|
implicit bool
|
|
|
|
children []*node
|
|
|
|
anchors map[string]*node
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
2011-01-12 16:48:41 +03:00
|
|
|
func stry(s *C.yaml_char_t) string {
|
2011-04-14 01:20:44 +04:00
|
|
|
return C.GoString((*C.char)(unsafe.Pointer(s)))
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Parser, produces a node tree out of a libyaml event stream.
|
|
|
|
|
|
|
|
type parser struct {
|
2011-04-14 01:20:44 +04:00
|
|
|
parser C.yaml_parser_t
|
|
|
|
event C.yaml_event_t
|
|
|
|
doc *node
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func newParser(b []byte) *parser {
|
2011-04-14 01:20:44 +04:00
|
|
|
p := parser{}
|
|
|
|
if C.yaml_parser_initialize(&p.parser) == 0 {
|
|
|
|
panic("Failed to initialize YAML emitter")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(b) == 0 {
|
|
|
|
b = []byte{'\n'}
|
|
|
|
}
|
|
|
|
|
|
|
|
// How unsafe is this really? Will this break if the GC becomes compacting?
|
|
|
|
// Probably not, otherwise that would likely break &parse below as well.
|
|
|
|
input := (*C.uchar)(unsafe.Pointer(&b[0]))
|
|
|
|
C.yaml_parser_set_input_string(&p.parser, input, (C.size_t)(len(b)))
|
|
|
|
|
|
|
|
p.skip()
|
|
|
|
if p.event._type != C.YAML_STREAM_START_EVENT {
|
|
|
|
panic("Expected stream start event, got " +
|
|
|
|
strconv.Itoa(int(p.event._type)))
|
|
|
|
}
|
|
|
|
p.skip()
|
|
|
|
return &p
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (p *parser) destroy() {
|
2011-04-14 01:20:44 +04:00
|
|
|
if p.event._type != C.YAML_NO_EVENT {
|
|
|
|
C.yaml_event_delete(&p.event)
|
|
|
|
}
|
|
|
|
C.yaml_parser_delete(&p.parser)
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (p *parser) skip() {
|
2011-04-14 01:20:44 +04:00
|
|
|
if p.event._type != C.YAML_NO_EVENT {
|
|
|
|
if p.event._type == C.YAML_STREAM_END_EVENT {
|
|
|
|
panic("Attempted to go past the end of stream. Corrupted value?")
|
|
|
|
}
|
|
|
|
C.yaml_event_delete(&p.event)
|
|
|
|
}
|
|
|
|
if C.yaml_parser_parse(&p.parser, &p.event) == 0 {
|
|
|
|
p.fail()
|
|
|
|
}
|
2011-01-10 21:03:42 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (p *parser) fail() {
|
2011-04-14 01:20:44 +04:00
|
|
|
var where string
|
|
|
|
var line int
|
|
|
|
if p.parser.problem_mark.line != 0 {
|
|
|
|
line = int(C.int(p.parser.problem_mark.line))
|
|
|
|
} else if p.parser.context_mark.line != 0 {
|
|
|
|
line = int(C.int(p.parser.context_mark.line))
|
|
|
|
}
|
|
|
|
if line != 0 {
|
|
|
|
where = "line " + strconv.Itoa(line) + ": "
|
|
|
|
}
|
|
|
|
var msg string
|
|
|
|
if p.parser.problem != nil {
|
|
|
|
msg = C.GoString(p.parser.problem)
|
|
|
|
} else {
|
|
|
|
msg = "Unknown problem parsing YAML content"
|
|
|
|
}
|
|
|
|
panic(where + msg)
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (p *parser) anchor(n *node, anchor *C.yaml_char_t) {
|
2011-04-14 01:20:44 +04:00
|
|
|
if anchor != nil {
|
|
|
|
p.doc.anchors[stry(anchor)] = n
|
|
|
|
}
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) parse() *node {
|
2011-04-14 01:20:44 +04:00
|
|
|
switch p.event._type {
|
|
|
|
case C.YAML_SCALAR_EVENT:
|
|
|
|
return p.scalar()
|
|
|
|
case C.YAML_ALIAS_EVENT:
|
|
|
|
return p.alias()
|
|
|
|
case C.YAML_MAPPING_START_EVENT:
|
|
|
|
return p.mapping()
|
|
|
|
case C.YAML_SEQUENCE_START_EVENT:
|
|
|
|
return p.sequence()
|
|
|
|
case C.YAML_DOCUMENT_START_EVENT:
|
|
|
|
return p.document()
|
|
|
|
case C.YAML_STREAM_END_EVENT:
|
|
|
|
// Happens when attempting to decode an empty buffer.
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
panic("Attempted to parse unknown event: " +
|
|
|
|
strconv.Itoa(int(p.event._type)))
|
|
|
|
}
|
|
|
|
panic("Unreachable")
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) node(kind int) *node {
|
2011-04-14 01:20:44 +04:00
|
|
|
return &node{kind: kind,
|
|
|
|
line: int(C.int(p.event.start_mark.line)),
|
|
|
|
column: int(C.int(p.event.start_mark.column))}
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) document() *node {
|
2011-04-14 01:20:44 +04:00
|
|
|
n := p.node(documentNode)
|
|
|
|
n.anchors = make(map[string]*node)
|
|
|
|
p.doc = n
|
|
|
|
p.skip()
|
|
|
|
n.children = append(n.children, p.parse())
|
|
|
|
if p.event._type != C.YAML_DOCUMENT_END_EVENT {
|
|
|
|
panic("Expected end of document event but got " +
|
|
|
|
strconv.Itoa(int(p.event._type)))
|
|
|
|
}
|
|
|
|
p.skip()
|
|
|
|
return n
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (p *parser) alias() *node {
|
2011-04-14 01:20:44 +04:00
|
|
|
alias := C.event_alias(&p.event)
|
|
|
|
n := p.node(aliasNode)
|
|
|
|
n.value = stry(alias.anchor)
|
|
|
|
p.skip()
|
|
|
|
return n
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) scalar() *node {
|
2011-04-14 01:20:44 +04:00
|
|
|
scalar := C.event_scalar(&p.event)
|
|
|
|
n := p.node(scalarNode)
|
|
|
|
n.value = stry(scalar.value)
|
|
|
|
n.tag = stry(scalar.tag)
|
|
|
|
n.implicit = (scalar.plain_implicit != 0)
|
|
|
|
p.anchor(n, scalar.anchor)
|
|
|
|
p.skip()
|
|
|
|
return n
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
2011-01-05 20:29:30 +03:00
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (p *parser) sequence() *node {
|
2011-04-14 01:20:44 +04:00
|
|
|
n := p.node(sequenceNode)
|
|
|
|
p.anchor(n, C.event_sequence_start(&p.event).anchor)
|
|
|
|
p.skip()
|
|
|
|
for p.event._type != C.YAML_SEQUENCE_END_EVENT {
|
|
|
|
n.children = append(n.children, p.parse())
|
|
|
|
}
|
|
|
|
p.skip()
|
|
|
|
return n
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) mapping() *node {
|
2011-04-14 01:20:44 +04:00
|
|
|
n := p.node(mappingNode)
|
|
|
|
p.anchor(n, C.event_mapping_start(&p.event).anchor)
|
|
|
|
p.skip()
|
|
|
|
for p.event._type != C.YAML_MAPPING_END_EVENT {
|
|
|
|
n.children = append(n.children, p.parse(), p.parse())
|
|
|
|
}
|
|
|
|
p.skip()
|
|
|
|
return n
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Decoder, unmarshals a node into a provided value.
|
|
|
|
|
|
|
|
type decoder struct {
|
2011-04-14 01:20:44 +04:00
|
|
|
doc *node
|
|
|
|
aliases map[string]bool
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func newDecoder() *decoder {
|
2011-04-14 01:20:44 +04:00
|
|
|
d := &decoder{}
|
|
|
|
d.aliases = make(map[string]bool)
|
|
|
|
return d
|
2011-01-05 20:29:30 +03:00
|
|
|
}
|
|
|
|
|
2011-01-08 02:11:18 +03:00
|
|
|
// d.setter deals with setters and pointer dereferencing and initialization.
|
|
|
|
//
|
|
|
|
// It's a slightly convoluted case to handle properly:
|
|
|
|
//
|
|
|
|
// - Nil pointers should be zeroed out, unless being set to nil
|
|
|
|
// - We don't know at this point yet what's the value to SetYAML() with.
|
|
|
|
// - We can't separate pointer deref/init and setter checking, because
|
|
|
|
// a setter may be found while going down a pointer chain.
|
|
|
|
//
|
|
|
|
// Thus, here is how it takes care of it:
|
|
|
|
//
|
|
|
|
// - out is provided as a pointer, so that it can be replaced.
|
|
|
|
// - when looking at a non-setter ptr, *out=ptr.Elem(), unless tag=!!null
|
|
|
|
// - when a setter is found, *out=interface{}, and a set() function is
|
|
|
|
// returned to call SetYAML() with the value of *out once it's defined.
|
|
|
|
//
|
|
|
|
func (d *decoder) setter(tag string, out *reflect.Value, good *bool) (set func()) {
|
2011-04-14 01:20:44 +04:00
|
|
|
again := true
|
|
|
|
for again {
|
|
|
|
again = false
|
|
|
|
setter, _ := (*out).Interface().(Setter)
|
|
|
|
if tag != "!!null" || setter != nil {
|
|
|
|
if pv, ok := (*out).(*reflect.PtrValue); ok {
|
|
|
|
if pv.IsNil() {
|
|
|
|
*out = reflect.MakeZero(pv.Type().(*reflect.PtrType).Elem())
|
|
|
|
pv.PointTo(*out)
|
|
|
|
} else {
|
|
|
|
*out = pv.Elem()
|
|
|
|
}
|
|
|
|
setter, _ = pv.Interface().(Setter)
|
|
|
|
again = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if setter != nil {
|
|
|
|
var arg interface{}
|
|
|
|
*out = reflect.NewValue(&arg).(*reflect.PtrValue).Elem()
|
|
|
|
return func() {
|
|
|
|
*good = setter.SetYAML(tag, arg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
2011-01-08 02:11:18 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (d *decoder) unmarshal(n *node, out reflect.Value) (good bool) {
|
2011-04-14 01:20:44 +04:00
|
|
|
switch n.kind {
|
|
|
|
case documentNode:
|
|
|
|
good = d.document(n, out)
|
|
|
|
case scalarNode:
|
|
|
|
good = d.scalar(n, out)
|
|
|
|
case aliasNode:
|
|
|
|
good = d.alias(n, out)
|
|
|
|
case mappingNode:
|
|
|
|
good = d.mapping(n, out)
|
|
|
|
case sequenceNode:
|
|
|
|
good = d.sequence(n, out)
|
|
|
|
default:
|
|
|
|
panic("Internal error: unknown node kind: " + strconv.Itoa(n.kind))
|
|
|
|
}
|
|
|
|
return
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (d *decoder) document(n *node, out reflect.Value) (good bool) {
|
2011-04-14 01:20:44 +04:00
|
|
|
if len(n.children) == 1 {
|
|
|
|
d.doc = n
|
|
|
|
d.unmarshal(n.children[0], out)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
2011-01-11 00:41:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *decoder) alias(n *node, out reflect.Value) (good bool) {
|
2011-04-14 01:20:44 +04:00
|
|
|
an, ok := d.doc.anchors[n.value]
|
|
|
|
if !ok {
|
|
|
|
panic("Unknown anchor '" + n.value + "' referenced")
|
|
|
|
}
|
|
|
|
if d.aliases[n.value] {
|
|
|
|
panic("Anchor '" + n.value + "' value contains itself")
|
|
|
|
}
|
|
|
|
d.aliases[n.value] = true
|
|
|
|
good = d.unmarshal(an, out)
|
|
|
|
d.aliases[n.value] = false, false
|
|
|
|
return good
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (d *decoder) scalar(n *node, out reflect.Value) (good bool) {
|
2011-04-14 01:20:44 +04:00
|
|
|
var tag string
|
|
|
|
var resolved interface{}
|
|
|
|
if n.tag == "" && !n.implicit {
|
|
|
|
resolved = n.value
|
|
|
|
} else {
|
|
|
|
tag, resolved = resolve(n.tag, n.value)
|
|
|
|
if set := d.setter(tag, &out, &good); set != nil {
|
|
|
|
defer set()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch out := out.(type) {
|
|
|
|
case *reflect.StringValue:
|
|
|
|
out.Set(n.value)
|
|
|
|
good = true
|
|
|
|
case *reflect.InterfaceValue:
|
|
|
|
out.Set(reflect.NewValue(resolved))
|
|
|
|
good = true
|
|
|
|
case *reflect.IntValue:
|
|
|
|
switch resolved := resolved.(type) {
|
|
|
|
case int:
|
|
|
|
if !out.Overflow(int64(resolved)) {
|
|
|
|
out.Set(int64(resolved))
|
|
|
|
good = true
|
|
|
|
}
|
|
|
|
case int64:
|
|
|
|
if !out.Overflow(resolved) {
|
|
|
|
out.Set(resolved)
|
|
|
|
good = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case *reflect.UintValue:
|
|
|
|
switch resolved := resolved.(type) {
|
|
|
|
case int:
|
|
|
|
if resolved >= 0 {
|
|
|
|
out.Set(uint64(resolved))
|
|
|
|
good = true
|
|
|
|
}
|
|
|
|
case int64:
|
|
|
|
if resolved >= 0 {
|
|
|
|
out.Set(uint64(resolved))
|
|
|
|
good = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case *reflect.BoolValue:
|
|
|
|
switch resolved := resolved.(type) {
|
|
|
|
case bool:
|
|
|
|
out.Set(resolved)
|
|
|
|
good = true
|
|
|
|
}
|
|
|
|
case *reflect.FloatValue:
|
|
|
|
switch resolved := resolved.(type) {
|
|
|
|
case float64:
|
|
|
|
out.Set(resolved)
|
|
|
|
good = true
|
|
|
|
}
|
|
|
|
case *reflect.PtrValue:
|
|
|
|
switch resolved := resolved.(type) {
|
|
|
|
case nil:
|
|
|
|
out.PointTo(nil)
|
|
|
|
good = true
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
panic("Can't handle type yet: " + out.Type().String())
|
|
|
|
}
|
|
|
|
return good
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (d *decoder) sequence(n *node, out reflect.Value) (good bool) {
|
2011-04-14 01:20:44 +04:00
|
|
|
if set := d.setter("!!seq", &out, &good); set != nil {
|
|
|
|
defer set()
|
|
|
|
}
|
|
|
|
if iface, ok := out.(*reflect.InterfaceValue); ok {
|
|
|
|
// No type hints. Will have to use a generic sequence.
|
|
|
|
out = reflect.NewValue(make([]interface{}, 0))
|
|
|
|
iface.SetValue(out)
|
|
|
|
}
|
|
|
|
|
|
|
|
sv, ok := out.(*reflect.SliceValue)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
st := sv.Type().(*reflect.SliceType)
|
|
|
|
et := st.Elem()
|
|
|
|
|
|
|
|
l := len(n.children)
|
|
|
|
for i := 0; i < l; i++ {
|
|
|
|
e := reflect.MakeZero(et)
|
|
|
|
if ok := d.unmarshal(n.children[i], e); ok {
|
|
|
|
sv.SetValue(reflect.Append(sv, e))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (d *decoder) mapping(n *node, out reflect.Value) (good bool) {
|
2011-04-14 01:20:44 +04:00
|
|
|
if set := d.setter("!!map", &out, &good); set != nil {
|
|
|
|
defer set()
|
|
|
|
}
|
|
|
|
if s, ok := out.(*reflect.StructValue); ok {
|
|
|
|
return d.mappingStruct(n, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
if iface, ok := out.(*reflect.InterfaceValue); ok {
|
|
|
|
// No type hints. Will have to use a generic map.
|
|
|
|
out = reflect.NewValue(make(map[interface{}]interface{}))
|
|
|
|
iface.SetValue(out)
|
|
|
|
}
|
|
|
|
|
|
|
|
mv, ok := out.(*reflect.MapValue)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
mt := mv.Type().(*reflect.MapType)
|
|
|
|
kt := mt.Key()
|
|
|
|
et := mt.Elem()
|
|
|
|
|
|
|
|
l := len(n.children)
|
|
|
|
for i := 0; i < l; i += 2 {
|
|
|
|
k := reflect.MakeZero(kt)
|
|
|
|
if d.unmarshal(n.children[i], k) {
|
|
|
|
e := reflect.MakeZero(et)
|
|
|
|
if d.unmarshal(n.children[i+1], e) {
|
|
|
|
mv.SetElem(k, e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
2011-01-05 20:29:30 +03:00
|
|
|
}
|
|
|
|
|
2011-01-11 00:41:23 +03:00
|
|
|
func (d *decoder) mappingStruct(n *node, out *reflect.StructValue) (good bool) {
|
2011-04-14 01:20:44 +04:00
|
|
|
fields, err := getStructFields(out.Type().(*reflect.StructType))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
name := reflect.NewValue("").(*reflect.StringValue)
|
|
|
|
fieldsMap := fields.Map
|
|
|
|
l := len(n.children)
|
|
|
|
for i := 0; i < l; i += 2 {
|
|
|
|
if !d.unmarshal(n.children[i], name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if info, ok := fieldsMap[name.Get()]; ok {
|
|
|
|
d.unmarshal(n.children[i+1], out.Field(info.Num))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
2011-01-05 16:17:34 +03:00
|
|
|
}
|