zachdaniel
Creator of Ash
I was hoping I could get something like this working:
defmodule FooRegistry do
@foos [
FirstFoo,
SecondFoo,
ThirdFoo
]
@foos_by_another_name Enum.into(foos, %{}, fn foo -> {foo.another_name(), foo} end)
@type foo [Enum.map(@foos, fn foo -> foo.t end)]
@spec list_foos() :: [foo]
def list_foos() do
@foos
end
@spec foo_from_another_name(atom) :: foo | nil
def foo_from_another_name(name) do
Map.get(@foos_by_another_name, name)
end
end
I’m not really worried about the exact syntax, but how might I go about dynamically generating a type like this?
Thanks!
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
zachdaniel
I guess the type declaration would somehow need to actually be separated by
|so thatEnum.mapwould naturally not work.Eiji
@zachdaniel: You need to write helper module with some macros and then call them to generate ast for special module attributes like
@type.For
@typeyou need to return ast in format:Where for
childrenyou have same rules as for root element, so for 3 foos:and this ast for you will look like:
FirstFoo.t | SecondFoo.t | ThirdFoo.tWhat you need is to write recursive function that retruns Elixir AST in Tuple notation.
zachdaniel
Woah. Thanks for the tip! I wonder if people would wnat to do this more often if it was provided by dialyzer.
for shorthand or something. I’ll look into implementing something like this. Thanks!
evadne
For posterity:
kenny-evitt
Is there a way to wrap that in a macro, ex.
union_type/1, so that one could write:I haven’t been able to figure out how to write such a macro. This is the best I’ve been able to do so far:
(I added the
Enum.reverse/1call so that the order of the literal values, e.g. in@keys, matches the typespec for the generated typekey.)Eiji
First of all instead of
reverse+reduce(2 iterations) you should use[head | tail](1 iteration) like:Secondly you can use
@typedirectly in macro, for example:with this you have:
kenny-evitt
Thanks @Eiji!
I like your recursive definition but I’m not sure it’s much clearer – it doesn’t seem particularly sensible to support a single type for a ‘union type’ macro. Avoiding two iterations tho is pretty nice! And the function could always be made private anyways.
I suspected that it would be much easier to write a macro for the entire type definition – I couldn’t get one for just the ‘spec’ portion to work and suspect, if it is possible, that it would involve much more convoluted code.
Is it necessary to do the above in a
__using__macro specifically? (I’ll test that myself when I get a chance.)Eiji
In both
@specand@typeyou need to wrap everything inunquotecall. Without that instead of calling function/macro theASTof such call would be stored:__using__/1macro is as same as any other macro.use MyModuleworks likerequire MyModule+MyModule.__using__([]).You can also write a macro like this one:
However for this you need to add this option:
to
.formatter.exs, because otherwise it would format your code to:kenny-evitt
That’s the conclusion I tentatively had reached myself but do you know why exactly this is? I’d guess it has to do with the details of how, and when, the compiler parses the
@specand@typedeclarations, but I haven’t found any info about what those details might be. I’m just curious!Thank you for all of your help with this! I really appreciate it
What’s your personal preference for doing this kind of thing? Do you not do anything like this in your own code?
I kind of think that the ‘original’ is clearest (even if a bit more verbose):
But your
union_type/1macro is really nice too! I’d be a little worried that it’d be harder to read, e.g. easier to skip when scanning code that uses it and not notice that it’s declaring a type.The pattern matching trick that effectively allows you to use the
x :: ysyntax is brilliant! That seems like a really useful trick generally for writing nice macros.Eiji
Depends on situation … in private API I would use just
unquotecall in@specfor simplicity. However in order to create a nice public API I would write a simple macro and document it as this way is easier to read and understand for other developers.That’s why I mean …
private==verboseandpublic==nice APIGood documentation is solution for most problems.
If you or somebody else from your team would not like to remember such details then simply list all things like that in special markdown file. With that if you fail to find something take a look at such file and remind what you forgot. For example nobody needs to understand what
~>operator is doing, but documenting that your project usesokhex library forces current developers to remind about it and every new developer to read concepts of such library.If you want to generate something firstly check how to do it using
quotecall: