2011-05-18 22:49:10 +00:00
|
|
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
|
|
%% ex: ts=4 sw=4 et
|
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% rebar: Erlang Build Tools
|
|
|
|
%%
|
|
|
|
%% Copyright (c) 2011 Trifork
|
|
|
|
%%
|
|
|
|
%% 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_shell).
|
|
|
|
-author("Kresten Krab Thorup <krab@trifork.com>").
|
|
|
|
|
|
|
|
-include("rebar.hrl").
|
|
|
|
|
2014-05-20 06:35:40 +00:00
|
|
|
-export([shell/2, info/2]).
|
|
|
|
|
|
|
|
%% NOTE:
|
|
|
|
%% this is an attempt to replicate `erl -pa ./ebin -pa deps/*/ebin`. it is
|
|
|
|
%% mostly successful but does stop and then restart the user io system to get
|
|
|
|
%% around issues with rebar being an escript and starting in `noshell` mode.
|
|
|
|
%% it also lacks the ctrl-c interrupt handler that `erl` features. ctrl-c will
|
|
|
|
%% immediately kill the script. ctrl-g, however, works fine
|
2011-05-18 22:49:10 +00:00
|
|
|
|
|
|
|
shell(_Config, _AppFile) ->
|
2014-05-20 06:35:40 +00:00
|
|
|
true = code:add_pathz(rebar_utils:ebin_dir()),
|
|
|
|
%% terminate the current user
|
|
|
|
ok = supervisor:terminate_child(kernel_sup, user),
|
|
|
|
%% start a new shell (this also starts a new user under the correct group)
|
|
|
|
user_drv:start(),
|
|
|
|
%% enable error_logger's tty output
|
|
|
|
ok = error_logger:swap_handler(tty),
|
|
|
|
%% disable the simple error_logger (which may have been added multiple
|
|
|
|
%% times). removes at most the error_logger added by init and the
|
|
|
|
%% error_logger added by the tty handler
|
|
|
|
ok = remove_error_handler(3),
|
|
|
|
%% this call never returns (until user quits shell)
|
|
|
|
timer:sleep(infinity).
|
|
|
|
|
|
|
|
info(help, shell) ->
|
|
|
|
?CONSOLE(
|
|
|
|
"Start a shell with project and deps preloaded similar to~n"
|
|
|
|
"'erl -pa ebin -pa deps/*/ebin'.~n",
|
|
|
|
[]).
|
2011-05-18 22:49:10 +00:00
|
|
|
|
2014-05-20 06:35:40 +00:00
|
|
|
remove_error_handler(0) ->
|
|
|
|
?WARN("Unable to remove simple error_logger handler~n", []);
|
|
|
|
remove_error_handler(N) ->
|
|
|
|
case gen_event:delete_handler(error_logger, error_logger, []) of
|
|
|
|
{error, module_not_found} -> ok;
|
|
|
|
{error_logger, _} -> remove_error_handler(N-1)
|
|
|
|
end.
|