2011-01-31 16:43:31 +00:00
|
|
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
2009-12-31 18:42:53 +00:00
|
|
|
%% ex: ts=4 sw=4 et
|
2009-11-29 23:44:30 +00:00
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% rebar: Erlang Build Tools
|
|
|
|
%%
|
|
|
|
%% Copyright (c) 2009 Dave Smith (dizzyd@dizzyd.com)
|
|
|
|
%%
|
|
|
|
%% Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
%% of this software and associated documentation files (the "Software"), to deal
|
|
|
|
%% in the Software without restriction, including without limitation the rights
|
|
|
|
%% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
%% copies of the Software, and to permit persons to whom the Software is
|
|
|
|
%% furnished to do so, subject to the following conditions:
|
|
|
|
%%
|
|
|
|
%% The above copyright notice and this permission notice shall be included in
|
|
|
|
%% all copies or substantial portions of the Software.
|
|
|
|
%%
|
|
|
|
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
%% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
%% THE SOFTWARE.
|
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
-module(rebar_core).
|
|
|
|
|
2011-01-27 14:52:48 +00:00
|
|
|
-export([process_commands/1,
|
2010-06-21 16:24:01 +00:00
|
|
|
skip_dir/1,
|
|
|
|
is_skip_dir/1,
|
|
|
|
skip_dirs/0]).
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2009-11-29 23:53:53 +00:00
|
|
|
-include("rebar.hrl").
|
|
|
|
|
2009-12-26 06:19:09 +00:00
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
%% ===================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ===================================================================
|
|
|
|
|
2010-06-21 16:24:01 +00:00
|
|
|
skip_dir(Dir) ->
|
2010-10-25 22:38:51 +00:00
|
|
|
SkipDir = {skip_dir, Dir},
|
|
|
|
case erlang:get(SkipDir) of
|
2010-06-21 16:24:01 +00:00
|
|
|
undefined ->
|
|
|
|
?DEBUG("Adding skip dir: ~s\n", [Dir]),
|
2010-10-25 22:38:51 +00:00
|
|
|
erlang:put(SkipDir, true);
|
2010-06-21 16:24:01 +00:00
|
|
|
true ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
is_skip_dir(Dir) ->
|
|
|
|
case erlang:get({skip_dir, Dir}) of
|
2010-10-25 22:38:51 +00:00
|
|
|
undefined ->
|
|
|
|
false;
|
|
|
|
true ->
|
|
|
|
true
|
2010-06-21 16:24:01 +00:00
|
|
|
end.
|
|
|
|
|
|
|
|
skip_dirs() ->
|
|
|
|
[Dir || {{skip_dir, Dir}, true} <- erlang:get()].
|
2010-01-01 13:22:25 +00:00
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ===================================================================
|
|
|
|
|
2010-06-21 16:24:01 +00:00
|
|
|
process_commands([]) ->
|
2010-07-25 05:56:46 +00:00
|
|
|
case erlang:get(operations) of
|
|
|
|
0 ->
|
|
|
|
%% none of the commands had an effect
|
|
|
|
?FAIL;
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end;
|
2010-06-21 16:24:01 +00:00
|
|
|
process_commands([Command | Rest]) ->
|
|
|
|
%% Reset skip dirs
|
2010-10-10 20:11:13 +00:00
|
|
|
lists:foreach(fun (D) -> erlang:erase({skip_dir, D}) end, skip_dirs()),
|
2010-07-25 05:56:46 +00:00
|
|
|
Operations = erlang:get(operations),
|
2010-06-21 16:24:01 +00:00
|
|
|
|
2010-10-10 20:11:13 +00:00
|
|
|
_ = process_dir(rebar_utils:get_cwd(), rebar_config:new(), Command, sets:new()),
|
2010-07-25 05:56:46 +00:00
|
|
|
case erlang:get(operations) of
|
|
|
|
Operations ->
|
|
|
|
%% This command didn't do anything
|
|
|
|
?CONSOLE("Command '~p' not understood\n", [Command]);
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end,
|
2010-06-21 16:24:01 +00:00
|
|
|
process_commands(Rest).
|
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
process_dir(Dir, ParentConfig, Command, DirSet) ->
|
2010-03-16 19:30:22 +00:00
|
|
|
case filelib:is_dir(Dir) of
|
|
|
|
false ->
|
|
|
|
?WARN("Skipping non-existent sub-dir: ~p\n", [Dir]),
|
2010-06-09 19:16:58 +00:00
|
|
|
DirSet;
|
2010-03-16 19:30:22 +00:00
|
|
|
|
|
|
|
true ->
|
2010-06-09 19:16:58 +00:00
|
|
|
?DEBUG("Entering ~s\n", [Dir]),
|
2010-03-16 19:30:22 +00:00
|
|
|
ok = file:set_cwd(Dir),
|
|
|
|
Config = rebar_config:new(ParentConfig),
|
|
|
|
|
|
|
|
%% Save the current code path and then update it with
|
|
|
|
%% lib_dirs. Children inherit parents code path, but we
|
|
|
|
%% also want to ensure that we restore everything to pristine
|
|
|
|
%% condition after processing this child
|
|
|
|
CurrentCodePath = update_code_path(Config),
|
|
|
|
|
|
|
|
%% Get the list of processing modules and check each one against
|
|
|
|
%% CWD to see if it's a fit -- if it is, use that set of modules
|
|
|
|
%% to process this dir.
|
|
|
|
{ok, AvailModuleSets} = application:get_env(rebar, modules),
|
|
|
|
{DirModules, ModuleSetFile} = choose_module_set(AvailModuleSets, Dir),
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
%% Get the list of modules for "any dir". This is a catch-all list
|
|
|
|
%% of modules that are processed in addition to modules associated
|
|
|
|
%% with this directory type. These any_dir modules are processed
|
|
|
|
%% FIRST.
|
2010-03-16 19:30:22 +00:00
|
|
|
{ok, AnyDirModules} = application:get_env(rebar, any_dir_modules),
|
2010-05-11 15:35:47 +00:00
|
|
|
|
2010-05-11 20:07:13 +00:00
|
|
|
Modules = AnyDirModules ++ DirModules,
|
2010-03-16 19:30:22 +00:00
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
%% Invoke 'preprocess' on the modules -- this yields a list of other
|
|
|
|
%% directories that should be processed _before_ the current one.
|
|
|
|
Predirs = acc_modules(Modules, preprocess, Config, ModuleSetFile),
|
|
|
|
?DEBUG("Predirs: ~p\n", [Predirs]),
|
|
|
|
DirSet2 = process_each(Predirs, Command, Config, ModuleSetFile, DirSet),
|
|
|
|
|
|
|
|
%% Make sure the CWD is reset properly; processing the dirs may have
|
|
|
|
%% caused it to change
|
|
|
|
ok = file:set_cwd(Dir),
|
|
|
|
|
2010-06-21 16:24:01 +00:00
|
|
|
%% Check that this directory is not on the skip list
|
|
|
|
case is_skip_dir(Dir) of
|
|
|
|
true ->
|
|
|
|
%% Do not execute the command on the directory, as some module
|
|
|
|
%% as requested a skip on it.
|
|
|
|
?INFO("Skipping ~s in ~s\n", [Command, Dir]);
|
|
|
|
|
|
|
|
false ->
|
|
|
|
%% Get the list of plug-in modules from rebar.config. These modules are
|
|
|
|
%% processed LAST and do not participate in preprocess.
|
|
|
|
{ok, PluginModules} = plugin_modules(Config),
|
2010-06-09 19:45:55 +00:00
|
|
|
|
2010-06-21 16:24:01 +00:00
|
|
|
%% Execute the current command on this directory
|
|
|
|
execute(Command, Modules ++ PluginModules, Config, ModuleSetFile)
|
|
|
|
end,
|
2010-06-09 19:16:58 +00:00
|
|
|
|
|
|
|
%% Mark the current directory as processed
|
|
|
|
DirSet3 = sets:add_element(Dir, DirSet2),
|
|
|
|
|
|
|
|
%% Invoke 'postprocess' on the modules -- this yields a list of other
|
|
|
|
%% directories that should be processed _after_ the current one.
|
|
|
|
Postdirs = acc_modules(Modules, postprocess, Config, ModuleSetFile),
|
|
|
|
?DEBUG("Postdirs: ~p\n", [Postdirs]),
|
|
|
|
DirSet4 = process_each(Postdirs, Command, Config, ModuleSetFile, DirSet3),
|
|
|
|
|
|
|
|
%% Make sure the CWD is reset properly; processing the dirs may have
|
|
|
|
%% caused it to change
|
|
|
|
ok = file:set_cwd(Dir),
|
2010-05-11 20:07:13 +00:00
|
|
|
|
2010-05-15 20:57:07 +00:00
|
|
|
%% Once we're all done processing, reset the code path to whatever
|
|
|
|
%% the parent initialized it to
|
|
|
|
restore_code_path(CurrentCodePath),
|
2010-06-09 19:16:58 +00:00
|
|
|
|
|
|
|
%% Return the updated dirset as our result
|
|
|
|
DirSet4
|
2010-05-15 20:57:07 +00:00
|
|
|
end.
|
2010-03-16 19:30:22 +00:00
|
|
|
|
2010-05-08 14:07:28 +00:00
|
|
|
|
2010-06-09 19:45:55 +00:00
|
|
|
|
2010-05-15 20:57:07 +00:00
|
|
|
%%
|
2010-06-09 19:16:58 +00:00
|
|
|
%% Given a list of directories and a set of previously processed directories,
|
|
|
|
%% process each one we haven't seen yet
|
2010-05-15 20:57:07 +00:00
|
|
|
%%
|
2010-06-09 19:16:58 +00:00
|
|
|
process_each([], _Command, _Config, _ModuleSetFile, DirSet) ->
|
|
|
|
DirSet;
|
|
|
|
process_each([Dir | Rest], Command, Config, ModuleSetFile, DirSet) ->
|
|
|
|
case sets:is_element(Dir, DirSet) of
|
2010-05-15 20:57:07 +00:00
|
|
|
true ->
|
2010-06-09 19:16:58 +00:00
|
|
|
?DEBUG("Skipping ~s; already processed!\n", [Dir]),
|
|
|
|
process_each(Rest, Command, Config, ModuleSetFile, DirSet);
|
2010-05-15 20:57:07 +00:00
|
|
|
false ->
|
2010-06-09 19:16:58 +00:00
|
|
|
DirSet2 = process_dir(Dir, Config, Command, DirSet),
|
|
|
|
process_each(Rest, Command, Config, ModuleSetFile, DirSet2)
|
2010-03-16 19:30:22 +00:00
|
|
|
end.
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
%%
|
2009-12-26 06:19:09 +00:00
|
|
|
%% Given a list of module sets from rebar.app and a directory, find
|
2009-12-12 14:34:29 +00:00
|
|
|
%% the appropriate subset of modules for this directory
|
2009-11-29 23:44:30 +00:00
|
|
|
%%
|
2009-12-12 14:34:29 +00:00
|
|
|
choose_module_set([], _Dir) ->
|
2009-12-26 06:19:09 +00:00
|
|
|
{[], undefined};
|
2010-06-09 19:16:58 +00:00
|
|
|
choose_module_set([{Type, Modules} | Rest], Dir) ->
|
|
|
|
case is_dir_type(Type, Dir) of
|
2009-12-12 14:34:29 +00:00
|
|
|
{true, File} ->
|
2009-12-26 06:19:09 +00:00
|
|
|
{Modules, File};
|
2009-11-29 23:44:30 +00:00
|
|
|
false ->
|
2009-12-12 14:34:29 +00:00
|
|
|
choose_module_set(Rest, Dir)
|
2009-11-29 23:44:30 +00:00
|
|
|
end.
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
is_dir_type(app_dir, Dir) ->
|
|
|
|
rebar_app_utils:is_app_dir(Dir);
|
|
|
|
is_dir_type(rel_dir, Dir) ->
|
|
|
|
rebar_rel_utils:is_rel_dir(Dir);
|
|
|
|
is_dir_type(_, _) ->
|
|
|
|
false.
|
2010-05-11 20:07:13 +00:00
|
|
|
|
2010-05-11 15:35:47 +00:00
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
%%
|
2010-06-09 19:16:58 +00:00
|
|
|
%% Execute a command across all applicable modules
|
2009-11-29 23:44:30 +00:00
|
|
|
%%
|
2010-06-09 19:16:58 +00:00
|
|
|
execute(Command, Modules, Config, ModuleFile) ->
|
2009-12-12 14:34:29 +00:00
|
|
|
case select_modules(Modules, Command, []) of
|
2009-12-02 12:15:35 +00:00
|
|
|
[] ->
|
2010-05-11 16:22:12 +00:00
|
|
|
?WARN("'~p' command does not apply to directory ~s\n",
|
2010-06-03 20:47:13 +00:00
|
|
|
[Command, rebar_utils:get_cwd()]);
|
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
TargetModules ->
|
2009-12-02 12:15:35 +00:00
|
|
|
%% Provide some info on where we are
|
2009-12-12 14:34:29 +00:00
|
|
|
Dir = rebar_utils:get_cwd(),
|
2009-12-02 12:15:35 +00:00
|
|
|
?CONSOLE("==> ~s (~s)\n", [filename:basename(Dir), Command]),
|
|
|
|
|
2010-07-25 05:56:46 +00:00
|
|
|
%% Increment the count of operations, since some module responds to this command
|
|
|
|
erlang:put(operations, erlang:get(operations) + 1),
|
|
|
|
|
2009-12-02 12:15:35 +00:00
|
|
|
%% Run the available modules
|
2009-12-12 14:34:29 +00:00
|
|
|
case catch(run_modules(TargetModules, Command, Config, ModuleFile)) of
|
2009-12-02 12:15:35 +00:00
|
|
|
ok ->
|
2010-06-03 20:47:13 +00:00
|
|
|
ok;
|
2009-12-03 16:41:10 +00:00
|
|
|
{error, failed} ->
|
2009-12-14 22:11:25 +00:00
|
|
|
?FAIL;
|
2010-10-28 04:31:35 +00:00
|
|
|
{Module, {error, _} = Other} ->
|
|
|
|
?ABORT("~p failed while processing ~s in module ~s: ~s\n",
|
2011-01-07 13:58:30 +00:00
|
|
|
[Command, Dir, Module,
|
|
|
|
io_lib:print(Other, 1, 80, -1)]);
|
2009-12-02 12:15:35 +00:00
|
|
|
Other ->
|
2010-10-28 04:31:35 +00:00
|
|
|
?ABORT("~p failed while processing ~s: ~s\n",
|
2011-01-07 13:58:30 +00:00
|
|
|
[Command, Dir, io_lib:print(Other, 1, 80, -1)])
|
2009-12-02 12:15:35 +00:00
|
|
|
end
|
2009-11-29 23:44:30 +00:00
|
|
|
end.
|
|
|
|
|
2009-12-30 12:13:39 +00:00
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
update_code_path(Config) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
case rebar_config:get_local(Config, lib_dirs, []) of
|
2009-12-12 14:34:29 +00:00
|
|
|
[] ->
|
|
|
|
no_change;
|
|
|
|
Paths ->
|
|
|
|
OldPath = code:get_path(),
|
|
|
|
LibPaths = expand_lib_dirs(Paths, rebar_utils:get_cwd(), []),
|
|
|
|
ok = code:add_pathsa(LibPaths),
|
|
|
|
{old, OldPath}
|
|
|
|
end.
|
|
|
|
|
|
|
|
restore_code_path(no_change) ->
|
|
|
|
ok;
|
|
|
|
restore_code_path({old, Path}) ->
|
2011-01-07 16:24:27 +00:00
|
|
|
%% Verify that all of the paths still exist -- some dynamically
|
|
|
|
%% added paths can get blown away during clean.
|
2010-10-25 22:38:51 +00:00
|
|
|
true = code:set_path([F || F <- Path, filelib:is_file(F)]),
|
2009-12-12 14:34:29 +00:00
|
|
|
ok.
|
2009-12-30 12:13:39 +00:00
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
|
|
|
|
expand_lib_dirs([], _Root, Acc) ->
|
|
|
|
Acc;
|
|
|
|
expand_lib_dirs([Dir | Rest], Root, Acc) ->
|
2010-10-01 12:37:42 +00:00
|
|
|
Apps = filelib:wildcard(filename:join([Dir, "*", "ebin"])),
|
2009-12-12 14:34:29 +00:00
|
|
|
FqApps = [filename:join([Root, A]) || A <- Apps],
|
2009-12-14 13:58:22 +00:00
|
|
|
expand_lib_dirs(Rest, Root, Acc ++ FqApps).
|
2009-12-02 03:34:18 +00:00
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2009-12-02 12:15:35 +00:00
|
|
|
|
|
|
|
select_modules([], _Command, Acc) ->
|
|
|
|
lists:reverse(Acc);
|
|
|
|
select_modules([Module | Rest], Command, Acc) ->
|
|
|
|
Exports = Module:module_info(exports),
|
|
|
|
case lists:member({Command, 2}, Exports) of
|
|
|
|
true ->
|
|
|
|
select_modules(Rest, Command, [Module | Acc]);
|
|
|
|
false ->
|
|
|
|
select_modules(Rest, Command, Acc)
|
|
|
|
end.
|
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
run_modules([], _Command, _Config, _File) ->
|
|
|
|
ok;
|
|
|
|
run_modules([Module | Rest], Command, Config, File) ->
|
2009-12-02 12:15:35 +00:00
|
|
|
case Module:Command(Config, File) of
|
2009-11-29 23:44:30 +00:00
|
|
|
ok ->
|
|
|
|
run_modules(Rest, Command, Config, File);
|
2010-10-25 22:38:51 +00:00
|
|
|
{error, _} = Error ->
|
2010-10-28 04:31:35 +00:00
|
|
|
{Module, Error}
|
2009-11-29 23:44:30 +00:00
|
|
|
end.
|
2009-12-12 14:34:29 +00:00
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
|
2010-06-03 21:12:13 +00:00
|
|
|
acc_modules(Modules, Command, Config, File) ->
|
|
|
|
acc_modules(select_modules(Modules, Command, []),
|
|
|
|
Command, Config, File, []).
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
acc_modules([], _Command, _Config, _File, Acc) ->
|
|
|
|
Acc;
|
2009-12-26 06:19:09 +00:00
|
|
|
acc_modules([Module | Rest], Command, Config, File, Acc) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
{ok, Dirs} = Module:Command(Config, File),
|
|
|
|
acc_modules(Rest, Command, Config, File, Acc ++ Dirs).
|
2010-06-09 19:45:55 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
%% Return a flat list of rebar plugin modules.
|
|
|
|
%%
|
|
|
|
plugin_modules(Config) ->
|
|
|
|
Modules = lists:flatten(rebar_config:get_all(Config, rebar_plugins)),
|
|
|
|
plugin_modules(Config, ulist(Modules)).
|
|
|
|
|
|
|
|
ulist(L) ->
|
|
|
|
ulist(L, []).
|
|
|
|
|
|
|
|
ulist([], Acc) ->
|
|
|
|
lists:reverse(Acc);
|
|
|
|
ulist([H | T], Acc) ->
|
2010-06-19 08:08:34 +00:00
|
|
|
case lists:member(H, Acc) of
|
2010-06-09 19:45:55 +00:00
|
|
|
true ->
|
|
|
|
ulist(T, Acc);
|
|
|
|
false ->
|
|
|
|
ulist(T, [H | Acc])
|
|
|
|
end.
|
|
|
|
|
|
|
|
plugin_modules(_Config, []) ->
|
|
|
|
{ok, []};
|
|
|
|
plugin_modules(_Config, Modules) ->
|
|
|
|
FoundModules = [M || M <- Modules, code:which(M) =/= non_existing],
|
|
|
|
case (Modules =:= FoundModules) of
|
|
|
|
true ->
|
|
|
|
ok;
|
|
|
|
false ->
|
|
|
|
?WARN("Missing plugins: ~p\n", [Modules -- FoundModules]),
|
|
|
|
ok
|
|
|
|
end,
|
|
|
|
{ok, FoundModules}.
|