Documentation ¶
Index ¶
- Constants
- Variables
- func FormatError(e error, colored, inclSource bool) string
- func Marshal(v interface{}) ([]byte, error)
- func MarshalWithOptions(v interface{}, opts ...EncodeOption) ([]byte, error)
- func Unmarshal(data []byte, v interface{}) error
- func UnmarshalWithOptions(data []byte, v interface{}, opts ...DecodeOption) error
- func ValueToNode(v interface{}, opts ...EncodeOption) (ast.Node, error)
- type BytesMarshaler
- type BytesUnmarshaler
- type DecodeOption
- func DisallowDuplicateKey() DecodeOption
- func DisallowUnknownField() DecodeOption
- func RecursiveDir(isRecursive bool) DecodeOption
- func ReferenceDirs(dirs ...string) DecodeOption
- func ReferenceFiles(files ...string) DecodeOption
- func ReferenceReaders(readers ...io.Reader) DecodeOption
- func Strict() DecodeOption
- func UseOrderedMap() DecodeOption
- func Validator(v StructValidator) DecodeOption
- type Decoder
- type EncodeOption
- type Encoder
- type FieldError
- type InterfaceMarshaler
- type InterfaceUnmarshaler
- type IsZeroer
- type MapItem
- type MapSlice
- type Path
- func (p *Path) AnnotateSource(source []byte, colored bool) ([]byte, error)
- func (p *Path) Filter(target, v interface{}) error
- func (p *Path) FilterFile(f *ast.File) (ast.Node, error)
- func (p *Path) FilterNode(node ast.Node) (ast.Node, error)
- func (p *Path) MergeFromFile(dst *ast.File, src *ast.File) error
- func (p *Path) MergeFromNode(dst *ast.File, src ast.Node) error
- func (p *Path) MergeFromReader(dst *ast.File, src io.Reader) error
- func (p *Path) Read(r io.Reader, v interface{}) error
- func (p *Path) ReadNode(r io.Reader) (ast.Node, error)
- func (p *Path) ReplaceWithFile(dst *ast.File, src *ast.File) error
- func (p *Path) ReplaceWithNode(dst *ast.File, node ast.Node) error
- func (p *Path) ReplaceWithReader(dst *ast.File, src io.Reader) error
- func (p *Path) String() string
- type PathBuilder
- type StructField
- type StructFieldMap
- type StructValidator
Examples ¶
Constants ¶
const (
// DefaultIndentSpaces default number of space for indent
DefaultIndentSpaces = 2
)
const (
// StructTagName tag keyword for Marshal/Unmarshal
StructTagName = "yaml"
)
Variables ¶
Functions ¶
func FormatError ¶
FormatError is a utility function that takes advantage of the metadata stored in the errors returned by this package's parser.
If the second argument `colored` is true, the error message is colorized. If the third argument `inclSource` is true, the error message will contain snippets of the YAML source that was used.
func Marshal ¶
Marshal serializes the value provided into a YAML document. The structure of the generated document will reflect the structure of the value itself. Maps and pointers (to struct, string, int, etc) are accepted as the in value.
Struct fields are only marshalled if they are exported (have an upper case first letter), and are marshalled using the field name lowercased as the default key. Custom keys may be defined via the "yaml" name in the field tag: the content preceding the first comma is used as the key, and the following comma-separated options are used to tweak the marshalling process. Conflicting names result in a runtime error.
The field tag format accepted is:
`(...) yaml:"[<key>][,<flag1>[,<flag2>]]" (...)`
The following flags are currently supported:
omitempty Only include the field if it's not set to the zero value for the type or to empty slices or maps. Zero valued structs will be omitted if all their public fields are zero, unless they implement an IsZero method (see the IsZeroer interface type), in which case the field will be included if that method returns true. flow Marshal using a flow style (useful for structs, sequences and maps). inline Inline the field, which must be a struct or a map, causing all of its fields or keys to be processed as if they were part of the outer struct. For maps, keys must not conflict with the yaml keys of other struct fields. anchor Marshal with anchor. If want to define anchor name explicitly, use anchor=name style. Otherwise, if used 'anchor' name only, used the field name lowercased as the anchor name alias Marshal with alias. If want to define alias name explicitly, use alias=name style. Otherwise, If omitted alias name and the field type is pointer type, assigned anchor name automatically from same pointer address.
In addition, if the key is "-", the field is ignored.
For example:
type T struct { F int `yaml:"a,omitempty"` B int } yaml.Marshal(&T{B: 2}) // Returns "b: 2\n" yaml.Marshal(&T{F: 1}) // Returns "a: 1\nb: 0\n"
func MarshalWithOptions ¶ added in v1.8.0
func MarshalWithOptions(v interface{}, opts ...EncodeOption) ([]byte, error)
MarshalWithOptions serializes the value provided into a YAML document with EncodeOptions.
func Unmarshal ¶
Unmarshal decodes the first document found within the in byte slice and assigns decoded values into the out value.
Struct fields are only unmarshalled if they are exported (have an upper case first letter), and are unmarshalled using the field name lowercased as the default key. Custom keys may be defined via the "yaml" name in the field tag: the content preceding the first comma is used as the key, and the following comma-separated options are used to tweak the marshalling process (see Marshal). Conflicting names result in a runtime error.
For example:
type T struct { F int `yaml:"a,omitempty"` B int } var t T yaml.Unmarshal([]byte("a: 1\nb: 2"), &t)
See the documentation of Marshal for the format of tags and a list of supported tag options.
func UnmarshalWithOptions ¶ added in v1.8.0
func UnmarshalWithOptions(data []byte, v interface{}, opts ...DecodeOption) error
UnmarshalWithOptions decodes with DecodeOptions the first document found within the in byte slice and assigns decoded values into the out value.
func ValueToNode ¶ added in v1.8.0
func ValueToNode(v interface{}, opts ...EncodeOption) (ast.Node, error)
ValueToNode convert from value to ast.Node.
Types ¶
type BytesMarshaler ¶
BytesMarshaler interface may be implemented by types to customize their behavior when being marshaled into a YAML document. The returned value is marshaled in place of the original value implementing Marshaler.
If an error is returned by MarshalYAML, the marshaling procedure stops and returns with the provided error.
type BytesUnmarshaler ¶
BytesUnmarshaler interface may be implemented by types to customize their behavior when being unmarshaled from a YAML document.
type DecodeOption ¶
DecodeOption functional option type for Decoder
func DisallowDuplicateKey ¶ added in v1.6.1
func DisallowDuplicateKey() DecodeOption
DisallowDuplicateKey causes an error when mapping keys that are duplicates
func DisallowUnknownField ¶ added in v1.1.3
func DisallowUnknownField() DecodeOption
DisallowUnknownField causes the Decoder to return an error when the destination is a struct and the input contains object keys which do not match any non-ignored, exported fields in the destination.
func RecursiveDir ¶
func RecursiveDir(isRecursive bool) DecodeOption
RecursiveDir search yaml file recursively from passed dirs by ReferenceDirs option
func ReferenceDirs ¶
func ReferenceDirs(dirs ...string) DecodeOption
ReferenceDirs pass to Decoder that reference to anchor defined by files under the passed dirs
func ReferenceFiles ¶
func ReferenceFiles(files ...string) DecodeOption
ReferenceFiles pass to Decoder that reference to anchor defined by passed files
func ReferenceReaders ¶
func ReferenceReaders(readers ...io.Reader) DecodeOption
ReferenceReaders pass to Decoder that reference to anchor defined by passed readers
func Strict ¶ added in v1.6.1
func Strict() DecodeOption
Strict enable DisallowUnknownField and DisallowDuplicateKey
func UseOrderedMap ¶ added in v1.5.0
func UseOrderedMap() DecodeOption
UseOrderedMap can be interpreted as a map, and uses MapSlice ( ordered map ) aggressively if there is no type specification
func Validator ¶
func Validator(v StructValidator) DecodeOption
Validator set StructValidator instance to Decoder
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
Decoder reads and decodes YAML values from an input stream.
func NewDecoder ¶
func NewDecoder(r io.Reader, opts ...DecodeOption) *Decoder
NewDecoder returns a new decoder that reads from r.
type EncodeOption ¶
EncodeOption functional option type for Encoder
func MarshalAnchor ¶ added in v1.1.9
func MarshalAnchor(callback func(*ast.AnchorNode, interface{}) error) EncodeOption
MarshalAnchor call back if encoder find an anchor during encoding
type Encoder ¶
type Encoder struct {
// contains filtered or unexported fields
}
Encoder writes YAML values to an output stream.
func NewEncoder ¶
func NewEncoder(w io.Writer, opts ...EncodeOption) *Encoder
NewEncoder returns a new encoder that writes to w. The Encoder should be closed after use to flush all data to w.
func (*Encoder) Close ¶
Close closes the encoder by writing any remaining data. It does not write a stream terminating string "...".
func (*Encoder) Encode ¶
Encode writes the YAML encoding of v to the stream. If multiple items are encoded to the stream, the second and subsequent document will be preceded with a "---" document separator, but the first will not.
See the documentation for Marshal for details about the conversion of Go values to YAML.
type FieldError ¶
type FieldError interface {
StructField() string
}
FieldError need to implement StructField method only ( see https://godoc.org/gopkg.in/go-playground/validator.v9#FieldError )
type InterfaceMarshaler ¶
type InterfaceMarshaler interface {
MarshalYAML() (interface{}, error)
}
InterfaceMarshaler interface has MarshalYAML compatible with github.com/go-yaml/yaml package.
type InterfaceUnmarshaler ¶
InterfaceUnmarshaler interface has UnmarshalYAML compatible with github.com/go-yaml/yaml package.
type IsZeroer ¶
type IsZeroer interface {
IsZero() bool
}
IsZeroer is used to check whether an object is zero to determine whether it should be omitted when marshaling with the omitempty flag. One notable implementation is time.Time.
type MapSlice ¶
type MapSlice []MapItem
MapSlice encodes and decodes as a YAML map. The order of keys is preserved when encoding and decoding.
type Path ¶ added in v1.7.0
type Path struct {
// contains filtered or unexported fields
}
Path represent YAMLPath ( like a JSONPath ).
func PathString ¶ added in v1.7.0
PathString create Path from string
YAMLPath rule $ : the root object/element . : child operator .. : recursive descent [num] : object/element of array by number [*] : all objects/elements for array.
func (*Path) AnnotateSource ¶ added in v1.8.0
AnnotateSource add annotation to passed source ( see section 5.1 in README.md ).
Example ¶
yml := ` a: 1 b: "hello" ` var v struct { A int B string } if err := yaml.Unmarshal([]byte(yml), &v); err != nil { panic(err) } if v.A != 2 { // output error with YAML source path, err := yaml.PathString("$.a") if err != nil { log.Fatal(err) } source, err := path.AnnotateSource([]byte(yml), false) if err != nil { log.Fatal(err) } fmt.Printf("a value expected 2 but actual %d:\n%s\n", v.A, string(source)) }
Output: a value expected 2 but actual 1: > 2 | a: 1 ^ 3 | b: "hello"
func (*Path) FilterFile ¶ added in v1.7.0
FilterFile filter from ast.File by YAMLPath.
func (*Path) FilterNode ¶ added in v1.7.0
FilterNode filter from node by YAMLPath.
func (*Path) MergeFromFile ¶ added in v1.8.0
MergeFromFile merge ast.File into ast.File.
func (*Path) MergeFromNode ¶ added in v1.8.0
MergeFromNode merge ast.Node into ast.File.
func (*Path) MergeFromReader ¶ added in v1.8.0
MergeFromReader merge YAML text into ast.File.
func (*Path) ReplaceWithFile ¶ added in v1.8.0
ReplaceWithFile replace ast.File with ast.File.
func (*Path) ReplaceWithNode ¶ added in v1.8.0
ReplaceNode replace ast.File with ast.Node.
func (*Path) ReplaceWithReader ¶ added in v1.8.0
ReplaceWithReader replace ast.File with io.Reader.
type PathBuilder ¶ added in v1.7.0
type PathBuilder struct {
// contains filtered or unexported fields
}
PathBuilder represent builder for YAMLPath.
func (*PathBuilder) Build ¶ added in v1.7.0
func (b *PathBuilder) Build() *Path
Build build YAMLPath.
func (*PathBuilder) Child ¶ added in v1.7.0
func (b *PathBuilder) Child(name string) *PathBuilder
Child add '.name' to current path.
func (*PathBuilder) Index ¶ added in v1.7.0
func (b *PathBuilder) Index(idx uint) *PathBuilder
Index add '[idx]' to current path.
func (*PathBuilder) IndexAll ¶ added in v1.7.0
func (b *PathBuilder) IndexAll() *PathBuilder
IndexAll add '[*]' to current path.
func (*PathBuilder) Recursive ¶ added in v1.7.0
func (b *PathBuilder) Recursive(selector string) *PathBuilder
Recursive add '..selector' to current path.
func (*PathBuilder) Root ¶ added in v1.7.0
func (b *PathBuilder) Root() *PathBuilder
Root add '$' to current path.
type StructField ¶
type StructField struct { FieldName string RenderName string AnchorName string AliasName string IsAutoAnchor bool IsAutoAlias bool IsOmitEmpty bool IsFlow bool IsInline bool }
StructField information for each the field in structure
type StructFieldMap ¶
type StructFieldMap map[string]*StructField
type StructValidator ¶
type StructValidator interface {
Struct(interface{}) error
}
StructValidator need to implement Struct method only ( see https://godoc.org/gopkg.in/go-playground/validator.v9#Validate.Struct )