augnustin
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
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)
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?