emilsoman
I recently learned that it’s possible to delegate common implementations of protocols using defdelegate in the implementations, but I’m curious to know if this is possible using a macro that provides overridable functions.
The following code works, but shows a warning (see comment below) :
defprotocol MyProtocol do
def foo(data)
def bar(data)
end
defmodule MyProtocol.Defaults do
defmacro __before_compile__(_env) do
quote do
def bar(data) do
IO.puts "Default implementation of bar, data: #{data}"
end
defoverridable [bar: 1]
end
end
end
defimpl MyProtocol, for: Integer do
@before_compile MyProtocol.Defaults
def foo(data) do
IO.puts "int implementation of foo, data: #{data}"
end
# Is it possible to override `bar` from before_compile without this warning:
#
# warning: this clause cannot match because a previous clause at line 28 always matches
# my_protocol.exs:17
def bar(data) do
IO.puts "int implementation of bar, data: #{data}"
end
end
Do I get this warning because before_compile’s return value is injected at the end of the module? Is there any way to get around this?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
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’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
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
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
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
I’m not sure I agree with this approach to begin with, but if you were to go this way I think it makes more sense to do a
__using__instead of a before compile. The the function is injected at the top, and you override it in yourdefimplblock. As it is it’s always at the bottom, which is likely what prevents you from overriding it.emilsoman
@benwilson512
What’s the idiomatic way to do this?
Yes, this works. So I guess the problem with before_compile here is that it’s appended to the end of the module body. It makes sense, then. Thanks!
josevalim
You can explicitly delegate to the function you want to:
You can even use
defdelegateto make it more compact:The question you want to ask yourself is: are you really expecting to write the code above so many times to justify the use of indirection and meta-programming? The answer is likely no.
benwilson512
My thoughts precisely.
Ajwah
Can a case be made to have default implementations be delegated to
Anywhen its implementation is missing?The fact we have
@fallback_to_any truemeans that it is not unreasonable to expect that missing implementations are defaulted toAny; so still explicit. Currently a warning is rendered for missing implementations; so the above fallback would get rid of the warning while clearly communicating that its implementation has been omitted deliberately(which could have several reasons, among which is because the domain does not require its implementation.)Cons to the above suggestion: