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-12-04 22:42:12 +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).
|
|
|
|
|
2011-01-24 15:40:50 +00:00
|
|
|
-export([main/1,
|
|
|
|
help/0,
|
|
|
|
parse_args/1,
|
|
|
|
version/0]).
|
|
|
|
|
|
|
|
-include("rebar.hrl").
|
|
|
|
|
2011-01-26 02:15:27 +00:00
|
|
|
-ifndef(BUILD_TIME).
|
|
|
|
-define(BUILD_TIME, "undefined").
|
|
|
|
-endif.
|
|
|
|
|
|
|
|
-ifndef(VCS_INFO).
|
|
|
|
-define(VCS_INFO, "undefined").
|
|
|
|
-endif.
|
|
|
|
|
2012-06-04 14:46:17 +00:00
|
|
|
-ifndef(OTP_INFO).
|
|
|
|
-define(OTP_INFO, "undefined").
|
|
|
|
-endif.
|
|
|
|
|
2011-01-24 15:40:50 +00:00
|
|
|
%% ====================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ====================================================================
|
2009-12-04 22:42:12 +00:00
|
|
|
|
|
|
|
main(Args) ->
|
2011-01-27 14:52:48 +00:00
|
|
|
case catch(run(Args)) of
|
2009-12-07 17:07:01 +00:00
|
|
|
ok ->
|
|
|
|
ok;
|
2009-12-21 03:43:45 +00:00
|
|
|
{error, failed} ->
|
2012-06-04 16:48:00 +00:00
|
|
|
rebar_utils:delayed_halt(1);
|
2009-12-21 03:43:45 +00:00
|
|
|
Error ->
|
2011-01-28 15:08:27 +00:00
|
|
|
%% Nothing should percolate up from rebar_core;
|
|
|
|
%% Dump this error to console
|
2009-12-21 03:43:45 +00:00
|
|
|
io:format("Uncaught error in rebar_core: ~p\n", [Error]),
|
2012-06-04 16:48:00 +00:00
|
|
|
rebar_utils:delayed_halt(1)
|
2009-12-07 17:07:01 +00:00
|
|
|
end.
|
2011-01-24 15:40:50 +00:00
|
|
|
|
2011-01-27 14:52:48 +00:00
|
|
|
%% ====================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ====================================================================
|
|
|
|
|
|
|
|
run(RawArgs) ->
|
|
|
|
%% Pre-load the rebar app so that we get default configuration
|
|
|
|
ok = application:load(rebar),
|
|
|
|
%% Parse out command line arguments -- what's left is a list of commands to
|
|
|
|
%% run -- and start running commands
|
2011-10-25 19:33:40 +00:00
|
|
|
Args = parse_args(RawArgs),
|
|
|
|
|
|
|
|
case rebar_config:get_global(enable_profiling, false) of
|
|
|
|
true ->
|
|
|
|
io:format("Profiling!\n"),
|
2011-10-26 05:58:53 +00:00
|
|
|
try
|
|
|
|
fprof:apply(fun(A) -> run_aux(A) end, [Args])
|
|
|
|
after
|
|
|
|
fprof:profile(),
|
|
|
|
fprof:analyse([{dest, "fprof.analysis"}])
|
|
|
|
end;
|
2011-10-25 19:33:40 +00:00
|
|
|
_ ->
|
|
|
|
run_aux(Args)
|
|
|
|
end.
|
2011-01-27 14:52:48 +00:00
|
|
|
|
|
|
|
run_aux(["help"]) ->
|
|
|
|
help(),
|
|
|
|
ok;
|
|
|
|
run_aux(["version"]) ->
|
|
|
|
%% Display vsn and build time info
|
|
|
|
version(),
|
|
|
|
ok;
|
|
|
|
run_aux(Commands) ->
|
|
|
|
%% Make sure crypto is running
|
|
|
|
ok = crypto:start(),
|
|
|
|
|
|
|
|
%% Initialize logging system
|
|
|
|
rebar_log:init(),
|
|
|
|
|
2012-01-19 21:49:42 +00:00
|
|
|
%% Initialize vsn cache
|
|
|
|
_VsnCacheTab = ets:new(rebar_vsn_cache,[named_table, public]),
|
|
|
|
|
2011-01-27 14:52:48 +00:00
|
|
|
%% Convert command strings to atoms
|
|
|
|
CommandAtoms = [list_to_atom(C) || C <- Commands],
|
|
|
|
|
|
|
|
%% Determine the location of the rebar executable; important for pulling
|
|
|
|
%% resources out of the escript
|
|
|
|
rebar_config:set_global(escript, filename:absname(escript:script_name())),
|
2011-01-28 15:08:27 +00:00
|
|
|
?DEBUG("Rebar location: ~p\n",
|
|
|
|
[rebar_config:get_global(escript, undefined)]),
|
2011-01-27 14:52:48 +00:00
|
|
|
|
|
|
|
%% Note the top-level directory for reference
|
|
|
|
rebar_config:set_global(base_dir, filename:absname(rebar_utils:get_cwd())),
|
|
|
|
|
|
|
|
%% Keep track of how many operations we do, so we can detect bad commands
|
|
|
|
erlang:put(operations, 0),
|
|
|
|
|
2011-06-21 19:46:41 +00:00
|
|
|
%% If $HOME/.rebar/config exists load and use as global config
|
2011-07-17 16:38:59 +00:00
|
|
|
GlobalConfigFile = filename:join([os:getenv("HOME"), ".rebar", "config"]),
|
2011-06-21 19:46:41 +00:00
|
|
|
GlobalConfig = case filelib:is_regular(GlobalConfigFile) of
|
|
|
|
true ->
|
|
|
|
?DEBUG("Load global config file ~p~n",
|
|
|
|
[GlobalConfigFile]),
|
|
|
|
rebar_config:new(GlobalConfigFile);
|
|
|
|
false ->
|
|
|
|
rebar_config:new()
|
|
|
|
end,
|
2011-08-01 07:12:36 +00:00
|
|
|
BaseConfig = rebar_config:base_config(GlobalConfig),
|
2011-06-21 19:46:41 +00:00
|
|
|
|
2011-01-27 14:52:48 +00:00
|
|
|
%% Process each command, resetting any state between each one
|
2011-08-01 07:12:36 +00:00
|
|
|
rebar_core:process_commands(CommandAtoms, BaseConfig).
|
2011-01-27 14:52:48 +00:00
|
|
|
|
2011-01-24 15:40:50 +00:00
|
|
|
%%
|
|
|
|
%% print help/usage string
|
|
|
|
%%
|
|
|
|
help() ->
|
|
|
|
OptSpecList = option_spec_list(),
|
|
|
|
getopt:usage(OptSpecList, "rebar",
|
|
|
|
"[var=value,...] <command,...>",
|
|
|
|
[{"var=value", "rebar global variables (e.g. force=1)"},
|
|
|
|
{"command", "Command to run (e.g. compile)"}]).
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% Parse command line arguments using getopt and also filtering out any
|
|
|
|
%% key=value pairs. What's left is the list of commands to run
|
|
|
|
%%
|
|
|
|
parse_args(Args) ->
|
|
|
|
%% Parse getopt options
|
|
|
|
OptSpecList = option_spec_list(),
|
|
|
|
case getopt:parse(OptSpecList, Args) of
|
|
|
|
{ok, {Options, NonOptArgs}} ->
|
|
|
|
%% Check options and maybe halt execution
|
|
|
|
ok = show_info_maybe_halt(Options, NonOptArgs),
|
|
|
|
|
2011-10-22 12:27:19 +00:00
|
|
|
GlobalDefines = proplists:get_all_values(defines, Options),
|
|
|
|
rebar_config:set_global(defines, GlobalDefines),
|
|
|
|
|
2011-10-25 19:33:40 +00:00
|
|
|
%% Setup profiling flag
|
|
|
|
rebar_config:set_global(enable_profiling,
|
|
|
|
proplists:get_bool(profile, Options)),
|
|
|
|
|
2011-01-24 15:40:50 +00:00
|
|
|
%% Set global variables based on getopt options
|
2012-01-24 20:05:35 +00:00
|
|
|
set_log_level(Options),
|
2011-01-24 15:40:50 +00:00
|
|
|
set_global_flag(Options, force),
|
|
|
|
DefJobs = rebar_config:get_jobs(),
|
|
|
|
case proplists:get_value(jobs, Options, DefJobs) of
|
|
|
|
DefJobs ->
|
|
|
|
ok;
|
|
|
|
Jobs ->
|
|
|
|
rebar_config:set_global(jobs, Jobs)
|
|
|
|
end,
|
|
|
|
|
|
|
|
%% Set the rebar config to use
|
|
|
|
case proplists:get_value(config, Options) of
|
|
|
|
undefined -> ok;
|
|
|
|
Conf -> rebar_config:set_global(config, Conf)
|
|
|
|
end,
|
|
|
|
|
|
|
|
%% Filter all the flags (i.e. strings of form key=value) from the
|
|
|
|
%% command line arguments. What's left will be the commands to run.
|
2011-01-24 15:55:18 +00:00
|
|
|
unabbreviate_command_names(filter_flags(NonOptArgs, []));
|
2011-01-24 15:40:50 +00:00
|
|
|
|
|
|
|
{error, {Reason, Data}} ->
|
2011-11-08 15:04:27 +00:00
|
|
|
?ERROR("~s ~p~n~n", [Reason, Data]),
|
2011-01-27 14:52:48 +00:00
|
|
|
help(),
|
2012-06-04 16:48:00 +00:00
|
|
|
rebar_utils:delayed_halt(1)
|
2011-01-24 15:40:50 +00:00
|
|
|
end.
|
|
|
|
|
2012-01-24 20:05:35 +00:00
|
|
|
%%
|
|
|
|
%% set log level based on getopt option
|
|
|
|
%%
|
|
|
|
set_log_level(Options) ->
|
|
|
|
LogLevel = case proplists:get_all_values(verbose, Options) of
|
|
|
|
[] ->
|
|
|
|
rebar_log:default_level();
|
|
|
|
Verbosities ->
|
|
|
|
lists:last(Verbosities)
|
|
|
|
end,
|
|
|
|
rebar_config:set_global(verbose, LogLevel).
|
|
|
|
|
2011-01-24 15:40:50 +00:00
|
|
|
%%
|
|
|
|
%% show version information and halt
|
|
|
|
%%
|
|
|
|
version() ->
|
|
|
|
{ok, Vsn} = application:get_key(rebar, vsn),
|
2012-06-04 14:46:17 +00:00
|
|
|
?CONSOLE("rebar ~s ~s ~s ~s\n",
|
|
|
|
[Vsn, ?OTP_INFO, ?BUILD_TIME, ?VCS_INFO]).
|
2011-01-24 15:40:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% set global flag based on getopt option boolean value
|
|
|
|
%%
|
|
|
|
set_global_flag(Options, Flag) ->
|
|
|
|
Value = case proplists:get_bool(Flag, Options) of
|
|
|
|
true ->
|
|
|
|
"1";
|
|
|
|
false ->
|
|
|
|
"0"
|
|
|
|
end,
|
|
|
|
rebar_config:set_global(Flag, Value).
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% show info and maybe halt execution
|
|
|
|
%%
|
|
|
|
show_info_maybe_halt(Opts, NonOptArgs) ->
|
|
|
|
false = show_info_maybe_halt(help, Opts, fun help/0),
|
|
|
|
false = show_info_maybe_halt(commands, Opts, fun commands/0),
|
|
|
|
false = show_info_maybe_halt(version, Opts, fun version/0),
|
|
|
|
case NonOptArgs of
|
|
|
|
[] ->
|
|
|
|
?CONSOLE("No command to run specified!~n",[]),
|
|
|
|
help(),
|
2012-06-04 16:48:00 +00:00
|
|
|
rebar_utils:delayed_halt(1);
|
2011-01-24 15:40:50 +00:00
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
show_info_maybe_halt(O, Opts, F) ->
|
|
|
|
case proplists:get_bool(O, Opts) of
|
|
|
|
true ->
|
|
|
|
F(),
|
2012-01-13 19:03:13 +00:00
|
|
|
rebar_utils:delayed_halt(0);
|
2011-01-24 15:40:50 +00:00
|
|
|
false ->
|
|
|
|
false
|
|
|
|
end.
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% print known commands
|
|
|
|
%%
|
|
|
|
commands() ->
|
|
|
|
S = <<"
|
|
|
|
clean Clean
|
|
|
|
compile Compile sources
|
|
|
|
|
|
|
|
create template= [var=foo,...] Create skel based on template and vars
|
|
|
|
create-app [appid=myapp] Create simple app skel
|
|
|
|
create-node [nodeid=mynode] Create simple node skel
|
|
|
|
list-templates List available templates
|
|
|
|
|
|
|
|
doc Generate Erlang program documentation
|
|
|
|
|
|
|
|
check-deps Display to be fetched dependencies
|
|
|
|
get-deps Fetch dependencies
|
|
|
|
update-deps Update fetched dependencies
|
|
|
|
delete-deps Delete fetched dependencies
|
2011-06-10 15:20:49 +00:00
|
|
|
list-deps List dependencies
|
2011-01-24 15:40:50 +00:00
|
|
|
|
|
|
|
generate [dump_spec=0/1] Build release with reltool
|
2011-09-27 13:15:19 +00:00
|
|
|
overlay Run reltool overlays only
|
2011-01-24 15:40:50 +00:00
|
|
|
|
2011-01-28 18:05:20 +00:00
|
|
|
generate-upgrade previous_release=path Build an upgrade package
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-12-16 20:04:18 +00:00
|
|
|
generate-appups previous_release=path Generate appup files
|
2011-02-10 21:27:29 +00:00
|
|
|
|
2011-01-24 15:40:50 +00:00
|
|
|
eunit [suite=foo] Run eunit [test/foo_tests.erl] tests
|
2012-01-06 17:33:41 +00:00
|
|
|
ct [suites=] [case=] Run common_test suites in ./test
|
2011-01-24 15:40:50 +00:00
|
|
|
|
|
|
|
xref Run cross reference analysis
|
|
|
|
|
|
|
|
help Show the program options
|
|
|
|
version Show version information
|
|
|
|
">>,
|
2011-04-04 14:30:23 +00:00
|
|
|
io:put_chars(S).
|
2011-01-24 15:40:50 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
%% options accepted via getopt
|
|
|
|
%%
|
|
|
|
option_spec_list() ->
|
|
|
|
Jobs = rebar_config:get_jobs(),
|
|
|
|
JobsHelp = io_lib:format(
|
2011-05-23 10:24:55 +00:00
|
|
|
"Number of concurrent workers a command may use. Default: ~B",
|
|
|
|
[Jobs]),
|
2012-01-17 11:08:33 +00:00
|
|
|
VerboseHelp = "Verbosity level (-v, -vv, -vvv, --verbose 3). Default: 0",
|
2011-01-24 15:40:50 +00:00
|
|
|
[
|
|
|
|
%% {Name, ShortOpt, LongOpt, ArgSpec, HelpMsg}
|
2011-01-28 15:08:27 +00:00
|
|
|
{help, $h, "help", undefined, "Show the program options"},
|
|
|
|
{commands, $c, "commands", undefined, "Show available commands"},
|
2012-01-17 11:08:33 +00:00
|
|
|
{verbose, $v, "verbose", integer, VerboseHelp},
|
2011-01-28 15:08:27 +00:00
|
|
|
{version, $V, "version", undefined, "Show version information"},
|
|
|
|
{force, $f, "force", undefined, "Force"},
|
2011-10-26 21:23:07 +00:00
|
|
|
{defines, $D, undefined, string, "Define compiler macro"},
|
2011-01-28 15:08:27 +00:00
|
|
|
{jobs, $j, "jobs", integer, JobsHelp},
|
2011-10-25 19:33:40 +00:00
|
|
|
{config, $C, "config", string, "Rebar config file to use"},
|
2011-10-26 21:23:07 +00:00
|
|
|
{profile, $p, "profile", undefined, "Profile this run of rebar"}
|
2011-01-24 15:40:50 +00:00
|
|
|
].
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% 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]);
|
2012-01-17 10:37:21 +00:00
|
|
|
[KeyStr, RawValue] ->
|
2011-01-24 15:40:50 +00:00
|
|
|
Key = list_to_atom(KeyStr),
|
2012-01-17 10:37:21 +00:00
|
|
|
Value = case Key of
|
|
|
|
verbose ->
|
|
|
|
list_to_integer(RawValue);
|
|
|
|
_ ->
|
|
|
|
RawValue
|
|
|
|
end,
|
2011-01-24 15:40:50 +00:00
|
|
|
rebar_config:set_global(Key, Value),
|
|
|
|
filter_flags(Rest, Commands);
|
|
|
|
Other ->
|
|
|
|
?CONSOLE("Ignoring command line argument: ~p\n", [Other]),
|
|
|
|
filter_flags(Rest, Commands)
|
|
|
|
end.
|
2011-01-24 15:55:18 +00:00
|
|
|
|
|
|
|
command_names() ->
|
2011-06-06 23:11:32 +00:00
|
|
|
["check-deps", "clean", "compile", "create", "create-app", "create-node",
|
|
|
|
"ct", "delete-deps", "doc", "eunit", "generate", "generate-appups",
|
2011-06-10 15:20:49 +00:00
|
|
|
"generate-upgrade", "get-deps", "help", "list-deps", "list-templates",
|
2011-09-27 13:15:19 +00:00
|
|
|
"update-deps", "overlay", "version", "xref"].
|
2011-01-24 15:55:18 +00:00
|
|
|
|
|
|
|
unabbreviate_command_names([]) ->
|
|
|
|
[];
|
|
|
|
unabbreviate_command_names([Command | Commands]) ->
|
|
|
|
case get_command_name_candidates(Command) of
|
|
|
|
[] ->
|
|
|
|
%% let the rest of the code detect that the command doesn't exist
|
|
|
|
%% (this would perhaps be a good place to fail)
|
|
|
|
[Command | unabbreviate_command_names(Commands)];
|
|
|
|
[FullCommand] ->
|
|
|
|
[FullCommand | unabbreviate_command_names(Commands)];
|
|
|
|
Candidates ->
|
|
|
|
?ABORT("Found more than one match for abbreviated command name "
|
|
|
|
" '~s',~nplease be more specific. Possible candidates:~n"
|
|
|
|
" ~s~n",
|
|
|
|
[Command, string:join(Candidates, ", ")])
|
|
|
|
end.
|
|
|
|
|
|
|
|
get_command_name_candidates(Command) ->
|
|
|
|
%% Get the command names which match the given (abbreviated) command name.
|
|
|
|
%% * "c" matches commands like compile, clean and create-app
|
|
|
|
%% * "create" matches command create only, since it's unique
|
|
|
|
%% * "create-" matches commands starting with create-
|
|
|
|
%% * "c-a" matches create-app
|
|
|
|
%% * "create-a" matches create-app
|
|
|
|
%% * "c-app" matches create-app
|
|
|
|
Candidates = [Candidate || Candidate <- command_names(),
|
2011-01-28 15:08:27 +00:00
|
|
|
is_command_name_candidate(Command, Candidate)],
|
2011-01-24 15:55:18 +00:00
|
|
|
%% Is there a complete match? If so return only that, return a
|
|
|
|
%% list of candidates otherwise
|
2011-01-26 04:29:08 +00:00
|
|
|
case lists:member(Command, Candidates) of
|
|
|
|
true -> [Command];
|
|
|
|
false -> Candidates
|
2011-01-24 15:55:18 +00:00
|
|
|
end.
|
|
|
|
|
|
|
|
is_command_name_candidate(Command, Candidate) ->
|
|
|
|
lists:prefix(Command, Candidate)
|
|
|
|
orelse is_command_name_sub_word_candidate(Command, Candidate).
|
|
|
|
|
|
|
|
is_command_name_sub_word_candidate(Command, Candidate) ->
|
|
|
|
%% Allow for parts of commands to be abbreviated, i.e. create-app
|
|
|
|
%% can be shortened to "create-a", "c-a" or "c-app" (but not
|
|
|
|
%% "create-" since that would be ambiguous).
|
2011-06-02 19:03:09 +00:00
|
|
|
ReOpts = [{return, list}],
|
|
|
|
CommandSubWords = re:split(Command, "-", ReOpts),
|
|
|
|
CandidateSubWords = re:split(Candidate, "-", ReOpts),
|
2011-01-24 15:55:18 +00:00
|
|
|
is_command_name_sub_word_candidate_aux(CommandSubWords, CandidateSubWords).
|
|
|
|
|
2011-06-02 19:03:09 +00:00
|
|
|
is_command_name_sub_word_candidate_aux([CmdSW | CmdSWs],
|
|
|
|
[CandSW | CandSWs]) ->
|
|
|
|
lists:prefix(CmdSW, CandSW) andalso
|
|
|
|
is_command_name_sub_word_candidate_aux(CmdSWs, CandSWs);
|
2011-01-24 15:55:18 +00:00
|
|
|
is_command_name_sub_word_candidate_aux([], []) ->
|
|
|
|
true;
|
|
|
|
is_command_name_sub_word_candidate_aux(_CmdSWs, _CandSWs) ->
|
|
|
|
false.
|