Popularity
5.7
Declining
Activity
3.1
Stable
53
2
23

Monthly Downloads: 30,767
Programming language: Elixir
License: Apache License 2.0
Tags: XML    

elixir-xml-to-map alternatives and similar packages

Based on the "XML" category.
Alternatively, view elixir-xml-to-map alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of elixir-xml-to-map or a related project?

Add another 'XML' Package

README

XmlToMap

Creates an Elixir Map data structure from an XML string

Usage:

XmlToMap.naive_map("<foo><bar>123</bar></foo>")

Results in:

%{"foo" => %{"bar" => "123"}}

Converts xml string to an Elixir map with strings for keys, not atoms, since atoms are not garbage collected.

This tool is inspired by Rails Hash.from_xml()


I call the function "naive", because there are known short comings and there is some controversy around using a conversion tool like this since XML and Maps are non-isomorphic and there is no standard way to convert all the information from one format to another. The recommended way to pull specific well structured information from XML is to use something like xpath. But if you understand the risks and still prefer to convert the whole xml string to a map then this tool is for you!

It is currently not able to parse xml namespace. It also can't determine if a child should be a list unless it sees a repeated child. If and only if nodes are repeated at the same level will they beome a list.

# there are two points inside foo, so the value of "point" becomes a list. Had "foo" only contained one point then there would be no list but instead one nested map
XmlToMap.naive_map("<foo><point><x>1</x><y>5</y></point><point><x>2</x><y>9</y></point></foo>")

# => %{"foo" => %{"point" => [%{"x" => "1", "y" => "5"}, %{"x" => "2", "y" => "9"}]}}

Previously this package did not handle xml node attributes. The current version takes inspiration from a go goxml2json package and exports attributes in the map while prepending "-" so you know they are attributes.

Whenever we encounter an xml node with BOTH attributes and children, we wrap "#content" around the node's inner value.

For example this snippet has a Height leaf node with attribute Units and a value of 0.50:

<ItemDimensions>
   <Height Units="inches">0.50</Height>
</ItemDimensions>

This would become this snippet:

...
"ItemDimensions": {
     "Height": {
           "#content": "0.50",
           "-Units": "inches"
     }
}

Empty tags will have a value of nil.


There is a dependency on Erlsom to parse xml then converts the 'simple_form' structure into a map.

I prefer Erlsom because it is the best documented erlang xml parser and because it mentions that it does not produce new atoms during the scanning.

See tests for some example usage.


Installation

If available in Hex, the package can be installed as:

  1. Add elixir_xml_to_map to your list of dependencies in mix.exs:
def deps do
  [{:elixir_xml_to_map, "~> 2.0"}]
end
  1. Ensure elixir_xml_to_map is started before your application:
def application do
  [applications: [:elixir_xml_to_map]]
end