Skip to content

Commit

Permalink
Merge pull request #111 from tuncer/nox-erlydtl-compile
Browse files Browse the repository at this point in the history
Always return the errors and warnings from erlydtl
  • Loading branch information
dizzyd committed Sep 20, 2013
2 parents adad711 + daed79f commit 7224728
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions src/rebar_erlydtl_compiler.erl
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ compile(Config, _AppFile) ->
option(source_ext, DtlOpts),
option(out_dir, DtlOpts),
option(module_ext, DtlOpts) ++ ".beam",
fun(S, T, _C) ->
compile_dtl(S, T, DtlOpts)
fun(S, T, C) ->
compile_dtl(C, S, T, DtlOpts)
end,
[{check_last_mod, false},
{recursive, option(recursive, DtlOpts)}])
Expand Down Expand Up @@ -169,10 +169,10 @@ default(out_dir) -> "ebin";
default(source_ext) -> ".dtl";
default(module_ext) -> "_dtl";
default(custom_tags_dir) -> "";
default(compiler_options) -> [report, return];
default(compiler_options) -> [return];
default(recursive) -> true.

compile_dtl(Source, Target, DtlOpts) ->
compile_dtl(Config, Source, Target, DtlOpts) ->
case code:which(erlydtl) of
non_existing ->
?ERROR("~n===============================================~n"
Expand All @@ -185,13 +185,13 @@ compile_dtl(Source, Target, DtlOpts) ->
_ ->
case needs_compile(Source, Target, DtlOpts) of
true ->
do_compile(Source, Target, DtlOpts);
do_compile(Config, Source, Target, DtlOpts);
false ->
skipped
end
end.

do_compile(Source, Target, DtlOpts) ->
do_compile(Config, Source, Target, DtlOpts) ->
%% TODO: Check last mod on target and referenced DTLs here..

%% ensure that doc_root and out_dir are defined,
Expand All @@ -208,19 +208,17 @@ do_compile(Source, Target, DtlOpts) ->
case erlydtl:compile(Source,
module_name(Target),
Opts) of
ok -> ok;
{error, {File, [{Pos, _Mod, Err}]}} ->
?ERROR("Compiling template ~p failed:~n (~s): ~p~n",
[File, err_location(Pos), Err]);
Reason ->
?ERROR("Compiling template ~s failed:~n ~p~n",
[Source, Reason]),
?FAIL
ok ->
ok;
error ->
rebar_base_compiler:error_tuple(Config, Source, [], [], Opts);
{error, {_File, _Msgs} = Error} ->
rebar_base_compiler:error_tuple(Config, Source, [Error], [], Opts);
{error, Msg} ->
Es = [{Source, [{erlydtl_parser, Msg}]}],
rebar_base_compiler:error_tuple(Config, Source, Es, [], Opts)
end.

err_location({L,C}) -> io_lib:format("line:~w, col:~w", [L, C]);
err_location(L) -> io_lib:format("line:~w", [L]).

module_name(Target) ->
F = filename:basename(Target),
string:substr(F, 1, length(F)-length(".beam")).
Expand Down

0 comments on commit 7224728

Please sign in to comment.