Compare commits
17 Commits
uw-dynamic
...
master
Author | SHA1 | Date | |
---|---|---|---|
dda5cac7a9 | |||
![]() |
07d61722b4 | ||
4ac7531351 | |||
![]() |
f996253e6b | ||
![]() |
b9a51acf55 | ||
![]() |
5df23c05c1 | ||
![]() |
b358dfe914 | ||
0288719ae1 | |||
![]() |
795c7f7860 | ||
0d77ca0388 | |||
ed204f8526 | |||
![]() |
a949d166f6 | ||
![]() |
ba771836fb | ||
c403fa89a1 | |||
![]() |
dd3e731480 | ||
![]() |
6563ef9de7 | ||
bff07885fb |
37
README.md
37
README.md
@ -2,6 +2,8 @@
|
||||
|
||||
Serialization helpers for the Gajumaru.
|
||||
|
||||
For an overview of the static serializer, see [this document](doc/static.md).
|
||||
|
||||
## Build
|
||||
|
||||
$ rebar3 compile
|
||||
@ -30,6 +32,7 @@ how the type information is represented. The fully serialized form is
|
||||
produced by the `serialize` functions.
|
||||
|
||||
The basic types supported by the encoder are:
|
||||
* `integer()` (`anyint`, code: 246)
|
||||
* `neg_integer()` (`negint`, code: 247)
|
||||
* `non_neg_integer()` (`int` , code: 248)
|
||||
* `binary()` (`binary`, code: 249)
|
||||
@ -40,6 +43,9 @@ The basic types supported by the encoder are:
|
||||
* `gmser_id:id()` (`id` , code: 254)
|
||||
* `atom()` (`label` , code: 255)
|
||||
|
||||
(The range of codes is chosen because the `gmser_chain_objects` codes
|
||||
range from 10 to 200, and also to stay within 1 byte.)
|
||||
|
||||
When encoding `map` types, the map elements are first sorted.
|
||||
|
||||
When specifying a map type for template-driven encoding, use
|
||||
@ -52,6 +58,24 @@ Labels correspond to (existing) atoms in Erlang.
|
||||
Decoding of a label results in a call to `binary_to_existing_atom/2`, so will
|
||||
fail if the corresponding atom does not already exist.
|
||||
|
||||
This behavior can be modified using the option `#{missing_labels => fail | create | convert}`,
|
||||
where `fail` is the default, as described above, `convert` means that missing atoms are
|
||||
converted to binaries, and `create` means that the atom is created dynamically.
|
||||
|
||||
The option can be passed e.g.:
|
||||
```erlang
|
||||
gmser_dyn:deserialize(Binary, set_opts(#{missing_labels => convert}))
|
||||
```
|
||||
|
||||
or
|
||||
```erlang
|
||||
gmser_dyn:deserialize(Binary, set_opts(#{missing_labels => convert}, Types))
|
||||
```
|
||||
|
||||
By calling `gmser_dyn:register_types/1`, after having added options to the type map,
|
||||
the options can be made to take effect automatically.
|
||||
|
||||
|
||||
It's possible to cache labels for more compact encoding.
|
||||
Note that when caching labels, the same cache mapping needs to be used on the
|
||||
decoder side.
|
||||
@ -122,8 +146,17 @@ to encode as each type in the list, in the specified order, until one matches.
|
||||
gmser_dyn:encode_typed(#{alt => [negint,int]}, 5) -> [<<0>>,<<1>>,[<<247>>,<<5>>]]
|
||||
gmser_dyn:encode_typed(#{alt => [negint,int]}, 5) -> [<<0>>,<<1>>,[<<248>>,<<5>>]]
|
||||
|
||||
gmser_dyn:register_type(246, anyint, #{alt => [negint, int]})
|
||||
|
||||
gmser_dyn:encode_typed(anyint,-5) -> [<<0>>,<<1>>,[<<246>>,[<<247>>,<<5>>]]]
|
||||
gmser_dyn:encode_typed(anyint,5) -> [<<0>>,<<1>>,[<<246>>,[<<248>>,<<5>>]]]
|
||||
```
|
||||
|
||||
### Notes
|
||||
|
||||
Note that `anyint` is a standard type. The static serializer supports only
|
||||
positive integers (`int`), as negative numbers are forbidden on-chain.
|
||||
For dynamic encoding e.g. in messaging protocols, handling negative numbers can
|
||||
be useful, so the `negint` type was added as a dynamic type. To encode a full-range
|
||||
integer, the `alt` construct is needed.
|
||||
|
||||
(Floats are not supported, as they are non-deterministic. Rationals and fixed-point
|
||||
numbers could easily be handled as high-level types, e.g. as `{int,int}`.)
|
||||
|
83
doc/static.md
Normal file
83
doc/static.md
Normal file
@ -0,0 +1,83 @@
|
||||
|
||||
# Static Serialization
|
||||
|
||||
The `gmserialization` and `gmser_chain_objects` modules implement the
|
||||
static serialization support used in the Gajumaru blockchain.
|
||||
|
||||
The purpose is to produce fully deterministic serialization, in order
|
||||
to maintain predictable hashing.
|
||||
|
||||
Example:
|
||||
|
||||
```erlang
|
||||
%% deterministic canonical serialization.
|
||||
-spec serialize_to_binary(signed_tx()) -> binary_signed_tx().
|
||||
serialize_to_binary(#signed_tx{tx = Tx, signatures = Sigs}) ->
|
||||
gmser_chain_objects:serialize(
|
||||
?SIG_TX_TYPE,
|
||||
?SIG_TX_VSN,
|
||||
serialization_template(?SIG_TX_VSN),
|
||||
[ {signatures, lists:sort(Sigs)}
|
||||
, {transaction, aetx:serialize_to_binary(Tx)}
|
||||
]).
|
||||
|
||||
-spec deserialize_from_binary(binary()) -> signed_tx().
|
||||
deserialize_from_binary(SignedTxBin) when is_binary(SignedTxBin) ->
|
||||
[ {signatures, Sigs}
|
||||
, {transaction, TxBin}
|
||||
] = gmser_chain_objects:deserialize(
|
||||
?SIG_TX_TYPE,
|
||||
?SIG_TX_VSN,
|
||||
serialization_template(?SIG_TX_VSN),
|
||||
SignedTxBin),
|
||||
assert_sigs_size(Sigs),
|
||||
#signed_tx{ tx = aetx:deserialize_from_binary(TxBin)
|
||||
, signatures = Sigs
|
||||
}.
|
||||
|
||||
serialization_template(?SIG_TX_VSN) ->
|
||||
[ {signatures, [binary]}
|
||||
, {transaction, binary}
|
||||
].
|
||||
```
|
||||
|
||||
The terms that can be encoded using these templates are given by
|
||||
this type in `gmserialization.erl`:
|
||||
|
||||
```erlang
|
||||
-type encodable_term() :: non_neg_integer()
|
||||
| binary()
|
||||
| boolean()
|
||||
| [encodable_term()] %% Of any length
|
||||
| #{atom() => encodable_term()}
|
||||
| tuple() %% Any arity, containing encodable_term().
|
||||
| gmser_id:id().
|
||||
```
|
||||
|
||||
The template 'language' is defined by these types:
|
||||
|
||||
```erlang
|
||||
-type template() :: [{field_name(), type()}].
|
||||
-type field_name() :: atom().
|
||||
-type type() :: 'int'
|
||||
| 'bool'
|
||||
| 'binary'
|
||||
| 'id' %% As defined in aec_id.erl
|
||||
| [type()] %% Length one in the type. This means a list of any length.
|
||||
| #{items := [{field_name(), type()}]} %% Record with named fields
|
||||
%% represented as a map.
|
||||
%% Encoded as a list in the given
|
||||
%% order.
|
||||
| tuple(). %% Any arity, containing type(). This means a static size array.
|
||||
```
|
||||
|
||||
The `gmser_chain_objects.erl` module specifies a serialization code for each
|
||||
object that can go on-chain. E.g.:
|
||||
|
||||
```erlang
|
||||
tag(signed_tx) -> 11;
|
||||
...
|
||||
rev_tag(11) -> signed_tx;
|
||||
```
|
||||
|
||||
The `tag` and `vsn` are laid out in the beginning of the serialized object.
|
@ -1,29 +1,44 @@
|
||||
-module(gmser_dyn).
|
||||
|
||||
-export([ encode/1
|
||||
, encode/2
|
||||
, encode_typed/2
|
||||
, encode_typed/3
|
||||
, decode/1
|
||||
, decode/2 ]).
|
||||
-export([ encode/1 %% (Term) -> rlp()
|
||||
, encode/2 %% (Term, Types) -> rlp()
|
||||
, encode/3 %% (Term, Vsn, Types) -> rlp()
|
||||
, encode_typed/2 %% (Type, Term) -> rlp()
|
||||
, encode_typed/3 %% (Type, Term, Types) -> rlp()
|
||||
, encode_typed/4 %% (Type, Term, Vsn, Types) -> rlp()
|
||||
, decode/1 %% (RLP) -> Term
|
||||
, decode/2 %% (RLP, Types) -> Term
|
||||
, decode/3 %% (RLP, Vsn, Types) -> Term
|
||||
, decode_typed/2 %% (Type, RLP) -> Term
|
||||
, decode_typed/3 %% (Type, RLP, Types) -> Term
|
||||
, decode_typed/4 ]). %% (Type, RLP, Vsn, Types) -> Term
|
||||
|
||||
-export([ serialize/1
|
||||
, serialize/2
|
||||
, serialize_typed/2
|
||||
, serialize_typed/3
|
||||
, deserialize/1
|
||||
, deserialize/2 ]).
|
||||
-export([ serialize/1 %% (Term) -> Bin
|
||||
, serialize/2 %% (Term, Types) -> Bin
|
||||
, serialize/3 %% (Term, Vsn, Types) -> Bin
|
||||
, serialize_typed/2 %% (Type, Term) -> Bin
|
||||
, serialize_typed/3 %% (Type, Term, Types) -> Bin
|
||||
, serialize_typed/4 %% (Type, Term, Vsn, Types) -> Bin
|
||||
, deserialize/1 %% (Bin) -> Term
|
||||
, deserialize/2 %% (Bin, Types) -> Term
|
||||
, deserialize/3 ]). %% (Bin, Vsn, Types) -> Term
|
||||
|
||||
%% register a type schema, inspect existing schema
|
||||
-export([ register_types/1
|
||||
, registered_types/0
|
||||
, registered_types/1
|
||||
, latest_vsn/0
|
||||
, get_opts/1
|
||||
, set_opts/1
|
||||
, set_opts/2
|
||||
, types_from_list/1
|
||||
, revert_to_default_types/0
|
||||
, dynamic_types/0 ]).
|
||||
|
||||
%% Register individual types, or cache labels
|
||||
-export([ register_type/3
|
||||
, cache_label/2 ]).
|
||||
, cache_label/2
|
||||
]).
|
||||
|
||||
-import(gmserialization, [ decode_field/2 ]).
|
||||
|
||||
@ -36,41 +51,53 @@
|
||||
-include_lib("eunit/include/eunit.hrl").
|
||||
-endif.
|
||||
|
||||
serialize(Term) -> rlp_encode(encode(Term)).
|
||||
serialize(Term, Types) -> rlp_encode(encode(Term, Types)).
|
||||
serialize_typed(Type, Term) -> rlp_encode(encode_typed(Type, Term)).
|
||||
serialize_typed(Type, Term, Types) -> rlp_encode(encode_typed(Type, Term, Types)).
|
||||
serialize(Term) ->
|
||||
Vsn = latest_vsn(),
|
||||
rlp_encode(encode(Term, Vsn, registered_types(Vsn))).
|
||||
|
||||
deserialize(Binary) -> decode(rlp_decode(Binary)).
|
||||
deserialize(Binary, Types) -> decode(rlp_decode(Binary), Types).
|
||||
serialize(Term, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
Vsn = types_vsn(Types),
|
||||
rlp_encode(encode(Term, Vsn, Types)).
|
||||
|
||||
serialize(Term, Vsn, Types) ->
|
||||
rlp_encode(encode(Term, Vsn, proper_types(Types, Vsn))).
|
||||
|
||||
encode(Term) ->
|
||||
encode(Term, registered_types()).
|
||||
serialize_typed(Type, Term) ->
|
||||
Vsn = latest_vsn(),
|
||||
rlp_encode(encode_typed(Type, Term, Vsn, registered_types(Vsn))).
|
||||
|
||||
encode(Term, Types) ->
|
||||
encode(Term, vsn(Types), Types).
|
||||
serialize_typed(Type, Term, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
Vsn = types_vsn(Types),
|
||||
rlp_encode(encode_typed(Type, Term, Vsn, Types)).
|
||||
|
||||
encode(Term, Vsn, Types) ->
|
||||
[ encode_basic(int, 0)
|
||||
, encode_basic(int, Vsn)
|
||||
, encode_(Term, Vsn, Types) ].
|
||||
serialize_typed(Type, Term, Vsn, Types) ->
|
||||
rlp_encode(encode_typed(Type, Term, Vsn, proper_types(Types, Vsn))).
|
||||
|
||||
encode_typed(Type, Term) ->
|
||||
encode_typed(Type, Term, registered_types()).
|
||||
deserialize(Binary) ->
|
||||
Fields0 = rlp_decode(Binary),
|
||||
case decode_tag_and_vsn(Fields0) of
|
||||
{0, Vsn, Fields} ->
|
||||
decode_(Fields, Vsn, registered_types(Vsn));
|
||||
Other ->
|
||||
error({illegal_serialization, Other})
|
||||
end.
|
||||
|
||||
encode_typed(Type, Term, Types) ->
|
||||
encode_typed(Type, Term, vsn(Types), Types).
|
||||
|
||||
encode_typed(Type, Term, Vsn, Types) ->
|
||||
[ encode_basic(int, 0)
|
||||
, encode_basic(int, Vsn)
|
||||
, encode_typed_(Type, Term, Vsn, Types) ].
|
||||
|
||||
decode(Fields) ->
|
||||
decode(Fields, registered_types()).
|
||||
|
||||
decode(Fields0, Types) ->
|
||||
deserialize(Binary, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
Vsn0 = types_vsn(Types),
|
||||
Fields0 = rlp_decode(Binary),
|
||||
case decode_tag_and_vsn(Fields0) of
|
||||
{0, Vsn, Fields} when Vsn0 == undefined; Vsn0 == Vsn ->
|
||||
decode_(Fields, Vsn, Types);
|
||||
Other ->
|
||||
error({illegal_serialization, Other})
|
||||
end.
|
||||
|
||||
deserialize(Binary, Vsn, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
Fields0 = rlp_decode(Binary),
|
||||
case decode_tag_and_vsn(Fields0) of
|
||||
{0, Vsn, Fields} ->
|
||||
decode_(Fields, Vsn, Types);
|
||||
@ -78,15 +105,95 @@ decode(Fields0, Types) ->
|
||||
error({illegal_serialization, Other})
|
||||
end.
|
||||
|
||||
encode(Term) ->
|
||||
Vsn = latest_vsn(),
|
||||
encode(Term, Vsn, registered_types(Vsn)).
|
||||
|
||||
encode(Term, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
encode(Term, types_vsn(Types), Types).
|
||||
|
||||
encode(Term, Vsn, Types0) ->
|
||||
Types = proper_types(Types0, Vsn),
|
||||
[ encode_basic(int, 0)
|
||||
, encode_basic(int, Vsn)
|
||||
, encode_(Term, Vsn, Types) ].
|
||||
|
||||
encode_typed(Type, Term) ->
|
||||
Vsn = latest_vsn(),
|
||||
encode_typed(Type, Term, Vsn, registered_types(Vsn)).
|
||||
|
||||
encode_typed(Type, Term, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
encode_typed(Type, Term, types_vsn(Types), Types).
|
||||
|
||||
encode_typed(Type, Term, Vsn, Types0) ->
|
||||
Types = proper_types(Types0, Vsn),
|
||||
[ encode_basic(int, 0)
|
||||
, encode_basic(int, Vsn)
|
||||
, encode_typed_(Type, Term, Vsn, Types) ].
|
||||
|
||||
decode(Fields) ->
|
||||
Vsn = latest_vsn(),
|
||||
decode(Fields, Vsn, registered_types(Vsn)).
|
||||
|
||||
decode(Fields, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
decode(Fields, types_vsn(Types), Types).
|
||||
|
||||
decode(Fields0, Vsn, Types0) ->
|
||||
Types = proper_types(Types0, Vsn),
|
||||
case decode_tag_and_vsn(Fields0) of
|
||||
{0, Vsn, Fields} ->
|
||||
decode_(Fields, Vsn, Types);
|
||||
Other ->
|
||||
error({illegal_encoding, Other})
|
||||
end.
|
||||
|
||||
decode_typed(Type, Fields) ->
|
||||
Vsn = latest_vsn(),
|
||||
decode_typed(Type, Fields, Vsn, registered_types(Vsn)).
|
||||
|
||||
decode_typed(Type, Fields, Types0) ->
|
||||
Types = proper_types(Types0),
|
||||
decode_typed(Type, Fields, types_vsn(Types), Types).
|
||||
|
||||
decode_typed(Type, Fields0, Vsn, Types0) ->
|
||||
Types = proper_types(Types0, Vsn),
|
||||
case decode_tag_and_vsn(Fields0) of
|
||||
{0, Vsn, Fields} ->
|
||||
decode_from_template(Type, Fields, Vsn, Types);
|
||||
Other ->
|
||||
error({illegal_encoding, Other})
|
||||
end.
|
||||
|
||||
decode_tag_and_vsn([TagBin, VsnBin, Fields]) ->
|
||||
{decode_basic(int, TagBin),
|
||||
decode_basic(int, VsnBin),
|
||||
Fields}.
|
||||
|
||||
proper_types(undefined) ->
|
||||
registered_types(latest_vsn());
|
||||
proper_types(#{} = Types) ->
|
||||
Types.
|
||||
|
||||
proper_types(undefined, Vsn) ->
|
||||
registered_types(Vsn);
|
||||
proper_types(#{} = Types, Vsn) ->
|
||||
assert_vsn(Vsn, Types).
|
||||
|
||||
types_vsn(#{vsn := Vsn}) -> Vsn;
|
||||
types_vsn(_) -> latest_vsn().
|
||||
|
||||
assert_vsn(V, #{vsn := V} = Types) -> Types;
|
||||
assert_vsn(V, #{vsn := Other} ) -> error({version_mismatch, V, Other});
|
||||
assert_vsn(V, #{} = Types ) -> Types#{vsn => V}.
|
||||
|
||||
dynamic_types() ->
|
||||
#{ vsn => ?VSN
|
||||
, codes =>
|
||||
#{ 247 => negint
|
||||
#{ 246 => anyint
|
||||
, 247 => negint
|
||||
, 248 => int
|
||||
, 249 => binary
|
||||
, 250 => bool
|
||||
@ -96,7 +203,8 @@ dynamic_types() ->
|
||||
, 254 => id
|
||||
, 255 => label}
|
||||
, rev =>
|
||||
#{ negint => 247
|
||||
#{ anyint => 246
|
||||
, negint => 247
|
||||
, int => 248
|
||||
, binary => 249
|
||||
, bool => 250
|
||||
@ -108,7 +216,8 @@ dynamic_types() ->
|
||||
, labels => #{}
|
||||
, rev_labels => #{}
|
||||
, templates =>
|
||||
#{ negint => negint
|
||||
#{ anyint => #{alt => [negint, int]}
|
||||
, negint => negint
|
||||
, int => int
|
||||
, binary => binary
|
||||
, bool => bool
|
||||
@ -118,17 +227,20 @@ dynamic_types() ->
|
||||
, id => id
|
||||
, label => label
|
||||
}
|
||||
, options => #{}
|
||||
}.
|
||||
|
||||
vsn(Types) ->
|
||||
maps:get(vsn, Types, ?VSN).
|
||||
|
||||
registered_types() ->
|
||||
case persistent_term:get({?MODULE, types}, undefined) of
|
||||
registered_types(latest_vsn()).
|
||||
|
||||
registered_types(Vsn) ->
|
||||
case persistent_term:get(pt_key(), undefined) of
|
||||
undefined ->
|
||||
dynamic_types();
|
||||
Types when is_map(Types) ->
|
||||
Types
|
||||
#{latest_vsn := _, types := #{Vsn := Types}} ->
|
||||
Types;
|
||||
#{latest_vsn := _, types := _} ->
|
||||
dynamic_types()
|
||||
end.
|
||||
|
||||
template(TagOrCode, Vsn, Types) ->
|
||||
@ -197,11 +309,6 @@ encode_typed_(Tag, Term, E, Vsn, #{templates := Ts, rev := Rev} = Types)
|
||||
encode_typed_(MaybeTemplate, Term, _, Vsn, Types) ->
|
||||
encode_maybe_template(MaybeTemplate, Term, Vsn, Types).
|
||||
|
||||
maybe_emit(E, Code, Enc) when E > 0 ->
|
||||
[encode_basic(int, Code), Enc];
|
||||
maybe_emit(0, _, Enc) ->
|
||||
Enc.
|
||||
|
||||
encode_maybe_template(#{items := _} = Type, Term, Vsn, Types) ->
|
||||
case is_map(Term) of
|
||||
true ->
|
||||
@ -211,6 +318,8 @@ encode_maybe_template(#{items := _} = Type, Term, Vsn, Types) ->
|
||||
end;
|
||||
encode_maybe_template(#{alt := _} = Type, Term, Vsn, Types) ->
|
||||
encode_from_template(Type, Term, Vsn, emit(dyn()), Types);
|
||||
encode_maybe_template(#{switch := _} = Type, Term, Vsn, Types) ->
|
||||
encode_from_template(Type, Term, Vsn, emit(dyn()), Types);
|
||||
encode_maybe_template(Pat, Term, Vsn, Types) when is_list(Pat);
|
||||
is_tuple(Pat) ->
|
||||
encode_from_template(Pat, Term, emit(dyn()), Vsn, Types);
|
||||
@ -247,14 +356,19 @@ auto_template(T) ->
|
||||
decode_from_template(any, Fld, Vsn, Types) ->
|
||||
decode_(Fld, Vsn, Types);
|
||||
decode_from_template(#{items := Items}, Fld, Vsn, Types) when is_list(Fld) ->
|
||||
Zipped = lists:zip(Items, Fld),
|
||||
Zipped = lists:zipwith(
|
||||
fun({{K, T}, V}) -> {K, T, V};
|
||||
({{opt,K,T}, V}) -> {K, T, V}
|
||||
end, Items, Fld),
|
||||
lists:foldl(
|
||||
fun({{K, Type}, V}, Map) ->
|
||||
fun({K, Type, V}, Map) ->
|
||||
maps:is_key(K, Map) andalso error(badarg, duplicate_field),
|
||||
Map#{K => decode_from_template({any,Type}, V, Vsn, Types)}
|
||||
end, #{}, Zipped);
|
||||
decode_from_template(#{alt := Alts} = T, Fld, Vsn, Types) when is_list(Alts) ->
|
||||
decode_alt(Alts, Fld, T, Vsn, Types);
|
||||
decode_from_template(#{switch := Alts} = T, Fld, Vsn, Types) when is_map(Alts) ->
|
||||
decode_switch(Alts, Fld, T, Vsn, Types);
|
||||
decode_from_template(list, Flds, Vsn, Types) ->
|
||||
[decode_(F, Vsn, Types) || F <- Flds];
|
||||
decode_from_template(map, Fld, Vsn, Types) ->
|
||||
@ -294,15 +408,28 @@ encode_from_template(list, L, E, Vsn, Types) when is_list(L) ->
|
||||
encode_from_template(#{items := Items}, M, E, Vsn, Types) ->
|
||||
assert_type(is_map(M), map, M),
|
||||
Emit = noemit(E),
|
||||
Encode = fun(K, Type, V) ->
|
||||
[encode_from_template(any, K, Emit, Vsn, Types),
|
||||
encode_from_template(Type, V, Emit, Vsn, Types)]
|
||||
end,
|
||||
emit(E, map, Types,
|
||||
lists:map(
|
||||
fun({K, Type}) ->
|
||||
lists:foldr(
|
||||
fun({K, Type}, Acc) ->
|
||||
V = maps:get(K, M),
|
||||
[encode_from_template(any, K, Emit, Vsn, Types),
|
||||
encode_from_template(Type, V, Emit, Vsn, Types)]
|
||||
end, Items));
|
||||
[Encode(K, Type, V) | Acc];
|
||||
({opt, K, Type}, Acc) ->
|
||||
case maps:find(K, M) of
|
||||
{ok, V} ->
|
||||
[Encode(K, Type, V) | Acc];
|
||||
error ->
|
||||
Acc
|
||||
end
|
||||
end, [], Items));
|
||||
encode_from_template(#{alt := Alts} = T, Term, E, Vsn, Types) when is_list(Alts) ->
|
||||
encode_alt(Alts, Term, T, E, Vsn, Types);
|
||||
encode_from_template(#{switch := Alts} = T, Term, E, Vsn, Types) when is_map(Alts),
|
||||
is_map(Term) ->
|
||||
encode_switch(Alts, Term, T, E, Vsn, Types);
|
||||
encode_from_template(map, M, E, Vsn, Types) ->
|
||||
assert_type(is_map(M), map, M),
|
||||
Emit = emit(E),
|
||||
@ -328,13 +455,13 @@ encode_from_template(Type, List, E, Vsn, Types) when is_list(Type), is_list(List
|
||||
encode_fields(Type, List, E, Vsn, Types);
|
||||
encode_from_template(label, V, E, _, Types) ->
|
||||
assert_type(is_atom(V), label, V),
|
||||
emit(E, label, Types,
|
||||
case find_cached_label(V, Types) of
|
||||
error ->
|
||||
encode_basic(label, V, E, Types);
|
||||
{ok, Code} when is_integer(Code) ->
|
||||
[encode_basic(int, Code)]
|
||||
end);
|
||||
case find_cached_label(V, Types) of
|
||||
error ->
|
||||
encode_basic(label, V, E, Types);
|
||||
{ok, Code} when is_integer(Code) ->
|
||||
emit(E, label, Types,
|
||||
[encode_basic(int, Code)])
|
||||
end;
|
||||
encode_from_template(Type, V, E, _, Types) when Type == id
|
||||
; Type == binary
|
||||
; Type == bool
|
||||
@ -368,6 +495,30 @@ encode_alt_([A|Alts], Term, T, E, Vsn, Types) ->
|
||||
encode_alt_([], Term, T, _, _, _) ->
|
||||
error({illegal, T, Term}).
|
||||
|
||||
decode_switch(Alts, Fld, T, Vsn, Types) ->
|
||||
[KFld, VFld] = Fld,
|
||||
Key = decode_(KFld, Vsn, Types),
|
||||
case maps:find(Key, Alts) of
|
||||
{ok, SubType} ->
|
||||
SubTerm = decode_from_template(SubType, VFld, Vsn, Types),
|
||||
#{Key => SubTerm};
|
||||
error ->
|
||||
error({illegal, T, Fld})
|
||||
end.
|
||||
|
||||
encode_switch(Alts, Term, T, E, Vsn, Types) ->
|
||||
assert_type(map_size(Term) == 1, singleton_map, Term),
|
||||
[{Key, Subterm}] = maps:to_list(Term),
|
||||
case maps:find(Key, Alts) of
|
||||
{ok, SubType} ->
|
||||
Enc = encode_from_template(SubType, Subterm, E, Vsn, Types),
|
||||
emit(E, map, Types,
|
||||
[[encode_from_template(any, Key, E, Vsn, Types),
|
||||
Enc]]);
|
||||
error ->
|
||||
error({illegal, T, Term})
|
||||
end.
|
||||
|
||||
%% Basically, dynamically encoding a statically defined object
|
||||
encode_fields([{Field, Type}|TypesLeft],
|
||||
[{Field, Val}|FieldsLeft], E, Vsn, Types) ->
|
||||
@ -401,15 +552,29 @@ emit(0, _, _, Enc) ->
|
||||
emit_code(Tag, #{rev := Tags}) ->
|
||||
encode_basic(int, maps:get(Tag, Tags)).
|
||||
|
||||
decode_basic(Type, [Tag,V], #{codes := Codes}) ->
|
||||
decode_basic(Type, [Tag,V], #{codes := Codes} = Types) ->
|
||||
case decode_basic(int, Tag) of
|
||||
Code when map_get(Code, Codes) == Type ->
|
||||
decode_basic(Type, V);
|
||||
decode_basic_(Type, V, Types);
|
||||
_ ->
|
||||
error(illegal)
|
||||
end;
|
||||
decode_basic(Type, V, _) ->
|
||||
decode_basic(Type, V).
|
||||
decode_basic(Type, V, Types) ->
|
||||
decode_basic_(Type, V, Types).
|
||||
|
||||
decode_basic_(label, Fld, #{options := #{missing_labels := Opt}}) ->
|
||||
Bin = decode_basic(binary, Fld),
|
||||
case Opt of
|
||||
create -> binary_to_atom(Bin, utf8);
|
||||
fail -> binary_to_existing_atom(Bin, utf8);
|
||||
convert ->
|
||||
try binary_to_existing_atom(Bin, utf8)
|
||||
catch
|
||||
error:_ -> Bin
|
||||
end
|
||||
end;
|
||||
decode_basic_(Type, Fld, _) ->
|
||||
decode_basic(Type, Fld).
|
||||
|
||||
decode_basic(label, Fld) ->
|
||||
binary_to_existing_atom(decode_basic(binary, Fld), utf8);
|
||||
@ -441,29 +606,68 @@ rlp_encode(Fields) ->
|
||||
%% Type registration and validation code
|
||||
|
||||
register_types(Types) when is_map(Types) ->
|
||||
register_types(latest_vsn(), Types).
|
||||
|
||||
register_types(Vsn, Types) ->
|
||||
Codes = maps:get(codes, Types, #{}),
|
||||
Rev = rev_codes(Codes),
|
||||
Templates = maps:get(templates, Types, #{}),
|
||||
Labels = maps:get(labels, Types, #{}),
|
||||
#{codes := Codes0, rev := Rev0, labels := Labels0, templates := Templates0} =
|
||||
Options = maps:get(options, Types, #{}),
|
||||
#{codes := Codes0, rev := Rev0, labels := Labels0,
|
||||
templates := Templates0, options := Options0} =
|
||||
dynamic_types(),
|
||||
Merged = #{ codes => maps:merge(Codes0, Codes)
|
||||
, rev => maps:merge(Rev0, Rev)
|
||||
, templates => maps:merge(Templates0, Templates)
|
||||
, options => maps:merge(Options0, Options)
|
||||
, labels => maps:merge(Labels0, Labels) },
|
||||
assert_sizes(Merged),
|
||||
assert_mappings(Merged),
|
||||
Merged1 = assert_label_cache(Merged),
|
||||
put_types(Merged1).
|
||||
put_types(Vsn, Merged1).
|
||||
|
||||
latest_vsn() ->
|
||||
case persistent_term:get(pt_key(), undefined) of
|
||||
undefined -> ?VSN;
|
||||
#{latest_vsn := V} ->
|
||||
V
|
||||
end.
|
||||
|
||||
pt_key() -> {?MODULE, types}.
|
||||
|
||||
put_types(Types) ->
|
||||
persistent_term:put({?MODULE, types}, Types).
|
||||
put_types(types_vsn(Types), Types).
|
||||
|
||||
put_types(V, Types) ->
|
||||
K = pt_key(),
|
||||
Old = case persistent_term:get(K, undefined) of
|
||||
undefined -> default_types_pt();
|
||||
Existing -> Existing
|
||||
end,
|
||||
put_types_(K, V, Types, Old).
|
||||
|
||||
put_types_(K, V, Types, #{latest_vsn := V0, types := Types0} = Old) ->
|
||||
New = case V > V0 of
|
||||
true ->
|
||||
Old#{latest_vsn := V,
|
||||
types := Types0#{V => Types#{vsn => V}}};
|
||||
false ->
|
||||
Old#{types := Types0#{V => Types#{vsn => V}}}
|
||||
end,
|
||||
persistent_term:put(K, New).
|
||||
|
||||
types_from_list(L) ->
|
||||
lists:foldl(fun elem_to_type/2, dynamic_types(), L).
|
||||
types_from_list(L, registered_types()).
|
||||
|
||||
register_type(Code, Tag, Template) when is_integer(Code), Code >= 0 ->
|
||||
#{codes := Codes, rev := Rev, templates := Temps} = Types = registered_types(),
|
||||
types_from_list(L, Types) ->
|
||||
gmser_dyn_types:from_list(L, Types).
|
||||
|
||||
register_type(Code, Tag, Template) ->
|
||||
register_type(latest_vsn(), Code, Tag, Template).
|
||||
|
||||
register_type(Vsn, Code, Tag, Template) when is_integer(Code), Code >= 0 ->
|
||||
#{codes := Codes, rev := Rev, templates := Temps} = Types = registered_types(Vsn),
|
||||
case {is_map_key(Code, Codes), is_map_key(Tag, Rev)} of
|
||||
{false, false} ->
|
||||
New = Types#{ codes := Codes#{Code => Tag}
|
||||
@ -475,6 +679,15 @@ register_type(Code, Tag, Template) when is_integer(Code), Code >= 0 ->
|
||||
{_, true} -> error(tag_exists)
|
||||
end.
|
||||
|
||||
set_opts(Opts) ->
|
||||
set_opts(Opts, registered_types()).
|
||||
|
||||
set_opts(Opts, Types) ->
|
||||
Types#{options => Opts}.
|
||||
|
||||
get_opts(#{options := Opts}) ->
|
||||
Opts.
|
||||
|
||||
cache_label(Code, Label) when is_integer(Code), Code >= 0, is_atom(Label) ->
|
||||
#{labels := Lbls, rev_labels := RevLbls} = Types = registered_types(),
|
||||
case {is_map_key(Label, Lbls), is_map_key(Code, RevLbls)} of
|
||||
@ -487,37 +700,11 @@ cache_label(Code, Label) when is_integer(Code), Code >= 0, is_atom(Label) ->
|
||||
{_,true} -> error(code_exists)
|
||||
end.
|
||||
|
||||
elem_to_type({Tag, Code, Template}, Acc) when is_atom(Tag), is_integer(Code) ->
|
||||
#{codes := Codes, rev := Rev, templates := Temps} = Acc,
|
||||
case {is_map_key(Tag, Rev), is_map_key(Code, Codes)} of
|
||||
{false, false} ->
|
||||
Acc#{ codes := Codes#{Code => Tag}
|
||||
, rev := Rev#{Tag => Code}
|
||||
, templates => Temps#{Tag => Template}
|
||||
};
|
||||
{true, _} -> error({duplicate_tag, Tag});
|
||||
{_, true} -> error({duplicate_code, Code})
|
||||
end;
|
||||
elem_to_type({labels, Lbls}, Acc) ->
|
||||
lists:foldl(fun add_label/2, Acc, Lbls);
|
||||
elem_to_type(Elem, _) ->
|
||||
error({invalid_type_list_element, Elem}).
|
||||
|
||||
add_label({L, Code}, #{labels := Lbls, rev_labels := RevLbls} = Acc)
|
||||
when is_atom(L), is_integer(Code), Code > 0 ->
|
||||
case {is_map_key(L, Lbls), is_map_key(Code, RevLbls)} of
|
||||
{false, false} ->
|
||||
Acc#{labels := Lbls#{L => Code},
|
||||
rev_labels := RevLbls#{Code => L}};
|
||||
{true, _} -> error({duplicate_label, L});
|
||||
{_, true} -> error({duplicate_label_code, Code})
|
||||
end;
|
||||
add_label(Elem, _) ->
|
||||
error({invalid_label_elem, Elem}).
|
||||
|
||||
|
||||
revert_to_default_types() ->
|
||||
persistent_term:put({?MODULE, types}, dynamic_types()).
|
||||
persistent_term:put(pt_key(), default_types_pt()).
|
||||
|
||||
default_types_pt() ->
|
||||
#{latest_vsn => ?VSN, types => #{?VSN => dynamic_types()}}.
|
||||
|
||||
assert_sizes(#{codes := Codes, rev := Rev, templates := Ts} = Types) ->
|
||||
assert_sizes(map_size(Codes), map_size(Rev), map_size(Ts), Types).
|
||||
@ -600,6 +787,11 @@ round_trip_test_() ->
|
||||
T <- t_sample_types()
|
||||
].
|
||||
|
||||
ser_round_trip_test_() ->
|
||||
[?_test(t_ser_round_trip(T)) ||
|
||||
T <- t_sample_types()
|
||||
].
|
||||
|
||||
t_sample_types() ->
|
||||
[ 5
|
||||
, -5
|
||||
@ -625,18 +817,31 @@ user_types_test_() ->
|
||||
, ?_test(t_reg_template_vsnd_fun())
|
||||
, ?_test(t_reg_label_cache())
|
||||
, ?_test(t_reg_label_cache2())
|
||||
, ?_test(t_reg_options())
|
||||
]}.
|
||||
|
||||
dynamic_types_test_() ->
|
||||
[ ?_test(revert_to_default_types())
|
||||
, ?_test(t_typed_map())
|
||||
, ?_test(t_alts())
|
||||
, ?_test(t_switch())
|
||||
, ?_test(t_anyints())
|
||||
, ?_test(t_missing_labels())
|
||||
].
|
||||
|
||||
versioned_types_test_() ->
|
||||
[ ?_test(t_new_version())
|
||||
].
|
||||
|
||||
t_round_trip(T) ->
|
||||
?debugVal(T),
|
||||
?assertMatch({T, T}, {T, decode(encode(T))}).
|
||||
|
||||
t_ser_round_trip(T) ->
|
||||
Data = serialize(T),
|
||||
?debugFmt("Data (~p) = ~p~n", [T, Data]),
|
||||
?assertMatch({T, T}, {T, deserialize(Data)}).
|
||||
|
||||
t_round_trip_typed(Type, T) ->
|
||||
?debugVal(T),
|
||||
?assertMatch({T, T}, {T, decode(encode_typed(Type, T))}).
|
||||
@ -688,7 +893,6 @@ t_reg_template_vsnd_fun() ->
|
||||
E = encode_typed(tup2f1, {3,4}),
|
||||
{3,4} = decode(E),
|
||||
ok.
|
||||
|
||||
|
||||
t_reg_label_cache() ->
|
||||
Enc0 = gmser_dyn:encode('1'),
|
||||
@ -712,7 +916,7 @@ t_reg_label_cache() ->
|
||||
?assertNotEqual(Enc0a, Enc1a).
|
||||
|
||||
t_reg_label_cache2() ->
|
||||
TFromL = gmser_dyn:types_from_list(
|
||||
TFromL = types_from_list(
|
||||
[ {lbl_tup2, 1003, {label, label}}
|
||||
, {labels,
|
||||
[{'1', 49}]}
|
||||
@ -724,14 +928,69 @@ t_reg_label_cache2() ->
|
||||
[<<0>>,<<1>>,[<<3,235>>,[[<<49>>],[<<49>>]]]] = Enc,
|
||||
_Tup = gmser_dyn:decode(Enc).
|
||||
|
||||
t_reg_options() ->
|
||||
register_types(set_opts(#{missing_labels => convert})),
|
||||
[Dyn,Vsn,[Am,<<"random">>]] = gmser_dyn:encode(random),
|
||||
EncNewAm = [Dyn,Vsn,[Am,<<"foo12345">>]],
|
||||
<<"foo12345">> = gmser_dyn:decode(EncNewAm),
|
||||
ok.
|
||||
|
||||
t_typed_map() ->
|
||||
Term = #{a => 13, {key,1} => [a]},
|
||||
Enc = encode_typed(#{items => [{a,int},{{key,1},[label]}]}, Term),
|
||||
?assertEqual(Term, decode(Enc)).
|
||||
Items = [{a,int},{{key,1},[label]}],
|
||||
OptItems = [{opt, b, int} | Items],
|
||||
Enc = encode_typed(#{items => Items}, Term),
|
||||
?assertEqual(Term, decode(Enc)),
|
||||
?assertEqual(Enc, encode_typed(#{items => Items}, Term)),
|
||||
?assertEqual(Enc, encode_typed(#{items => OptItems}, Term)),
|
||||
Term1 = Term#{b => 4},
|
||||
Enc1 = encode_typed(#{items => OptItems}, Term1),
|
||||
?assertEqual(Term1, decode(Enc1)),
|
||||
?assertEqual(Enc, encode_typed(#{items => Items}, Term1)).
|
||||
|
||||
t_alts() ->
|
||||
t_round_trip_typed(#{alt => [negint, int]}, -4),
|
||||
t_round_trip_typed(#{alt => [negint, int]}, 4),
|
||||
ok.
|
||||
|
||||
t_switch() ->
|
||||
T = #{switch => #{a => int, b => binary}},
|
||||
t_round_trip_typed(T, #{a => 17}),
|
||||
t_round_trip_typed(T, #{b => <<"foo">>}),
|
||||
?assertError({illegal,int,<<"foo">>}, encode_typed(T, #{a => <<"foo">>})),
|
||||
MMap = #{a => 17, b => <<"foo">>},
|
||||
?assertError({illegal, singleton_map, MMap}, encode_typed(T, MMap)).
|
||||
|
||||
t_anyints() ->
|
||||
t_round_trip_typed(anyint, -5),
|
||||
t_round_trip_typed(anyint, 5),
|
||||
ok.
|
||||
|
||||
t_missing_labels() ->
|
||||
[Dyn,Vsn,[Am,<<"random">>]] = gmser_dyn:encode(random),
|
||||
EncNewAm = [Dyn,Vsn,[Am,<<"flurbee">>]],
|
||||
?assertError(badarg, gmser_dyn:decode(EncNewAm)),
|
||||
?assertError(badarg, gmser_dyn:decode(EncNewAm, set_opts(#{missing_labels => fail}))),
|
||||
<<"flurbee">> = gmser_dyn:decode(EncNewAm, set_opts(#{missing_labels => convert})),
|
||||
true = is_atom(gmser_dyn:decode(EncNewAm, set_opts(#{missing_labels => create}))),
|
||||
ok.
|
||||
|
||||
t_new_version() ->
|
||||
V = latest_vsn(),
|
||||
Types0 = registered_types(V),
|
||||
V1 = V+1,
|
||||
Types1 = types_from_list([{vsn, V1},
|
||||
{msg1, 300, {int, int}}], Types0),
|
||||
T2 = {3,5},
|
||||
Enc21 = encode_typed(msg1, T2, Types1),
|
||||
T2 = decode(Enc21, Types1),
|
||||
V2 = V1+1,
|
||||
Types2 = types_from_list([{vsn, V2},
|
||||
{modify, {msg1, {int, int, int}}}], Types1),
|
||||
Enc21 = encode_typed(msg1, T2, Types1),
|
||||
?assertError({illegal,{int,int,int},T2}, encode_typed(msg1, T2, Types2)),
|
||||
T3 = {3,5,7},
|
||||
Enc32 = encode_typed(msg1, T3, Types2),
|
||||
T3 = decode(Enc32, Types2).
|
||||
|
||||
-endif.
|
||||
|
62
src/gmser_dyn_types.erl
Normal file
62
src/gmser_dyn_types.erl
Normal file
@ -0,0 +1,62 @@
|
||||
-module(gmser_dyn_types).
|
||||
|
||||
-export([ add_type/4
|
||||
, from_list/2
|
||||
, expand/1 ]).
|
||||
-export([ next_code/1 ]).
|
||||
|
||||
next_code(#{codes := Codes}) ->
|
||||
lists:max(maps:keys(Codes)) + 1.
|
||||
|
||||
add_type(Tag, Code, Template, Types) ->
|
||||
elem_to_type({Tag, Code, Template}, Types).
|
||||
|
||||
from_list(L, Types) ->
|
||||
lists:foldl(fun elem_to_type/2, Types, L).
|
||||
|
||||
expand(#{vsn := V, templates := Templates0} = Types) ->
|
||||
Templates =
|
||||
maps:map(
|
||||
fun(_, F) when is_function(F, 0) ->
|
||||
F();
|
||||
(_, F) when is_function(F, 1) ->
|
||||
F(V);
|
||||
(_, T) ->
|
||||
T
|
||||
end, Templates0),
|
||||
Types#{templates := Templates}.
|
||||
|
||||
elem_to_type({Tag, Code, Template}, Acc) when is_atom(Tag), is_integer(Code) ->
|
||||
#{codes := Codes, rev := Rev, templates := Temps} = Acc,
|
||||
case {is_map_key(Tag, Rev), is_map_key(Code, Codes)} of
|
||||
{false, false} ->
|
||||
Acc#{ codes := Codes#{Code => Tag}
|
||||
, rev := Rev#{Tag => Code}
|
||||
, templates => Temps#{Tag => Template}
|
||||
};
|
||||
{true, _} -> error({duplicate_tag, Tag});
|
||||
{_, true} -> error({duplicate_code, Code})
|
||||
end;
|
||||
elem_to_type({modify, {Tag, Template}}, Acc) ->
|
||||
#{codes := _, rev := Rev, templates := Templates} = Acc,
|
||||
_ = maps:get(Tag, Rev),
|
||||
Templates1 = Templates#{Tag := Template},
|
||||
Acc#{templates := Templates1};
|
||||
elem_to_type({labels, Lbls}, Acc) ->
|
||||
lists:foldl(fun add_label/2, Acc, Lbls);
|
||||
elem_to_type({vsn, V}, Acc) ->
|
||||
Acc#{vsn => V};
|
||||
elem_to_type(Elem, _) ->
|
||||
error({invalid_type, Elem}).
|
||||
|
||||
add_label({L, Code}, #{labels := Lbls, rev_labels := RevLbls} = Acc)
|
||||
when is_atom(L), is_integer(Code), Code > 0 ->
|
||||
case {is_map_key(L, Lbls), is_map_key(Code, RevLbls)} of
|
||||
{false, false} ->
|
||||
Acc#{labels := Lbls#{L => Code},
|
||||
rev_labels := RevLbls#{Code => L}};
|
||||
{true, _} -> error({duplicate_label, L});
|
||||
{_, true} -> error({duplicate_label_code, Code})
|
||||
end;
|
||||
add_label(Elem, _) ->
|
||||
error({invalid_label, Elem}).
|
Loading…
x
Reference in New Issue
Block a user