mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Merge pull request #413 from tomas-abrahamsson/undo-386-merge
Revert "Merge pull request #386 ... gpb-recompilation...detection"
This commit is contained in:
commit
b8e0018782
2 changed files with 27 additions and 106 deletions
|
@ -29,8 +29,6 @@
|
||||||
run/1]).
|
run/1]).
|
||||||
|
|
||||||
-include_lib("eunit/include/eunit.hrl").
|
-include_lib("eunit/include/eunit.hrl").
|
||||||
-include_lib("kernel/include/file.hrl").
|
|
||||||
-include_lib("deps/retest/include/retest.hrl").
|
|
||||||
|
|
||||||
-define(MODULES,
|
-define(MODULES,
|
||||||
[foo,
|
[foo,
|
||||||
|
@ -44,13 +42,6 @@
|
||||||
test4_gpb,
|
test4_gpb,
|
||||||
test5_gpb]).
|
test5_gpb]).
|
||||||
|
|
||||||
-define(SOURCE_PROTO_FILES,
|
|
||||||
["test.proto",
|
|
||||||
"a/test2.proto",
|
|
||||||
"a/b/test3.proto",
|
|
||||||
"c/test4.proto",
|
|
||||||
"c/d/test5.proto"]).
|
|
||||||
|
|
||||||
files() ->
|
files() ->
|
||||||
[
|
[
|
||||||
{copy, "../../rebar", "rebar"},
|
{copy, "../../rebar", "rebar"},
|
||||||
|
@ -69,17 +60,6 @@ run(_Dir) ->
|
||||||
%% generating the test_gpb.hrl file, and also that it generated
|
%% generating the test_gpb.hrl file, and also that it generated
|
||||||
%% the .hrl file was generated before foo was compiled.
|
%% the .hrl file was generated before foo was compiled.
|
||||||
ok = check_beams_generated(),
|
ok = check_beams_generated(),
|
||||||
|
|
||||||
?DEBUG("Verifying recompilation~n", []),
|
|
||||||
TestErl = hd(generated_erl_files()),
|
|
||||||
TestProto = hd(source_proto_files()),
|
|
||||||
make_proto_newer_than_erl(TestProto, TestErl),
|
|
||||||
TestMTime1 = read_mtime(TestErl),
|
|
||||||
?assertMatch({ok, _}, retest_sh:run("./rebar compile", [])),
|
|
||||||
TestMTime2 = read_mtime(TestErl),
|
|
||||||
?assert(TestMTime2 > TestMTime1),
|
|
||||||
|
|
||||||
?DEBUG("Verify cleanup~n", []),
|
|
||||||
?assertMatch({ok, _}, retest_sh:run("./rebar clean", [])),
|
?assertMatch({ok, _}, retest_sh:run("./rebar clean", [])),
|
||||||
ok = check_files_deleted(),
|
ok = check_files_deleted(),
|
||||||
ok.
|
ok.
|
||||||
|
@ -101,12 +81,6 @@ generated_erl_files() ->
|
||||||
generated_hrl_files() ->
|
generated_hrl_files() ->
|
||||||
add_dir("include", add_ext(?GENERATED_MODULES, ".hrl")).
|
add_dir("include", add_ext(?GENERATED_MODULES, ".hrl")).
|
||||||
|
|
||||||
generated_beam_files() ->
|
|
||||||
add_dir("ebin", add_ext(?GENERATED_MODULES, ".beam")).
|
|
||||||
|
|
||||||
source_proto_files() ->
|
|
||||||
add_dir("src", ?SOURCE_PROTO_FILES).
|
|
||||||
|
|
||||||
file_does_not_exist(F) ->
|
file_does_not_exist(F) ->
|
||||||
not filelib:is_regular(F).
|
not filelib:is_regular(F).
|
||||||
|
|
||||||
|
@ -116,30 +90,6 @@ add_ext(Modules, Ext) ->
|
||||||
add_dir(Dir, Files) ->
|
add_dir(Dir, Files) ->
|
||||||
[filename:join(Dir, File) || File <- Files].
|
[filename:join(Dir, File) || File <- Files].
|
||||||
|
|
||||||
read_mtime(File) ->
|
|
||||||
{ok, #file_info{mtime=MTime}} = file:read_file_info(File),
|
|
||||||
MTime.
|
|
||||||
|
|
||||||
|
|
||||||
make_proto_newer_than_erl(Proto, Erl) ->
|
|
||||||
%% Do this by back-dating the erl file instead of touching the
|
|
||||||
%% proto file. Do this instead of sleeping for a second to get a
|
|
||||||
%% reliable test. Sleeping would have been needed sin ce the
|
|
||||||
%% #file_info{} (used by eg. filelib:last_modified) does not have
|
|
||||||
%% sub-second resolution (even though most file systems have).
|
|
||||||
{ok, #file_info{mtime=ProtoMTime}} = file:read_file_info(Proto),
|
|
||||||
{ok, ErlInfo} = file:read_file_info(Erl),
|
|
||||||
OlderMTime = update_seconds_to_datetime(ProtoMTime, -2),
|
|
||||||
OlderErlInfo = ErlInfo#file_info{mtime = OlderMTime},
|
|
||||||
ok = file:write_file_info(Erl, OlderErlInfo).
|
|
||||||
|
|
||||||
update_seconds_to_datetime(DT, ToAdd) ->
|
|
||||||
calendar:gregorian_seconds_to_datetime(
|
|
||||||
calendar:datetime_to_gregorian_seconds(DT) + ToAdd).
|
|
||||||
|
|
||||||
touch_file(File) ->
|
|
||||||
?assertMatch({ok, _}, retest_sh:run("touch " ++ File, [])).
|
|
||||||
|
|
||||||
check(Check, Files) ->
|
check(Check, Files) ->
|
||||||
lists:foreach(
|
lists:foreach(
|
||||||
fun(F) ->
|
fun(F) ->
|
||||||
|
|
|
@ -42,36 +42,29 @@
|
||||||
key() ->
|
key() ->
|
||||||
gpb.
|
gpb.
|
||||||
|
|
||||||
proto_compile(Config, _AppFile, ProtoFiles) ->
|
proto_compile(Config, _AppFile, _ProtoFiles) ->
|
||||||
%% Check for gpb library -- if it's not present, fail
|
%% Check for gpb library -- if it's not present, fail
|
||||||
%% since we have.proto files that need building
|
%% since we have.proto files that need building
|
||||||
case gpb_is_present() of
|
case gpb_is_present() of
|
||||||
true ->
|
true ->
|
||||||
UserGpbOpts = user_gpb_opts(Config),
|
rebar_base_compiler:run(Config, [],
|
||||||
lists:foreach(
|
"src", ".proto",
|
||||||
fun(ProtoFile) ->
|
"src", ".erl",
|
||||||
GpbOpts = UserGpbOpts ++ default_dest_opts()
|
fun compile_gpb/3,
|
||||||
++ default_include_opts(ProtoFile),
|
[{check_last_mod, true}]);
|
||||||
|
|
||||||
case needs_compile(ProtoFile, GpbOpts) of
|
|
||||||
true ->
|
|
||||||
compile_gpb(ProtoFile, GpbOpts);
|
|
||||||
false ->
|
|
||||||
ok
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
ProtoFiles);
|
|
||||||
false ->
|
false ->
|
||||||
?ERROR("The gpb library is not present in code path!\n", []),
|
?ERROR("The gpb library is not present in code path!\n", []),
|
||||||
?FAIL
|
?FAIL
|
||||||
end.
|
end.
|
||||||
|
|
||||||
proto_clean(Config, _AppFile, ProtoFiles) ->
|
proto_clean(Config, _AppFile, ProtoFiles) ->
|
||||||
GpbOpts = user_gpb_opts(Config) ++ default_dest_opts(),
|
GpbOpts = gpb_opts(Config),
|
||||||
|
MPrefix = proplists:get_value(module_name_prefix, GpbOpts, ""),
|
||||||
|
MSuffix = proplists:get_value(module_name_suffix, GpbOpts, ""),
|
||||||
rebar_file_utils:delete_each(
|
rebar_file_utils:delete_each(
|
||||||
[beam_file(F, GpbOpts) || F <- ProtoFiles]
|
[beam_relpath(MPrefix, F, MSuffix) || F <- ProtoFiles]
|
||||||
++ [erl_file(F, GpbOpts) || F <- ProtoFiles]
|
++ [erl_relpath(MPrefix, F, MSuffix) || F <- ProtoFiles]
|
||||||
++ [hrl_file(F, GpbOpts) || F <- ProtoFiles]),
|
++ [hrl_relpath(MPrefix, F, MSuffix) || F <- ProtoFiles]),
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
%% ===================================================================
|
%% ===================================================================
|
||||||
|
@ -89,27 +82,17 @@ proto_info(help, compile) ->
|
||||||
proto_info(help, clean) ->
|
proto_info(help, clean) ->
|
||||||
?CONSOLE("", []).
|
?CONSOLE("", []).
|
||||||
|
|
||||||
|
gpb_opts(Config) ->
|
||||||
|
rebar_config:get_local(Config, gpb_opts, []).
|
||||||
|
|
||||||
gpb_is_present() ->
|
gpb_is_present() ->
|
||||||
code:which(gpb) =/= non_existing.
|
code:which(gpb) =/= non_existing.
|
||||||
|
|
||||||
user_gpb_opts(Config) ->
|
compile_gpb(Source, _Target, Config) ->
|
||||||
rebar_config:get_local(Config, gpb_opts, []).
|
|
||||||
|
|
||||||
default_dest_opts() ->
|
|
||||||
[{o_erl, "src"}, {o_hrl, "include"}].
|
|
||||||
|
|
||||||
default_include_opts(Source) ->
|
|
||||||
SourceFullPath = filename:absname(Source),
|
|
||||||
[{i,filename:dirname(SourceFullPath)}].
|
|
||||||
|
|
||||||
needs_compile(ProtoFile, GpbOpts) ->
|
|
||||||
Erl = erl_file(ProtoFile, GpbOpts),
|
|
||||||
Hrl = hrl_file(ProtoFile, GpbOpts),
|
|
||||||
filelib:last_modified(Erl) < filelib:last_modified(ProtoFile) orelse
|
|
||||||
filelib:last_modified(Hrl) < filelib:last_modified(ProtoFile).
|
|
||||||
|
|
||||||
compile_gpb(Source, GpbOpts) ->
|
|
||||||
SourceFullPath = filename:absname(Source),
|
SourceFullPath = filename:absname(Source),
|
||||||
|
DefaultDestOpts = [{o_erl, "src"}, {o_hrl, "include"}],
|
||||||
|
SelfIncludeOpt = [{i,filename:dirname(SourceFullPath)}],
|
||||||
|
GpbOpts = gpb_opts(Config) ++ DefaultDestOpts ++ SelfIncludeOpt,
|
||||||
ok = filelib:ensure_dir(filename:join("ebin", "dummy")),
|
ok = filelib:ensure_dir(filename:join("ebin", "dummy")),
|
||||||
ok = filelib:ensure_dir(filename:join("include", "dummy")),
|
ok = filelib:ensure_dir(filename:join("include", "dummy")),
|
||||||
case gpb_compile:file(SourceFullPath, GpbOpts) of
|
case gpb_compile:file(SourceFullPath, GpbOpts) of
|
||||||
|
@ -120,28 +103,16 @@ compile_gpb(Source, GpbOpts) ->
|
||||||
?FAIL
|
?FAIL
|
||||||
end.
|
end.
|
||||||
|
|
||||||
beam_file(ProtoFile, GpbOpts) ->
|
beam_relpath(Prefix, Proto, Suffix) ->
|
||||||
proto_filename_to_path("ebin", ProtoFile, ".beam", GpbOpts).
|
proto_filename_to_relpath("ebin", Prefix, Proto, Suffix, ".beam").
|
||||||
|
|
||||||
erl_file(ProtoFile, GpbOpts) ->
|
erl_relpath(Prefix, Proto, Suffix) ->
|
||||||
ErlOutDir = get_erl_outdir(GpbOpts),
|
proto_filename_to_relpath("src", Prefix, Proto, Suffix, ".erl").
|
||||||
proto_filename_to_path(ErlOutDir, ProtoFile, ".erl", GpbOpts).
|
|
||||||
|
|
||||||
hrl_file(ProtoFile, GpbOpts) ->
|
hrl_relpath(Prefix, Proto, Suffix) ->
|
||||||
HrlOutDir = get_hrl_outdir(GpbOpts),
|
proto_filename_to_relpath("include", Prefix, Proto, Suffix, ".hrl").
|
||||||
proto_filename_to_path(HrlOutDir, ProtoFile, ".hrl", GpbOpts).
|
|
||||||
|
|
||||||
proto_filename_to_path(Dir, ProtoFile, NewExt, GpbOpts) ->
|
proto_filename_to_relpath(Dir, Prefix, Proto, Suffix, NewExt) ->
|
||||||
BaseNoExt = filename:basename(ProtoFile, ".proto"),
|
BaseNoExt = filename:basename(Proto, ".proto"),
|
||||||
Prefix = proplists:get_value(module_name_prefix, GpbOpts, ""),
|
|
||||||
Suffix = proplists:get_value(module_name_suffix, GpbOpts, ""),
|
|
||||||
filename:join([Dir, Prefix ++ BaseNoExt ++ Suffix ++ NewExt]).
|
filename:join([Dir, Prefix ++ BaseNoExt ++ Suffix ++ NewExt]).
|
||||||
|
|
||||||
get_erl_outdir(Opts) ->
|
|
||||||
proplists:get_value(o_erl, Opts, get_outdir(Opts)).
|
|
||||||
|
|
||||||
get_hrl_outdir(Opts) ->
|
|
||||||
proplists:get_value(o_hrl, Opts, get_outdir(Opts)).
|
|
||||||
|
|
||||||
get_outdir(Opts) ->
|
|
||||||
proplists:get_value(o, Opts, ".").
|
|
||||||
|
|
Loading…
Reference in a new issue