|
|
9 anni fa | |
|---|---|---|
| .. | ||
| LICENSE | 9 anni fa | |
| anyxml.go | 9 anni fa | |
| atomFeedString.xml | 9 anni fa | |
| doc.go | 9 anni fa | |
| exists.go | 9 anni fa | |
| files.go | 9 anni fa | |
| files_test.badjson | 9 anni fa | |
| files_test.badxml | 9 anni fa | |
| files_test.json | 9 anni fa | |
| files_test.xml | 9 anni fa | |
| files_test_dup.json | 9 anni fa | |
| files_test_dup.xml | 9 anni fa | |
| files_test_indent.json | 9 anni fa | |
| files_test_indent.xml | 9 anni fa | |
| json.go | 9 anni fa | |
| keyvalues.go | 9 anni fa | |
| leafnode.go | 9 anni fa | |
| misc.go | 9 anni fa | |
| mxj.go | 9 anni fa | |
| newmap.go | 9 anni fa | |
| readme.md | 9 anni fa | |
| remove.go | 9 anni fa | |
| rename.go | 9 anni fa | |
| set.go | 9 anni fa | |
| songtext.xml | 9 anni fa | |
| struct.go | 9 anni fa | |
| updatevalues.go | 9 anni fa | |
| xml.go | 9 anni fa | |
| xmlseq.go | 9 anni fa | |
mxj supplants the legacy x2j and j2x packages. If you want the old syntax, use mxj/x2j and mxj/j2x packages.
type Map map[string]interface{}
Create a `Map` value, 'm', from any `map[string]interface{}` value, 'v':
m := Map(v)Unmarshal / marshal XML as a `Map` value, 'm':
m, err := NewMapXml(xmlValue) // unmarshal xmlValue, err := m.Xml() // marshalUnmarshal XML from an `io.Reader` as a `Map` value, 'm':
m, err := NewMapReader(xmlReader) // repeated calls, as with an os.File Reader, will process stream m, raw, err := NewMapReaderRaw(xmlReader) // 'raw' is the raw XML that was decodedMarshal `Map` value, 'm', to an XML Writer (`io.Writer`):
err := m.XmlWriter(xmlWriter) raw, err := m.XmlWriterRaw(xmlWriter) // 'raw' is the raw XML that was written on xmlWriterAlso, for prettified output:
xmlValue, err := m.XmlIndent(prefix, indent, ...) err := m.XmlIndentWriter(xmlWriter, prefix, indent, ...) raw, err := m.XmlIndentWriterRaw(xmlWriter, prefix, indent, ...)Bulk process XML with error handling (note: handlers must return a boolean value):
err := HandleXmlReader(xmlReader, mapHandler(Map), errHandler(error)) err := HandleXmlReaderRaw(xmlReader, mapHandler(Map, []byte), errHandler(error, []byte))Converting XML to JSON: see Examples for `NewMapXml` and `HandleXmlReader`. There are comparable functions and methods for JSON processing. Arbitrary structure values can be decoded to / encoded from `Map` values:
m, err := NewMapStruct(structVal) err := m.Struct(structPointer)
paths := m.PathsForKey(key) path := m.PathForKeyShortest(key) values, err := m.ValuesForKey(key, subkeys) values, err := m.ValuesForPath(path, subkeys) count, err := m.UpdateValuesForPath(newVal, path, subkeys)Get everything at once, irrespective of path depth:
leafnodes := m.LeafNodes() leafvalues := m.LeafValues()A new `Map` with whatever keys are desired can be created from the current `Map` and then encoded in XML or JSON. (Note: keys can use dot-notation.)
newMap, err := m.NewMap("oldKey_1:newKey_1", "oldKey_2:newKey_2", ..., "oldKey_N:newKey_N")
newXml, err := newMap.Xml() // for example
newJson, err := newMap.Json() // ditto
The package is fairly well self-documented with examples. (http://godoc.org/github.com/clbanning/mxj)
Also, the subdirectory "examples" contains a wide range of examples, several taken from golang-nuts discussions.
Using NewXml()
map[string]interface{} values by prefixing a hyphen, -,
to the attribute label. (Unless overridden by PrependAttrWithHyphen(false).)#text for its map[string]interface{} representation. (See
the 'atomFeedString.xml' test data, below.)Using NewXmlSeq()
map["#attr"]map[<attr_label>]map[string]interface{}values
where the <attr_label> value has "#text" and "#seq" keys - the "#text" key holds the
value for <attr_label>.Both
Map values, which may represent 'null' JSON values, are encoded as <tag/>.
NOTE: the operation is not symmetric as <tag/> elements are decoded as tag:"" Map values,
which, then, encode in JSON as "tag":"" values.Because there are no guarantees on the sequence map elements are retrieved, the tests have been written for visual verification in most cases. One advantage is that you can easily use the output from running "go test" as examples of calling the various functions and methods.
I make extensive use of JSON for messaging and typically unmarshal the messages into
map[string]interface{} values. This is easily done using json.Unmarshal from the
standard Go libraries. Unfortunately, many legacy solutions use structured
XML messages; in those environments the applications would have to be refactored to
interoperate with my components.
The better solution is to just provide an alternative HTTP handler that receives
XML messages and parses it into a map[string]interface{} value and then reuse
all the JSON-based code. The Go xml.Unmarshal() function does not provide the same
option of unmarshaling XML messages into map[string]interface{} values. So I wrote
a couple of small functions to fill this gap and released them as the x2j package.
Over the next year and a half additional features were added, and the companion j2x
package was released to address XML encoding of arbitrary JSON and map[string]interface{}
values. As part of a refactoring of our production system and looking at how we had been
using the x2j and j2x packages we found that we rarely performed direct XML-to-JSON or
JSON-to_XML conversion and that working with the XML or JSON as map[string]interface{}
values was the primary value. Thus, everything was refactored into the mxj package.