Merging mainline

This commit is contained in:
Dave Smith 2010-01-09 05:35:04 -07:00
commit 407486bc62
5 changed files with 165 additions and 56 deletions

View file

@ -0,0 +1,35 @@
# bash completion for rebar
_rebar()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
sopts="-h -v -f -j"
lopts=" --help --verbose --force --jobs"
cmdsnvars="analyze build_plt clean compile create-app \
create-app create-node eunit generate \
int_test perf_test test \
case= force=1 jobs= suite= verbose=1"
if [[ ${cur} == --* ]] ; then
COMPREPLY=( $(compgen -W "${lopts}" -- ${cur}) )
return 0
elif [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${sopts}" -- ${cur}) )
return 0
else
COMPREPLY=( $(compgen -W "${cmdsnvars}" -- ${cur}) )
return 0
fi
}
complete -F _rebar rebar
# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh

View file

@ -11,13 +11,14 @@
-module(getopt). -module(getopt).
-author('juanjo@comellas.org'). -author('juanjo@comellas.org').
-export([parse/2, usage/2]). -export([parse/2, usage/2, usage/3, usage/4]).
-define(TAB_LENGTH, 8). -define(TAB_LENGTH, 8).
%% Indentation of the help messages in number of tabs. %% Indentation of the help messages in number of tabs.
-define(INDENTATION, 3). -define(INDENTATION, 3).
%% Position of each field in the option specification tuple.
-define(OPT_NAME, 1). -define(OPT_NAME, 1).
-define(OPT_SHORT, 2). -define(OPT_SHORT, 2).
-define(OPT_LONG, 3). -define(OPT_LONG, 3).
@ -80,7 +81,7 @@ parse(OptSpecList, OptAcc, ArgAcc, _ArgPos, ["--" | Tail]) ->
parse(OptSpecList, OptAcc, ArgAcc, ArgPos, [[$-, $- | OptArg] = OptStr | Tail]) -> parse(OptSpecList, OptAcc, ArgAcc, ArgPos, [[$-, $- | OptArg] = OptStr | Tail]) ->
parse_option_long(OptSpecList, OptAcc, ArgAcc, ArgPos, Tail, OptStr, OptArg); parse_option_long(OptSpecList, OptAcc, ArgAcc, ArgPos, Tail, OptStr, OptArg);
%% Process short options. %% Process short options.
parse(OptSpecList, OptAcc, ArgAcc, ArgPos, [[$- | OptArg] = OptStr | Tail]) -> parse(OptSpecList, OptAcc, ArgAcc, ArgPos, [[$- | [_Char | _] = OptArg] = OptStr | Tail]) ->
parse_option_short(OptSpecList, OptAcc, ArgAcc, ArgPos, Tail, OptStr, OptArg); parse_option_short(OptSpecList, OptAcc, ArgAcc, ArgPos, Tail, OptStr, OptArg);
%% Process non-option arguments. %% Process non-option arguments.
parse(OptSpecList, OptAcc, ArgAcc, ArgPos, [Arg | Tail]) -> parse(OptSpecList, OptAcc, ArgAcc, ArgPos, [Arg | Tail]) ->
@ -97,13 +98,14 @@ parse(OptSpecList, OptAcc, ArgAcc, _ArgPos, []) ->
{ok, {lists:reverse(append_default_options(OptSpecList, OptAcc)), lists:reverse(ArgAcc)}}. {ok, {lists:reverse(append_default_options(OptSpecList, OptAcc)), lists:reverse(ArgAcc)}}.
-spec parse_option_long([option_spec()], [option()], [string()], integer(), [string()], string(), string()) ->
%% A long option can have the following formats: {ok, {[option()], [string()]}} | {error, {Reason :: atom(), Data:: any()}}.
%% @doc Parse a long option, add it to the option accumulator and continue
%% parsing the rest of the arguments recursively.
%% A long option can have the following syntax:
%% --foo Single option 'foo', no argument %% --foo Single option 'foo', no argument
%% --foo=bar Single option 'foo', argument "bar" %% --foo=bar Single option 'foo', argument "bar"
%% --foo bar Single option 'foo', argument "bar" %% --foo bar Single option 'foo', argument "bar"
-spec parse_option_long([option_spec()], [option()], [string()], integer(), [string()], string(), string()) ->
{ok, {[option()], [string()]}} | {error, {Reason :: atom(), Data:: any()}}.
parse_option_long(OptSpecList, OptAcc, ArgAcc, ArgPos, Args, OptStr, OptArg) -> parse_option_long(OptSpecList, OptAcc, ArgAcc, ArgPos, Args, OptStr, OptArg) ->
case split_assigned_arg(OptArg) of case split_assigned_arg(OptArg) of
{Long, Arg} -> {Long, Arg} ->
@ -126,6 +128,12 @@ parse_option_long(OptSpecList, OptAcc, ArgAcc, ArgPos, Args, OptStr, OptArg) ->
end. end.
-spec parse_option_assigned_arg([option_spec()], [option()], [string()], integer(),
[string()], string(), string(), string()) ->
{ok, {[option()], [string()]}} | {error, {Reason :: atom(), Data:: any()}}.
%% @doc Parse an option where the argument is 'assigned' in the same string using
%% the '=' character, add it to the option accumulator and continue parsing the
%% rest of the arguments recursively. This syntax is only valid for long options.
parse_option_assigned_arg(OptSpecList, OptAcc, ArgAcc, ArgPos, Args, OptStr, Long, Arg) -> parse_option_assigned_arg(OptSpecList, OptAcc, ArgAcc, ArgPos, Args, OptStr, Long, Arg) ->
case lists:keysearch(Long, ?OPT_LONG, OptSpecList) of case lists:keysearch(Long, ?OPT_LONG, OptSpecList) of
{value, {_Name, _Short, Long, ArgSpec, _Help} = OptSpec} -> {value, {_Name, _Short, Long, ArgSpec, _Help} = OptSpec} ->
@ -141,7 +149,7 @@ parse_option_assigned_arg(OptSpecList, OptAcc, ArgAcc, ArgPos, Args, OptStr, Lon
-spec split_assigned_arg(string()) -> {Name :: string(), Arg :: string()} | string(). -spec split_assigned_arg(string()) -> {Name :: string(), Arg :: string()} | string().
%% @doc Split an option string that may contain and option with its argument %% @doc Split an option string that may contain an option with its argument
%% separated by an equal ('=') character (e.g. "port=1000"). %% separated by an equal ('=') character (e.g. "port=1000").
split_assigned_arg(OptStr) -> split_assigned_arg(OptStr) ->
split_assigned_arg(OptStr, OptStr, []). split_assigned_arg(OptStr, OptStr, []).
@ -154,10 +162,10 @@ split_assigned_arg(OptStr, [], _Acc) ->
OptStr. OptStr.
%% @doc Parse a short option, add it to the option accumulator and continue
%% parsing the rest of the arguments recursively.
%% A short option can have the following formats: %% A short option can have the following syntax:
%% -a Single option 'a', no argument %% -a Single option 'a', no argument or implicit boolean argument
%% -a foo Single option 'a', argument "foo" %% -a foo Single option 'a', argument "foo"
%% -afoo Single option 'a', argument "foo" %% -afoo Single option 'a', argument "foo"
%% -abc Multiple options: 'a'; 'b'; 'c' %% -abc Multiple options: 'a'; 'b'; 'c'
@ -228,7 +236,8 @@ find_non_option_arg([], _Pos) ->
-spec append_default_options([option_spec()], [option()]) -> [option()]. -spec append_default_options([option_spec()], [option()]) -> [option()].
%% @doc Appends the default values of the options that are not present. %% @doc Append options that were not present in the command line arguments with
%% their default arguments.
append_default_options([{Name, _Short, _Long, {_Type, DefaultArg}, _Help} | Tail], OptAcc) -> append_default_options([{Name, _Short, _Long, {_Type, DefaultArg}, _Help} | Tail], OptAcc) ->
append_default_options(Tail, append_default_options(Tail,
case lists:keymember(Name, 1, OptAcc) of case lists:keymember(Name, 1, OptAcc) of
@ -253,8 +262,6 @@ convert_option_no_arg({Name, _Short, _Long, ArgSpec, _Help}) ->
{Name, true}; {Name, true};
boolean -> boolean ->
{Name, true}; {Name, true};
{_Type, DefaultValue} ->
{Name, DefaultValue};
_ -> _ ->
throw({error, {missing_option_arg, Name}}) throw({error, {missing_option_arg, Name}})
end. end.
@ -273,6 +280,7 @@ convert_option_arg({Name, _Short, _Long, ArgSpec, _Help}, Arg) ->
-spec arg_spec_type(arg_spec()) -> arg_type() | undefined. -spec arg_spec_type(arg_spec()) -> arg_type() | undefined.
%% @doc Retrieve the data type form an argument specification.
arg_spec_type({Type, _DefaultArg}) -> arg_spec_type({Type, _DefaultArg}) ->
Type; Type;
arg_spec_type(Type) when is_atom(Type) -> arg_spec_type(Type) when is_atom(Type) ->
@ -280,6 +288,7 @@ arg_spec_type(Type) when is_atom(Type) ->
-spec to_type(atom(), string()) -> arg_value(). -spec to_type(atom(), string()) -> arg_value().
%% @doc Convert an argument string to its corresponding data type.
to_type(binary, Arg) -> to_type(binary, Arg) ->
list_to_binary(Arg); list_to_binary(Arg);
to_type(atom, Arg) -> to_type(atom, Arg) ->
@ -289,19 +298,36 @@ to_type(integer, Arg) ->
to_type(float, Arg) -> to_type(float, Arg) ->
list_to_float(Arg); list_to_float(Arg);
to_type(boolean, Arg) -> to_type(boolean, Arg) ->
is_boolean_arg(Arg); LowerArg = string:to_lower(Arg),
case is_arg_true(LowerArg) of
true ->
true;
_ ->
case is_arg_false(LowerArg) of
true ->
false;
false ->
erlang:error(badarg)
end
end;
to_type(_Type, Arg) -> to_type(_Type, Arg) ->
Arg. Arg.
% -spec is_valid_option([option_spec()], Opt :: char() | string(), FieldPos :: integer()) -> boolean(). -spec is_arg_true(string()) -> boolean().
% is_valid_option(OptSpecList, Opt, FieldPos) -> is_arg_true(Arg) ->
% case lists:keysearch(Opt, FieldPos, OptSpecList) of (Arg =:= "true") orelse (Arg =:= "t") orelse
% {value, {_Name, _Short, _Long, _ArgSpec, _Help}} -> (Arg =:= "yes") orelse (Arg =:= "y") orelse
% true; (Arg =:= "on") orelse (Arg =:= "enabled") orelse
% _ -> (Arg =:= "1").
% false
% end.
-spec is_arg_false(string()) -> boolean().
is_arg_false(Arg) ->
(Arg =:= "false") orelse (Arg =:= "f") orelse
(Arg =:= "no") orelse (Arg =:= "n") orelse
(Arg =:= "off") orelse (Arg =:= "disabled") orelse
(Arg =:= "0").
-spec is_valid_arg(arg_spec() | arg_type(), string()) -> boolean(). -spec is_valid_arg(arg_spec() | arg_type(), string()) -> boolean().
@ -320,10 +346,7 @@ is_valid_arg(_Type, _Arg) ->
-spec is_boolean_arg(string()) -> boolean(). -spec is_boolean_arg(string()) -> boolean().
is_boolean_arg(Arg) -> is_boolean_arg(Arg) ->
LowerArg = string:to_lower(Arg), LowerArg = string:to_lower(Arg),
(LowerArg =:= "true") orelse (LowerArg =:= "t") orelse is_arg_true(LowerArg) orelse is_arg_false(LowerArg).
(LowerArg =:= "yes") orelse (LowerArg =:= "y") orelse
(LowerArg =:= "on") orelse (LowerArg =:= "enabled") orelse
(LowerArg =:= "1").
-spec is_integer_arg(string()) -> boolean(). -spec is_integer_arg(string()) -> boolean().
@ -346,7 +369,7 @@ is_float_arg([]) ->
-spec usage([option_spec()], string()) -> ok. -spec usage([option_spec()], string()) -> ok.
%%-------------------------------------------------------------------- %%--------------------------------------------------------------------
%% @spec usage(OptSpecList :: option_spec_list(), ProgramName :: string()) -> ok. %% @spec usage(OptSpecList :: [option_spec()], ProgramName :: string()) -> ok.
%% @doc Show a message on stdout indicating the command line options and %% @doc Show a message on stdout indicating the command line options and
%% arguments that are supported by the program. %% arguments that are supported by the program.
%%-------------------------------------------------------------------- %%--------------------------------------------------------------------
@ -355,6 +378,37 @@ usage(OptSpecList, ProgramName) ->
[ProgramName, usage_cmd_line(OptSpecList), usage_options(OptSpecList)]). [ProgramName, usage_cmd_line(OptSpecList), usage_options(OptSpecList)]).
-spec usage([option_spec()], string(), string()) -> ok.
%%--------------------------------------------------------------------
%% @spec usage(OptSpecList :: [option_spec()], ProgramName :: string(), CmdLineTail :: string()) -> ok.
%% @doc Show a message on stdout indicating the command line options and
%% arguments that are supported by the program. The CmdLineTail argument
%% is a string that is added to the end of the usage command line.
%%--------------------------------------------------------------------
usage(OptSpecList, ProgramName, CmdLineTail) ->
io:format("Usage: ~s~s ~s~n~n~s~n",
[ProgramName, usage_cmd_line(OptSpecList), CmdLineTail, usage_options(OptSpecList)]).
-spec usage([option_spec()], string(), string(), [{string(), string()}]) -> ok.
%%--------------------------------------------------------------------
%% @spec usage(OptSpecList :: [option_spec()], ProgramName :: string(),
%% CmdLineTail :: string(), OptionsTail :: [{string(), string()}]) -> ok.
%% @doc Show a message on stdout indicating the command line options and
%% arguments that are supported by the program. The CmdLineTail and OptionsTail
%% arguments are a string that is added to the end of the usage command line
%% and a list of tuples that are added to the end of the options' help lines.
%%--------------------------------------------------------------------
usage(OptSpecList, ProgramName, CmdLineTail, OptionsTail) ->
UsageOptions = lists:foldl(
fun ({Prefix, Help}, Acc) ->
add_option_help(Prefix, Help, Acc)
end, usage_options_reverse(OptSpecList, []), OptionsTail),
io:format("Usage: ~s~s ~s~n~n~s~n",
[ProgramName, usage_cmd_line(OptSpecList), CmdLineTail,
lists:flatten(lists:reverse(UsageOptions))]).
-spec usage_cmd_line([option_spec()]) -> string(). -spec usage_cmd_line([option_spec()]) -> string().
%% @doc Return a string with the syntax for the command line options and %% @doc Return a string with the syntax for the command line options and
%% arguments. %% arguments.
@ -397,9 +451,9 @@ usage_cmd_line([], Acc) ->
%% @doc Return a string with the help message for each of the options and %% @doc Return a string with the help message for each of the options and
%% arguments. %% arguments.
usage_options(OptSpecList) -> usage_options(OptSpecList) ->
usage_options(OptSpecList, []). lists:flatten(lists:reverse(usage_options_reverse(OptSpecList, []))).
usage_options([{Name, Short, Long, _ArgSpec, _Help} = OptSpec | Tail], Acc) -> usage_options_reverse([{Name, Short, Long, _ArgSpec, Help} | Tail], Acc) ->
Prefix = Prefix =
case Long of case Long of
undefined -> undefined ->
@ -421,14 +475,15 @@ usage_options([{Name, Short, Long, _ArgSpec, _Help} = OptSpec | Tail], Acc) ->
[$-, Short, $,, $\s, $-, $-, Long] [$-, Short, $,, $\s, $-, $-, Long]
end end
end, end,
usage_options(Tail, add_option_help(OptSpec, Prefix, Acc)); usage_options_reverse(Tail, add_option_help(Prefix, Help, Acc));
usage_options([], Acc) -> usage_options_reverse([], Acc) ->
lists:flatten(lists:reverse(Acc)). Acc.
-spec add_option_help(option_spec(), Prefix :: string(), Acc :: string()) -> string().
-spec add_option_help(Prefix :: string(), Help :: string(), Acc :: string()) -> string().
%% @doc Add the help message corresponding to an option specification to a list %% @doc Add the help message corresponding to an option specification to a list
%% with the correct indentation. %% with the correct indentation.
add_option_help({_Name, _Short, _Long, _ArgSpec, Help}, Prefix, Acc) when is_list(Help), Help =/= [] -> add_option_help(Prefix, Help, Acc) when is_list(Help), Help =/= [] ->
FlatPrefix = lists:flatten(Prefix), FlatPrefix = lists:flatten(Prefix),
case ((?INDENTATION * ?TAB_LENGTH) - 2 - length(FlatPrefix)) of case ((?INDENTATION * ?TAB_LENGTH) - 2 - length(FlatPrefix)) of
TabSize when TabSize > 0 -> TabSize when TabSize > 0 ->
@ -444,8 +499,9 @@ add_option_help(_Opt, _Prefix, Acc) ->
Acc. Acc.
-spec ceiling(float()) -> integer(). -spec ceiling(float()) -> integer().
%% @doc Return the smallest integral valur not less than the argument. %% @doc Return the smallest integral value not less than the argument.
ceiling(X) -> ceiling(X) ->
T = erlang:trunc(X), T = erlang:trunc(X),
case (X - T) of case (X - T) of

View file

@ -128,28 +128,26 @@ set_global_flag(Options, Flag) ->
%% print help/usage string %% print help/usage string
%% %%
help() -> help() ->
Jobs = rebar_config:get_jobs(), OptSpecList = option_spec_list(),
io:format( getopt:usage(OptSpecList, escript:script_name(),
" "[var=value,...] <command,...>",
Usage: rebar [-h] [-v] [-f] [-j <jobs>] [key=value,...] <command,...> [{"var=value", "rebar global variables (e.g. force=1)"},
{"command", "Command to run (e.g. compile)"}]).
-h, --help Show the program options
-v, --verbose Be verbose about what gets done
-f, --force Force
-j, --jobs Number of concurrent workers a command may use. Default: ~B
", [Jobs]).
%% %%
%% options accepted via getopt %% options accepted via getopt
%% %%
option_spec_list() -> option_spec_list() ->
Jobs = rebar_config:get_jobs(),
JobsHelp = io_lib:format(
"Number of concurrent workers a command may use. Default: ~B",
[Jobs]),
[ [
%% {Name, ShortOpt, LongOpt, ArgSpec, HelpMsg} %% {Name, ShortOpt, LongOpt, ArgSpec, HelpMsg}
{help, $h, "help", undefined, "Show the program options"}, {help, $h, "help", undefined, "Show the program options"},
{verbose, $v, "verbose", undefined, "Be verbose about what gets done"}, {verbose, $v, "verbose", undefined, "Be verbose about what gets done"},
{force, $f, "force", undefined, "Force"}, {force, $f, "force", undefined, "Force"},
{jobs, $j, "jobs", integer, {jobs, $j, "jobs", integer, JobsHelp}
"Number of concurrent workers a command may use."}
]. ].
%% %%

View file

@ -149,7 +149,8 @@ internal_erl_compile(Source, Config, Outdir) ->
skipped skipped
end. end.
compile_mib(Source, _Target, Config) -> compile_mib(Source, Target, Config) ->
ok = rebar_utils:ensure_dir(Target),
Opts = [{outdir, "priv/mibs"}, {i, ["priv/mibs"]}] ++ Opts = [{outdir, "priv/mibs"}, {i, ["priv/mibs"]}] ++
rebar_config:get(Config, mib_opts, []), rebar_config:get(Config, mib_opts, []),
case snmpc:compile(Source, Opts) of case snmpc:compile(Source, Opts) of

View file

@ -32,7 +32,8 @@
sh/2, sh/3, sh/2, sh/3,
sh_failfast/2, sh_failfast/2,
find_files/2, find_files/2,
now_str/0]). now_str/0,
ensure_dir/1]).
-include("rebar.hrl"). -include("rebar.hrl").
@ -89,6 +90,24 @@ now_str() ->
lists:flatten(io_lib:format("~4b/~2..0b/~2..0b ~2..0b:~2..0b:~2..0b", lists:flatten(io_lib:format("~4b/~2..0b/~2..0b ~2..0b:~2..0b:~2..0b",
[Year, Month, Day, Hour, Minute, Second])). [Year, Month, Day, Hour, Minute, Second])).
%% TODO: Review why filelib:ensure_dir/1 sometimes returns {error, eexist}.
%% There appears to be a race condition when calling ensure_dir from
%% multiple processes simultaneously.
%% This does not happen with -j1 but with anything higher than that.
%% So -j2 or default jobs setting will reveal the issue.
%% To reproduce make sure that the priv/mibs directory does not exist
%% $ rm -r priv
%% $ ./rebar -v compile
ensure_dir(Path) ->
case filelib:ensure_dir(Path) of
ok ->
ok;
{error,eexist} ->
ok;
Error ->
Error
end.
%% ==================================================================== %% ====================================================================
%% Internal functions %% Internal functions
%% ==================================================================== %% ====================================================================