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 94592 917
New
cblavier
Hey there, It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
heathen
Quite interesting article Google brought me. Didn’t find any mentions about it here. What do you think in general? Would you use togethe...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New
axelson
Hi there! :wave: @frigidcode and I (but mostly him) have been running an Elixir Book club, we’re almost done with Designing Elixir Syste...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
georgeguimaraes
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews