refactor out copy/pasted encode methods

This commit is contained in:
alisdair sullivan 2014-04-18 23:43:40 +00:00
parent 91bce610a6
commit a46118ecb3

View file

@ -39,19 +39,32 @@ encode(Term) -> encode(Term, ?MODULE).
-spec encode(Term::any(), EntryPoint::module()) -> any(). -spec encode(Term::any(), EntryPoint::module()) -> any().
encode([], _EntryPoint) -> [start_array, end_array]; -ifndef(release_supports_maps).
encode([{}], _EntryPoint) -> [start_object, end_object]; encode(Term, EntryPoint) -> encode_(Term, EntryPoint).
-endif.
encode([{_, _}|_] = Term, EntryPoint) -> -ifdef(release_supports_maps).
encode(Map, _EntryPoint) when is_map(Map), map_size(Map) < 1 -> [start_object, end_object];
encode(Term, EntryPoint) when is_map(Term) ->
lists:flatten(
[start_object] ++ [ EntryPoint:encode(T, EntryPoint) || T <- unpack(Term) ] ++ [end_object]
);
encode(Term, EntryPoint) -> encode_(Term, EntryPoint).
-endif.
encode_([], _EntryPoint) -> [start_array, end_array];
encode_([{}], _EntryPoint) -> [start_object, end_object];
encode_([{_, _}|_] = Term, EntryPoint) ->
lists:flatten( lists:flatten(
[start_object] ++ [ EntryPoint:encode(T, EntryPoint) || T <- unzip(Term) ] ++ [end_object] [start_object] ++ [ EntryPoint:encode(T, EntryPoint) || T <- unzip(Term) ] ++ [end_object]
); );
encode(Term, EntryPoint) when is_list(Term) -> encode_(Term, EntryPoint) when is_list(Term) ->
lists:flatten( lists:flatten(
[start_array] ++ [ EntryPoint:encode(T, EntryPoint) || T <- Term ] ++ [end_array] [start_array] ++ [ EntryPoint:encode(T, EntryPoint) || T <- Term ] ++ [end_array]
); );
encode(Else, _EntryPoint) -> [Else]. encode_(Else, _EntryPoint) -> [Else].
unzip(List) -> unzip(List, []). unzip(List) -> unzip(List, []).
@ -59,6 +72,15 @@ unzip(List) -> unzip(List, []).
unzip([], Acc) -> lists:reverse(Acc); unzip([], Acc) -> lists:reverse(Acc);
unzip([{K, V}|Rest], Acc) when is_binary(K); is_atom(K); is_integer(K) -> unzip(Rest, [V, K] ++ Acc). unzip([{K, V}|Rest], Acc) when is_binary(K); is_atom(K); is_integer(K) -> unzip(Rest, [V, K] ++ Acc).
-ifdef(release_supports_maps).
unpack(Map) -> unpack(maps:keys(Map), Map, []).
unpack([], _, Acc) -> lists:reverse(Acc);
unpack([K|Rest], Map, Acc) when is_binary(K); is_atom(K); is_integer(K) ->
unpack(Rest, Map, [maps:get(K, Map), K] ++ Acc).
-endif.
-ifdef(TEST). -ifdef(TEST).
-include_lib("eunit/include/eunit.hrl"). -include_lib("eunit/include/eunit.hrl").