Skip to content

Commit c5403b5

Browse files
Merge branches 'erlang-27', 'bugfix-json-format-maps-doc' and 'tag-generated'
4 parents 80886b7 + 080f72f + 54e9acf + 945ed64 commit c5403b5

6 files changed

+58
-18
lines changed

Makefile

+16-1
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,20 @@ override ERLC_FLAGS += -DNO_HAVE_ERL20_STR_FUNCTIONS=true
179179
endif
180180
endif
181181

182+
ifdef NO_HAVE_PLUS_MINUS_ZERO_FLOAT
183+
override ERLC_FLAGS += -DNO_HAVE_PLUS_MINUS_ZERO_FLOAT=true
184+
else
185+
## attempt to auto-detect
186+
HAVE_PLUS_MINUS_ZERO_FLOAT := $(shell $(ERL) $(ERL_BATCH_FLAGS) -eval ' \
187+
io:format("~p~n", [+0.0 =/= -0.0]), \
188+
receive after 10 -> ok end.' \
189+
-s erlang halt)
190+
ifeq ($(HAVE_PLUS_MINUS_ZERO_FLOAT),false)
191+
override ERLC_FLAGS += -DNO_HAVE_PLUS_MINUS_ZERO_FLOAT=true
192+
endif
193+
endif
194+
195+
182196

183197
# Sorting it also eliminates duplicates
184198
MODULES := \
@@ -270,7 +284,8 @@ clean_plt:
270284

271285
$(plt):
272286
dialyzer -q --build_plt --output_plt $@ \
273-
--apps erts kernel stdlib syntax_tools compiler crypto eunit
287+
--apps erts kernel stdlib syntax_tools compiler \
288+
parsetools crypto eunit
274289

275290

276291
FORCE:

rebar.config.script

+15-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,21 @@ NoHaveErl20StrFunctions =
2323
catch error:undef -> [{d,'NO_HAVE_ERL20_STR_FUNCTIONS'}]
2424
end.
2525

26-
ConfigOpts = NoHaveMapsOpts ++ NoHaveRandOpts ++ NoHaveErl20StrFunctions.
26+
%% In Erlang 27, the expression +0.0 =:= -0.0 will evaluate to false
27+
%% whereas in Erlang 26 and earlier, it evaluates to true.
28+
%% In Erlang 26.1, as a prep for Erlang 27, using 0.0 in match expreessions or
29+
%% in comparisons with =:= or =/= will result in a warning that hints about
30+
%% rewriting the value to either +0.0 or -0.0.
31+
%% This preprocessor definition is for we want to run something, eg a unit
32+
%% test, in Erlang versions that can tell +0.0 and -0.0 apart.
33+
NoHavePlusMinusZeroFloat =
34+
case +0.0 =:= -0.0 of
35+
true -> [{d,'NO_HAVE_PLUS_MINUS_ZERO_FLOAT'}];
36+
false -> []
37+
end.
38+
39+
ConfigOpts = NoHaveMapsOpts ++ NoHaveRandOpts ++ NoHaveErl20StrFunctions ++
40+
NoHavePlusMinusZeroFloat.
2741

2842
[{require_otp_vsn, ".*"},
2943

src/gpb_compile.erl

+7-6
Original file line numberDiff line numberDiff line change
@@ -1226,8 +1226,8 @@ file(File) ->
12261226
%%
12271227
%% The `{json_format,Format}' option is a convenience shorthand, and will expand
12281228
%% as indicated below. If the json_format is not specified, it defaults to
1229-
%% `map' if the `maps' option is specified, and otherwise to `eep18' when
1230-
%% generating code for records.
1229+
%% `maps' if the <a href="#option-maps">`maps'</a> option is specified,
1230+
%% and otherwise to `eep18' when generating code for records.
12311231
%% <dl>
12321232
%% <dt>jsx</dt>
12331233
%% <dd><code>[{json_object_format, eep18},
@@ -1247,7 +1247,7 @@ file(File) ->
12471247
%% {json_array_format, list},
12481248
%% {json_string_format, binary},
12491249
%% {json_null, null}]</code></dd>
1250-
%% <dt>map</dt>
1250+
%% <dt>maps</dt>
12511251
%% <dd><code>[{json_object_format, map},
12521252
%% {json_key_format, binary},
12531253
%% {json_array_format, list},
@@ -2913,8 +2913,8 @@ c() ->
29132913
%% <dt><a id="cmdline-option-json-format"/>
29142914
%% `-json-format jsx | mochijson2 | jiffy | maps'</dt>
29152915
%% <dd>Specify format for the JSON representation.
2916-
%% `maps' is default if the `-maps' option is specified,
2917-
%% otherwise the jsx format is default.<br/>
2916+
%% `maps' is default if the <a href="#cmdline-option-maps">`-maps'</a>
2917+
%% option is specified, otherwise the jsx format is default.<br/>
29182918
%% Corresponding Erlang-level option:
29192919
%% <a href="#option-json_format">json_format</a></dd>
29202920
%% <dt><a id="cmdline-option-json-object-format"/>
@@ -4392,7 +4392,8 @@ format_erl(Mod, Defs, DefsNoRenamings, DefsForIntrospect,
43924392
DoDecoders = gpb_lib:get_gen_decoders(Opts),
43934393
CompileOptsStr = get_erlc_compile_options_str(Opts),
43944394
gpb_lib:iolist_to_utf8_or_escaped_binary(
4395-
[?f("%% @private~n"
4395+
[?f("%% % this file is @generated~n"
4396+
"%% @private~n"
43964397
"%% Automatically generated, do not edit~n"
43974398
"%% Generated by ~p version ~s~n"
43984399
"%% Version source: ~s~n",

src/gpb_gen_nif.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2480,7 +2480,7 @@ underscore_suffix(A) when is_atom(A) ->
24802480
'is_c++_keyword'(do) -> true;
24812481
'is_c++_keyword'(double) -> true;
24822482
'is_c++_keyword'(dynamic_cast) -> true;
2483-
'is_c++_keyword'(else) -> true;
2483+
'is_c++_keyword'('else') -> true;
24842484
'is_c++_keyword'(enum) -> true;
24852485
'is_c++_keyword'(explicit) -> true;
24862486
'is_c++_keyword'(export) -> true;

test/gpb_compile_tests.erl

+1-9
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,6 @@ calc_byte_copy_lim_aux(N) when N =< 8192 ->
13301330
binary:referenced_byte_size(B),
13311331
byte_size(C)} of
13321332
{_, Sz, Sz} ->
1333-
?assertEqual(10, binary:referenced_byte_size(binary:copy(A))),
13341333
{found, {at_least, N1}};
13351334
_X ->
13361335
%% Maybe sub-binaries of larger size don't get copied?
@@ -1461,14 +1460,7 @@ strings_as_binaries_opt_together_with_copy_bytes_opt_test() ->
14611460
"}"],
14621461
[strings_as_binaries, {copy_bytes, auto}]),
14631462
Data = M:encode_msg({m1, "some string"}),
1464-
{m1, <<"some string">>=StrBin} = M:decode_msg(Data, m1),
1465-
HasBinary = (catch binary:copy(<<1>>)) == <<1>>, % binary exists since R14A
1466-
if HasBinary ->
1467-
?assertEqual(byte_size(StrBin),
1468-
binary:referenced_byte_size(StrBin));
1469-
true ->
1470-
ok
1471-
end,
1463+
{m1, <<"some string">>} = M:decode_msg(Data, m1),
14721464
unload_code(M).
14731465

14741466
accepts_both_strings_and_binaries_as_input_test() ->

test/gpb_tests.erl

+18
Original file line numberDiff line numberDiff line change
@@ -1138,6 +1138,24 @@ proto3_type_default_values_never_serialized_for_enums_test() ->
11381138
<<>> = encode_msg({m, 0}, Defs), % when given as integer
11391139
{m, e0} = decode_msg(<<>>, m, Defs).
11401140

1141+
-ifndef(NO_HAVE_PLUS_MINUS_ZERO_FLOAT).
1142+
proto3_type_defaults_values_for_float_test() ->
1143+
DefsF = [{syntax,"proto3"},
1144+
{proto3_msgs,[m]},
1145+
{{msg,m},[#?gpb_field{name=f, fnum=1, rnum=2, type=float,
1146+
occurrence=defaulty, opts=[]}]}],
1147+
<<>> = encode_msg({m, 0.0}, DefsF),
1148+
%% -0.0 as a float or double: the signbit is 1, the rest of the bits are 0,
1149+
%% and it is little-endian.
1150+
<<13, 0,0,0,128>> = encode_msg({m, -0.0}, DefsF),
1151+
DefsD = [{syntax,"proto3"},
1152+
{proto3_msgs,[m]},
1153+
{{msg,m},[#?gpb_field{name=f, fnum=1, rnum=2, type=double,
1154+
occurrence=defaulty, opts=[]}]}],
1155+
<<>> = encode_msg({m, 0.0}, DefsD),
1156+
<<9, 0,0,0,0, 0,0,0,128>> = encode_msg({m, -0.0}, DefsD).
1157+
-endif. % NO_HAVE_PLUS_MINUS_ZERO_FLOAT
1158+
11411159
proto3_optional_test() ->
11421160
Defs = [{proto_defs_version,2},
11431161
{syntax,"proto3"},

0 commit comments

Comments
 (0)