stjefim

stjefim

Hello!

I want to “save function” (module, name, arity) to the database to be able to call it later, potentially after BEAM was restarted. My plan is to use Functions.capture(module, function_name, arity) to be able to call the function after “loading” from the database.

How can I obtain module, function name and arity from a function capture (e.g. &MyModule.my_function/0) to “save function”? I have found Functions.info(fun) function, however, the documentation has a note saying that it should be used for debug only. What are the reasons it is debug only? What are the alternatives?

First 10 of 11 Posts Switch mode

dimitarvp

dimitarvp

Not sure I follow. You have the module, the function name and the arity beforehand, why use the result of Function.capture result at all? Why not cut out the middleman and just store those 3 pieces in the DB? :thinking:

stjefim

stjefim OP

Not sure if I understood you correctly, but here is the clarification. I plan to use Functions.capture to “load function” from the database. My problem is how to “store function” to the database from the Elixir code, i.e. I want to write a function function_to_string(f) which can be called like this function_to_string(&MyModule.my_function/0) and would return [module: "MyModule", name: "my_function", arity: 0]" and this result I would store in the database.

So to answer your question - I agree I just need to store these 3 pieces in the DB, however, how to obtain them from a function capture.

bartblast

bartblast

Creator of Hologram

Hey @stjefim, are you aware of Kernel.apply/3?

derek-zhou

derek-zhou

I don’t think there is a general solution as function can be anonymous. Also, storing function in a db may not be the best idea. Code will change, db record last for a long time. Also, think of the security implication.

stjefim

stjefim OP

Thank you, it will be useful after “loading function” - no need to do Functions.capture.

dimitarvp

dimitarvp

You want to store the function’s bytecode itself in the DB? :thinking:

I still don’t get your requirement.

stjefim

stjefim OP

I agree with all your points:

  • I will not support anonymous functions.
  • Haven’t thought about versioning yet, but not a big problem for me.
  • Agreed - but can do some validation to allow only certain functions to be called.
stjefim

stjefim OP

No, I will not store byte code in DB. My requirement is to convert function capture, e.g. &MyModule.my_function/0 into module name as string, function name as string and function arity as integer.

derek-zhou

derek-zhou

That’s not possible. Because you can’t turn a function value back to MFA, just like you can’t turn a value back to the variable name.

You can store the function value itself though:

binary = :erlang.term_to_binary(&MyModule.my_function/0)
# store in db
fun = :erlang.binary_to_term(binary)
fun.()

However, as I mentioned above, that’s a big foot gun.

jswanner

jswanner

The underlying Erlang function docs says it’s “mainly” for debugging:

This BIF is mainly intended for debugging, but it can sometimes be useful in library functions that need to verify, for example, the arity of a fun.

That said, the :telemetry library uses it to verify you supply an external function as a handler.

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
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
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
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
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
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New

We're in Beta

About us Mission Statement