mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Merge pull request #280 from talentdeficit/bettershell
improve output when using `rebar shell`
This commit is contained in:
commit
763f5dc9ef
3 changed files with 38 additions and 21 deletions
1
THANKS
1
THANKS
|
@ -123,3 +123,4 @@ Dave Thomas
|
||||||
Evgeniy Khramtsov
|
Evgeniy Khramtsov
|
||||||
YeJun Su
|
YeJun Su
|
||||||
Yuki Ito
|
Yuki Ito
|
||||||
|
alisdair sullivan
|
||||||
|
|
|
@ -409,6 +409,9 @@ qc Test QuickCheck properties
|
||||||
|
|
||||||
xref Run cross reference analysis
|
xref Run cross reference analysis
|
||||||
|
|
||||||
|
shell Start a shell similar to
|
||||||
|
'erl -pa ebin -pa deps/*/ebin'
|
||||||
|
|
||||||
help Show the program options
|
help Show the program options
|
||||||
version Show version information
|
version Show version information
|
||||||
">>,
|
">>,
|
||||||
|
|
|
@ -30,27 +30,40 @@
|
||||||
|
|
||||||
-include("rebar.hrl").
|
-include("rebar.hrl").
|
||||||
|
|
||||||
-export([shell/2]).
|
-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
|
||||||
|
|
||||||
shell(_Config, _AppFile) ->
|
shell(_Config, _AppFile) ->
|
||||||
?CONSOLE("NOTICE: Using experimental 'shell' command~n", []),
|
true = code:add_pathz(rebar_utils:ebin_dir()),
|
||||||
%% backwards way to say we only want this executed
|
%% terminate the current user
|
||||||
%% for the "top level" directory
|
ok = supervisor:terminate_child(kernel_sup, user),
|
||||||
case is_deps_dir(rebar_utils:get_cwd()) of
|
%% start a new shell (this also starts a new user under the correct group)
|
||||||
false ->
|
user_drv:start(),
|
||||||
true = code:add_pathz(rebar_utils:ebin_dir()),
|
%% enable error_logger's tty output
|
||||||
user_drv:start(),
|
ok = error_logger:swap_handler(tty),
|
||||||
%% this call never returns (until user quits shell)
|
%% disable the simple error_logger (which may have been added multiple
|
||||||
shell:server(false, false);
|
%% times). removes at most the error_logger added by init and the
|
||||||
true ->
|
%% error_logger added by the tty handler
|
||||||
ok
|
ok = remove_error_handler(3),
|
||||||
end,
|
%% this call never returns (until user quits shell)
|
||||||
ok.
|
timer:sleep(infinity).
|
||||||
|
|
||||||
is_deps_dir(Dir) ->
|
info(help, shell) ->
|
||||||
case lists:reverse(filename:split(Dir)) of
|
?CONSOLE(
|
||||||
[_, "deps" | _] ->
|
"Start a shell with project and deps preloaded similar to~n"
|
||||||
true;
|
"'erl -pa ebin -pa deps/*/ebin'.~n",
|
||||||
_V ->
|
[]).
|
||||||
false
|
|
||||||
end.
|
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.
|
Loading…
Reference in a new issue