Documentation ¶
Overview ¶
Package etree provides XML services through an Element Tree abstraction.
Index ¶
- Constants
- Variables
- type Attr
- type CharData
- type Comment
- type Directive
- type Document
- func (d *Document) Copy() *Document
- func (d *Document) Indent(spaces int)
- func (d *Document) IndentTabs()
- func (d *Document) IndentWithSettings(s *IndentSettings)
- func (d *Document) ReadFrom(r io.Reader) (n int64, err error)
- func (d *Document) ReadFromBytes(b []byte) error
- func (d *Document) ReadFromFile(filepath string) error
- func (d *Document) ReadFromString(s string) error
- func (d *Document) Root() *Element
- func (d *Document) SetRoot(e *Element)
- func (d *Document) Unindent()
- func (d *Document) WriteTo(w io.Writer) (n int64, err error)
- func (d *Document) WriteToBytes() (b []byte, err error)
- func (d *Document) WriteToFile(filepath string) error
- func (d *Document) WriteToString() (s string, err error)
- type Element
- func (e *Element) AddChild(t Token)
- func (e *Element) ChildElements() []*Element
- func (e *Element) Copy() *Element
- func (e *Element) CreateAttr(key, value string) *Attr
- func (e *Element) CreateCData(data string) *CharData
- func (e *Element) CreateCharData(data string) *CharDatadeprecated
- func (e *Element) CreateComment(comment string) *Comment
- func (e *Element) CreateDirective(data string) *Directive
- func (e *Element) CreateElement(tag string) *Element
- func (e *Element) CreateProcInst(target, inst string) *ProcInst
- func (e *Element) CreateText(text string) *CharData
- func (e *Element) FindElement(path string) *Element
- func (e *Element) FindElementPath(path Path) *Element
- func (e *Element) FindElements(path string) []*Element
- func (e *Element) FindElementsPath(path Path) []*Element
- func (e *Element) FullTag() string
- func (e *Element) GetPath() string
- func (e *Element) GetRelativePath(source *Element) string
- func (e *Element) IndentWithSettings(s *IndentSettings)
- func (e *Element) Index() int
- func (e *Element) InsertChild(ex Token, t Token)deprecated
- func (e *Element) InsertChildAt(index int, t Token)
- func (e *Element) NamespaceURI() string
- func (e *Element) NextSibling() *Element
- func (e *Element) NotNil() *Element
- func (e *Element) Parent() *Element
- func (e *Element) PrevSibling() *Element
- func (e *Element) ReindexChildren()
- func (e *Element) RemoveAttr(key string) *Attr
- func (e *Element) RemoveChild(t Token) Token
- func (e *Element) RemoveChildAt(index int) Token
- func (e *Element) SelectAttr(key string) *Attr
- func (e *Element) SelectAttrValue(key, dflt string) string
- func (e *Element) SelectElement(tag string) *Element
- func (e *Element) SelectElements(tag string) []*Element
- func (e *Element) SetCData(text string)
- func (e *Element) SetTail(text string)
- func (e *Element) SetText(text string)
- func (e *Element) SortAttrs()
- func (e *Element) Tail() string
- func (e *Element) Text() string
- func (e *Element) WriteTo(w Writer, s *WriteSettings)
- type ErrPath
- type IndentSettings
- type Path
- type ProcInst
- type ReadSettings
- type Token
- type WriteSettings
- type Writer
Constants ¶
const ( // NoIndent is used with the IndentSettings record to remove all // indenting. NoIndent = -1 )
Variables ¶
var ErrXML = errors.New("etree: invalid XML format")
ErrXML is returned when XML parsing fails due to incorrect formatting.
Functions ¶
This section is empty.
Types ¶
type Attr ¶
type Attr struct {
Space, Key string // The attribute's namespace prefix and key
Value string // The attribute value string
// contains filtered or unexported fields
}
An Attr represents a key-value attribute within an XML element.
func (*Attr) FullKey ¶
FullKey returns this attribute's complete key, including namespace prefix if present.
func (*Attr) NamespaceURI ¶
NamespaceURI returns the XML namespace URI associated with this attribute. The function returns the empty string if the attribute is unprefixed or if the attribute is part of the XML default namespace.
func (*Attr) WriteTo ¶
func (a *Attr) WriteTo(w Writer, s *WriteSettings)
WriteTo serializes the attribute to the writer.
type CharData ¶
type CharData struct { Data string // the simple text or CDATA section content // contains filtered or unexported fields }
CharData may be used to represent simple text data or a CDATA section within an XML document. The Data property should never be modified directly; use the SetData function instead.
func NewCData ¶
NewCData creates an unparented XML character CDATA section with 'data' as its content.
func NewCharData
deprecated
func (*CharData) Index ¶
Index returns the index of this CharData token within its parent element's list of child tokens. If this CharData token has no parent, then the function returns -1.
func (*CharData) IsCData ¶
IsCData returns true if this CharData token is contains a CDATA section. It returns false if the CharData token contains simple text.
func (*CharData) IsWhitespace ¶
IsWhitespace returns true if this CharData token contains only whitespace.
func (*CharData) Parent ¶
Parent returns this CharData token's parent element, or nil if it has no parent.
func (*CharData) SetData ¶
SetData modifies the content of the CharData token. In the case of a CharData token containing simple text, the simple text is modified. In the case of a CharData token containing a CDATA section, the CDATA section's content is modified.
func (*CharData) WriteTo ¶
func (c *CharData) WriteTo(w Writer, s *WriteSettings)
WriteTo serializes character data to the writer.
type Comment ¶
type Comment struct { Data string // the comment's text // contains filtered or unexported fields }
A Comment represents an XML comment.
func NewComment ¶
NewComment creates an unparented comment token.
func (*Comment) Index ¶
Index returns the index of this Comment token within its parent element's list of child tokens. If this Comment token has no parent, then the function returns -1.
func (*Comment) WriteTo ¶
func (c *Comment) WriteTo(w Writer, s *WriteSettings)
WriteTo serialies the comment to the writer.
type Directive ¶
type Directive struct { Data string // the directive string // contains filtered or unexported fields }
A Directive represents an XML directive.
func NewDirective ¶
NewDirective creates an unparented XML directive token.
func (*Directive) Index ¶
Index returns the index of this Directive token within its parent element's list of child tokens. If this Directive token has no parent, then the function returns -1.
func (*Directive) Parent ¶
Parent returns directive token's parent element, or nil if it has no parent.
func (*Directive) WriteTo ¶
func (d *Directive) WriteTo(w Writer, s *WriteSettings)
WriteTo serializes the XML directive to the writer.
type Document ¶
type Document struct { Element ReadSettings ReadSettings WriteSettings WriteSettings }
A Document is a container holding a complete XML tree.
A document has a single embedded element, which contains zero or more child tokens, one of which is usually the root element. The embedded element may include other children such as processing instruction tokens or character data tokens. The document's embedded element is never directly serialized; only its children are.
A document also contains read and write settings, which influence the way the document is deserialized, serialized, and indented.
func NewDocument ¶
func NewDocument() *Document
NewDocument creates an XML document without a root element.
func NewDocumentWithRoot ¶
NewDocumentWithRoot creates an XML document and sets the element 'e' as its root element. If the element 'e' is already part of another document, it is first removed from its existing document.
func (*Document) Indent ¶
Indent modifies the document's element tree by inserting character data tokens containing newlines and spaces for indentation. The amount of indentation per depth level is given by the 'spaces' parameter. Other than the number of spaces, default IndentSettings are used.
func (*Document) IndentTabs ¶
func (d *Document) IndentTabs()
IndentTabs modifies the document's element tree by inserting CharData tokens containing newlines and tabs for indentation. One tab is used per indentation level. Other than the use of tabs, default IndentSettings are used.
func (*Document) IndentWithSettings ¶
func (d *Document) IndentWithSettings(s *IndentSettings)
IndentWithSettings modifies the document's element tree by inserting character data tokens containing newlines and indentation. The behavior of the indentation algorithm is configured by the indent settings.
func (*Document) ReadFrom ¶
ReadFrom reads XML from the reader 'r' into this document. The function returns the number of bytes read and any error encountered.
func (*Document) ReadFromBytes ¶
ReadFromBytes reads XML from the byte slice 'b' into the this document.
func (*Document) ReadFromFile ¶
ReadFromFile reads XML from a local file at path 'filepath' into this document.
func (*Document) ReadFromString ¶
ReadFromString reads XML from the string 's' into this document.
func (*Document) Root ¶
Root returns the root element of the document. It returns nil if there is no root element.
func (*Document) SetRoot ¶
SetRoot replaces the document's root element with the element 'e'. If the document already has a root element when this function is called, then the existing root element is unbound from the document. If the element 'e' is part of another document, then it is unbound from the other document.
func (*Document) Unindent ¶
func (d *Document) Unindent()
Unindent modifies the document's element tree by removing character data tokens containing only whitespace. Other than the removal of indentation, default IndentSettings are used.
func (*Document) WriteTo ¶
WriteTo serializes the document out to the writer 'w'. The function returns the number of bytes written and any error encountered.
func (*Document) WriteToBytes ¶
WriteToBytes serializes this document into a slice of bytes.
func (*Document) WriteToFile ¶
WriteToFile serializes the document out to the file at path 'filepath'.
func (*Document) WriteToString ¶
WriteToString serializes this document into a string.
type Element ¶
type Element struct {
Space, Tag string // namespace prefix and tag
Attr []Attr // key-value attribute pairs
Child []Token // child tokens (elements, comments, etc.)
// contains filtered or unexported fields
}
An Element represents an XML element, its attributes, and its child tokens.
func NewElement ¶
NewElement creates an unparented element with the specified tag (i.e., name). The tag may include a namespace prefix followed by a colon.
func (*Element) AddChild ¶
AddChild adds the token 't' as the last child of the element. If token 't' was already the child of another element, it is first removed from its parent element.
func (*Element) ChildElements ¶
ChildElements returns all elements that are children of this element.
func (*Element) Copy ¶
Copy creates a recursive, deep copy of the element and all its attributes and children. The returned element has no parent but can be parented to a another element using AddChild, or added to a document with SetRoot or NewDocumentWithRoot.
func (*Element) CreateAttr ¶
CreateAttr creates an attribute with the specified 'key' and 'value' and adds it to this element. If an attribute with same key already exists on this element, then its value is replaced. The key may include a namespace prefix followed by a colon.
func (*Element) CreateCData ¶
CreateCData creates a CharData token containing a CDATA section with 'data' as its content and adds it to the end of this element's list of child tokens.
func (*Element) CreateCharData
deprecated
func (*Element) CreateComment ¶
CreateComment creates a comment token using the specified 'comment' string and adds it as the last child token of this element.
func (*Element) CreateDirective ¶
CreateDirective creates an XML directive token with the specified 'data' value and adds it as the last child token of this element.
func (*Element) CreateElement ¶
CreateElement creates a new element with the specified tag (i.e., name) and adds it as the last child token of this element. The tag may include a prefix followed by a colon.
func (*Element) CreateProcInst ¶
CreateProcInst creates an XML processing instruction token with the specified 'target' and instruction 'inst'. It is then added as the last child token of this element.
func (*Element) CreateText ¶
CreateText creates a CharData token containing simple text data and adds it to the end of this element's list of child tokens.
func (*Element) FindElement ¶
FindElement returns the first element matched by the XPath-like 'path' string. The function returns nil if no child element is found using the path. It panics if an invalid path string is supplied.
func (*Element) FindElementPath ¶
FindElementPath returns the first element matched by the 'path' object. The function returns nil if no element is found using the path.
func (*Element) FindElements ¶
FindElements returns a slice of elements matched by the XPath-like 'path' string. The function returns nil if no child element is found using the path. It panics if an invalid path string is supplied.
func (*Element) FindElementsPath ¶
FindElementsPath returns a slice of elements matched by the 'path' object.
func (*Element) FullTag ¶
FullTag returns the element e's complete tag, including namespace prefix if present.
func (*Element) GetPath ¶
GetPath returns the absolute path of the element. The absolute path is the full path from the document's root.
func (*Element) GetRelativePath ¶
GetRelativePath returns the path of this element relative to the 'source' element. If the two elements are not part of the same element tree, then the function returns the empty string.
func (*Element) IndentWithSettings ¶
func (e *Element) IndentWithSettings(s *IndentSettings)
IndentWithSettings modifies the element and its child tree by inserting character data tokens containing newlines and indentation. The behavior of the indentation algorithm is configured by the indent settings. Because this function indents the element as if it were at the root of a document, it is most useful when called just before writing the element as an XML fragment using WriteTo.
func (*Element) Index ¶
Index returns the index of this element within its parent element's list of child tokens. If this element has no parent, then the function returns -1.
func (*Element) InsertChild
deprecated
InsertChild inserts the token 't' into this element's list of children just before the element's existing child token 'ex'. If the existing element 'ex' does not appear in this element's list of child tokens, then 't' is added to the end of this element's list of child tokens. If token 't' is already the child of another element, it is first removed from the other element's list of child tokens.
Deprecated: InsertChild is deprecated. Use InsertChildAt instead.
func (*Element) InsertChildAt ¶
InsertChildAt inserts the token 't' into this element's list of child tokens just before the requested 'index'. If the index is greater than or equal to the length of the list of child tokens, then the token 't' is added to the end of the list of child tokens.
func (*Element) NamespaceURI ¶
NamespaceURI returns the XML namespace URI associated with the element. If the element is part of the XML default namespace, NamespaceURI returns the empty string.
func (*Element) NextSibling ¶
NextSibling returns this element's next sibling element. It returns nil if there is no next sibling element.
func (*Element) NotNil ¶
NotNil returns the receiver element if it isn't nil; otherwise, it returns an unparented element with an empty string tag. This function simplifies the task of writing code to ignore not-found results from element queries. For example, instead of writing this:
if e := doc.SelectElement("enabled"); e != nil { e.SetText("true") }
You could write this:
doc.SelectElement("enabled").NotNil().SetText("true")
func (*Element) Parent ¶
Parent returns this element's parent element. It returns nil if this element has no parent.
func (*Element) PrevSibling ¶
PrevSibling returns this element's preceding sibling element. It returns nil if there is no preceding sibling element.
func (*Element) ReindexChildren ¶
func (e *Element) ReindexChildren()
ReindexChildren recalculates the index values of the element's child tokens. This is necessary only if you have manually manipulated the element's `Child` array.
func (*Element) RemoveAttr ¶
RemoveAttr removes the first attribute of this element whose key matches 'key'. It returns a copy of the removed attribute if a match is found. If no match is found, it returns nil. The key may include a namespace prefix followed by a colon.
func (*Element) RemoveChild ¶
RemoveChild attempts to remove the token 't' from this element's list of child tokens. If the token 't' was a child of this element, then it is removed and returned. Otherwise, nil is returned.
func (*Element) RemoveChildAt ¶
RemoveChildAt removes the child token appearing in slot 'index' of this element's list of child tokens. The removed child token is then returned. If the index is out of bounds, no child is removed and nil is returned.
func (*Element) SelectAttr ¶
SelectAttr finds an element attribute matching the requested 'key' and, if found, returns a pointer to the matching attribute. The function returns nil if no matching attribute is found. The key may include a namespace prefix followed by a colon.
func (*Element) SelectAttrValue ¶
SelectAttrValue finds an element attribute matching the requested 'key' and returns its value if found. If no matching attribute is found, the function returns the 'dflt' value instead. The key may include a namespace prefix followed by a colon.
func (*Element) SelectElement ¶
SelectElement returns the first child element with the given 'tag' (i.e., name). The function returns nil if no child element matching the tag is found. The tag may include a namespace prefix followed by a colon.
func (*Element) SelectElements ¶
SelectElements returns a slice of all child elements with the given 'tag' (i.e., name). The tag may include a namespace prefix followed by a colon.
func (*Element) SetCData ¶
SetCData replaces all character data immediately following an element's opening tag with a CDATA section.
func (*Element) SetTail ¶
SetTail replaces all character data immediately following the element's end tag with the requested string.
func (*Element) SetText ¶
SetText replaces all character data immediately following an element's opening tag with the requested string.
func (*Element) SortAttrs ¶
func (e *Element) SortAttrs()
SortAttrs sorts this element's attributes lexicographically by key.
func (*Element) Text ¶
Text returns all character data immediately following the element's opening tag.
func (*Element) WriteTo ¶
func (e *Element) WriteTo(w Writer, s *WriteSettings)
WriteTo serializes the element to the writer w.
type ErrPath ¶
type ErrPath string
ErrPath is returned by path functions when an invalid etree path is provided.
type IndentSettings ¶
type IndentSettings struct { // Spaces indicates the number of spaces to insert for each level of // indentation. Set to etree.NoIndent to remove all indentation. Ignored // when UseTabs is true. Default: 4. Spaces int // UseTabs causes tabs to be used instead of spaces when indenting. // Default: false. UseTabs bool // UseCRLF causes newlines to be written as a carriage return followed by // a linefeed ("\r\n"). If false, only a linefeed character is output // for a newline ("\n"). Default: false. UseCRLF bool // PreserveLeafWhitespace causes indent functions to preserve whitespace // within XML elements containing only non-CDATA character data. Default: // false. PreserveLeafWhitespace bool // SuppressTrailingWhitespace suppresses the generation of a trailing // whitespace characters (such as newlines) at the end of the indented // document. Default: false. SuppressTrailingWhitespace bool }
IndentSettings determine the behavior of the Document's Indent* functions.
func NewIndentSettings ¶
func NewIndentSettings() *IndentSettings
NewIndentSettings creates a default IndentSettings record.
type Path ¶
type Path struct {
// contains filtered or unexported fields
}
A Path is a string that represents a search path through an etree starting from the document root or an arbitrary element. Paths are used with the Element object's Find* methods to locate and return desired elements.
A Path consists of a series of slash-separated "selectors", each of which may be modified by one or more bracket-enclosed "filters". Selectors are used to traverse the etree from element to element, while filters are used to narrow the list of candidate elements at each node.
Although etree Path strings are structurally and behaviorally similar to XPath strings (https://www.w3.org/TR/1999/REC-xpath-19991116/), they have a more limited set of selectors and filtering options.
The following selectors are supported by etree paths:
. Select the current element. .. Select the parent of the current element. * Select all child elements of the current element. / Select the root element when used at the start of a path. // Select all descendants of the current element. tag Select all child elements with a name matching the tag.
The following basic filters are supported:
[@attrib] Keep elements with an attribute named attrib. [@attrib='val'] Keep elements with an attribute named attrib and value matching val. [tag] Keep elements with a child element named tag. [tag='val'] Keep elements with a child element named tag and text matching val. [n] Keep the n-th element, where n is a numeric index starting from 1.
The following function-based filters are supported:
[text()] Keep elements with non-empty text. [text()='val'] Keep elements whose text matches val. [local-name()='val'] Keep elements whose un-prefixed tag matches val. [name()='val'] Keep elements whose full tag exactly matches val. [namespace-prefix()] Keep elements with non-empty namespace prefixes. [namespace-prefix()='val'] Keep elements whose namespace prefix matches val. [namespace-uri()] Keep elements with non-empty namespace URIs. [namespace-uri()='val'] Keep elements whose namespace URI matches val.
Below are some examples of etree path strings.
Select the bookstore child element of the root element:
/bookstore
Beginning from the root element, select the title elements of all descendant book elements having a 'category' attribute of 'WEB':
//book[@category='WEB']/title
Beginning from the current element, select the first descendant book element with a title child element containing the text 'Great Expectations':
.//book[title='Great Expectations'][1]
Beginning from the current element, select all child elements of book elements with an attribute 'language' set to 'english':
./book/*[@language='english']
Beginning from the current element, select all child elements of book elements containing the text 'special':
./book/*[text()='special']
Beginning from the current element, select all descendant book elements whose title child element has a 'language' attribute of 'french':
.//book/title[@language='french']/..
Beginning from the current element, select all descendant book elements belonging to the http://www.w3.org/TR/html4/ namespace:
.//book[namespace-uri()='http://www.w3.org/TR/html4/']
func CompilePath ¶
CompilePath creates an optimized version of an XPath-like string that can be used to query elements in an element tree.
func MustCompilePath ¶
MustCompilePath creates an optimized version of an XPath-like string that can be used to query elements in an element tree. Panics if an error occurs. Use this function to create Paths when you know the path is valid (i.e., if it's hard-coded).
type ProcInst ¶
type ProcInst struct { Target string // the processing instruction target Inst string // the processing instruction value // contains filtered or unexported fields }
A ProcInst represents an XML processing instruction.
func NewProcInst ¶
NewProcInst creates an unparented XML processing instruction.
func (*ProcInst) Index ¶
Index returns the index of this ProcInst token within its parent element's list of child tokens. If this ProcInst token has no parent, then the function returns -1.
func (*ProcInst) Parent ¶
Parent returns processing instruction token's parent element, or nil if it has no parent.
func (*ProcInst) WriteTo ¶
func (p *ProcInst) WriteTo(w Writer, s *WriteSettings)
WriteTo serializes the processing instruction to the writer.
type ReadSettings ¶
type ReadSettings struct { // CharsetReader, if non-nil, defines a function to generate // charset-conversion readers, converting from the provided non-UTF-8 // charset into UTF-8. If nil, the ReadFrom* functions will use a // "pass-through" CharsetReader that performs no conversion on the reader's // data regardless of the value of the "charset" encoding string. Default: // nil. CharsetReader func(charset string, input io.Reader) (io.Reader, error) // Permissive allows input containing common mistakes such as missing tags // or attribute values. Default: false. Permissive bool // Preserve CDATA character data blocks when decoding XML (instead of // converting it to normal character text). This entails additional // processing and memory usage during ReadFrom* operations. Default: // false. PreserveCData bool // When an element has two or more attributes with the same name, // preserve them instead of keeping only one. Default: false. PreserveDuplicateAttrs bool // ValidateInput forces all ReadFrom* functions to validate that the // provided input is composed of "well-formed"(*) XML before processing it. // If invalid XML is detected, the ReadFrom* functions return an error. // Because this option requires the input to be processed twice, it incurs a // significant performance penalty. Default: false. // // (*) Note that this definition of "well-formed" is in the context of the // go standard library's encoding/xml package. Go's encoding/xml package // does not, in fact, guarantee well-formed XML as specified by the W3C XML // recommendation. See: https://github.com/golang/go/issues/68299 ValidateInput bool // Entity to be passed to standard xml.Decoder. Default: nil. Entity map[string]string // When Permissive is true, AutoClose indicates a set of elements to // consider closed immediately after they are opened, regardless of // whether an end element is present. Commonly set to xml.HTMLAutoClose. // Default: nil. AutoClose []string }
ReadSettings determine the default behavior of the Document's ReadFrom* functions.
type Token ¶
type Token interface { Parent() *Element Index() int WriteTo(w Writer, s *WriteSettings) // contains filtered or unexported methods }
A Token is an interface type used to represent XML elements, character data, CDATA sections, XML comments, XML directives, and XML processing instructions.
type WriteSettings ¶
type WriteSettings struct { // CanonicalEndTags forces the production of XML end tags, even for // elements that have no child elements. Default: false. CanonicalEndTags bool // CanonicalText forces the production of XML character references for // text data characters &, <, and >. If false, XML character references // are also produced for " and '. Default: false. CanonicalText bool // CanonicalAttrVal forces the production of XML character references for // attribute value characters &, < and ". If false, XML character // references are also produced for > and '. Ignored when AttrSingleQuote // is true. Default: false. CanonicalAttrVal bool // AttrSingleQuote causes attributes to use single quotes (attr='example') // instead of double quotes (attr = "example") when set to true. Default: // false. AttrSingleQuote bool // UseCRLF causes the document's Indent* functions to use a carriage return // followed by a linefeed ("\r\n") when outputting a newline. If false, // only a linefeed is used ("\n"). Default: false. // // Deprecated: UseCRLF is deprecated. Use IndentSettings.UseCRLF instead. UseCRLF bool }
WriteSettings determine the behavior of the Document's WriteTo* functions.
type Writer ¶
type Writer interface { io.StringWriter io.ByteWriter io.Writer }
Writer is the interface that wraps the Write* functions called by each token type's WriteTo function.