Add support for $HOME/.rebar/config

This commit is contained in:
Tuncer Ayaz 2011-06-21 21:46:41 +02:00
parent 2d353f82a3
commit 8263f12594
3 changed files with 31 additions and 8 deletions

View file

@ -98,8 +98,19 @@ run_aux(Commands) ->
%% Keep track of how many operations we do, so we can detect bad commands
erlang:put(operations, 0),
%% If $HOME/.rebar/config exists load and use as global config
GlobalConfigFile = filename:join(os:getenv("HOME"), ".rebar/config"),
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,
%% Process each command, resetting any state between each one
rebar_core:process_commands(CommandAtoms).
rebar_core:process_commands(CommandAtoms, GlobalConfig).
%%
%% print help/usage string

View file

@ -52,7 +52,15 @@ new() ->
#config { dir = rebar_utils:get_cwd(),
opts = []}.
new(ParentConfig) ->
new(ConfigFile) when is_list(ConfigFile) ->
case consult_file(ConfigFile) of
{ok, Opts} ->
#config { dir = rebar_utils:get_cwd(),
opts = Opts };
Other ->
?ABORT("Failed to load ~s: ~p~n", [ConfigFile, Other])
end;
new(#config{}=ParentConfig)->
%% If we are at the top level we might want to load another rebar.config
%% We can be certain that we are at the top level if we don't have any
%% configs yet since if we are at another level we must have some config.
@ -66,7 +74,7 @@ new(ParentConfig) ->
%% Load terms from rebar.config, if it exists
Dir = rebar_utils:get_cwd(),
ConfigFile = filename:join([Dir, ConfName]),
Opts = case file:consult(ConfigFile) of
Opts = case consult_file(ConfigFile) of
{ok, Terms} ->
%% Found a config file with some terms. We need to
%% be able to distinguish between local definitions
@ -126,6 +134,10 @@ get_jobs() ->
%% Internal functions
%% ===================================================================
consult_file(File) ->
?DEBUG("Consult config file ~p~n", [File]),
file:consult(File).
local_opts([], Acc) ->
lists:reverse(Acc);
local_opts([local | _Rest], Acc) ->

View file

@ -26,7 +26,7 @@
%% -------------------------------------------------------------------
-module(rebar_core).
-export([process_commands/1,
-export([process_commands/2,
skip_dir/1,
is_skip_dir/1,
skip_dirs/0]).
@ -63,7 +63,7 @@ skip_dirs() ->
%% Internal functions
%% ===================================================================
process_commands([]) ->
process_commands([], _ParentConfig) ->
case erlang:get(operations) of
0 ->
%% none of the commands had an effect
@ -71,7 +71,7 @@ process_commands([]) ->
_ ->
ok
end;
process_commands([Command | Rest]) ->
process_commands([Command | Rest], ParentConfig) ->
%% Reset skip dirs
lists:foreach(fun (D) -> erlang:erase({skip_dir, D}) end, skip_dirs()),
Operations = erlang:get(operations),
@ -80,7 +80,7 @@ process_commands([Command | Rest]) ->
%% If not, code:set_path() may choke on invalid relative paths when trying
%% to restore the code path from inside a subdirectory.
true = rebar_utils:expand_code_path(),
_ = process_dir(rebar_utils:get_cwd(), rebar_config:new(),
_ = process_dir(rebar_utils:get_cwd(), ParentConfig,
Command, sets:new()),
case erlang:get(operations) of
Operations ->
@ -89,7 +89,7 @@ process_commands([Command | Rest]) ->
_ ->
ok
end,
process_commands(Rest).
process_commands(Rest, ParentConfig).
process_dir(Dir, ParentConfig, Command, DirSet) ->