Current section
Files
Jump to
Current section
Files
src/mapz.erl
-module(mapz).
% API
-export([deep_find/2]).
-export([deep_get/2]).
-export([deep_get/3]).
-export([deep_put/3]).
-export([deep_update/3]).
-export([deep_update_with/3]).
-export([deep_update_with/4]).
-export([deep_remove/2]).
-export([deep_merge/1]).
-export([deep_merge/2]).
-export([deep_merge/3]).
-export([deep_merge_with/2]).
-export([deep_merge_with/3]).
-export([deep_iterator/1]).
-export([deep_next/1]).
-export([inverse/1]).
-export([format_error/2]).
% We must inline this so that the stack trace points to the correct function.
-compile({inline, [error_info/2]}).
%--- Types ---------------------------------------------------------------------
-export_type([path/0]).
-export_type([iterator/0]).
-export_type([combiner/0]).
-type path() :: [term()].
% A list of keys that are used to iterate deeper into a map of maps.
-opaque iterator() :: {?MODULE, none | maps:iterator(_, _) | {_, _, maps:iterator(_, _)}, path(), [maps:iterator(_, _)]}.
% An iterator representing the associations in a map with keys of type Key and values of type Value.
%
% Created using {@link deep_iterator/1}.
%
% Consumed by {@link deep_next/1}.
-type combiner() :: fun((Path::path(), Old::term(), New::term()) -> term()).
% A combiner function that takes a path, and its two conflicting old values and
% returns a new value.
%--- API ----------------------------------------------------------------------
% @doc Returns a tuple `{ok,Value}', where Value is the value associated with
% `Path', or `error' if no value is associated with `Path' in `Map'.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% </ul>
-spec deep_find(path(), map()) -> {ok, term()} | error.
deep_find(Path, Map) ->
check(Path, Map),
search(Map, Path,
fun(Value) -> {ok, Value} end,
fun(_Existing, _Key) -> error end
).
% @doc Returns value `Value' associated with `Path' if `Map' contains `Path'.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% <li>`{badvalue,P}' if a term that is not a map exists as a intermediate key at
% the path `P'</li>
% <li>`{badkey,Path}' if no value is associated with path `Path'</li>
% </ul>
-spec deep_get(path(), map()) -> term().
deep_get(Path, Map) ->
check(Path, Map),
search(Map, Path,
fun(Value) -> Value end,
fun
({ok, _Existing}, P) -> error({badvalue, P});
(error, P) -> error({badkey, P})
end
).
% @doc Returns value `Value' associated with `Path' if `Map' contains `Path'. If
% no value is associated with `Path', `Default' is returned.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% <li>`{badvalue,P}' if a term that is not a map exists as a intermediate key at
% the path `P'</li>
% </ul>
-spec deep_get(path(), map(), term()) -> term().
deep_get(Path, Map, Default) ->
check(Path, Map),
search(Map, Path,
fun(Value) -> Value end,
fun(_Existing, _P) -> Default end
).
% @doc Associates `Path' with value `Value' and inserts the association into map
% `Map2'. If path `Path' already exists in map `Map1', the old associated value
% is replaced by value `Value'. The function returns a new map `Map2' containing
% the new association and the old associations in `Map1'.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map1' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% <li>`{badvalue,P}' if a term that is not a map exists as a intermediate key at
% the path `P'</li>
% </ul>
-spec deep_put(path(), term(), map()) -> map().
deep_put(Path, Value, Map1) ->
check(Path, Map1),
update(Map1, Path, fun(_Existing) -> Value end, fun(P, Rest, V) ->
badvalue_and_create(P, Rest, V, Value)
end).
% @doc If `Path' exists in `Map1', the old associated value is replaced by value
% `Value'. The function returns a new map `Map2' containing the new associated
% value.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map1' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% <li>`{badvalue,P}' if a term that is not a map exists as a intermediate key at
% the path `P'</li>
% <li>`{badkey,Path}' if no value is associated with path `Path'</li>
% </ul>
-spec deep_update(path(), term(), map()) -> map().
deep_update(Path, Value, Map1) ->
check(Path, Map1),
update(Map1, Path, fun(_Existing) -> Value end, fun badvalue_and_badkey/3).
% @doc Update a value in a `Map1' associated with `Path' by calling `Fun' on the
% old value to get a new value.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map1' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% <li>`{badvalue,P}' if a term that is not a map exists as a intermediate key at
% the path `P'</li>
% <li>`{badkey,Path}' if no value is associated with path `Path'</li>
% <li>`badarg' if `Fun' is not a function of arity 1</li>
% </ul>
-spec deep_update_with(path(), fun((term()) -> term()), map()) -> map().
deep_update_with(Path, Fun, Map1) ->
deep_update_with_1(Path, Fun, Map1, fun badvalue_and_badkey/3).
% @doc Update a value in a `Map1' associated with `Path' by calling `Fun' on the
% old value to get a new value. If `Path' is not present in `Map1' then `Init'
% will be associated with `Path'.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map1' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% <li>`{badvalue,P}' if a term that is not a map exists as a intermediate key at
% the path `P'</li>
% <li>`badarg' if `Fun' is not a function of arity 1</li>
% </ul>
-spec deep_update_with(path(), fun((term()) -> term()), any(), map()) -> map().
deep_update_with(Path, Fun, Init, Map1) ->
deep_update_with_1(Path, Fun, Map1, fun(P, Rest, Value) ->
badvalue_and_create(P, Rest, Value, Init)
end).
deep_update_with_1(Path, Fun, Map1, Default) ->
check(Path, Map1),
check_fun(Fun, 1),
update(Map1, Path,
fun(Value) -> Fun(Value) end,
Default
).
% @doc Removes the last existing key of `Path', and its associated value from
% `Map1' and returns a new map `Map2' without that key. Any deeper non-existing
% keys are ignored.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map' is not a map</li>
% <li>`{badpath,Path}' if `Path' is not a path</li>
% </ul>
-spec deep_remove(path(), map()) -> map().
deep_remove(Path, Map) ->
check(Path, Map),
remove(Map, Path).
% @doc Merges a list of maps recursively into a single map. If a path exist in
% several maps, the value in the first nested map is superseded by the value in
% a following nested map.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' exception if any of the maps is not a map</li>
% </ul>
%
% @equiv deep_merge(fun (_, V) -> V end, #{}, Maps)
-spec deep_merge([map()]) -> map().
deep_merge(Maps) when is_list(Maps) ->
deep_merge_with(fun(_Path, _V1, V2) -> V2 end, Maps).
% @equiv deep_merge([Map1, Map2])
-spec deep_merge(map(), map()) -> map().
deep_merge(Map1, Map2) when is_map(Map1), is_map(Map2) ->
deep_merge([Map1, Map2]).
% @doc Merges a list of maps `Maps' recursively into a single map `Target'. If a
% path exist in several maps, the function `Fun' is called with the previous and
% the conflicting value to resolve the conflict. The return value from the
% function is put into the resulting map.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' exception if any of the maps is not a map</li>
% </ul>
% map.
%
% @deprecated Please use the module {@link deep_merge_with/3} instead.
-spec deep_merge(fun((Old::term(), New::term()) -> term()), map(), map() | [map()]) -> map().
deep_merge(Fun, Target, Maps) ->
deep_merge_with(fun(_P, V1, V2) -> Fun(V1, V2) end, Target, Maps).
% @doc Merges a list of maps `Maps' recursively into a single map. If a path
% exist in several maps, the function `Fun' is called with the path, the
% previous and the conflicting value to resolve the conflict. The return value
% from the function is put into the resulting map.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' exception if any of the maps is not a map</li>
% </ul>
% map.
-spec deep_merge_with(Fun::combiner(), Maps::[map()]) -> map().
deep_merge_with(Fun, [Target|Maps]) ->
deep_merge_with1(Fun, Target, Maps, []).
% @doc Merges a list of maps `Maps' recursively into a single map. If a path
% exist in several maps, the function `Fun' is called with the path, the
% previous and the conflicting value to resolve the conflict. The return value
% from the function is put into the resulting map.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' exception if any of the maps is not a map</li>
% </ul>
% map.
-spec deep_merge_with(Fun::combiner(), Map1::map(), Map2::map()) -> map().
deep_merge_with(Fun, Map1, Map2) when is_map(Map1), is_map(Map2) ->
deep_merge_with(Fun, [Map1, Map2]).
deep_merge_with1(_Fun, Target, [], _Path) when is_map(Target) ->
Target;
deep_merge_with1(Fun, Target, [From|Maps], Path) ->
deep_merge_with1(Fun, deep_merge_with1(Fun, Target, From, Path), Maps, Path);
deep_merge_with1(Fun, Target, Map, Path) when is_map(Map) ->
check_map(Target),
check_map(Map),
maps:fold(
fun(K, V, T) ->
case maps:find(K, T) of
{ok, Value} when is_map(Value), is_map(V) ->
maps:put(K, deep_merge_with1(Fun, Value, [V], Path ++ [K]), T);
{ok, Value} ->
maps:put(K, Fun(Path ++ [K], Value, V), T);
error ->
maps:put(K, V, T)
end
end,
Target,
Map
).
% @doc Returns a map iterator Iterator that can be used by {@link deep_next/1}
% to recursively traverse the path-value associations in a deep map structure.
%
% The call fails with a `{badmap,Map}' exception if Map is not a map.
-spec deep_iterator(map()) -> iterator().
deep_iterator(Map) when is_map(Map) ->
{?MODULE, maps:next(maps:iterator(Map)), [], []};
deep_iterator(Map) ->
error_info({badmap, Map}, [Map]).
% @doc Returns the next path-value association in Iterator and a new iterator
% for the remaining associations in the iterator.
%
% If the value is another map the iterator will first return the map as a value
% with its path. Only on the next call the inner value with its path is
% returned. That is, first `{Path, map(), iterator()}' and then
% `{InnerPath, Value, iterator()}'.
%
% If there are no more associations in the iterator, `none' is returned.
-spec deep_next(iterator()) -> {path(), term(), iterator()} | none.
deep_next({?MODULE, I, Trail, Stack}) ->
case {I, Stack} of
{none, []} ->
none;
{none, [Prev|Rest]} ->
deep_next({?MODULE, maps:next(Prev), lists:droplast(Trail), Rest});
{{K, V, I2}, Stack} when is_map(V) ->
Path = Trail ++ [K],
{Path, V, {?MODULE, maps:next(maps:iterator(V)), Path, [I2|Stack]}};
{{K, V, I2}, Stack} ->
Path = Trail ++ [K],
{Path, V, {?MODULE, I2, Trail, Stack}}
end;
deep_next(Iter) ->
error_info(badarg, [Iter]).
% @doc Inverts `Map' by inserting each value as the key with its corresponding
% key as the value. If two keys have the same value, one of the keys will be
% overwritten by the other in an undefined order.
%
% The call can raise the following exceptions:
% <ul>
% <li>`{badmap,Map}' if `Map' is not a map</li>
% </ul>
-spec inverse(map()) -> map().
inverse(Map) ->
maps:fold(fun(K, V, Acc) -> maps:put(V, K, Acc) end, #{}, Map).
% @hidden
format_error(_Reason, [{_M, F, As, _Info}|_]) ->
error_args(F, As).
%--- Internal Functions -------------------------------------------------------
check(Path, Map) ->
check_path(Path),
check_map(Map).
check_path(Path) when is_list(Path) -> ok;
check_path(Path) -> error_info({badpath, Path}, [Path]).
check_map(Map) when is_map(Map) -> ok;
check_map(Map) -> error_info({badmap, Map}, [Map]).
check_fun(Fun, Arity) when is_function(Fun, Arity) -> ok;
check_fun(_Fun, _Arity) -> exit(badarg).
search(Map, Path, Wrap, Default) -> search(Map, Path, Wrap, Default, []).
search(Element, [], Wrap, _Default, _Acc) ->
Wrap(Element);
search(Map, [Key|Path], Wrap, Default, Acc) when is_map(Map) ->
case maps:find(Key, Map) of
{ok, Value} -> search(Value, Path, Wrap, Default, [Key|Acc]);
error -> Default(error, lists:reverse([Key|Acc]))
end;
search(Value, [_Key|_Path], _Wrap, Default, Acc) ->
Default({ok, Value}, lists:reverse(Acc)).
update(Map, Path, Wrap, Default) -> update(Map, Path, Wrap, Default, []).
update(Map, [Key|Path], Wrap, Default, Acc) ->
Hist = [Key|Acc],
Value = case maps:find(Key, Map) of
{ok, Existing} when is_map(Existing) ->
update(Existing, Path, Wrap, Default, Hist);
{ok, Existing} ->
case Path of
[] -> Wrap(Existing);
_ -> Default(lists:reverse(Hist), Path, {ok, Existing})
end;
error ->
Default(lists:reverse(Hist), Path, error)
end,
maps:put(Key, Value, Map);
update(Map, [], Wrap, _Default, _Acc) ->
Wrap(Map).
remove(Map, []) ->
Map;
remove(Map, [First]) ->
maps:remove(First, Map);
remove(Map, [First, Second|Path]) when is_map(Map) ->
case maps:find(First, Map) of
{ok, Sub} when is_map(Sub) ->
case maps:find(Second, Sub) of
{ok, _SubSub} ->
maps:update(First, remove(Sub, [Second|Path]), Map);
error ->
maps:remove(First, Map)
end;
{ok, _Value} ->
maps:remove(First, Map);
error ->
Map
end.
create(Path, Value) ->
lists:foldr(fun(Key, Acc) -> #{Key => Acc} end, Value, Path).
badvalue_and_badkey(P, _Rest, {ok, _Existing}) -> error({badvalue, P});
badvalue_and_badkey(P, _Rest, error) -> error({badkey, P}).
badvalue_and_create(P, _Rest, {ok, _Existing}, _Init) -> error({badvalue, P});
badvalue_and_create(_P, Rest, error, Init) -> create(Rest, Init).
error_info(Reason, Args) ->
erlang:error(Reason, Args, [{error_info, #{module => ?MODULE}}]).
error_args(iterator, [_Map]) ->
#{1 => <<"not a map">>};
error_args(deep_next, [_Iter]) ->
#{1 => <<"not a valid iterator">>}.