dkuhlman

dkuhlman

Additional support for XML -- ability to use Elixir Structs

I’ve been doing some work to try to make processing XML documents a
little easier and more intuitive. I’ve built the ability to transform
the xmerl records produced by SweetXml into Elixir Structs.

One benefit of doing this is that you can use dot-notation and (in
IEx) tab completion to reference sub-components of various objects.
For example, if you have an XML element in a variable element1,
then you can use the following to reference its name (tag) and
children:

element1.name
element1.content

I’ve also implemented a small set of helper functions.

See the README for more info.

If you’d like to try it, you can find it here:
https://github.com/dkuhlman/xmlelixirstructs

You can include it in your mix project by adding the following
dependency to your mix.exs:

{:xmlelixirstructs, github: "dkuhlman/xmlelixirstructs"},

If you try it and have comments or suggestions, I’d like to hear
them.

Dave

First Post!

Eiji

Eiji

When reading this I expected something different …

It would be nice if you could provide a API which looks like:

xml = """
xml code goes here …
"""

MyLib.parse(xml, "some selector", mapper_module, nested: true)

mapper_module should be a module which implements specific behaviour which let’s say implements such set of functions: struct_mapper/1, content_mapper/2 and cast_func/3.

struct_mapper should be a function which determines module name based on tag, for example:

defmodule Example do
  def struct_mapper("tag-name"), do: ModuleName
end

content_mapper should be a function which determines where specific tag should be added to struct

defmodule Example do
  def content_mapper(MyModule, "content-tag"), do: :content
end

cast_func should be a function like changeset function used in ecto-based projects, for example:

defmodule Example do
  def cast_func(struct, attributes_map, content_map) do
    params = Map.merge(attributes_map, content_map)
    struct |> struct.__struct__.changeset(params) |> do_cast_func()
  end

  defp do_cast_func(%{valid: true} = changeset) do
    {:ok, Changeset.apply_changes(changeset)
  end

  defp do_cast_func(changeset), do: {:error, changeset}
end

Those examples instead of generic predefined structs would allow to nicely cast any XML data into current application structs which would simplify business logic much.

Please notice that with slight changes to mapper_module (I provided just a simple example) you should be able to write a default mapper_module to match your actual predefined structs. That solution would be easier for smaller scripts which does not defines ecto schemas or similar stuff.

What do you think about it?

Where Next?

Popular in Discussions Top

PragTob
Hey everyone, this has been on my mind for some time and I’d love your input on it! TLDR: I feel like maps are superioer for storing and...
New
pillaiindu
In django there is a cache framework backed by memcached. Rails also puts a lot of emphasis on caching, and even the idea of russian-doll...
New
PragTob
Hey everyone, this has been brewing in my head some time and it came up again while reading Adopting Elixir. GenServers, supervisors et...
New
tmbb
This is a post to discuss the new Phoenix LiveView functionality. From Chris’s talk, it appears that they generate all HTML on the serve...
342 18634 126
New
opsb
We’re considering our architecture from a viewpoint of scaling our traffic heavily over the next 6 months. Our current deployment is runn...
New
klo
Got a question about when to concat vs. prepending items to list then reversing to achieve appending. So i know lists boil down to [1 | ...
New
fireproofsocks
I’ve been working on an Elixir project that has required a lot of scripting. I usually reach for Elixir because I like it more (and in th...
New

Other popular topics Top

JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
hariharasudhan94
I would like to know what is the best IDE for elixir development?
New
dogweather
I wrote this comment on r/haskell, and it’s not popular there. :wink: But I think I’m on to something… Haskell reminds me of Java, and e...
New
sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
985 44778 311
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New

We're in Beta

About us Mission Statement