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).
|
|
|
|
|
|
|
|
-export([run/1]).
|
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
-export([app_dir/1, rel_dir/1]). % Ugh
|
|
|
|
|
2009-11-29 23:53:53 +00:00
|
|
|
-include("rebar.hrl").
|
|
|
|
|
2009-12-07 23:03:56 +00:00
|
|
|
-ifndef(BUILD_TIME).
|
|
|
|
-define(BUILD_TIME, "undefined").
|
|
|
|
-endif.
|
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
%% ===================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ===================================================================
|
|
|
|
|
2009-12-07 23:03:56 +00:00
|
|
|
run(["version"]) ->
|
|
|
|
%% Load application spec and display vsn and build time info
|
|
|
|
ok = application:load(rebar),
|
|
|
|
{ok, Vsn} = application:get_key(rebar, vsn),
|
|
|
|
?CONSOLE("Version ~s built ~s\n", [Vsn, ?BUILD_TIME]),
|
|
|
|
ok;
|
|
|
|
run(Args) ->
|
2009-11-29 23:44:30 +00:00
|
|
|
%% Filter all the flags (i.e. string of form key=value) from the
|
|
|
|
%% command line arguments. What's left will be the commands to run.
|
|
|
|
Commands = filter_flags(Args, []),
|
|
|
|
|
|
|
|
%% Pre-load the rebar app so that we get default configuration
|
2009-12-04 20:48:57 +00:00
|
|
|
ok = application:load(rebar),
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2009-12-10 04:59:58 +00:00
|
|
|
%% Make sure crypto is running
|
|
|
|
crypto:start(),
|
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
%% Initialize logging system
|
|
|
|
rebar_log:init(),
|
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
%% Convert command strings to atoms
|
|
|
|
CommandAtoms = [list_to_atom(C) || C <- Commands],
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
%% Load rebar.config, if it exists
|
|
|
|
process_dir(rebar_utils:get_cwd(), rebar_config:new(), CommandAtoms).
|
2009-11-29 23:44:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ===================================================================
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% Seperate all commands (single-words) from flags (key=value) and store
|
|
|
|
%% values into the rebar_config global storage.
|
|
|
|
%%
|
|
|
|
filter_flags([], Commands) ->
|
|
|
|
lists:reverse(Commands);
|
|
|
|
filter_flags([Item | Rest], Commands) ->
|
|
|
|
case string:tokens(Item, "=") of
|
|
|
|
[Command] ->
|
|
|
|
filter_flags(Rest, [Command | Commands]);
|
|
|
|
[KeyStr, Value] ->
|
|
|
|
Key = list_to_atom(KeyStr),
|
|
|
|
rebar_config:set_global(Key, Value),
|
|
|
|
filter_flags(Rest, Commands);
|
|
|
|
Other ->
|
|
|
|
?CONSOLE("Ignoring command line argument: ~p\n", [Other]),
|
|
|
|
filter_flags(Rest, Commands)
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
process_dir(Dir, ParentConfig, Commands) ->
|
|
|
|
ok = file:set_cwd(Dir),
|
|
|
|
Config = rebar_config:new(ParentConfig),
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
%% 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),
|
|
|
|
|
|
|
|
%% If there are any subdirs specified, process those first...
|
|
|
|
case rebar_config:get(Config, sub_dirs, []) of
|
|
|
|
[] ->
|
|
|
|
ok;
|
|
|
|
Subdirs ->
|
|
|
|
%% Edge case: config is inherited, EXCEPT for sub_dir directives -- filter those out
|
|
|
|
FilteredConfig = rebar_config:delete(Config, sub_dirs),
|
|
|
|
[process_dir(filename:join(Dir, Subdir), FilteredConfig, Commands) || Subdir <- Subdirs],
|
|
|
|
ok = file:set_cwd(Dir)
|
|
|
|
end,
|
|
|
|
|
|
|
|
%% 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),
|
|
|
|
case choose_module_set(AvailModuleSets, Dir) of
|
|
|
|
{ok, Modules, ModuleSetFile} ->
|
|
|
|
apply_commands(Commands, Modules, Config, ModuleSetFile);
|
|
|
|
none ->
|
|
|
|
ok
|
2009-11-29 23:44:30 +00:00
|
|
|
end,
|
2009-12-12 14:34:29 +00:00
|
|
|
|
|
|
|
%% Once we're all done processing, reset the code path to whatever
|
|
|
|
%% the parent initialized it to
|
|
|
|
restore_code_path(CurrentCodePath),
|
|
|
|
ok.
|
2009-11-29 23:44:30 +00:00
|
|
|
|
|
|
|
%%
|
2009-12-12 14:34:29 +00:00
|
|
|
%% Give a list of module sets from rebar.app and a directory, find
|
|
|
|
%% 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) ->
|
|
|
|
none;
|
|
|
|
choose_module_set([{Fn, Modules} | Rest], Dir) ->
|
|
|
|
case ?MODULE:Fn(Dir) of
|
|
|
|
{true, File} ->
|
|
|
|
{ok, 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.
|
|
|
|
|
|
|
|
%%
|
2009-12-12 14:34:29 +00:00
|
|
|
%% Return .app file if the current directory is an OTP app
|
2009-11-29 23:44:30 +00:00
|
|
|
%%
|
2009-12-12 14:34:29 +00:00
|
|
|
app_dir(Dir) ->
|
|
|
|
rebar_app_utils:is_app_dir(Dir).
|
2009-11-29 23:44:30 +00:00
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
%%
|
|
|
|
%% Return the reltool.config file if the current directory is release directory
|
|
|
|
%%
|
|
|
|
rel_dir(Dir) ->
|
|
|
|
rebar_rel_utils:is_rel_dir(Dir).
|
|
|
|
|
|
|
|
|
2009-11-29 23:44:30 +00:00
|
|
|
|
|
|
|
|
2009-12-14 13:58:22 +00:00
|
|
|
apply_commands([], _Modules, _Config, _ModuleFile) ->
|
2009-11-29 23:44:30 +00:00
|
|
|
ok;
|
2009-12-12 14:34:29 +00:00
|
|
|
apply_commands([Command | Rest], Modules, Config, ModuleFile) ->
|
|
|
|
case select_modules(Modules, Command, []) of
|
2009-12-02 12:15:35 +00:00
|
|
|
[] ->
|
2009-12-12 14:34:29 +00:00
|
|
|
apply_commands(Rest, Modules, Config, ModuleFile);
|
|
|
|
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]),
|
|
|
|
|
|
|
|
%% 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 ->
|
2009-12-12 14:34:29 +00:00
|
|
|
apply_commands(Rest, Modules, Config, ModuleFile);
|
2009-12-03 16:41:10 +00:00
|
|
|
{error, failed} ->
|
|
|
|
error;
|
2009-12-02 12:15:35 +00:00
|
|
|
Other ->
|
|
|
|
?ERROR("~p failed while processing ~s: ~p", [Command, Dir, Other]),
|
|
|
|
error
|
|
|
|
end
|
2009-11-29 23:44:30 +00:00
|
|
|
end.
|
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
|
|
|
|
update_code_path(Config) ->
|
|
|
|
case rebar_config:get(Config, lib_dirs, []) of
|
|
|
|
[] ->
|
|
|
|
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}) ->
|
|
|
|
true = code:set_path(Path),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
|
|
|
|
expand_lib_dirs([], _Root, Acc) ->
|
|
|
|
Acc;
|
|
|
|
expand_lib_dirs([Dir | Rest], Root, Acc) ->
|
|
|
|
Apps = filelib:wildcard(filename:join([Dir, '*', ebin])),
|
|
|
|
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);
|
|
|
|
{error, Reason} ->
|
|
|
|
{error, Reason}
|
|
|
|
end.
|
2009-12-12 14:34:29 +00:00
|
|
|
|
|
|
|
|