Golang XML Mapping and Manipulation

Beginner

This tutorial is from open-source community. Access the source code

Introduction

This lab aims to test your knowledge of working with XML in Golang. You will be required to create a struct that can be mapped to XML, marshal and unmarshal XML data, and use field tags to define the structure of the XML output.

XML

You are required to create a struct named Plant that can be mapped to XML. The struct should have the following fields:

  • Id (int) - an XML attribute
  • Name (string) - a nested XML element
  • Origin ([]string) - a nested XML element

You should also create a struct named Nesting that contains a slice of Plant structs. The Nesting struct should be mapped to an XML element named nesting, and the Plant structs should be nested under <parent><child>....

You should then write code to marshal the Plant and Nesting structs to XML, and unmarshal XML data into the Plant struct.

  • The Plant struct should be mapped to an XML element named plant.
  • The Id field of the Plant struct should be mapped to an XML attribute named id.
  • The Name field of the Plant struct should be mapped to a nested XML element named name.
  • The Origin field of the Plant struct should be mapped to a nested XML element named origin.
  • The Nesting struct should be mapped to an XML element named nesting.
  • The Plant structs in the Nesting slice should be nested under <parent><child>....
$ go run xml.go
 <plant id="27">
   <name>Coffee</name>
   <origin>Ethiopia</origin>
   <origin>Brazil</origin>
 </plant>
<?xml version="1.0" encoding="UTF-8"?>
 <plant id="27">
   <name>Coffee</name>
   <origin>Ethiopia</origin>
   <origin>Brazil</origin>
 </plant>
Plant id=27, name=Coffee, origin=[Ethiopia Brazil]
 <nesting>
   <parent>
     <child>
       <plant id="27">
         <name>Coffee</name>
         <origin>Ethiopia</origin>
         <origin>Brazil</origin>
       </plant>
       <plant id="81">
         <name>Tomato</name>
         <origin>Mexico</origin>
         <origin>California</origin>
       </plant>
     </child>
   </parent>
 </nesting>

There is the full code below:

// Go offers built-in support for XML and XML-like
// formats with the `encoding.xml` package.

package main

import (
    "encoding/xml"
    "fmt"
)

// Plant will be mapped to XML. Similarly to the
// JSON examples, field tags contain directives for the
// encoder and decoder. Here we use some special features
// of the XML package: the `XMLName` field name dictates
// the name of the XML element representing this struct;
// `id,attr` means that the `Id` field is an XML
// _attribute_ rather than a nested element.
type Plant struct {
    XMLName xml.Name `xml:"plant"`
    Id      int      `xml:"id,attr"`
    Name    string   `xml:"name"`
    Origin  []string `xml:"origin"`
}

func (p Plant) String() string {
    return fmt.Sprintf("Plant id=%v, name=%v, origin=%v",
        p.Id, p.Name, p.Origin)
}

func main() {
    coffee := &Plant{Id: 27, Name: "Coffee"}
    coffee.Origin = []string{"Ethiopia", "Brazil"}

    // Emit XML representing our plant; using
    // `MarshalIndent` to produce a more
    // human-readable output.
    out, _ := xml.MarshalIndent(coffee, " ", "  ")
    fmt.Println(string(out))

    // To add a generic XML header to the output, append
    // it explicitly.
    fmt.Println(xml.Header + string(out))

    // Use `Unmarshal` to parse a stream of bytes with XML
    // into a data structure. If the XML is malformed or
    // cannot be mapped onto Plant, a descriptive error
    // will be returned.
    var p Plant
    if err := xml.Unmarshal(out, &p); err != nil {
        panic(err)
    }
    fmt.Println(p)

    tomato := &Plant{Id: 81, Name: "Tomato"}
    tomato.Origin = []string{"Mexico", "California"}

    // The `parent>child>plant` field tag tells the encoder
    // to nest all `plant`s under `<parent><child>...`
    type Nesting struct {
        XMLName xml.Name `xml:"nesting"`
        Plants  []*Plant `xml:"parent>child>plant"`
    }

    nesting := &Nesting{}
    nesting.Plants = []*Plant{coffee, tomato}

    out, _ = xml.MarshalIndent(nesting, " ", "  ")
    fmt.Println(string(out))
}

Summary

In this lab, you learned how to work with XML in Golang. You created a struct that can be mapped to XML, marshaled and unmarshaled XML data, and used field tags to define the structure of the XML output.