battistar / tiny_xml

A tiny XML handler build on Erlang xmerl.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TinyXml

CI Coverage Status

A tiny XML handler build on Erlang xmerl. TinyXml allows to validate, navigate and extract values and attributes from an XML data.

Installation

The package can be installed by adding tiny_xml to your list of dependencies in mix.exs:

def deps do
  [
    {:tiny_xml, git: "https://github.com/battistar/tiny_xml", tag: "xxx"}
  ]
end

Usage

Assume to use this XML for the following examples:

<shiporder orderid="889923">
  <orderperson>John Smith</orderperson>
  <shipto>
    <name>Ola Nordmann</name>
    <address>Langgt 23</address>
    <city>4000 Stavanger</city>
    <country>Norway</country>
  </shipto>
  <item>
    <title>Empire Burlesque</title>
    <note>Special Edition</note>
    <quantity>1</quantity>
    <price>10.90</price>
  </item>
  <item>
    <title>Hide your heart</title>
    <quantity>1</quantity>
    <price>9.90</price>
  </item>
</shiporder>

Data extraction

To access to the first tag, described by an XPath expression, use first function. Then extract the value by text function:

def extract_value(xml) do
  xml
  |> TinyXml.first("/shiporder/shipto/country")
  |> TinyXml.text()

  #=> "Norway"
end

To access to XML tag list use all function:

def extract_list(xml) do
  xml
  |> TinyXml.all("/shiporder/item")
  |> Enum.map(fn xml_node -> 
    xml_node
    |> TinyXml.first("/item/price")
    |> TinyXml.text()
  end)

  #=> ["10.90", "9.90"]
end

Use the function attribute to get an XML tag attribute:

def extract_attribute(xml) do
  xml
  |> TinyXml.first("/shiporder")
  |> TinyXml.attribute("orderid")

  #=> "889923"
end

Validation

An XML file or string can be validate against an XML schema:

def validate_file_data(xml_file_path) do
  TinyXml.Schema.validate_file(xml_file_path, "path/to/schema")

  #=> :ok
end

def validate_string_data(xml_string) do
  TinyXml.Schema.validate_string(xml_string, "path/to/schema")

  #=> {:error, _reason}
end

About

A tiny XML handler build on Erlang xmerl.

License:MIT License


Languages

Language:Elixir 100.0%