Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow user-defined sigils via parse transforms #9647

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

williamthome
Copy link
Contributor

@williamthome williamthome commented Mar 26, 2025

This is a POC of custom sigils implementation for Erlang/OTP.

It is based on this comment on the Erlang Forums.

This is a minimal change and does not break any existing code.

How it works

The developer can use the built-in sigils, like s, S, b, and B, but it can also use any sigil it wants. However, it is obligated to handle the custom sigil with parse transform, otherwise, an invalid sigil exception will be raised at the compile time.

Why parse transform?

It was the first idea and seems to be the simplest one to implement this feature.

Example

Important

Please refer to the example project for the complete code.

-module(example).
-compile({parse_transform, json_sigil}).
-compile({parse_transform, sql_sigil}).
%% Sigils can be defined globally in rebar3.config (applies to all .erl files), e.g.:
%{erl_opts, [
%    {parse_transform, json_sigil},
%    {parse_transform, sql_sigil}
%]}.
-export([json/0]).
-export([sql/2]).

json() ->
    ~json"""
    {"key": "value"}
    """.

sql(Name, MinAge) when is_binary(Name); is_integer(MinAge) ->
    ~sql"""
    SELECT *
      FROM users
     WHERE name = {Name}
       AND age >= {MinAge}
    """.

%% Uncomment this function to raise an invalid sigil exception.
%invalid() ->
%    ~invalid"".

Running it

1> c(json_sigil), c(sql_sigil), c(example).
{ok,example}
2> example:json().
#{<<"key">> => <<"value">>}
3> example:sql(~"Bob", 18).
{sql,<<"SELECT *\n  FROM users\n WHERE name = $1\n   AND age >= $2">>,
     [<<"Bob">>,18]}
4> ~invalid"".
* 1:1: invalid sigil

Notes

I have no idea what the core team has planned for sigils.
This PR is just to initiate a discussion about the future of sigils :)

I'll continue the discussion on the same thread of the Erlang Forums of the f sigil proposal (#9512).

Copy link
Contributor

github-actions bot commented Mar 26, 2025

CT Test Results

    3 files     99 suites   1h 9m 19s ⏱️
2 221 tests 2 170 ✅ 50 💤 1 ❌
2 593 runs  2 536 ✅ 56 💤 1 ❌

For more details on these failures, see this check.

Results for commit bc95953.

♻️ This comment has been updated with latest results.

To speed up review, make sure that you have read Contributing to Erlang/OTP and that all checks pass.

See the TESTING and DEVELOPMENT HowTo guides for details about how to run test locally.

Artifacts

// Erlang/OTP Github Action Bot

@IngelaAndin IngelaAndin added team:VM Assigned to OTP team VM team:PS Assigned to OTP team PS labels Mar 31, 2025
@IngelaAndin IngelaAndin requested review from RaimoNiskanen and kikofernandez and removed request for RaimoNiskanen and kikofernandez April 1, 2025 12:24
@IngelaAndin IngelaAndin added the team:LG Assigned to OTP language group label Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
team:LG Assigned to OTP language group team:PS Assigned to OTP team PS team:VM Assigned to OTP team VM
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants