augnustin
Protocol @fallback_to_any true not working as expected: making methods optional
Hello,
I want to have a protocol with 3 methods with 2 optional having the following logic:
defprotocol MyRepo.Render do
@fallback_to_any true
def to_string(data)
def to_index_string(data)
def to_show_string(data)
end
# some custom implementations
defimpl MyRepo.Render, for: Any do
def to_index_string(data), do: MyRepo.Render.to_string(data)
def to_show_string(data), do: MyRepo.Render.to_string(data)
def to_string(data), do: MyRepo.Render.to_index_string(data) || "#{inspect data}"
end
So that I can have for some data structures:
defimpl MyApp.Render, for: __MODULE__ do
def to_index_string(data) do
"get something"
end
def to_show_string(booklet_1) do
"get something else"
end
end
And for others:
defimpl MyApp.Render, for: __MODULE__ do
def to_string(data) do
"get something general"
end
end
It seems like for modules with no def impl is present, it works as expected, but when I define either to_index_string and to_show_string or to_string, the compiler complains that the other methods are missing:
** (UndefinedFunctionError) function MyRepo.Render.MyApp.MyDataStruct.to_show_string/1 is undefined or private, but the behaviour MyRepo.Render expects it to be present. Did you mean one of:
* to_string/1
(vae) MyRepo.Render.MyApp.MyDataStruct.to_show_string(%MyApp.MyDataStruct{})
How can I achieve what I want?
Thanks
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 5 of 5 Posts
NobbZ
You can’t.
A protocol always requires you to implement all associated functions. There are no optionals.
Fallback to any is an all or nothing. Either you have implemented the protocol for a given type or it will use
Anys implementation.augnustin
Thanks @NobbZ for getting back!
Wow, this feels like a limitation, doesn’t it?
Ain’t there any solution so I can circumvent my problem? Like using something else than
defprotocol?NobbZ
I never hit that limitation, but perhaps @OvermindDL1 library
protocol_excan help you?I never actually looked at it, but I know he developed it because he found the original protocols quite limiting.
protocol_ex | Hex
benwilson512
You can do this explicitly with relative ease by just
defdelegateing the functions you don’t want to implement to theAnyimplementation. EG:defdelegate to_index_string, to: MyRepo.Render.Any.OvermindDL1
Yep mine can do it. ProtocolEx supports not just implementation on specific types but even specific matchspecs so you could match even on specific values if you want (with a full priority system), along with features of being able to inline the implementations into a single module if you need absolute speed, supports optional callbacks, fallback callbacks, a testing structure, etc… And of course all of the extra stuff is optional.
But yeah, if all you need is ‘just’ an optional kind of thing, defdelegate is easy enough to use at each site, which can be wrapped up in a
usewith override and so forth perhaps?