mirror of
https://github.com/golang/go
synced 2024-11-21 22:04:39 -07:00
encoding/xml: add, support Marshaler interface
See golang.org/s/go12xml for design. Repeat of CL 12603044, which was submitted accidentally and then rolled back. Fixes #2771. Fixes #4169. Fixes #5975. Fixes #6125. R=golang-dev CC=golang-dev https://golang.org/cl/12919043
This commit is contained in:
parent
84b0842a59
commit
54bdfc007f
@ -92,7 +92,6 @@ pkg encoding/json, method (Number) String() string
|
|||||||
pkg encoding/json, type Number string
|
pkg encoding/json, type Number string
|
||||||
pkg encoding/xml, func EscapeText(io.Writer, []uint8) error
|
pkg encoding/xml, func EscapeText(io.Writer, []uint8) error
|
||||||
pkg encoding/xml, method (*Encoder) Indent(string, string)
|
pkg encoding/xml, method (*Encoder) Indent(string, string)
|
||||||
pkg encoding/xml, method (Encoder) ReadFrom(io.Reader) (int64, error)
|
|
||||||
pkg encoding/xml, type Decoder struct, DefaultSpace string
|
pkg encoding/xml, type Decoder struct, DefaultSpace string
|
||||||
pkg go/ast, func NewCommentMap(*token.FileSet, Node, []*CommentGroup) CommentMap
|
pkg go/ast, func NewCommentMap(*token.FileSet, Node, []*CommentGroup) CommentMap
|
||||||
pkg go/ast, method (CommentMap) Comments() []*CommentGroup
|
pkg go/ast, method (CommentMap) Comments() []*CommentGroup
|
||||||
|
@ -2425,13 +2425,6 @@ pkg encoding/xml, method (*UnsupportedTypeError) Error() string
|
|||||||
pkg encoding/xml, method (CharData) Copy() CharData
|
pkg encoding/xml, method (CharData) Copy() CharData
|
||||||
pkg encoding/xml, method (Comment) Copy() Comment
|
pkg encoding/xml, method (Comment) Copy() Comment
|
||||||
pkg encoding/xml, method (Directive) Copy() Directive
|
pkg encoding/xml, method (Directive) Copy() Directive
|
||||||
pkg encoding/xml, method (Encoder) Available() int
|
|
||||||
pkg encoding/xml, method (Encoder) Buffered() int
|
|
||||||
pkg encoding/xml, method (Encoder) Flush() error
|
|
||||||
pkg encoding/xml, method (Encoder) Write([]uint8) (int, error)
|
|
||||||
pkg encoding/xml, method (Encoder) WriteByte(uint8) error
|
|
||||||
pkg encoding/xml, method (Encoder) WriteRune(int32) (int, error)
|
|
||||||
pkg encoding/xml, method (Encoder) WriteString(string) (int, error)
|
|
||||||
pkg encoding/xml, method (ProcInst) Copy() ProcInst
|
pkg encoding/xml, method (ProcInst) Copy() ProcInst
|
||||||
pkg encoding/xml, method (StartElement) Copy() StartElement
|
pkg encoding/xml, method (StartElement) Copy() StartElement
|
||||||
pkg encoding/xml, method (UnmarshalError) Error() string
|
pkg encoding/xml, method (UnmarshalError) Error() string
|
||||||
|
@ -75,6 +75,41 @@ func Marshal(v interface{}) ([]byte, error) {
|
|||||||
return b.Bytes(), nil
|
return b.Bytes(), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Marshaler is the interface implemented by objects that can marshal
|
||||||
|
// themselves into valid XML elements.
|
||||||
|
//
|
||||||
|
// MarshalXML encodes the receiver as zero or more XML elements.
|
||||||
|
// By convention, arrays or slices are typically encoded as a sequence
|
||||||
|
// of elements, one per entry.
|
||||||
|
// Using start as the element tag is not required, but doing so
|
||||||
|
// will enable Unmarshal to match the XML elements to the correct
|
||||||
|
// struct field.
|
||||||
|
// One common implementation strategy is to construct a separate
|
||||||
|
// value with a layout corresponding to the desired XML and then
|
||||||
|
// to encode it using e.EncodeElement.
|
||||||
|
// Another common strategy is to use repeated calls to e.EncodeToken
|
||||||
|
// to generate the XML output one token at a time.
|
||||||
|
// The sequence of encoded tokens must make up zero or more valid
|
||||||
|
// XML elements.
|
||||||
|
type Marshaler interface {
|
||||||
|
MarshalXML(e *Encoder, start StartElement) error
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarshalerAttr is the interface implemented by objects that can marshal
|
||||||
|
// themselves into valid XML attributes.
|
||||||
|
//
|
||||||
|
// MarshalXMLAttr returns an XML attribute with the encoded value of the receiver.
|
||||||
|
// Using name as the attribute name is not required, but doing so
|
||||||
|
// will enable Unmarshal to match the attribute to the correct
|
||||||
|
// struct field.
|
||||||
|
// If MarshalXMLAttr returns the zero attribute Attr{}, no attribute
|
||||||
|
// will be generated in the output.
|
||||||
|
// MarshalXMLAttr is used only for struct fields with the
|
||||||
|
// "attr" option in the field tag.
|
||||||
|
type MarshalerAttr interface {
|
||||||
|
MarshalXMLAttr(name Name) (Attr, error)
|
||||||
|
}
|
||||||
|
|
||||||
// MarshalIndent works like Marshal, but each XML element begins on a new
|
// MarshalIndent works like Marshal, but each XML element begins on a new
|
||||||
// indented line that starts with prefix and is followed by one or more
|
// indented line that starts with prefix and is followed by one or more
|
||||||
// copies of indent according to the nesting depth.
|
// copies of indent according to the nesting depth.
|
||||||
@ -90,20 +125,22 @@ func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error) {
|
|||||||
|
|
||||||
// An Encoder writes XML data to an output stream.
|
// An Encoder writes XML data to an output stream.
|
||||||
type Encoder struct {
|
type Encoder struct {
|
||||||
printer
|
p printer
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewEncoder returns a new encoder that writes to w.
|
// NewEncoder returns a new encoder that writes to w.
|
||||||
func NewEncoder(w io.Writer) *Encoder {
|
func NewEncoder(w io.Writer) *Encoder {
|
||||||
return &Encoder{printer{Writer: bufio.NewWriter(w)}}
|
e := &Encoder{printer{Writer: bufio.NewWriter(w)}}
|
||||||
|
e.p.encoder = e
|
||||||
|
return e
|
||||||
}
|
}
|
||||||
|
|
||||||
// Indent sets the encoder to generate XML in which each element
|
// Indent sets the encoder to generate XML in which each element
|
||||||
// begins on a new indented line that starts with prefix and is followed by
|
// begins on a new indented line that starts with prefix and is followed by
|
||||||
// one or more copies of indent according to the nesting depth.
|
// one or more copies of indent according to the nesting depth.
|
||||||
func (enc *Encoder) Indent(prefix, indent string) {
|
func (enc *Encoder) Indent(prefix, indent string) {
|
||||||
enc.prefix = prefix
|
enc.p.prefix = prefix
|
||||||
enc.indent = indent
|
enc.p.indent = indent
|
||||||
}
|
}
|
||||||
|
|
||||||
// Encode writes the XML encoding of v to the stream.
|
// Encode writes the XML encoding of v to the stream.
|
||||||
@ -111,15 +148,83 @@ func (enc *Encoder) Indent(prefix, indent string) {
|
|||||||
// See the documentation for Marshal for details about the conversion
|
// See the documentation for Marshal for details about the conversion
|
||||||
// of Go values to XML.
|
// of Go values to XML.
|
||||||
func (enc *Encoder) Encode(v interface{}) error {
|
func (enc *Encoder) Encode(v interface{}) error {
|
||||||
err := enc.marshalValue(reflect.ValueOf(v), nil)
|
err := enc.p.marshalValue(reflect.ValueOf(v), nil, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return enc.Flush()
|
return enc.p.Flush()
|
||||||
|
}
|
||||||
|
|
||||||
|
// EncodeElement writes the XML encoding of v to the stream,
|
||||||
|
// using start as the outermost tag in the encoding.
|
||||||
|
//
|
||||||
|
// See the documentation for Marshal for details about the conversion
|
||||||
|
// of Go values to XML.
|
||||||
|
func (enc *Encoder) EncodeElement(v interface{}, start StartElement) error {
|
||||||
|
err := enc.p.marshalValue(reflect.ValueOf(v), nil, &start)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return enc.p.Flush()
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
endComment = []byte("-->")
|
||||||
|
endProcInst = []byte("?>")
|
||||||
|
endDirective = []byte(">")
|
||||||
|
)
|
||||||
|
|
||||||
|
// EncodeToken writes the given XML token to the stream.
|
||||||
|
// It returns an error if StartElement and EndElement tokens are not properly matched.
|
||||||
|
func (enc *Encoder) EncodeToken(t Token) error {
|
||||||
|
p := &enc.p
|
||||||
|
switch t := t.(type) {
|
||||||
|
case StartElement:
|
||||||
|
if err := p.writeStart(&t); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
case EndElement:
|
||||||
|
if err := p.writeEnd(t.Name); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
case CharData:
|
||||||
|
EscapeText(p, t)
|
||||||
|
case Comment:
|
||||||
|
if bytes.Contains(t, endComment) {
|
||||||
|
return fmt.Errorf("xml: EncodeToken of Comment containing --> marker")
|
||||||
|
}
|
||||||
|
p.WriteString("<!--")
|
||||||
|
p.Write(t)
|
||||||
|
p.WriteString("-->")
|
||||||
|
return p.cachedWriteError()
|
||||||
|
case ProcInst:
|
||||||
|
if t.Target == "xml" || !isNameString(t.Target) {
|
||||||
|
return fmt.Errorf("xml: EncodeToken of ProcInst with invalid Target")
|
||||||
|
}
|
||||||
|
if bytes.Contains(t.Inst, endProcInst) {
|
||||||
|
return fmt.Errorf("xml: EncodeToken of ProcInst containing ?> marker")
|
||||||
|
}
|
||||||
|
p.WriteString("<?")
|
||||||
|
p.WriteString(t.Target)
|
||||||
|
if len(t.Inst) > 0 {
|
||||||
|
p.WriteByte(' ')
|
||||||
|
p.Write(t.Inst)
|
||||||
|
}
|
||||||
|
p.WriteString("?>")
|
||||||
|
case Directive:
|
||||||
|
if bytes.Contains(t, endDirective) {
|
||||||
|
return fmt.Errorf("xml: EncodeToken of Directive containing > marker")
|
||||||
|
}
|
||||||
|
p.WriteString("<!")
|
||||||
|
p.Write(t)
|
||||||
|
p.WriteString(">")
|
||||||
|
}
|
||||||
|
return p.cachedWriteError()
|
||||||
}
|
}
|
||||||
|
|
||||||
type printer struct {
|
type printer struct {
|
||||||
*bufio.Writer
|
*bufio.Writer
|
||||||
|
encoder *Encoder
|
||||||
seq int
|
seq int
|
||||||
indent string
|
indent string
|
||||||
prefix string
|
prefix string
|
||||||
@ -128,13 +233,15 @@ type printer struct {
|
|||||||
putNewline bool
|
putNewline bool
|
||||||
attrNS map[string]string // map prefix -> name space
|
attrNS map[string]string // map prefix -> name space
|
||||||
attrPrefix map[string]string // map name space -> prefix
|
attrPrefix map[string]string // map name space -> prefix
|
||||||
|
prefixes []string
|
||||||
|
tags []Name
|
||||||
}
|
}
|
||||||
|
|
||||||
// createAttrPrefix finds the name space prefix attribute to use for the given name space,
|
// createAttrPrefix finds the name space prefix attribute to use for the given name space,
|
||||||
// defining a new prefix if necessary. It returns the prefix and whether it is new.
|
// defining a new prefix if necessary. It returns the prefix.
|
||||||
func (p *printer) createAttrPrefix(url string) (prefix string, isNew bool) {
|
func (p *printer) createAttrPrefix(url string) string {
|
||||||
if prefix = p.attrPrefix[url]; prefix != "" {
|
if prefix := p.attrPrefix[url]; prefix != "" {
|
||||||
return prefix, false
|
return prefix
|
||||||
}
|
}
|
||||||
|
|
||||||
// The "http://www.w3.org/XML/1998/namespace" name space is predefined as "xml"
|
// The "http://www.w3.org/XML/1998/namespace" name space is predefined as "xml"
|
||||||
@ -142,7 +249,7 @@ func (p *printer) createAttrPrefix(url string) (prefix string, isNew bool) {
|
|||||||
// (The "http://www.w3.org/2000/xmlns/" name space is also predefined as "xmlns",
|
// (The "http://www.w3.org/2000/xmlns/" name space is also predefined as "xmlns",
|
||||||
// but users should not be trying to use that one directly - that's our job.)
|
// but users should not be trying to use that one directly - that's our job.)
|
||||||
if url == xmlURL {
|
if url == xmlURL {
|
||||||
return "xml", false
|
return "xml"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Need to define a new name space.
|
// Need to define a new name space.
|
||||||
@ -153,7 +260,7 @@ func (p *printer) createAttrPrefix(url string) (prefix string, isNew bool) {
|
|||||||
|
|
||||||
// Pick a name. We try to use the final element of the path
|
// Pick a name. We try to use the final element of the path
|
||||||
// but fall back to _.
|
// but fall back to _.
|
||||||
prefix = strings.TrimRight(url, "/")
|
prefix := strings.TrimRight(url, "/")
|
||||||
if i := strings.LastIndex(prefix, "/"); i >= 0 {
|
if i := strings.LastIndex(prefix, "/"); i >= 0 {
|
||||||
prefix = prefix[i+1:]
|
prefix = prefix[i+1:]
|
||||||
}
|
}
|
||||||
@ -183,7 +290,9 @@ func (p *printer) createAttrPrefix(url string) (prefix string, isNew bool) {
|
|||||||
EscapeText(p, []byte(url))
|
EscapeText(p, []byte(url))
|
||||||
p.WriteString(`" `)
|
p.WriteString(`" `)
|
||||||
|
|
||||||
return prefix, true
|
p.prefixes = append(p.prefixes, prefix)
|
||||||
|
|
||||||
|
return prefix
|
||||||
}
|
}
|
||||||
|
|
||||||
// deleteAttrPrefix removes an attribute name space prefix.
|
// deleteAttrPrefix removes an attribute name space prefix.
|
||||||
@ -192,9 +301,33 @@ func (p *printer) deleteAttrPrefix(prefix string) {
|
|||||||
delete(p.attrNS, prefix)
|
delete(p.attrNS, prefix)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *printer) markPrefix() {
|
||||||
|
p.prefixes = append(p.prefixes, "")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *printer) popPrefix() {
|
||||||
|
for len(p.prefixes) > 0 {
|
||||||
|
prefix := p.prefixes[len(p.prefixes)-1]
|
||||||
|
p.prefixes = p.prefixes[:len(p.prefixes)-1]
|
||||||
|
if prefix == "" {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
p.deleteAttrPrefix(prefix)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
marshalerType = reflect.TypeOf((*Marshaler)(nil)).Elem()
|
||||||
|
marshalerAttrType = reflect.TypeOf((*MarshalerAttr)(nil)).Elem()
|
||||||
|
)
|
||||||
|
|
||||||
// marshalValue writes one or more XML elements representing val.
|
// marshalValue writes one or more XML elements representing val.
|
||||||
// If val was obtained from a struct field, finfo must have its details.
|
// If val was obtained from a struct field, finfo must have its details.
|
||||||
func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo) error {
|
func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo, startTemplate *StartElement) error {
|
||||||
|
if startTemplate != nil && startTemplate.Name.Local == "" {
|
||||||
|
return fmt.Errorf("xml: EncodeElement of StartElement with missing name")
|
||||||
|
}
|
||||||
|
|
||||||
if !val.IsValid() {
|
if !val.IsValid() {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -210,13 +343,25 @@ func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo) error {
|
|||||||
if val.IsNil() {
|
if val.IsNil() {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return p.marshalValue(val.Elem(), finfo)
|
val = val.Elem()
|
||||||
|
typ = val.Type()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for marshaler.
|
||||||
|
if typ.Name() != "" && val.CanAddr() {
|
||||||
|
pv := val.Addr()
|
||||||
|
if pv.CanInterface() && pv.Type().Implements(marshalerType) {
|
||||||
|
return p.marshalInterface(pv.Interface().(Marshaler), pv.Type(), finfo, startTemplate)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if val.CanInterface() && typ.Implements(marshalerType) {
|
||||||
|
return p.marshalInterface(val.Interface().(Marshaler), typ, finfo, startTemplate)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Slices and arrays iterate over the elements. They do not have an enclosing tag.
|
// Slices and arrays iterate over the elements. They do not have an enclosing tag.
|
||||||
if (kind == reflect.Slice || kind == reflect.Array) && typ.Elem().Kind() != reflect.Uint8 {
|
if (kind == reflect.Slice || kind == reflect.Array) && typ.Elem().Kind() != reflect.Uint8 {
|
||||||
for i, n := 0, val.Len(); i < n; i++ {
|
for i, n := 0, val.Len(); i < n; i++ {
|
||||||
if err := p.marshalValue(val.Index(i), finfo); err != nil {
|
if err := p.marshalValue(val.Index(i), finfo, startTemplate); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -228,40 +373,34 @@ func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create start element.
|
||||||
// Precedence for the XML element name is:
|
// Precedence for the XML element name is:
|
||||||
|
// 0. startTemplate
|
||||||
// 1. XMLName field in underlying struct;
|
// 1. XMLName field in underlying struct;
|
||||||
// 2. field name/tag in the struct field; and
|
// 2. field name/tag in the struct field; and
|
||||||
// 3. type name
|
// 3. type name
|
||||||
var xmlns, name string
|
var start StartElement
|
||||||
if tinfo.xmlname != nil {
|
|
||||||
|
if startTemplate != nil {
|
||||||
|
start.Name = startTemplate.Name
|
||||||
|
start.Attr = append(start.Attr, startTemplate.Attr...)
|
||||||
|
} else if tinfo.xmlname != nil {
|
||||||
xmlname := tinfo.xmlname
|
xmlname := tinfo.xmlname
|
||||||
if xmlname.name != "" {
|
if xmlname.name != "" {
|
||||||
xmlns, name = xmlname.xmlns, xmlname.name
|
start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
|
||||||
} else if v, ok := xmlname.value(val).Interface().(Name); ok && v.Local != "" {
|
} else if v, ok := xmlname.value(val).Interface().(Name); ok && v.Local != "" {
|
||||||
xmlns, name = v.Space, v.Local
|
start.Name = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if name == "" && finfo != nil {
|
if start.Name.Local == "" && finfo != nil {
|
||||||
xmlns, name = finfo.xmlns, finfo.name
|
start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
|
||||||
}
|
}
|
||||||
if name == "" {
|
if start.Name.Local == "" {
|
||||||
name = typ.Name()
|
name := typ.Name()
|
||||||
if name == "" {
|
if name == "" {
|
||||||
return &UnsupportedTypeError{typ}
|
return &UnsupportedTypeError{typ}
|
||||||
}
|
}
|
||||||
}
|
start.Name.Local = name
|
||||||
|
|
||||||
p.writeIndent(1)
|
|
||||||
p.WriteByte('<')
|
|
||||||
p.WriteString(name)
|
|
||||||
|
|
||||||
if xmlns != "" {
|
|
||||||
p.WriteString(` xmlns="`)
|
|
||||||
// TODO: EscapeString, to avoid the allocation.
|
|
||||||
if err := EscapeText(p, []byte(xmlns)); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
p.WriteByte('"')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Attributes
|
// Attributes
|
||||||
@ -271,70 +410,205 @@ func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
fv := finfo.value(val)
|
fv := finfo.value(val)
|
||||||
if (finfo.flags&fOmitEmpty != 0 || fv.Kind() == reflect.Ptr) && isEmptyValue(fv) {
|
name := Name{Space: finfo.xmlns, Local: finfo.name}
|
||||||
|
|
||||||
|
if finfo.flags&fOmitEmpty != 0 && isEmptyValue(fv) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
p.WriteByte(' ')
|
|
||||||
if finfo.xmlns != "" {
|
if fv.CanAddr() {
|
||||||
prefix, created := p.createAttrPrefix(finfo.xmlns)
|
pv := fv.Addr()
|
||||||
if created {
|
if pv.CanInterface() && pv.Type().Implements(marshalerAttrType) {
|
||||||
defer p.deleteAttrPrefix(prefix)
|
attr, err := pv.Interface().(MarshalerAttr).MarshalXMLAttr(name)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if attr.Name.Local != "" {
|
||||||
|
start.Attr = append(start.Attr, attr)
|
||||||
|
}
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
p.WriteString(prefix)
|
|
||||||
p.WriteByte(':')
|
|
||||||
}
|
}
|
||||||
p.WriteString(finfo.name)
|
|
||||||
p.WriteString(`="`)
|
if fv.CanInterface() && fv.Type().Implements(marshalerAttrType) {
|
||||||
// Handle pointer values by following the pointer,
|
if fv.Kind() == reflect.Interface && fv.IsNil() {
|
||||||
// Pointer is known to be non-nil because we called isEmptyValue above.
|
continue
|
||||||
if fv.Kind() == reflect.Ptr {
|
}
|
||||||
|
attr, err := fv.Interface().(MarshalerAttr).MarshalXMLAttr(name)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if attr.Name.Local != "" {
|
||||||
|
start.Attr = append(start.Attr, attr)
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dereference or skip nil pointer, interface values.
|
||||||
|
switch fv.Kind() {
|
||||||
|
case reflect.Ptr, reflect.Interface:
|
||||||
|
if fv.IsNil() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
fv = fv.Elem()
|
fv = fv.Elem()
|
||||||
}
|
}
|
||||||
if err := p.marshalSimple(fv.Type(), fv); err != nil {
|
|
||||||
|
s, b, err := p.marshalSimple(fv.Type(), fv)
|
||||||
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
p.WriteByte('"')
|
if b != nil {
|
||||||
|
s = string(b)
|
||||||
|
}
|
||||||
|
start.Attr = append(start.Attr, Attr{name, s})
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := p.writeStart(&start); err != nil {
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
p.WriteByte('>')
|
|
||||||
|
|
||||||
if val.Kind() == reflect.Struct {
|
if val.Kind() == reflect.Struct {
|
||||||
err = p.marshalStruct(tinfo, val)
|
err = p.marshalStruct(tinfo, val)
|
||||||
} else {
|
} else {
|
||||||
err = p.marshalSimple(typ, val)
|
s, b, err1 := p.marshalSimple(typ, val)
|
||||||
|
if err1 != nil {
|
||||||
|
err = err1
|
||||||
|
} else if b != nil {
|
||||||
|
EscapeText(p, b)
|
||||||
|
} else {
|
||||||
|
p.EscapeString(s)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
p.writeIndent(-1)
|
if err := p.writeEnd(start.Name); err != nil {
|
||||||
p.WriteByte('<')
|
return err
|
||||||
p.WriteByte('/')
|
}
|
||||||
p.WriteString(name)
|
|
||||||
p.WriteByte('>')
|
|
||||||
|
|
||||||
return p.cachedWriteError()
|
return p.cachedWriteError()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// marshalInterface marshals a Marshaler interface value.
|
||||||
|
func (p *printer) marshalInterface(val Marshaler, typ reflect.Type, finfo *fieldInfo, startTemplate *StartElement) error {
|
||||||
|
var start StartElement
|
||||||
|
|
||||||
|
// Precedence for the XML element name is as above,
|
||||||
|
// except that we do not look inside structs for the first field.
|
||||||
|
if startTemplate != nil {
|
||||||
|
start.Name = startTemplate.Name
|
||||||
|
start.Attr = append(start.Attr, startTemplate.Attr...)
|
||||||
|
} else if finfo != nil && finfo.name != "" {
|
||||||
|
start.Name.Local = finfo.name
|
||||||
|
start.Name.Space = finfo.xmlns
|
||||||
|
} else if typ.Name() != "" {
|
||||||
|
start.Name.Local = typ.Name()
|
||||||
|
} else {
|
||||||
|
// Must be a pointer to a named type,
|
||||||
|
// since it has the Marshaler methods.
|
||||||
|
start.Name.Local = typ.Elem().Name()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Push a marker onto the tag stack so that MarshalXML
|
||||||
|
// cannot close the XML tags that it did not open.
|
||||||
|
p.tags = append(p.tags, Name{})
|
||||||
|
n := len(p.tags)
|
||||||
|
|
||||||
|
err := val.MarshalXML(p.encoder, start)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure MarshalXML closed all its tags. p.tags[n-1] is the mark.
|
||||||
|
if len(p.tags) > n {
|
||||||
|
return fmt.Errorf("xml: %s.MarshalXML wrote invalid XML: <%s> not closed", receiverType(val), p.tags[len(p.tags)-1].Local)
|
||||||
|
}
|
||||||
|
p.tags = p.tags[:n-1]
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// writeStart writes the given start element.
|
||||||
|
func (p *printer) writeStart(start *StartElement) error {
|
||||||
|
if start.Name.Local == "" {
|
||||||
|
return fmt.Errorf("xml: start tag with no name")
|
||||||
|
}
|
||||||
|
|
||||||
|
p.tags = append(p.tags, start.Name)
|
||||||
|
p.markPrefix()
|
||||||
|
|
||||||
|
p.writeIndent(1)
|
||||||
|
p.WriteByte('<')
|
||||||
|
p.WriteString(start.Name.Local)
|
||||||
|
|
||||||
|
if start.Name.Space != "" {
|
||||||
|
p.WriteString(` xmlns="`)
|
||||||
|
p.EscapeString(start.Name.Space)
|
||||||
|
p.WriteByte('"')
|
||||||
|
}
|
||||||
|
|
||||||
|
// Attributes
|
||||||
|
for _, attr := range start.Attr {
|
||||||
|
name := attr.Name
|
||||||
|
if name.Local == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
p.WriteByte(' ')
|
||||||
|
if name.Space != "" {
|
||||||
|
p.WriteString(p.createAttrPrefix(name.Space))
|
||||||
|
p.WriteByte(':')
|
||||||
|
}
|
||||||
|
p.WriteString(name.Local)
|
||||||
|
p.WriteString(`="`)
|
||||||
|
p.EscapeString(attr.Value)
|
||||||
|
p.WriteByte('"')
|
||||||
|
}
|
||||||
|
p.WriteByte('>')
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *printer) writeEnd(name Name) error {
|
||||||
|
if name.Local == "" {
|
||||||
|
return fmt.Errorf("xml: end tag with no name")
|
||||||
|
}
|
||||||
|
if len(p.tags) == 0 || p.tags[len(p.tags)-1].Local == "" {
|
||||||
|
return fmt.Errorf("xml: end tag </%s> without start tag", name.Local)
|
||||||
|
}
|
||||||
|
if top := p.tags[len(p.tags)-1]; top != name {
|
||||||
|
if top.Local != name.Local {
|
||||||
|
return fmt.Errorf("xml: end tag </%s> does not match start tag <%s>", name.Local, top.Local)
|
||||||
|
}
|
||||||
|
return fmt.Errorf("xml: end tag </%s> in namespace %s does not match start tag <%s> in namespace %s", name.Local, name.Space, top.Local, top.Space)
|
||||||
|
}
|
||||||
|
p.tags = p.tags[:len(p.tags)-1]
|
||||||
|
|
||||||
|
p.writeIndent(-1)
|
||||||
|
p.WriteByte('<')
|
||||||
|
p.WriteByte('/')
|
||||||
|
p.WriteString(name.Local)
|
||||||
|
p.WriteByte('>')
|
||||||
|
p.popPrefix()
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
var timeType = reflect.TypeOf(time.Time{})
|
var timeType = reflect.TypeOf(time.Time{})
|
||||||
|
|
||||||
func (p *printer) marshalSimple(typ reflect.Type, val reflect.Value) error {
|
func (p *printer) marshalSimple(typ reflect.Type, val reflect.Value) (string, []byte, error) {
|
||||||
// Normally we don't see structs, but this can happen for an attribute.
|
// Normally we don't see structs, but this can happen for an attribute.
|
||||||
if val.Type() == timeType {
|
if val.Type() == timeType {
|
||||||
p.WriteString(val.Interface().(time.Time).Format(time.RFC3339Nano))
|
return val.Interface().(time.Time).Format(time.RFC3339Nano), nil, nil
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
switch val.Kind() {
|
switch val.Kind() {
|
||||||
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
||||||
p.WriteString(strconv.FormatInt(val.Int(), 10))
|
return strconv.FormatInt(val.Int(), 10), nil, nil
|
||||||
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
||||||
p.WriteString(strconv.FormatUint(val.Uint(), 10))
|
return strconv.FormatUint(val.Uint(), 10), nil, nil
|
||||||
case reflect.Float32, reflect.Float64:
|
case reflect.Float32, reflect.Float64:
|
||||||
p.WriteString(strconv.FormatFloat(val.Float(), 'g', -1, val.Type().Bits()))
|
return strconv.FormatFloat(val.Float(), 'g', -1, val.Type().Bits()), nil, nil
|
||||||
case reflect.String:
|
case reflect.String:
|
||||||
// TODO: Add EscapeString.
|
return val.String(), nil, nil
|
||||||
EscapeText(p, []byte(val.String()))
|
|
||||||
case reflect.Bool:
|
case reflect.Bool:
|
||||||
p.WriteString(strconv.FormatBool(val.Bool()))
|
return strconv.FormatBool(val.Bool()), nil, nil
|
||||||
case reflect.Array:
|
case reflect.Array:
|
||||||
// will be [...]byte
|
// will be [...]byte
|
||||||
var bytes []byte
|
var bytes []byte
|
||||||
@ -344,14 +618,12 @@ func (p *printer) marshalSimple(typ reflect.Type, val reflect.Value) error {
|
|||||||
bytes = make([]byte, val.Len())
|
bytes = make([]byte, val.Len())
|
||||||
reflect.Copy(reflect.ValueOf(bytes), val)
|
reflect.Copy(reflect.ValueOf(bytes), val)
|
||||||
}
|
}
|
||||||
EscapeText(p, bytes)
|
return "", bytes, nil
|
||||||
case reflect.Slice:
|
case reflect.Slice:
|
||||||
// will be []byte
|
// will be []byte
|
||||||
EscapeText(p, val.Bytes())
|
return "", val.Bytes(), nil
|
||||||
default:
|
|
||||||
return &UnsupportedTypeError{typ}
|
|
||||||
}
|
}
|
||||||
return p.cachedWriteError()
|
return "", nil, &UnsupportedTypeError{typ}
|
||||||
}
|
}
|
||||||
|
|
||||||
var ddBytes = []byte("--")
|
var ddBytes = []byte("--")
|
||||||
@ -361,17 +633,22 @@ func (p *printer) marshalStruct(tinfo *typeInfo, val reflect.Value) error {
|
|||||||
_, err := p.WriteString(val.Interface().(time.Time).Format(time.RFC3339Nano))
|
_, err := p.WriteString(val.Interface().(time.Time).Format(time.RFC3339Nano))
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
s := parentStack{printer: p}
|
s := parentStack{p: p}
|
||||||
for i := range tinfo.fields {
|
for i := range tinfo.fields {
|
||||||
finfo := &tinfo.fields[i]
|
finfo := &tinfo.fields[i]
|
||||||
if finfo.flags&fAttr != 0 {
|
if finfo.flags&fAttr != 0 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
vf := finfo.value(val)
|
vf := finfo.value(val)
|
||||||
// Handle pointer values by following the pointer
|
|
||||||
if vf.Kind() == reflect.Ptr && !isEmptyValue(vf) {
|
// Dereference or skip nil pointer, interface values.
|
||||||
vf = vf.Elem()
|
switch vf.Kind() {
|
||||||
|
case reflect.Ptr, reflect.Interface:
|
||||||
|
if !vf.IsNil() {
|
||||||
|
vf = vf.Elem()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
switch finfo.flags & fMode {
|
switch finfo.flags & fMode {
|
||||||
case fCharData:
|
case fCharData:
|
||||||
var scratch [64]byte
|
var scratch [64]byte
|
||||||
@ -453,14 +730,18 @@ func (p *printer) marshalStruct(tinfo *typeInfo, val reflect.Value) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
case fElement, fElement | fAny:
|
case fElement, fElement | fAny:
|
||||||
s.trim(finfo.parents)
|
if err := s.trim(finfo.parents); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
if len(finfo.parents) > len(s.stack) {
|
if len(finfo.parents) > len(s.stack) {
|
||||||
if vf.Kind() != reflect.Ptr && vf.Kind() != reflect.Interface || !vf.IsNil() {
|
if vf.Kind() != reflect.Ptr && vf.Kind() != reflect.Interface || !vf.IsNil() {
|
||||||
s.push(finfo.parents[len(s.stack):])
|
if err := s.push(finfo.parents[len(s.stack):]); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if err := p.marshalValue(vf, finfo); err != nil {
|
if err := p.marshalValue(vf, finfo, nil); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -506,14 +787,14 @@ func (p *printer) writeIndent(depthDelta int) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type parentStack struct {
|
type parentStack struct {
|
||||||
*printer
|
p *printer
|
||||||
stack []string
|
stack []string
|
||||||
}
|
}
|
||||||
|
|
||||||
// trim updates the XML context to match the longest common prefix of the stack
|
// trim updates the XML context to match the longest common prefix of the stack
|
||||||
// and the given parents. A closing tag will be written for every parent
|
// and the given parents. A closing tag will be written for every parent
|
||||||
// popped. Passing a zero slice or nil will close all the elements.
|
// popped. Passing a zero slice or nil will close all the elements.
|
||||||
func (s *parentStack) trim(parents []string) {
|
func (s *parentStack) trim(parents []string) error {
|
||||||
split := 0
|
split := 0
|
||||||
for ; split < len(parents) && split < len(s.stack); split++ {
|
for ; split < len(parents) && split < len(s.stack); split++ {
|
||||||
if parents[split] != s.stack[split] {
|
if parents[split] != s.stack[split] {
|
||||||
@ -521,23 +802,23 @@ func (s *parentStack) trim(parents []string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
for i := len(s.stack) - 1; i >= split; i-- {
|
for i := len(s.stack) - 1; i >= split; i-- {
|
||||||
s.writeIndent(-1)
|
if err := s.p.writeEnd(Name{Local: s.stack[i]}); err != nil {
|
||||||
s.WriteString("</")
|
return err
|
||||||
s.WriteString(s.stack[i])
|
}
|
||||||
s.WriteByte('>')
|
|
||||||
}
|
}
|
||||||
s.stack = parents[:split]
|
s.stack = parents[:split]
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// push adds parent elements to the stack and writes open tags.
|
// push adds parent elements to the stack and writes open tags.
|
||||||
func (s *parentStack) push(parents []string) {
|
func (s *parentStack) push(parents []string) error {
|
||||||
for i := 0; i < len(parents); i++ {
|
for i := 0; i < len(parents); i++ {
|
||||||
s.writeIndent(1)
|
if err := s.p.writeStart(&StartElement{Name: Name{Local: parents[i]}}); err != nil {
|
||||||
s.WriteByte('<')
|
return err
|
||||||
s.WriteString(parents[i])
|
}
|
||||||
s.WriteByte('>')
|
|
||||||
}
|
}
|
||||||
s.stack = append(s.stack, parents...)
|
s.stack = append(s.stack, parents...)
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// A MarshalXMLError is returned when Marshal encounters a type
|
// A MarshalXMLError is returned when Marshal encounters a type
|
||||||
|
@ -289,6 +289,31 @@ type ChardataEmptyTest struct {
|
|||||||
Contents *string `xml:",chardata"`
|
Contents *string `xml:",chardata"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type MyMarshalerTest struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ Marshaler = (*MyMarshalerTest)(nil)
|
||||||
|
|
||||||
|
func (m *MyMarshalerTest) MarshalXML(e *Encoder, start StartElement) error {
|
||||||
|
e.EncodeToken(start)
|
||||||
|
e.EncodeToken(CharData([]byte("hello world")))
|
||||||
|
e.EncodeToken(EndElement{start.Name})
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type MyMarshalerAttrTest struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ MarshalerAttr = (*MyMarshalerAttrTest)(nil)
|
||||||
|
|
||||||
|
func (m *MyMarshalerAttrTest) MarshalXMLAttr(name Name) (Attr, error) {
|
||||||
|
return Attr{name, "hello world"}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type MarshalerStruct struct {
|
||||||
|
Foo MyMarshalerAttrTest `xml:",attr"`
|
||||||
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
nameAttr = "Sarah"
|
nameAttr = "Sarah"
|
||||||
ageAttr = uint(12)
|
ageAttr = uint(12)
|
||||||
@ -844,6 +869,15 @@ var marshalTests = []struct {
|
|||||||
ExpectXML: `<Strings><A></A></Strings>`,
|
ExpectXML: `<Strings><A></A></Strings>`,
|
||||||
Value: &Strings{},
|
Value: &Strings{},
|
||||||
},
|
},
|
||||||
|
// Custom marshalers.
|
||||||
|
{
|
||||||
|
ExpectXML: `<MyMarshalerTest>hello world</MyMarshalerTest>`,
|
||||||
|
Value: &MyMarshalerTest{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ExpectXML: `<MarshalerStruct Foo="hello world"></MarshalerStruct>`,
|
||||||
|
Value: &MarshalerStruct{},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMarshal(t *testing.T) {
|
func TestMarshal(t *testing.T) {
|
||||||
|
Loading…
Reference in New Issue
Block a user