yourpalal
With/1 design patterns
When using with/1 to handle a bunch of matches and things that return {:ok, _} or :error or {:error, _} I often need to differentiate between errors, and I’ll wrap the individual matches in tuples, like this:
with(
{{:ok, shoes}, _} <- {get_shoes(outfit), :shoes},
{{:ok, shirt}, _} <- {get_shirt(outfit), :shirt},
{true, _} <- {shoes_match_shirt?(shoes, shirt), :matching}
) do
{:ok, "service allowed"}
else
{error, :shoes} ->
{:error, "you forgot your shoes!"}
_ ->
:error
end
Mainly, I’m just curious how other people are handling things like this! What are you doing when you need to handle multiple error cases from with/1 ? One obvious solution is to give up on with/1 and use if or regular case statements or something like that.
Second, I’m open to any suggestions/criticism of the above code style.
Most Liked
hlx
I think you’re better of returning a more meaningful error from get_shoes/1
Example
{:error, {ShoesNotFound, "you forgot your shoes!"}}
# or
{:error, %ShoesNotFound{message: "you forgot your shoes!"}}
peerreynders
instead of
Map.fetch(params, :shoes)
design patterns
Following Scott Wlaschin’s guidance - use functions!
def fetch_item(map, key) do
case Map.fetch(map, key) do
:error ->
{:error, key}
result ->
result
end
end
...
with(
{:ok, shoes} <- fetch_item(outfit, :shoes),
{:ok, shirt} <- fetch_item(outfit, :shirt),
{true, _} <- {shoes_match_shirt?(shoes, shirt), :matching}
) do
{:ok, "service allowed"}
else
{:error, :shoes} ->
{:error, "you forgot your shoes!"}
_ ->
:error
end
...
or
def fetch_item(map, key, msg) when is_binary(msg) do
case Map.fetch(map, key) do
:error ->
{:error, msg}
result ->
result
end
end
...
with(
{:ok, shoes} <- fetch_item(outfit, :shoes, "you forgot your shoes!"),
{:ok, shirt} <- fetch_item(outfit, :shirt, "you forgot your shirt!"),
{true, _} <- {shoes_match_shirt?(shoes, shirt), :matching}
) do
{:ok, "service allowed"}
else
{:error, msg} = msg_error when is_binary(msg) ->
msg_error
_ ->
:error
end
...
peerreynders
The idiom is {:ok, value}, {:error, reason}
So the pattern match should focus on the contents of reason.
For example:
Process.monitor/1 will result in a general message of the format:
{:DOWN, ref, :process, object, reason}
where reason can take on values like :normal, :noproc or :noconnection, i.e. values that are highly distinct and imply their context. So it’s a good idea to follow the same practice with {:error, reason} tuples.
Popular in Questions
Other popular topics
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
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









