Skip to content

Converts XML String to Elixir Map data structure with string keys

License

Notifications You must be signed in to change notification settings

csokun/elixir-xml-to-map

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"
     }
}

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:
```elixir
def deps do
  [{:elixir_xml_to_map, "~> 1.0"}]
end
```
  1. Ensure elixir_xml_to_map is started before your application:
```elixir
def application do
  [applications: [:elixir_xml_to_map]]
end
```

About

Converts XML String to Elixir Map data structure with string keys

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Elixir 100.0%