vshesh
Hi everyone,
I’m struggling to understand behaviours and dynamic dispatch. The example in the getting started with elixir page doesn’t make any sense to me:
defmodule Parser do
@callback parse(String.t) :: {:ok, term} | {:error, String.t}
@callback extensions() :: [String.t]
def parse!(implementation, contents) do
case implementation.parse(contents) do
{:ok, data} -> data
{:error, error} -> raise ArgumentError, "parsing error: #{error}"
end
end
end
Where does the implementation come from?
I tried using this myself when writing a module and I am doing something wrong, just not clear what. I don’t understand how to use the implementation’s functions when writing the handle_call method:
defmodule Program do
use GenServer
@callback inputs() :: [atom]
@callback init(term) :: any
@callback handle_data(any, map, map) :: term
@callback emit(term) :: map
@impl GenServer
def init(arg) do
## How do I use the implementation's inputs function? there's no implementation passed in here
__MODULE__.inputs
|> Enum.each(fn x -> Phoenix.PubSub.subscribe :inputs, x end)
{:ok, {%{}, __MODULE__.init(arg)}}
end
@impl true
def handle_call(%OSC.Message{address: address, arguments: arguments}, _, {inputs, state}) do
data = get_latest_reading(address, arguments)
newinputs = %{inputs | address => data}
# Same question in this area
if map_size(newinputs) === length __MODULE__.inputs do
newstate = __MODULE__.handle_data(state, inputs, newinputs)
__MODULE__.emit(newstate)
|> Enum.map(fn {k, v} -> Phoenix.PubSub.broadcast(:outputs, k, v) end)
{:noreply, {newinputs, newstate}}
else
{:noreply, {newinputs, state}}
end
end
def get_latest_reading(address, arguments) do
receive do
%OSC.Message{address: ^address, arguments: args} ->
get_latest_reading(address, args)
after 0 -> arguments
end
end
end
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
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
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
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
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 8 of 8 Posts
pickme467
Hi,
I believe there is no magic in dynamic dispatch. What might be missing in the example is how to use parse!
As I understand it you use parse the following way (assuming you have JSONParser defined):
I hope that helps,
Pawel
vshesh
Oh… I thought if there is a module
JSONParserthat has a line@behavior Parserthen I could just callJSONParser.parse!("some string")and the dispatch would happen correctly. Isn’t that how weuse GenServerand then call the using class’sstart_linkinstead of GenServer’s start_link, right?How do I write a function that uses the callbacks in the behavior definition then?
Eg
handle_callis a GenServer function that has a specific signature. How do I access the implementation’s functions in that case? A plaininputsorhandle_datadoesn’t work, and I can’t expect GenServer to callhandle_datawith the implementation module. does__MODULE__correspond to the currently active module? Is there something likeselfin python?eksperimental
I think you are mixing up concepts. Behaviours is just a way to define callbacks that must be implemented, and some can be optional.
usecan be used in behaviours and protocols to define generic definitions of these callbacks, but nothing stops you from usinguseout of these situations.As @pickme467 there is no magic in behaviours, the magic happens with
useunless you read the source code you never know what’s happening behind the scenes.You could achieve
JSONParser.parse!("some string"), you would have to define it in yourParser.__using__/1macro and calluse Parservshesh
Ok…
so if I have a behavior like:
How do I achieve a pattern like “I want to write a function that an implementor of this behavior will get by default”? I was trying:
This is not right because behaviors don’t work like that… I have to use the using macro:
Then I would
use Xinstead of@behavior Xso that I get the extra code that I want.Is that correct? Is there a better way of doing this?
eksperimental
You are about right.
This is the real implementation.
If you just want to use
use X, you need to add@behaviour Xinside your using macroeksperimental
Additionally in X you can define
@callback three(any, any) :: integer(), and inside__using__setdefoverridable: three: 2vshesh
^ What does adding that extra callback do? IIUC, it’s making
threepart of the contract of the behavior (so any code that relies on anXcan expect athreeeven if the implementation doesn’tuse X?Is that right?
And say I want X to use a behavior as well, like GenServer. So all implementers of X should transitively
use GenServer. Does that go under__using__or in the main module definition?so is it
or
eksperimental
Yes. that’ s correct.
Regarding your second question, what I can recommend you is do not use
use Xto start with, see whereuse GenServerwill go, and if it makes sense where you will have to define the callbacks. Then try to abstract things intoX.__using__/1and see what will make the best use ofuse X. rememberusejust inserts code. You can pretty much copy and paste and port the quoted parts. You will figure it out.