Re: How to handle nested case
Jesper Louis Andersen <[email protected]>
| Newsgroups | gmane.comp.lang.erlang.general |
|---|---|
| Message-ID | <CAGrdgiXAc=UY8xAOk3r7h8xrS1-KbW4vu4wG9jeRX6eHpNEjkg@mail.gmail.com> |
What about something like:
get_nas_from_conf() ->
{ok, Server} = get_radius_host(),
{ok, Port} = get_radius_port(),
{ok, Secret} = get_radius_secret(),
{Server, Port, Secret}.
Errors are now just crashes. But if the errors are really truly something
you want to handle, chances are you need some other flow anyway.
On Sat, Sep 18, 2021 at 10:50 PM Gian Lorenzo Meocci <[email protected]>
wrote:
> Hi,
> I have a function like this:
>
> get_nas_from_conf() ->
> case get_radius_host() of
> {ok, Server} ->
> case get_radius_port() of
> {ok, Port} ->
> case get_radius_secret() of
> {ok, Secret} ->
> {Server, Port, Secret};
> E -> E
> end;
> E ->
> E
> end;
> E ->
> E
> end.
>
> Which is the best way to write this kind of function?
>
> I'd like to have a with operator like in Elixir, to rewrite my function in
> this way:
>
> get_nas_from_conf() ->
> with {ok, Server} <- get_radius_host(),
> {ok, Port} = get_radius_port(),
> {ok, Secret} = get_radius_secret() ->
> {Server, Port, Secret};
> catch
> {error, _Reason} = E ->
> E
> end.
>
> Any suggestion?
>
> --
> GL
> https://www.meocci.it <https://meox.github.io>
>
--
J.