Qqwy
As you know, Elixir protocols dispatch to the particular implementation based on the first argument passed to their functions.
For many use-cases this is fine.
Sometimes, however, it is not.
One such situation is when we want to add a function that creates a datatype in a generic way. At this time we probably know the module name of the implementation we’d like to use, but do not have a struct of that type.
This leaves a couple of different possibilities. I am hoping for some feedback on which technique you’d prefer:
1. Have a separate Behaviour module. Structs implementing the protocol should implement this behaviour for structs as well.
Advantage:
- Does not need any ‘hacks’.
Disadvantage:
- It is easy to miss/forget implementing the behaviour
- It might be confusing that there both is a protocol and a behaviour that together specify the interface that needs to be implemented.
2. Add a function to the protocol which does not actually expect the struct as first argument.
Advantage:
- Only a single module which defines the interface.
Disadvantage: Seems a bit like a ‘hack’:
- It requires manual protocol dispatch, which is hackish as since we do not have a struct of the protocol yet (but only a module name), we cannot rely on
ProtocolName.impl_for(datatype). Manually concatenating module names currently works, but seems like relying on an implementation detail. - It might mess with protocol consolidation.
- Elixir and/or tools like Dializer or Credo might produce warnings.
3. Using a library-provided ‘extended protocol’
One example of a library providing extended protocols would be protocol_ex.
Advantage:
- it might be possible to implement this pattern directly.
Disadvantage:
- It might be overkill
- Improved developer complexity: It’s a new library that developers need to understand.
- Circumventing normal protocols will mean that improvements to normal protocols (like e.g. better consolidation) cannot be used.
4. ???
Maybe there are other possibilities as well?
If you need more context, this recently came up here, PR #32 of the Arrays library.
Trending in Questions
Other Trending Topics
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 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
There’s already a protocol
defimpland a module with adefstructThe other two approaches both require additional understanding of the details of protocol dispatch, versus having a straightforward
emptythat calls a function in the struct’s module.LostKobrakai
I‘d likely go for a behaviour, which includes all necessary functionality, and have a protocol with fallback to any, where the any implementations defaults to calling the functions of the behaviour on the struct module.
Qqwy
Let me give some extra context. There definitely are situations in which I’d go for @LostKobrakai 's approach, but it cannot be used here.
Arrays and some similar libraries (e.g. okasaki, sets, prioqueue) have a unified interface module (in this case
Arrays) which contains some generic code. For some functions this generic code calls a particular protocol implementation.This pattern is common elsewhere in Elixir. For instance we have an
Enummodule which contains generic code that internally uses theEnumerableprotocol implementations.The idea is that user code should (only) use the unified interface, and that they can specify in configuration (either in config.exs or by passing explicit options to
Arrays.empty/1orArrays.new/2) which array implementation they want to use.This works great, except when actually creating the initial structs (. Here we cannot dispatch to the protocol implementation because we do not have a struct yet. We only have the module name.
And that is where the conundrum lies.
What do we do for this situation?
Adding a function (also called
empty) to the module that contains thedefstructas @al2o3cr is indeed the current approach.To make it slightly more clear that we need this module to implement this particular function we use a behaviour.
However, this means we have ánd a behaviour ánd a protocol, with the pros and cons outlined in the first post above.
We’re looking for ways to make the interface of the library as a whole better.
(For both users as well as implementers of new e.g. array backends).
LostKobrakai
ˋArraysˋ is not the protocol though – ˋArrays.Protocolˋ is. Your public API is not your protocol, and given the constraint you mentioned it cannot be. Same for e.g. ˋEnumˋ btw. The protocol is ˋEnumerableˋ while ˋEnumˋ uses it to provide a nice API. But on the other hand take a look at ˋAccessˋ, which is actually a behaviour (even when often mentioned to be a protocol), which you need to implement to have datatypes be accessible as data containers.
You‘re obviously in a situation where you need both the behaviour version of datatypes providing certain functions as well as the protocol side. What I suggested would at least remove the need of explicitly defining the protocol implementation unless something truly custom needs to happen. The downside to behaviours however is that they cannot be implemented in userland like protocols can.
In the end I question if you actually need ˋemptyˋ on the protocol, because how useful is ˋArray.Protocol.empty(…)ˋ if there‘s nothing to dispatch on. For ˋEnumˋ one would also do ˋMapSet.new(list) |> Enum.map(…)ˋ as well.
Qqwy
There are two differences between
EnumandArray.Enumfunctions change the enumerable into a list anyway, making something like starting with e.g.MapSet.newless useful/common.Currently there is an
Arraysmodule with the user-facing code, theArrays.Protocolmodule that defines the protocol and theArrays.Behaviourmodule that defines the related behaviour (consisting only ofempty).al2o3cr
If that’s the goal, there should be a way to make that decision at compile-time; paying an ETS lookup every time code wants an empty value isn’t going to help performance.
One way to do that would be to create an “instance module” where you specify the implementation and then calls to the right functions get compiled in - see
Ecto.Repofor an example of this style. This works as long as the code that’s manipulating these structures is application code; if you’re expecting to be able to use other packages from Hex things get more complicated (since those modules won’t know your instance module).ityonemo
Protocol already defines a behaviour, so you should just declare that behaviour in an outer module that defdelegates to the protocol module.
If you do the following, you will see that dialyxir/elixir_ls indicates the error “type mysmatch for @callback f/1 in P behaviour”
moreover, if you do
Code.Typespec.fetch_callbacks(P)it will show you the correct callback for theP.f/1function.I also just verified that you can add extra callbacks to the Protocol callback if you desire.
eksperimental
This is precisely how I have solved this problem, with the addition of callbacks inside the protocol definition.
By the way, what does Pr stand for?
ityonemo
Protocol? Lol. Naming things is hard.
eksperimental
I thought P stood for Protocol