augnustin

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

First 5 of 5 Posts Switch mode

NobbZ

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

augnustin OP

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

NobbZ

I never hit that limitation, but perhaps @OvermindDL1 library protocol_ex can 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

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

You can do this explicitly with relative ease by just defdelegateing the functions you don’t want to implement to the Any implementation. EG: defdelegate to_index_string, to: MyRepo.Render.Any.

OvermindDL1

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 use with override and so forth perhaps?

— All posts loaded —

Where Next?

Trending in Questions Top

jonnycharles
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
spammy
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
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
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
michallepicki
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
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New

Other Trending Topics Top

JesseHerrick
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
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
ausimian
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
type1fool
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
akoutmos
@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

We're in Beta

About us Mission Statement