svilen
Author of Concurrent Data Processing in Elixir
I have a bunch of functions in a module, that I’d like to dynamically add to a __using__ macro:
defmodule A do
defmacro __using__(_opts) do
quote do
# Dynamically add
# def foo(), do: "Foo"
# and any other functions.
end
end
def foo(), do: "Foo"
end
My goal is to have the functions accessible on the original module, inject them into the module that’s using it via use and make them overridable:
I’m just starting with metaprogramming so I’d appreciate any solutions or pointers in the right direction. 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
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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
Other Trending Topics
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
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
jswny
I’m pretty sure you can just
importthe parent module of the__using__macro withimport Ainside the macro. For example, the Phoenix 1.3 generators create the followingDataCasemodule:So, all of the
MyApp.DataCasefunctions will be auto imported into the scope of any module which callsuse MyApp.DataCase.idi527
Kernel — Elixir v1.20.2 has an example similar to what you want:
And then in the shell
svilen
Thanks for everyone’s replies.
@jswny I did try that but doesn’t work as you’d expect:
You can access
Is this
A.foo()but notB.foo()using do.. endDSL doing something special, compared todefmacro __using__(_)?@idi527
defoverridableis indeed what I need to use to make an injected function overridable, but that’s only one part of the puzzlekip
importmakes the functions fromAavailable in moduleBbut it doesn’t re-export them. Therefore functions inBcan invoke the imported functions fromAbut you can’t call them from outsideB. Its nothing to do withuse, its howimportworks.Overall, your last example isn’t a strong justification for
use. Justimportwould be preferred because the intent is clearer. But I recognise your use case if presumably more complex that justimport.kip
If basically you want to delegate a bunch of functions to another module, have them available as public functions on the new module and also make them overridable then perhaps the following would work? Its not considered good practise to do defining lots of functions in a
quoteblock.svilen
@kip Awesome, using
defdelegateachieves the effect that I wanted! I’ve come acrossdefdelegatebefore, but it didn’t occur to me that it would work just fine withdefoverridable. Now it makes sense.You were right in your previous post — I oversimplified my use case just for convenience. Ultimately I was wondering if this could work on multiple levels, e.g.
If module D comes around and wants to inherit/extend module C, it doesn’t need to know about A or B at all. This approach tightly couples all the modules, but could be useful in some cases where it can be tolerated.
Thanks a lot for your help!
kip
I sort of understand your intent but, to me (and maybe only me), this smells a bit of “making magic”. And the language “inherit/extend” makes it seem even more so.
I’ve found that a combination of partial
importing of functions and the occasional use ofdefdelegateis a lot clearer to me because its explicit. One of the most frustrating things is to see a function call to a function whose definition you can’t find. The multiple indirectusees would, for me, make the intent obscure and quite frustrating.LostKobrakai
To whom is that useful? You still need A and B to actually do things, so why not make that clear to the consuming code. The only reason for this I can imagine is that you want to own the implementation and do (or at least be able to do) changes on how A or B works. But then defdelegegate are imho the best option to be used within your intermediate consumer. Hiding the defdelegates in the implementation providing module is always a great indirection, which should have convincing reasoning for it’s usage.
svilen
@kip @LostKobrakai Yep, I definitely don’t disagree with you and
importis much simpler and clearer for the majority of cases. I was purely interested in how could this be achieved from a metaprogramming standpoint. Whether this is a good or bad idea is a different topic, which I don’t intend to start