2022-05-02 14:05:18 +01:00
|
|
|
package toml
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"math"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/pelletier/go-toml/v2/internal/danger"
|
|
|
|
"github.com/pelletier/go-toml/v2/internal/tracker"
|
2022-12-27 08:29:42 +00:00
|
|
|
"github.com/pelletier/go-toml/v2/unstable"
|
2022-05-02 14:05:18 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Unmarshal deserializes a TOML document into a Go value.
|
|
|
|
//
|
|
|
|
// It is a shortcut for Decoder.Decode() with the default options.
|
|
|
|
func Unmarshal(data []byte, v interface{}) error {
|
2022-12-27 08:29:42 +00:00
|
|
|
p := unstable.Parser{}
|
2022-05-02 14:05:18 +01:00
|
|
|
p.Reset(data)
|
|
|
|
d := decoder{p: &p}
|
|
|
|
|
|
|
|
return d.FromParser(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decoder reads and decode a TOML document from an input stream.
|
|
|
|
type Decoder struct {
|
|
|
|
// input
|
|
|
|
r io.Reader
|
|
|
|
|
|
|
|
// global settings
|
|
|
|
strict bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDecoder creates a new Decoder that will read from r.
|
|
|
|
func NewDecoder(r io.Reader) *Decoder {
|
|
|
|
return &Decoder{r: r}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DisallowUnknownFields causes the Decoder to return an error when the
|
|
|
|
// destination is a struct and the input contains a key that does not match a
|
|
|
|
// non-ignored field.
|
|
|
|
//
|
|
|
|
// In that case, the Decoder returns a StrictMissingError that can be used to
|
|
|
|
// retrieve the individual errors as well as generate a human readable
|
|
|
|
// description of the missing fields.
|
|
|
|
func (d *Decoder) DisallowUnknownFields() *Decoder {
|
|
|
|
d.strict = true
|
|
|
|
return d
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode the whole content of r into v.
|
|
|
|
//
|
|
|
|
// By default, values in the document that don't exist in the target Go value
|
|
|
|
// are ignored. See Decoder.DisallowUnknownFields() to change this behavior.
|
|
|
|
//
|
|
|
|
// When a TOML local date, time, or date-time is decoded into a time.Time, its
|
2023-06-01 22:20:16 +01:00
|
|
|
// value is represented in time.Local timezone. Otherwise the appropriate Local*
|
2022-05-02 14:05:18 +01:00
|
|
|
// structure is used. For time values, precision up to the nanosecond is
|
|
|
|
// supported by truncating extra digits.
|
|
|
|
//
|
|
|
|
// Empty tables decoded in an interface{} create an empty initialized
|
|
|
|
// map[string]interface{}.
|
|
|
|
//
|
|
|
|
// Types implementing the encoding.TextUnmarshaler interface are decoded from a
|
|
|
|
// TOML string.
|
|
|
|
//
|
|
|
|
// When decoding a number, go-toml will return an error if the number is out of
|
|
|
|
// bounds for the target type (which includes negative numbers when decoding
|
|
|
|
// into an unsigned int).
|
|
|
|
//
|
|
|
|
// If an error occurs while decoding the content of the document, this function
|
|
|
|
// returns a toml.DecodeError, providing context about the issue. When using
|
|
|
|
// strict mode and a field is missing, a `toml.StrictMissingError` is
|
|
|
|
// returned. In any other case, this function returns a standard Go error.
|
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// # Type mapping
|
2022-05-02 14:05:18 +01:00
|
|
|
//
|
|
|
|
// List of supported TOML types and their associated accepted Go types:
|
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// String -> string
|
|
|
|
// Integer -> uint*, int*, depending on size
|
|
|
|
// Float -> float*, depending on size
|
|
|
|
// Boolean -> bool
|
|
|
|
// Offset Date-Time -> time.Time
|
|
|
|
// Local Date-time -> LocalDateTime, time.Time
|
|
|
|
// Local Date -> LocalDate, time.Time
|
|
|
|
// Local Time -> LocalTime, time.Time
|
|
|
|
// Array -> slice and array, depending on elements types
|
|
|
|
// Table -> map and struct
|
|
|
|
// Inline Table -> same as Table
|
|
|
|
// Array of Tables -> same as Array and Table
|
2022-05-02 14:05:18 +01:00
|
|
|
func (d *Decoder) Decode(v interface{}) error {
|
|
|
|
b, err := ioutil.ReadAll(d.r)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("toml: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
p := unstable.Parser{}
|
2022-05-02 14:05:18 +01:00
|
|
|
p.Reset(b)
|
|
|
|
dec := decoder{
|
|
|
|
p: &p,
|
|
|
|
strict: strict{
|
|
|
|
Enabled: d.strict,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return dec.FromParser(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
type decoder struct {
|
|
|
|
// Which parser instance in use for this decoding session.
|
2022-12-27 08:29:42 +00:00
|
|
|
p *unstable.Parser
|
2022-05-02 14:05:18 +01:00
|
|
|
|
|
|
|
// Flag indicating that the current expression is stashed.
|
|
|
|
// If set to true, calling nextExpr will not actually pull a new expression
|
|
|
|
// but turn off the flag instead.
|
|
|
|
stashedExpr bool
|
|
|
|
|
|
|
|
// Skip expressions until a table is found. This is set to true when a
|
2022-09-28 18:30:40 +01:00
|
|
|
// table could not be created (missing field in map), so all KV expressions
|
2022-05-02 14:05:18 +01:00
|
|
|
// need to be skipped.
|
|
|
|
skipUntilTable bool
|
|
|
|
|
|
|
|
// Tracks position in Go arrays.
|
|
|
|
// This is used when decoding [[array tables]] into Go arrays. Given array
|
|
|
|
// tables are separate TOML expression, we need to keep track of where we
|
|
|
|
// are at in the Go array, as we can't just introspect its size.
|
|
|
|
arrayIndexes map[reflect.Value]int
|
|
|
|
|
|
|
|
// Tracks keys that have been seen, with which type.
|
|
|
|
seen tracker.SeenTracker
|
|
|
|
|
|
|
|
// Strict mode
|
|
|
|
strict strict
|
|
|
|
|
|
|
|
// Current context for the error.
|
|
|
|
errorContext *errorContext
|
|
|
|
}
|
|
|
|
|
|
|
|
type errorContext struct {
|
|
|
|
Struct reflect.Type
|
|
|
|
Field []int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *decoder) typeMismatchError(toml string, target reflect.Type) error {
|
|
|
|
if d.errorContext != nil && d.errorContext.Struct != nil {
|
|
|
|
ctx := d.errorContext
|
|
|
|
f := ctx.Struct.FieldByIndex(ctx.Field)
|
|
|
|
return fmt.Errorf("toml: cannot decode TOML %s into struct field %s.%s of type %s", toml, ctx.Struct, f.Name, f.Type)
|
|
|
|
}
|
|
|
|
return fmt.Errorf("toml: cannot decode TOML %s into a Go value of type %s", toml, target)
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) expr() *unstable.Node {
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.p.Expression()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *decoder) nextExpr() bool {
|
|
|
|
if d.stashedExpr {
|
|
|
|
d.stashedExpr = false
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return d.p.NextExpression()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *decoder) stashExpr() {
|
|
|
|
d.stashedExpr = true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *decoder) arrayIndex(shouldAppend bool, v reflect.Value) int {
|
|
|
|
if d.arrayIndexes == nil {
|
|
|
|
d.arrayIndexes = make(map[reflect.Value]int, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
idx, ok := d.arrayIndexes[v]
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
d.arrayIndexes[v] = 0
|
|
|
|
} else if shouldAppend {
|
|
|
|
idx++
|
|
|
|
d.arrayIndexes[v] = idx
|
|
|
|
}
|
|
|
|
|
|
|
|
return idx
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *decoder) FromParser(v interface{}) error {
|
|
|
|
r := reflect.ValueOf(v)
|
|
|
|
if r.Kind() != reflect.Ptr {
|
|
|
|
return fmt.Errorf("toml: decoding can only be performed into a pointer, not %s", r.Kind())
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.IsNil() {
|
|
|
|
return fmt.Errorf("toml: decoding pointer target cannot be nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
r = r.Elem()
|
|
|
|
if r.Kind() == reflect.Interface && r.IsNil() {
|
|
|
|
newMap := map[string]interface{}{}
|
|
|
|
r.Set(reflect.ValueOf(newMap))
|
|
|
|
}
|
|
|
|
|
|
|
|
err := d.fromParser(r)
|
|
|
|
if err == nil {
|
2022-12-27 08:29:42 +00:00
|
|
|
return d.strict.Error(d.p.Data())
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
var e *unstable.ParserError
|
2022-05-02 14:05:18 +01:00
|
|
|
if errors.As(err, &e) {
|
2022-12-27 08:29:42 +00:00
|
|
|
return wrapDecodeError(d.p.Data(), e)
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *decoder) fromParser(root reflect.Value) error {
|
|
|
|
for d.nextExpr() {
|
|
|
|
err := d.handleRootExpression(d.expr(), root)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return d.p.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Rules for the unmarshal code:
|
|
|
|
|
|
|
|
- The stack is used to keep track of which values need to be set where.
|
2022-12-27 08:29:42 +00:00
|
|
|
- handle* functions <=> switch on a given unstable.Kind.
|
2022-05-02 14:05:18 +01:00
|
|
|
- unmarshalX* functions need to unmarshal a node of kind X.
|
|
|
|
- An "object" is either a struct or a map.
|
|
|
|
*/
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleRootExpression(expr *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
var x reflect.Value
|
|
|
|
var err error
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
if !(d.skipUntilTable && expr.Kind == unstable.KeyValue) {
|
2022-05-02 14:05:18 +01:00
|
|
|
err = d.seen.CheckExpression(expr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch expr.Kind {
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.KeyValue:
|
2022-05-02 14:05:18 +01:00
|
|
|
if d.skipUntilTable {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
x, err = d.handleKeyValue(expr, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.Table:
|
2022-05-02 14:05:18 +01:00
|
|
|
d.skipUntilTable = false
|
|
|
|
d.strict.EnterTable(expr)
|
|
|
|
x, err = d.handleTable(expr.Key(), v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.ArrayTable:
|
2022-05-02 14:05:18 +01:00
|
|
|
d.skipUntilTable = false
|
|
|
|
d.strict.EnterArrayTable(expr)
|
|
|
|
x, err = d.handleArrayTable(expr.Key(), v)
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("parser should not permit expression of kind %s at document root", expr.Kind))
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.skipUntilTable {
|
2022-12-27 08:29:42 +00:00
|
|
|
if expr.Kind == unstable.Table || expr.Kind == unstable.ArrayTable {
|
2022-05-02 14:05:18 +01:00
|
|
|
d.strict.MissingTable(expr)
|
|
|
|
}
|
|
|
|
} else if err == nil && x.IsValid() {
|
|
|
|
v.Set(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleArrayTable(key unstable.Iterator, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
if key.Next() {
|
|
|
|
return d.handleArrayTablePart(key, v)
|
|
|
|
}
|
|
|
|
return d.handleKeyValues(v)
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleArrayTableCollectionLast(key unstable.Iterator, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Interface:
|
|
|
|
elem := v.Elem()
|
|
|
|
if !elem.IsValid() {
|
|
|
|
elem = reflect.New(sliceInterfaceType).Elem()
|
|
|
|
elem.Set(reflect.MakeSlice(sliceInterfaceType, 0, 16))
|
|
|
|
} else if elem.Kind() == reflect.Slice {
|
|
|
|
if elem.Type() != sliceInterfaceType {
|
|
|
|
elem = reflect.New(sliceInterfaceType).Elem()
|
|
|
|
elem.Set(reflect.MakeSlice(sliceInterfaceType, 0, 16))
|
|
|
|
} else if !elem.CanSet() {
|
|
|
|
nelem := reflect.New(sliceInterfaceType).Elem()
|
|
|
|
nelem.Set(reflect.MakeSlice(sliceInterfaceType, elem.Len(), elem.Cap()))
|
|
|
|
reflect.Copy(nelem, elem)
|
|
|
|
elem = nelem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return d.handleArrayTableCollectionLast(key, elem)
|
|
|
|
case reflect.Ptr:
|
|
|
|
elem := v.Elem()
|
|
|
|
if !elem.IsValid() {
|
|
|
|
ptr := reflect.New(v.Type().Elem())
|
|
|
|
v.Set(ptr)
|
|
|
|
elem = ptr.Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
elem, err := d.handleArrayTableCollectionLast(key, elem)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
v.Elem().Set(elem)
|
|
|
|
|
|
|
|
return v, nil
|
|
|
|
case reflect.Slice:
|
|
|
|
elemType := v.Type().Elem()
|
|
|
|
var elem reflect.Value
|
|
|
|
if elemType.Kind() == reflect.Interface {
|
|
|
|
elem = makeMapStringInterface()
|
|
|
|
} else {
|
|
|
|
elem = reflect.New(elemType).Elem()
|
|
|
|
}
|
|
|
|
elem2, err := d.handleArrayTable(key, elem)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if elem2.IsValid() {
|
|
|
|
elem = elem2
|
|
|
|
}
|
|
|
|
return reflect.Append(v, elem), nil
|
|
|
|
case reflect.Array:
|
|
|
|
idx := d.arrayIndex(true, v)
|
|
|
|
if idx >= v.Len() {
|
2022-12-27 08:29:42 +00:00
|
|
|
return v, fmt.Errorf("%s at position %d", d.typeMismatchError("array table", v.Type()), idx)
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
elem := v.Index(idx)
|
|
|
|
_, err := d.handleArrayTable(key, elem)
|
|
|
|
return v, err
|
2022-09-28 18:30:40 +01:00
|
|
|
default:
|
2022-12-27 08:29:42 +00:00
|
|
|
return reflect.Value{}, d.typeMismatchError("array table", v.Type())
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// When parsing an array table expression, each part of the key needs to be
|
|
|
|
// evaluated like a normal key, but if it returns a collection, it also needs to
|
|
|
|
// point to the last element of the collection. Unless it is the last part of
|
|
|
|
// the key, then it needs to create a new element at the end.
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleArrayTableCollection(key unstable.Iterator, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
if key.IsLast() {
|
|
|
|
return d.handleArrayTableCollectionLast(key, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Ptr:
|
|
|
|
elem := v.Elem()
|
|
|
|
if !elem.IsValid() {
|
|
|
|
ptr := reflect.New(v.Type().Elem())
|
|
|
|
v.Set(ptr)
|
|
|
|
elem = ptr.Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
elem, err := d.handleArrayTableCollection(key, elem)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if elem.IsValid() {
|
|
|
|
v.Elem().Set(elem)
|
|
|
|
}
|
|
|
|
|
|
|
|
return v, nil
|
|
|
|
case reflect.Slice:
|
|
|
|
elem := v.Index(v.Len() - 1)
|
|
|
|
x, err := d.handleArrayTable(key, elem)
|
|
|
|
if err != nil || d.skipUntilTable {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if x.IsValid() {
|
|
|
|
elem.Set(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
return v, err
|
|
|
|
case reflect.Array:
|
|
|
|
idx := d.arrayIndex(false, v)
|
|
|
|
if idx >= v.Len() {
|
2022-12-27 08:29:42 +00:00
|
|
|
return v, fmt.Errorf("%s at position %d", d.typeMismatchError("array table", v.Type()), idx)
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
elem := v.Index(idx)
|
|
|
|
_, err := d.handleArrayTable(key, elem)
|
|
|
|
return v, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return d.handleArrayTable(key, v)
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleKeyPart(key unstable.Iterator, v reflect.Value, nextFn handlerFn, makeFn valueMakerFn) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
var rv reflect.Value
|
|
|
|
|
|
|
|
// First, dispatch over v to make sure it is a valid object.
|
|
|
|
// There is no guarantee over what it could be.
|
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Ptr:
|
|
|
|
elem := v.Elem()
|
|
|
|
if !elem.IsValid() {
|
|
|
|
v.Set(reflect.New(v.Type().Elem()))
|
|
|
|
}
|
|
|
|
elem = v.Elem()
|
|
|
|
return d.handleKeyPart(key, elem, nextFn, makeFn)
|
|
|
|
case reflect.Map:
|
|
|
|
vt := v.Type()
|
|
|
|
|
|
|
|
// Create the key for the map element. Convert to key type.
|
2023-06-01 22:20:16 +01:00
|
|
|
mk, err := d.keyFromData(vt.Key(), key.Node().Data)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
2022-05-02 14:05:18 +01:00
|
|
|
|
|
|
|
// If the map does not exist, create it.
|
|
|
|
if v.IsNil() {
|
|
|
|
vt := v.Type()
|
|
|
|
v = reflect.MakeMap(vt)
|
|
|
|
rv = v
|
|
|
|
}
|
|
|
|
|
|
|
|
mv := v.MapIndex(mk)
|
|
|
|
set := false
|
|
|
|
if !mv.IsValid() {
|
|
|
|
// If there is no value in the map, create a new one according to
|
|
|
|
// the map type. If the element type is interface, create either a
|
|
|
|
// map[string]interface{} or a []interface{} depending on whether
|
|
|
|
// this is the last part of the array table key.
|
|
|
|
|
|
|
|
t := vt.Elem()
|
|
|
|
if t.Kind() == reflect.Interface {
|
|
|
|
mv = makeFn()
|
|
|
|
} else {
|
|
|
|
mv = reflect.New(t).Elem()
|
|
|
|
}
|
|
|
|
set = true
|
|
|
|
} else if mv.Kind() == reflect.Interface {
|
|
|
|
mv = mv.Elem()
|
|
|
|
if !mv.IsValid() {
|
|
|
|
mv = makeFn()
|
|
|
|
}
|
|
|
|
set = true
|
|
|
|
} else if !mv.CanAddr() {
|
|
|
|
vt := v.Type()
|
|
|
|
t := vt.Elem()
|
|
|
|
oldmv := mv
|
|
|
|
mv = reflect.New(t).Elem()
|
|
|
|
mv.Set(oldmv)
|
|
|
|
set = true
|
|
|
|
}
|
|
|
|
|
|
|
|
x, err := nextFn(key, mv)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if x.IsValid() {
|
|
|
|
mv = x
|
|
|
|
set = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if set {
|
|
|
|
v.SetMapIndex(mk, mv)
|
|
|
|
}
|
|
|
|
case reflect.Struct:
|
|
|
|
path, found := structFieldPath(v, string(key.Node().Data))
|
|
|
|
if !found {
|
|
|
|
d.skipUntilTable = true
|
|
|
|
return reflect.Value{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.errorContext == nil {
|
|
|
|
d.errorContext = new(errorContext)
|
|
|
|
}
|
|
|
|
t := v.Type()
|
|
|
|
d.errorContext.Struct = t
|
|
|
|
d.errorContext.Field = path
|
|
|
|
|
2022-09-28 18:30:40 +01:00
|
|
|
f := fieldByIndex(v, path)
|
2022-05-02 14:05:18 +01:00
|
|
|
x, err := nextFn(key, f)
|
|
|
|
if err != nil || d.skipUntilTable {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if x.IsValid() {
|
|
|
|
f.Set(x)
|
|
|
|
}
|
|
|
|
d.errorContext.Field = nil
|
|
|
|
d.errorContext.Struct = nil
|
|
|
|
case reflect.Interface:
|
|
|
|
if v.Elem().IsValid() {
|
|
|
|
v = v.Elem()
|
|
|
|
} else {
|
|
|
|
v = makeMapStringInterface()
|
|
|
|
}
|
|
|
|
|
|
|
|
x, err := d.handleKeyPart(key, v, nextFn, makeFn)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if x.IsValid() {
|
|
|
|
v = x
|
|
|
|
}
|
|
|
|
rv = v
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("unhandled part: %s", v.Kind()))
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// HandleArrayTablePart navigates the Go structure v using the key v. It is
|
|
|
|
// only used for the prefix (non-last) parts of an array-table. When
|
|
|
|
// encountering a collection, it should go to the last element.
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleArrayTablePart(key unstable.Iterator, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
var makeFn valueMakerFn
|
|
|
|
if key.IsLast() {
|
|
|
|
makeFn = makeSliceInterface
|
|
|
|
} else {
|
|
|
|
makeFn = makeMapStringInterface
|
|
|
|
}
|
|
|
|
return d.handleKeyPart(key, v, d.handleArrayTableCollection, makeFn)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HandleTable returns a reference when it has checked the next expression but
|
|
|
|
// cannot handle it.
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleTable(key unstable.Iterator, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
if v.Kind() == reflect.Slice {
|
|
|
|
if v.Len() == 0 {
|
2022-12-27 08:29:42 +00:00
|
|
|
return reflect.Value{}, unstable.NewParserError(key.Node().Data, "cannot store a table in a slice")
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
elem := v.Index(v.Len() - 1)
|
|
|
|
x, err := d.handleTable(key, elem)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if x.IsValid() {
|
|
|
|
elem.Set(x)
|
|
|
|
}
|
|
|
|
return reflect.Value{}, nil
|
|
|
|
}
|
|
|
|
if key.Next() {
|
|
|
|
// Still scoping the key
|
|
|
|
return d.handleTablePart(key, v)
|
|
|
|
}
|
|
|
|
// Done scoping the key.
|
|
|
|
// Now handle all the key-value expressions in this table.
|
|
|
|
return d.handleKeyValues(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle root expressions until the end of the document or the next
|
|
|
|
// non-key-value.
|
|
|
|
func (d *decoder) handleKeyValues(v reflect.Value) (reflect.Value, error) {
|
|
|
|
var rv reflect.Value
|
|
|
|
for d.nextExpr() {
|
|
|
|
expr := d.expr()
|
2022-12-27 08:29:42 +00:00
|
|
|
if expr.Kind != unstable.KeyValue {
|
2022-05-02 14:05:18 +01:00
|
|
|
// Stash the expression so that fromParser can just loop and use
|
|
|
|
// the right handler.
|
|
|
|
// We could just recurse ourselves here, but at least this gives a
|
|
|
|
// chance to pop the stack a bit.
|
|
|
|
d.stashExpr()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
err := d.seen.CheckExpression(expr)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
x, err := d.handleKeyValue(expr, v)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if x.IsValid() {
|
|
|
|
v = x
|
|
|
|
rv = x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type (
|
2022-12-27 08:29:42 +00:00
|
|
|
handlerFn func(key unstable.Iterator, v reflect.Value) (reflect.Value, error)
|
2022-05-02 14:05:18 +01:00
|
|
|
valueMakerFn func() reflect.Value
|
|
|
|
)
|
|
|
|
|
|
|
|
func makeMapStringInterface() reflect.Value {
|
|
|
|
return reflect.MakeMap(mapStringInterfaceType)
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeSliceInterface() reflect.Value {
|
|
|
|
return reflect.MakeSlice(sliceInterfaceType, 0, 16)
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleTablePart(key unstable.Iterator, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.handleKeyPart(key, v, d.handleTable, makeMapStringInterface)
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) tryTextUnmarshaler(node *unstable.Node, v reflect.Value) (bool, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
// Special case for time, because we allow to unmarshal to it from
|
|
|
|
// different kind of AST nodes.
|
|
|
|
if v.Type() == timeType {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if v.CanAddr() && v.Addr().Type().Implements(textUnmarshalerType) {
|
|
|
|
err := v.Addr().Interface().(encoding.TextUnmarshaler).UnmarshalText(node.Data)
|
|
|
|
if err != nil {
|
2022-12-27 08:29:42 +00:00
|
|
|
return false, unstable.NewParserError(d.p.Raw(node.Raw), "%w", err)
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleValue(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
for v.Kind() == reflect.Ptr {
|
|
|
|
v = initAndDereferencePointer(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
ok, err := d.tryTextUnmarshaler(value, v)
|
|
|
|
if ok || err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch value.Kind {
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.String:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalString(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.Integer:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalInteger(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.Float:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalFloat(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.Bool:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalBool(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.DateTime:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalDateTime(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.LocalDate:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalLocalDate(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.LocalTime:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalLocalTime(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.LocalDateTime:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalLocalDateTime(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.InlineTable:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalInlineTable(value, v)
|
2022-12-27 08:29:42 +00:00
|
|
|
case unstable.Array:
|
2022-05-02 14:05:18 +01:00
|
|
|
return d.unmarshalArray(value, v)
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("handleValue not implemented for %s", value.Kind))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalArray(array *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Slice:
|
|
|
|
if v.IsNil() {
|
|
|
|
v.Set(reflect.MakeSlice(v.Type(), 0, 16))
|
|
|
|
} else {
|
|
|
|
v.SetLen(0)
|
|
|
|
}
|
|
|
|
case reflect.Array:
|
|
|
|
// arrays are always initialized
|
|
|
|
case reflect.Interface:
|
|
|
|
elem := v.Elem()
|
|
|
|
if !elem.IsValid() {
|
|
|
|
elem = reflect.New(sliceInterfaceType).Elem()
|
|
|
|
elem.Set(reflect.MakeSlice(sliceInterfaceType, 0, 16))
|
|
|
|
} else if elem.Kind() == reflect.Slice {
|
|
|
|
if elem.Type() != sliceInterfaceType {
|
|
|
|
elem = reflect.New(sliceInterfaceType).Elem()
|
|
|
|
elem.Set(reflect.MakeSlice(sliceInterfaceType, 0, 16))
|
|
|
|
} else if !elem.CanSet() {
|
|
|
|
nelem := reflect.New(sliceInterfaceType).Elem()
|
|
|
|
nelem.Set(reflect.MakeSlice(sliceInterfaceType, elem.Len(), elem.Cap()))
|
|
|
|
reflect.Copy(nelem, elem)
|
|
|
|
elem = nelem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err := d.unmarshalArray(array, elem)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
v.Set(elem)
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
// TODO: use newDecodeError, but first the parser needs to fill
|
|
|
|
// array.Data.
|
|
|
|
return d.typeMismatchError("array", v.Type())
|
|
|
|
}
|
|
|
|
|
|
|
|
elemType := v.Type().Elem()
|
|
|
|
|
|
|
|
it := array.Children()
|
|
|
|
idx := 0
|
|
|
|
for it.Next() {
|
|
|
|
n := it.Node()
|
|
|
|
|
|
|
|
// TODO: optimize
|
|
|
|
if v.Kind() == reflect.Slice {
|
|
|
|
elem := reflect.New(elemType).Elem()
|
|
|
|
|
|
|
|
err := d.handleValue(n, elem)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
v.Set(reflect.Append(v, elem))
|
|
|
|
} else { // array
|
|
|
|
if idx >= v.Len() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
elem := v.Index(idx)
|
|
|
|
err := d.handleValue(n, elem)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
idx++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalInlineTable(itable *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
// Make sure v is an initialized object.
|
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Map:
|
|
|
|
if v.IsNil() {
|
|
|
|
v.Set(reflect.MakeMap(v.Type()))
|
|
|
|
}
|
|
|
|
case reflect.Struct:
|
|
|
|
// structs are always initialized.
|
|
|
|
case reflect.Interface:
|
|
|
|
elem := v.Elem()
|
|
|
|
if !elem.IsValid() {
|
|
|
|
elem = makeMapStringInterface()
|
|
|
|
v.Set(elem)
|
|
|
|
}
|
|
|
|
return d.unmarshalInlineTable(itable, elem)
|
|
|
|
default:
|
2023-06-01 22:20:16 +01:00
|
|
|
return unstable.NewParserError(d.p.Raw(itable.Raw), "cannot store inline table in Go type %s", v.Kind())
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
it := itable.Children()
|
|
|
|
for it.Next() {
|
|
|
|
n := it.Node()
|
|
|
|
|
|
|
|
x, err := d.handleKeyValue(n, v)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if x.IsValid() {
|
|
|
|
v = x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalDateTime(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
dt, err := parseDateTime(value.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
v.Set(reflect.ValueOf(dt))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalLocalDate(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
ld, err := parseLocalDate(value.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if v.Type() == timeType {
|
|
|
|
cast := ld.AsTime(time.Local)
|
|
|
|
v.Set(reflect.ValueOf(cast))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
v.Set(reflect.ValueOf(ld))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalLocalTime(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
lt, rest, err := parseLocalTime(value.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(rest) > 0 {
|
2022-12-27 08:29:42 +00:00
|
|
|
return unstable.NewParserError(rest, "extra characters at the end of a local time")
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
v.Set(reflect.ValueOf(lt))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalLocalDateTime(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
ldt, rest, err := parseLocalDateTime(value.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(rest) > 0 {
|
2022-12-27 08:29:42 +00:00
|
|
|
return unstable.NewParserError(rest, "extra characters at the end of a local date time")
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if v.Type() == timeType {
|
|
|
|
cast := ldt.AsTime(time.Local)
|
|
|
|
|
|
|
|
v.Set(reflect.ValueOf(cast))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
v.Set(reflect.ValueOf(ldt))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalBool(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
b := value.Data[0] == 't'
|
|
|
|
|
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Bool:
|
|
|
|
v.SetBool(b)
|
|
|
|
case reflect.Interface:
|
|
|
|
v.Set(reflect.ValueOf(b))
|
|
|
|
default:
|
2022-12-27 08:29:42 +00:00
|
|
|
return unstable.NewParserError(value.Data, "cannot assign boolean to a %t", b)
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalFloat(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
f, err := parseFloat(value.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Float64:
|
|
|
|
v.SetFloat(f)
|
|
|
|
case reflect.Float32:
|
|
|
|
if f > math.MaxFloat32 {
|
2022-12-27 08:29:42 +00:00
|
|
|
return unstable.NewParserError(value.Data, "number %f does not fit in a float32", f)
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
v.SetFloat(f)
|
|
|
|
case reflect.Interface:
|
|
|
|
v.Set(reflect.ValueOf(f))
|
|
|
|
default:
|
2022-12-27 08:29:42 +00:00
|
|
|
return unstable.NewParserError(value.Data, "float cannot be assigned to %s", v.Kind())
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-28 18:30:40 +01:00
|
|
|
const (
|
|
|
|
maxInt = int64(^uint(0) >> 1)
|
|
|
|
minInt = -maxInt - 1
|
|
|
|
)
|
|
|
|
|
|
|
|
// Maximum value of uint for decoding. Currently the decoder parses the integer
|
|
|
|
// into an int64. As a result, on architectures where uint is 64 bits, the
|
|
|
|
// effective maximum uint we can decode is the maximum of int64. On
|
|
|
|
// architectures where uint is 32 bits, the maximum value we can decode is
|
|
|
|
// lower: the maximum of uint32. I didn't find a way to figure out this value at
|
|
|
|
// compile time, so it is computed during initialization.
|
|
|
|
var maxUint int64 = math.MaxInt64
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
m := uint64(^uint(0))
|
|
|
|
if m < uint64(maxUint) {
|
|
|
|
maxUint = int64(m)
|
|
|
|
}
|
|
|
|
}
|
2022-05-02 14:05:18 +01:00
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalInteger(value *unstable.Node, v reflect.Value) error {
|
2023-06-01 22:20:16 +01:00
|
|
|
kind := v.Kind()
|
|
|
|
if kind == reflect.Float32 || kind == reflect.Float64 {
|
|
|
|
return d.unmarshalFloat(value, v)
|
|
|
|
}
|
|
|
|
|
2022-05-02 14:05:18 +01:00
|
|
|
i, err := parseInteger(value.Data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var r reflect.Value
|
|
|
|
|
2023-06-01 22:20:16 +01:00
|
|
|
switch kind {
|
2022-05-02 14:05:18 +01:00
|
|
|
case reflect.Int64:
|
|
|
|
v.SetInt(i)
|
|
|
|
return nil
|
|
|
|
case reflect.Int32:
|
|
|
|
if i < math.MinInt32 || i > math.MaxInt32 {
|
|
|
|
return fmt.Errorf("toml: number %d does not fit in an int32", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(int32(i))
|
|
|
|
case reflect.Int16:
|
|
|
|
if i < math.MinInt16 || i > math.MaxInt16 {
|
|
|
|
return fmt.Errorf("toml: number %d does not fit in an int16", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(int16(i))
|
|
|
|
case reflect.Int8:
|
|
|
|
if i < math.MinInt8 || i > math.MaxInt8 {
|
|
|
|
return fmt.Errorf("toml: number %d does not fit in an int8", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(int8(i))
|
|
|
|
case reflect.Int:
|
|
|
|
if i < minInt || i > maxInt {
|
|
|
|
return fmt.Errorf("toml: number %d does not fit in an int", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(int(i))
|
|
|
|
case reflect.Uint64:
|
|
|
|
if i < 0 {
|
|
|
|
return fmt.Errorf("toml: negative number %d does not fit in an uint64", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(uint64(i))
|
|
|
|
case reflect.Uint32:
|
|
|
|
if i < 0 || i > math.MaxUint32 {
|
|
|
|
return fmt.Errorf("toml: negative number %d does not fit in an uint32", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(uint32(i))
|
|
|
|
case reflect.Uint16:
|
|
|
|
if i < 0 || i > math.MaxUint16 {
|
|
|
|
return fmt.Errorf("toml: negative number %d does not fit in an uint16", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(uint16(i))
|
|
|
|
case reflect.Uint8:
|
|
|
|
if i < 0 || i > math.MaxUint8 {
|
|
|
|
return fmt.Errorf("toml: negative number %d does not fit in an uint8", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(uint8(i))
|
|
|
|
case reflect.Uint:
|
2022-09-28 18:30:40 +01:00
|
|
|
if i < 0 || i > maxUint {
|
2022-05-02 14:05:18 +01:00
|
|
|
return fmt.Errorf("toml: negative number %d does not fit in an uint", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
r = reflect.ValueOf(uint(i))
|
|
|
|
case reflect.Interface:
|
|
|
|
r = reflect.ValueOf(i)
|
|
|
|
default:
|
|
|
|
return d.typeMismatchError("integer", v.Type())
|
|
|
|
}
|
|
|
|
|
|
|
|
if !r.Type().AssignableTo(v.Type()) {
|
|
|
|
r = r.Convert(v.Type())
|
|
|
|
}
|
|
|
|
|
|
|
|
v.Set(r)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) unmarshalString(value *unstable.Node, v reflect.Value) error {
|
2022-05-02 14:05:18 +01:00
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.String:
|
|
|
|
v.SetString(string(value.Data))
|
|
|
|
case reflect.Interface:
|
|
|
|
v.Set(reflect.ValueOf(string(value.Data)))
|
|
|
|
default:
|
2022-12-27 08:29:42 +00:00
|
|
|
return unstable.NewParserError(d.p.Raw(value.Raw), "cannot store TOML string into a Go %s", v.Kind())
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleKeyValue(expr *unstable.Node, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
d.strict.EnterKeyValue(expr)
|
|
|
|
|
|
|
|
v, err := d.handleKeyValueInner(expr.Key(), expr.Value(), v)
|
|
|
|
if d.skipUntilTable {
|
|
|
|
d.strict.MissingField(expr)
|
|
|
|
d.skipUntilTable = false
|
|
|
|
}
|
|
|
|
|
|
|
|
d.strict.ExitKeyValue(expr)
|
|
|
|
|
|
|
|
return v, err
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleKeyValueInner(key unstable.Iterator, value *unstable.Node, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
if key.Next() {
|
|
|
|
// Still scoping the key
|
|
|
|
return d.handleKeyValuePart(key, value, v)
|
|
|
|
}
|
|
|
|
// Done scoping the key.
|
|
|
|
// v is whatever Go value we need to fill.
|
|
|
|
return reflect.Value{}, d.handleValue(value, v)
|
|
|
|
}
|
|
|
|
|
2023-06-01 22:20:16 +01:00
|
|
|
func (d *decoder) keyFromData(keyType reflect.Type, data []byte) (reflect.Value, error) {
|
|
|
|
switch {
|
|
|
|
case stringType.AssignableTo(keyType):
|
|
|
|
return reflect.ValueOf(string(data)), nil
|
|
|
|
|
|
|
|
case stringType.ConvertibleTo(keyType):
|
|
|
|
return reflect.ValueOf(string(data)).Convert(keyType), nil
|
|
|
|
|
|
|
|
case keyType.Implements(textUnmarshalerType):
|
|
|
|
mk := reflect.New(keyType.Elem())
|
|
|
|
if err := mk.Interface().(encoding.TextUnmarshaler).UnmarshalText(data); err != nil {
|
|
|
|
return reflect.Value{}, fmt.Errorf("toml: error unmarshalling key type %s from text: %w", stringType, err)
|
|
|
|
}
|
|
|
|
return mk, nil
|
|
|
|
|
|
|
|
case reflect.PtrTo(keyType).Implements(textUnmarshalerType):
|
|
|
|
mk := reflect.New(keyType)
|
|
|
|
if err := mk.Interface().(encoding.TextUnmarshaler).UnmarshalText(data); err != nil {
|
|
|
|
return reflect.Value{}, fmt.Errorf("toml: error unmarshalling key type %s from text: %w", stringType, err)
|
|
|
|
}
|
|
|
|
return mk.Elem(), nil
|
|
|
|
}
|
|
|
|
return reflect.Value{}, fmt.Errorf("toml: cannot convert map key of type %s to expected type %s", stringType, keyType)
|
|
|
|
}
|
|
|
|
|
2022-12-27 08:29:42 +00:00
|
|
|
func (d *decoder) handleKeyValuePart(key unstable.Iterator, value *unstable.Node, v reflect.Value) (reflect.Value, error) {
|
2022-05-02 14:05:18 +01:00
|
|
|
// contains the replacement for v
|
|
|
|
var rv reflect.Value
|
|
|
|
|
|
|
|
// First, dispatch over v to make sure it is a valid object.
|
|
|
|
// There is no guarantee over what it could be.
|
|
|
|
switch v.Kind() {
|
|
|
|
case reflect.Map:
|
|
|
|
vt := v.Type()
|
|
|
|
|
2023-06-01 22:20:16 +01:00
|
|
|
mk, err := d.keyFromData(vt.Key(), key.Node().Data)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
2022-05-02 14:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the map does not exist, create it.
|
|
|
|
if v.IsNil() {
|
|
|
|
v = reflect.MakeMap(vt)
|
|
|
|
rv = v
|
|
|
|
}
|
|
|
|
|
|
|
|
mv := v.MapIndex(mk)
|
|
|
|
set := false
|
2023-06-01 22:20:16 +01:00
|
|
|
if !mv.IsValid() || key.IsLast() {
|
2022-05-02 14:05:18 +01:00
|
|
|
set = true
|
|
|
|
mv = reflect.New(v.Type().Elem()).Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
nv, err := d.handleKeyValueInner(key, value, mv)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if nv.IsValid() {
|
|
|
|
mv = nv
|
|
|
|
set = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if set {
|
|
|
|
v.SetMapIndex(mk, mv)
|
|
|
|
}
|
|
|
|
case reflect.Struct:
|
|
|
|
path, found := structFieldPath(v, string(key.Node().Data))
|
|
|
|
if !found {
|
|
|
|
d.skipUntilTable = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.errorContext == nil {
|
|
|
|
d.errorContext = new(errorContext)
|
|
|
|
}
|
|
|
|
t := v.Type()
|
|
|
|
d.errorContext.Struct = t
|
|
|
|
d.errorContext.Field = path
|
|
|
|
|
2022-09-28 18:30:40 +01:00
|
|
|
f := fieldByIndex(v, path)
|
2023-06-01 22:20:16 +01:00
|
|
|
|
|
|
|
if !f.CanSet() {
|
|
|
|
// If the field is not settable, need to take a slower path and make a copy of
|
|
|
|
// the struct itself to a new location.
|
|
|
|
nvp := reflect.New(v.Type())
|
|
|
|
nvp.Elem().Set(v)
|
|
|
|
v = nvp.Elem()
|
|
|
|
_, err := d.handleKeyValuePart(key, value, v)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
return nvp.Elem(), nil
|
|
|
|
}
|
2022-05-02 14:05:18 +01:00
|
|
|
x, err := d.handleKeyValueInner(key, value, f)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if x.IsValid() {
|
|
|
|
f.Set(x)
|
|
|
|
}
|
|
|
|
d.errorContext.Struct = nil
|
|
|
|
d.errorContext.Field = nil
|
|
|
|
case reflect.Interface:
|
|
|
|
v = v.Elem()
|
|
|
|
|
|
|
|
// Following encoding/json: decoding an object into an
|
|
|
|
// interface{}, it needs to always hold a
|
|
|
|
// map[string]interface{}. This is for the types to be
|
|
|
|
// consistent whether a previous value was set or not.
|
|
|
|
if !v.IsValid() || v.Type() != mapStringInterfaceType {
|
|
|
|
v = makeMapStringInterface()
|
|
|
|
}
|
|
|
|
|
|
|
|
x, err := d.handleKeyValuePart(key, value, v)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if x.IsValid() {
|
|
|
|
v = x
|
|
|
|
}
|
|
|
|
rv = v
|
|
|
|
case reflect.Ptr:
|
|
|
|
elem := v.Elem()
|
|
|
|
if !elem.IsValid() {
|
|
|
|
ptr := reflect.New(v.Type().Elem())
|
|
|
|
v.Set(ptr)
|
|
|
|
rv = v
|
|
|
|
elem = ptr.Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
elem2, err := d.handleKeyValuePart(key, value, elem)
|
|
|
|
if err != nil {
|
|
|
|
return reflect.Value{}, err
|
|
|
|
}
|
|
|
|
if elem2.IsValid() {
|
|
|
|
elem = elem2
|
|
|
|
}
|
|
|
|
v.Elem().Set(elem)
|
|
|
|
default:
|
|
|
|
return reflect.Value{}, fmt.Errorf("unhandled kv part: %s", v.Kind())
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func initAndDereferencePointer(v reflect.Value) reflect.Value {
|
|
|
|
var elem reflect.Value
|
|
|
|
if v.IsNil() {
|
|
|
|
ptr := reflect.New(v.Type().Elem())
|
|
|
|
v.Set(ptr)
|
|
|
|
}
|
|
|
|
elem = v.Elem()
|
|
|
|
return elem
|
|
|
|
}
|
|
|
|
|
2022-09-28 18:30:40 +01:00
|
|
|
// Same as reflect.Value.FieldByIndex, but creates pointers if needed.
|
|
|
|
func fieldByIndex(v reflect.Value, path []int) reflect.Value {
|
|
|
|
for i, x := range path {
|
|
|
|
v = v.Field(x)
|
|
|
|
|
|
|
|
if i < len(path)-1 && v.Kind() == reflect.Ptr {
|
|
|
|
if v.IsNil() {
|
|
|
|
v.Set(reflect.New(v.Type().Elem()))
|
|
|
|
}
|
|
|
|
v = v.Elem()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2022-05-02 14:05:18 +01:00
|
|
|
type fieldPathsMap = map[string][]int
|
|
|
|
|
|
|
|
var globalFieldPathsCache atomic.Value // map[danger.TypeID]fieldPathsMap
|
|
|
|
|
|
|
|
func structFieldPath(v reflect.Value, name string) ([]int, bool) {
|
|
|
|
t := v.Type()
|
|
|
|
|
|
|
|
cache, _ := globalFieldPathsCache.Load().(map[danger.TypeID]fieldPathsMap)
|
|
|
|
fieldPaths, ok := cache[danger.MakeTypeID(t)]
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
fieldPaths = map[string][]int{}
|
|
|
|
|
|
|
|
forEachField(t, nil, func(name string, path []int) {
|
|
|
|
fieldPaths[name] = path
|
|
|
|
// extra copy for the case-insensitive match
|
|
|
|
fieldPaths[strings.ToLower(name)] = path
|
|
|
|
})
|
|
|
|
|
|
|
|
newCache := make(map[danger.TypeID]fieldPathsMap, len(cache)+1)
|
|
|
|
newCache[danger.MakeTypeID(t)] = fieldPaths
|
|
|
|
for k, v := range cache {
|
|
|
|
newCache[k] = v
|
|
|
|
}
|
|
|
|
globalFieldPathsCache.Store(newCache)
|
|
|
|
}
|
|
|
|
|
|
|
|
path, ok := fieldPaths[name]
|
|
|
|
if !ok {
|
|
|
|
path, ok = fieldPaths[strings.ToLower(name)]
|
|
|
|
}
|
|
|
|
return path, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func forEachField(t reflect.Type, path []int, do func(name string, path []int)) {
|
|
|
|
n := t.NumField()
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
f := t.Field(i)
|
|
|
|
|
|
|
|
if !f.Anonymous && f.PkgPath != "" {
|
|
|
|
// only consider exported fields.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldPath := append(path, i)
|
|
|
|
fieldPath = fieldPath[:len(fieldPath):len(fieldPath)]
|
|
|
|
|
|
|
|
name := f.Tag.Get("toml")
|
|
|
|
if name == "-" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if i := strings.IndexByte(name, ','); i >= 0 {
|
|
|
|
name = name[:i]
|
|
|
|
}
|
2022-09-28 18:30:40 +01:00
|
|
|
|
|
|
|
if f.Anonymous && name == "" {
|
|
|
|
t2 := f.Type
|
|
|
|
if t2.Kind() == reflect.Ptr {
|
|
|
|
t2 = t2.Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
if t2.Kind() == reflect.Struct {
|
|
|
|
forEachField(t2, fieldPath, do)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-05-02 14:05:18 +01:00
|
|
|
if name == "" {
|
|
|
|
name = f.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
do(name, fieldPath)
|
|
|
|
}
|
|
|
|
}
|