瀏覽代碼

Merge pull request #13 from fishcakez/dialyzer

[WIP] Improve dialyzer command
pull/17/head
Tristan Sloughter 10 年之前
父節點
當前提交
a24f4019ed
共有 2 個文件被更改,包括 302 次插入58 次删除
  1. +1
    -1
      rebar.config
  2. +301
    -57
      src/rebar_prv_dialyzer.erl

+ 1
- 1
rebar.config 查看文件

@ -6,7 +6,7 @@
{escript_incl_extra, [{"priv/templates/*", "."}, {"rebar/include/*", "."}]}.
{escript_incl_apps,
[inets, getopt, erlydtl, erlware_commons, relx, providers, rebar]}.
[getopt, erlydtl, erlware_commons, relx, providers, rebar]}.
{escript_top_level_app, rebar}.
{escript_name, rebar3}.

+ 301
- 57
src/rebar_prv_dialyzer.erl 查看文件

@ -20,47 +20,57 @@
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
Opts = [{update_plt, $u, "update-plt", boolean, "Enable updating the PLT. Default: true"},
{succ_typings, $s, "succ-typings", boolean, "Enable success typing analysis. Default: true"}],
State1 = rebar_state:add_provider(State, providers:create([{name, ?PROVIDER},
{module, ?MODULE},
{bare, false},
{deps, ?DEPS},
{example, "rebar dialyzer"},
{short_desc, "Run the Dialyzer analyzer on the project."},
{desc, ""},
{opts, []}])),
{short_desc, short_desc()},
{desc, desc()},
{opts, Opts}])),
{ok, State1}.
desc() ->
short_desc() ++ "\n"
"\n"
"This command will build, and keep up-to-date, a suitable PLT and will use "
"it to carry out success typing analysis on the current project.\n"
"\n"
"The following (optional) configurations can be added to a rebar.config:\n"
"`dialyzer_warnings` - a list of dialyzer warnings\n"
"`dialyzer_plt` - the PLT file to use\n"
"`dialyzer_plt_apps` - a list of applications to include in the PLT file*\n"
"`dialyzer_plt_warnings` - display warnings when updating a PLT file "
"(boolean)\n"
"`dialyzer_base_plt` - the base PLT file to use**\n"
"`dialyzer_base_plt_dir` - the base PLT directory**\n"
"`dialyzer_base_plt_apps` - a list of applications to include in the base "
"PLT file**\n"
"\n"
"*The applications in `dialyzer_base_plt_apps` and any `applications` and "
"`included_applications` listed in their .app files will be added to the "
"list.\n"
"**The base PLT is a PLT containing the core OTP applications often "
"required for a project's PLT. One base PLT is created per OTP version and "
"stored in `dialyzer_base_plt_dir` (defaults to $HOME/.rebar3/). A base "
"PLT is used to create a project's initial PLT.".
short_desc() ->
"Run the Dialyzer analyzer on the project.".
-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.
do(State) ->
?INFO("Dialyzer starting, this may take a while...", []),
BuildDir = rebar_state:get(State, base_dir, ?DEFAULT_BASE_DIR),
{ProjectPlt, DepPlt} = get_plt_location(BuildDir),
Plt = get_plt_location(State),
Apps = rebar_state:project_apps(State),
Deps = rebar_state:get(State, all_deps, []),
try
?INFO("Doing plt for dependencies...", []),
update_dep_plt(State, DepPlt, Deps),
?INFO("Doing plt for project apps...", []),
update_dep_plt(State, ProjectPlt, Apps),
WarningTypes = rebar_state:get(State, dialyzer_warnings, default_warnings()),
Paths = [filename:join(rebar_app_info:dir(App), "ebin") || App <- Apps],
Opts = [{analysis_type, succ_typings},
{from, byte_code},
{files_rec, Paths},
{warnings, WarningTypes},
{plts, [ProjectPlt, DepPlt]}],
case dialyzer:run(Opts) of
[] ->
{ok, State};
Warnings ->
[?CONSOLE(string:strip(dialyzer:format_warning(Warning), right, $\n), []) ||
Warning <- Warnings],
{ok, State}
end
{ok, State1} = update_proj_plt(State, Plt, Apps),
succ_typings(State1, Plt, Apps)
catch
_:{dialyzer_error, Error} ->
throw:{dialyzer_error, Error} ->
{error, {?MODULE, {error_processing_apps, Error, Apps}}}
end.
@ -72,37 +82,271 @@ format_error(Reason) ->
%% Internal functions
get_plt_location(BuildDir) ->
{filename:join([BuildDir, ".project.plt"]),
filename:join([BuildDir, ".deps.plt"])}.
update_dep_plt(_State, DepPlt, AppList) ->
Opts0 =
case filelib:is_file(DepPlt) of
true ->
?INFO("Plt is built, checking/updating...", []),
[{analysis_type, plt_check},
{plts, [DepPlt]}];
false ->
?INFO("Building the plt, this will take a while...", []),
[{analysis_type, plt_build},
{output_plt, DepPlt}]
end,
Paths = [filename:join(rebar_app_info:dir(App), "ebin") || App <- AppList],
Opts = [{files_rec, Paths},
{from, byte_code}] ++ Opts0,
dialyzer:run(Opts).
get_plt_location(State) ->
BuildDir = rebar_state:get(State, base_dir, ?DEFAULT_BASE_DIR),
DefaultPlt = filename:join([BuildDir, default_plt()]),
rebar_state:get(State, dialyzer_plt, DefaultPlt).
default_plt() ->
".rebar3.otp-" ++ otp_version() ++ ".plt".
otp_version() ->
Release = erlang:system_info(otp_release),
try otp_version(Release) of
Vsn ->
Vsn
catch
error:_ ->
Release
end.
otp_version(Release) ->
File = filename:join([code:root_dir(), "releases", Release, "OTP_VERSION"]),
{ok, Contents} = file:read_file(File),
[Vsn] = binary:split(Contents, [<<$\n>>], [global, trim]),
[_ | _] = unicode:characters_to_list(Vsn).
update_proj_plt(State, Plt, Apps) ->
{Args, _} = rebar_state:command_parsed_args(State),
case proplists:get_value(update_plt, Args) of
false ->
{ok, State};
_ ->
do_update_proj_plt(State, Plt, Apps)
end.
do_update_proj_plt(State, Plt, Apps) ->
?INFO("Updating plt...", []),
Files = get_plt_files(State, Apps),
case read_plt(State, Plt) of
{ok, OldFiles} ->
check_plt(State, Plt, OldFiles, Files);
{error, no_such_file} ->
build_proj_plt(State, Plt, Files)
end.
get_plt_files(State, Apps) ->
BasePltApps = rebar_state:get(State, dialyzer_base_plt_apps,
default_plt_apps()),
PltApps = rebar_state:get(State, dialyzer_plt_apps, []),
DepApps = lists:flatmap(fun rebar_app_info:applications/1, Apps),
get_plt_files(BasePltApps ++ PltApps ++ DepApps, Apps, [], []).
default_plt_apps() ->
[erts,
crypto,
kernel,
stdlib].
get_plt_files([], _, _, Files) ->
Files;
get_plt_files([AppName | DepApps], Apps, PltApps, Files) ->
case lists:member(AppName, PltApps) orelse app_member(AppName, Apps) of
true ->
get_plt_files(DepApps, Apps, PltApps, Files);
false ->
{DepApps2, Files2} = app_name_to_info(AppName),
DepApps3 = DepApps2 ++ DepApps,
Files3 = Files2 ++ Files,
get_plt_files(DepApps3, Apps, [AppName | PltApps], Files3)
end.
app_member(AppName, Apps) ->
case rebar_app_utils:find(ec_cnv:to_binary(AppName), Apps) of
{ok, _App} ->
true;
error ->
false
end.
app_name_to_info(AppName) ->
case code:lib_dir(AppName) of
{error, _} ->
?CONSOLE("Unknown application ~s", [AppName]),
{[], []};
AppDir ->
app_dir_to_info(AppDir, AppName)
end.
app_dir_to_info(AppDir, AppName) ->
EbinDir = filename:join(AppDir, "ebin"),
AppFile = filename:join(EbinDir, atom_to_list(AppName) ++ ".app"),
case file:consult(AppFile) of
{ok, [{application, AppName, AppDetails}]} ->
DepApps = proplists:get_value(applications, AppDetails, []),
IncApps = proplists:get_value(included_applications, AppDetails,
[]),
Modules = proplists:get_value(modules, AppDetails, []),
Files = modules_to_files(Modules, EbinDir),
{IncApps ++ DepApps, Files};
_ ->
Error = io_lib:format("Could not parse ~p", [AppFile]),
throw({dialyzer_error, Error})
end.
modules_to_files(Modules, EbinDir) ->
Ext = code:objfile_extension(),
Mod2File = fun(Module) -> module_to_file(Module, EbinDir, Ext) end,
rebar_utils:filtermap(Mod2File, Modules).
module_to_file(Module, EbinDir, Ext) ->
File = filename:join(EbinDir, atom_to_list(Module) ++ Ext),
case filelib:is_file(File) of
true ->
{true, File};
false ->
?CONSOLE("Unknown module ~s", [Module]),
false
end.
read_plt(_State, Plt) ->
case dialyzer:plt_info(Plt) of
{ok, Info} ->
Files = proplists:get_value(files, Info, []),
{ok, Files};
{error, no_such_file} = Error ->
Error;
{error, read_error} ->
Error = io_lib:format("Could not read the PLT file ~p", [Plt]),
throw({dialyzer_error, Error})
end.
check_plt(State, Plt, OldList, FilesList) ->
Old = sets:from_list(OldList),
Files = sets:from_list(FilesList),
Remove = sets:subtract(Old, Files),
{ok, State1} = remove_plt(State, Plt, sets:to_list(Remove)),
Check = sets:intersection(Files, Old),
{ok, State2} = check_plt(State1, Plt, sets:to_list(Check)),
Add = sets:subtract(Files, Old),
add_plt(State2, Plt, sets:to_list(Add)).
remove_plt(State, _Plt, []) ->
{ok, State};
remove_plt(State, Plt, Files) ->
?INFO("Removing ~b files from ~p...", [length(Files), Plt]),
run_plt(State, Plt, plt_remove, Files).
check_plt(State, _Plt, []) ->
{ok, State};
check_plt(State, Plt, Files) ->
?INFO("Checking ~b files in ~p...", [length(Files), Plt]),
run_plt(State, Plt, plt_check, Files).
add_plt(State, _Plt, []) ->
{ok, State};
add_plt(State, Plt, Files) ->
?INFO("Adding ~b files to ~p...", [length(Files), Plt]),
run_plt(State, Plt, plt_add, Files).
run_plt(State, Plt, Analysis, Files) ->
GetWarnings = rebar_state:get(State, dialyzer_plt_warnings, false),
Opts = [{analysis_type, Analysis},
{get_warnings, GetWarnings},
{init_plt, Plt},
{from, byte_code},
{files, Files}],
run_dialyzer(State, Opts).
build_proj_plt(State, Plt, Files) ->
BasePlt = get_base_plt_location(State),
BaseFiles = get_base_plt_files(State),
{ok, State1} = update_base_plt(State, BasePlt, BaseFiles),
?INFO("Copying ~p to ~p...", [BasePlt, Plt]),
case file:copy(BasePlt, Plt) of
{ok, _} ->
check_plt(State1, Plt, BaseFiles, Files);
{error, Reason} ->
Error = io_lib:format("Could not copy PLT from ~p to ~p: ~p",
[BasePlt, Plt, file:format_error(Reason)]),
throw({dialyzer_error, Error})
end.
get_base_plt_location(State) ->
Home = rebar_utils:home_dir(),
GlobalConfigDir = filename:join(Home, ?CONFIG_DIR),
BaseDir = rebar_state:get(State, dialyzer_base_plt_dir, GlobalConfigDir),
BasePlt = rebar_state:get(State, dialyzer_base_plt, default_plt()),
filename:join(BaseDir, BasePlt).
get_base_plt_files(State) ->
BasePltApps = rebar_state:get(State, dialyzer_base_plt_apps,
default_plt_apps()),
app_names_to_files(BasePltApps).
app_names_to_files(AppNames) ->
ToFiles = fun(AppName) ->
{_, Files} = app_name_to_info(AppName),
Files
end,
lists:flatmap(ToFiles, AppNames).
update_base_plt(State, BasePlt, BaseFiles) ->
?INFO("Updating base plt...", []),
case read_plt(State, BasePlt) of
{ok, OldBaseFiles} ->
check_plt(State, BasePlt, OldBaseFiles, BaseFiles);
{error, no_such_file} ->
_ = filelib:ensure_dir(BasePlt),
build_plt(State, BasePlt, BaseFiles)
end.
build_plt(State, Plt, Files) ->
?INFO("Adding ~b files to ~p...", [length(Files), Plt]),
GetWarnings = rebar_state:get(State, dialyzer_plt_warnings, false),
Opts = [{analysis_type, plt_build},
{get_warnings, GetWarnings},
{output_plt, Plt},
{files, Files}],
run_dialyzer(State, Opts).
succ_typings(State, Plt, Apps) ->
{Args, _} = rebar_state:command_parsed_args(State),
case proplists:get_value(succ_typings, Args) of
false ->
{ok, State};
_ ->
do_succ_typings(State, Plt, Apps)
end.
do_succ_typings(State, Plt, Apps) ->
?INFO("Doing success typing analysis...", []),
Files = apps_to_files(Apps),
?INFO("Analyzing ~b files with ~p...", [length(Files), Plt]),
Opts = [{analysis_type, succ_typings},
{get_warnings, true},
{from, byte_code},
{files, Files},
{init_plt, Plt}],
run_dialyzer(State, Opts).
apps_to_files(Apps) ->
lists:flatmap(fun app_to_files/1, Apps).
app_to_files(App) ->
AppName = ec_cnv:to_atom(rebar_app_info:name(App)),
{_, Files} = app_name_to_info(AppName),
Files.
run_dialyzer(State, Opts) ->
Warnings = rebar_state:get(State, dialyzer_warnings, default_warnings()),
Opts2 = [{warnings, Warnings} | Opts],
_ = [?CONSOLE(format_warning(Warning), [])
|| Warning <- dialyzer:run(Opts2)],
{ok, State}.
format_warning(Warning) ->
string:strip(dialyzer_format_warning(Warning), right, $\n).
dialyzer_format_warning(Warning) ->
case dialyzer:format_warning(Warning) of
":0: " ++ Warning2 ->
Warning2;
Warning2 ->
Warning2
end.
default_warnings() ->
[no_return,
no_unused,
no_improper_lists,
no_fun_app,
no_match,
no_opaque,
no_fail_call,
error_handling,
race_conditions,
[error_handling,
unmatched_returns,
underspecs].

Loading…
取消
儲存