shahryarjb
Hi, I have Elixir macro that I want to use it as @behaviour in my project. but there is a problem I can not be able to use a @type as a parameters of a macro.
My macro
defmodule MishkaPub.ActivityStream.Validator do
defmacro __using__(opts) do
quote(bind_quoted: [opts: opts]) do
type = Keyword.get(opts, :type)
module = Keyword.get(opts, :module)
@type t :: unquote(type)
@type action() :: :build | :validate
@callback build(t()) :: {:ok, action(), t()} | {:error, action(), any()}
@callback build(t(), list(String.t())) ::
{:ok, action(), t()} | {:error, action(), any()}
@callback validate(t()) :: {:ok, action(), t()} | {:error, action(), any()}
@callback validate(t(), list(String.t())) ::
{:ok, action(), t()} | {:error, action(), any()}
@behaviour unquote(module)
end
end
end
And the Elixir file I want to use it
defmodule MishkaPub.ActivityStream.Type.Object do
alias MishkaPub.ActivityStream.Validator
@type tt :: %__MODULE__{
id: String.t(),
type: String.t(),
name: String.t(),
replies: list(String.t())
}
defstruct [
:id,
:type,
..
]
use Validator, module: __MODULE__, type: tt()
def build(%__MODULE__{} = params) do
{:ok, :build, Map.merge(%__MODULE__{}, params)}
rescue
_e ->
{:ok, :build, :unexpected}
end
...
end
but I have this error
** (CompileError) lib/activity_stream/validator.ex:3: undefined function type/0 (there is no such import)
How can fix this error?
Another problem if this is fixed! I have 2 duplicated types. (tt(), t()) but I just want to have one type which should be t()
Thank you in advance
![]()
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #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)
hst337
Please note that
@callbackattribute is set in the module which defines the interface. While@behaviouris set in the module which implements the interface.So you’ll actually need something like this
al2o3cr
+1 to what @hst337 said, the behaviour and the implementation need to be separate modules.
Some other thoughts:
passing
__MODULE__isn’t required, the module that saiduseis available as__MODULE__inside thequoteblock.apart from failing to compile, the only thing that
typeinValidatordoes is definet. What about just expecting the user to write@type t :: etc etc etcoutside of theuseand then using it in the@callbacks?shahryarjb
I just wanted to create a structure to force programer to do something I want and prevent duplicating code!! so I figured out I have some duplicated
@callbackin many modules like:The only thing is different in each modules of my project the first entry of my type I mean
t(), first of all I could usestruct()for all of them but it is kind of of usinganylike and I want to have a specific one.christhekeele
The folk in this thread are providing solid advice to improve your approach, which I would recommend following and would resolve your issues.
However, to address the specific cause of this error the way you are doing things today, for learning about Elixir metaprogramming:
You have an unquoting issue in your macro. Take just the lines here:
You have a variable,
opts, inside of your macro’s context, containing a keyword list. To make that available to your generated code, you have tounquoteit—which you have implicitly viabind_quoted, no problem!That means that the variable you next introduce,
type, is only available in the generated code. So when you proceed tounquote(type), you are getting the equivalent ofvariable type does not exists—since it does not exist inside the macro’s context.You have 3 options:
Unquote
optsand extract the type exclusively in the generated code context:Extract the type exclusively in the macro context and
unquotein the generate code:Extract the type exclusively in the macro context and
bind_quoted:I believe the 3rd option is popular, although personally I tend to prefer the second, as I like to be explicit about my
optsmunging andunquote-ing.shahryarjb
Thank you it is very good to know how to do.