dkuhlman

dkuhlman

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

Showing Posts 1 to 1

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?

— All posts loaded —

Where Next? Top

Trending in Discussions Top

AstonJ
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
2977 92995 915
New
AstonJ
The obligatory hello world thread! Who are you and where are you from? :stuck_out_tongue:
4616 55835 594
New
caslu
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
arcanemachine
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
alexslade
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog It says that Fly is going all-in on sprites, which is a worry ...
New
Herve37
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using. We’re particularly inte...
New
matt-savvy
Is there a word for the ~> symbol used in Version strings? Do you also just call it a Squiggle Arrow™ ?!
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews