1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 et
-module(rebar_prv_local_install).
-behaviour(provider).
-export([init/1,
do/1,
format_error/1]).
-export([extract_escript/2]).
-include("rebar.hrl").
-include_lib("kernel/include/file.hrl").
-define(PROVIDER, install).
-define(NAMESPACE, local).
-define(DEPS, []).
%% ===================================================================
%% Public API
%% ===================================================================
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
State1 =
rebar_state:add_provider(State,
providers:create([{name, ?PROVIDER},
{module, ?MODULE},
{bare, true},
{namespace, ?NAMESPACE},
{deps, ?DEPS},
{example, "rebar3 unstable install"},
{short_desc, "Extract libs from rebar3 escript along with a run script."},
{desc, ""},
{opts, []}])),
{ok, State1}.
-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.
do(State) ->
case os:type() of
{win32, _} ->
?ERROR("Sorry, this feature is not yet available on Windows.", []),
{ok, State};
_ ->
case rebar_state:escript_path(State) of
undefined ->
?INFO("Already running from an unpacked rebar3. Nothing to do...", []),
{ok, State};
ScriptPath ->
extract_escript(State, ScriptPath)
end
end.
-spec format_error(any()) -> iolist().
format_error(Reason) ->
io_lib:format("~p", [Reason]).
bin_contents(OutputDir) ->
<<"#!/usr/bin/env sh
erl -pz ", (ec_cnv:to_binary(OutputDir))/binary,"/*/ebin +sbtu +A0 -noshell -boot start_clean -s rebar3 main $REBAR3_ERL_ARGS -extra \"$@\"
">>.
extract_escript(State, ScriptPath) ->
{ok, Escript} = escript:extract(ScriptPath, []),
{archive, Archive} = lists:keyfind(archive, 1, Escript),
%% Extract contents of Archive to ~/.cache/rebar3/lib
%% And add a rebar3 bin script to ~/.cache/rebar3/bin
Opts = rebar_state:opts(State),
OutputDir = filename:join(rebar_dir:global_cache_dir(Opts), "lib"),
filelib:ensure_dir(filename:join(OutputDir, "empty")),
?INFO("Extracting rebar3 libs to ~s...", [OutputDir]),
zip:extract(Archive, [{cwd, OutputDir}]),
BinDir = filename:join(rebar_dir:global_cache_dir(Opts), "bin"),
BinFile = filename:join(BinDir, "rebar3"),
filelib:ensure_dir(BinFile),
{ok, #file_info{mode = _,
uid = Uid,
gid = Gid}} = file:read_file_info(ScriptPath),
?INFO("Writing rebar3 run script ~s...", [BinFile]),
file:write_file(BinFile, bin_contents(OutputDir)),
ok = file:write_file_info(BinFile, #file_info{mode=33277,
uid=Uid,
gid=Gid}),
?INFO("Add to $PATH for use: export PATH=$PATH:~s", [BinDir]),
{ok, State}.
|