2009-12-31 18:42:53 +00:00
|
|
|
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
|
|
%% ex: ts=4 sw=4 et
|
2009-12-26 06:19:47 +00:00
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% rebar: Erlang Build Tools
|
|
|
|
%%
|
|
|
|
%% Copyright (c) 2009 Dave Smith (dizzyd@dizzyd.com)
|
|
|
|
%%
|
|
|
|
%% 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_deps).
|
|
|
|
|
|
|
|
-include("rebar.hrl").
|
|
|
|
|
2010-01-01 02:29:48 +00:00
|
|
|
-export([preprocess/2,
|
2010-06-09 19:16:58 +00:00
|
|
|
postprocess/2,
|
2010-03-25 19:34:19 +00:00
|
|
|
compile/2,
|
|
|
|
'check-deps'/2,
|
2010-06-09 19:16:58 +00:00
|
|
|
'get-deps'/2]).
|
|
|
|
|
|
|
|
|
|
|
|
-record(dep, { dir,
|
|
|
|
app,
|
|
|
|
vsn_regex,
|
|
|
|
source }).
|
2009-12-26 06:19:47 +00:00
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ===================================================================
|
|
|
|
|
|
|
|
preprocess(Config, _) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
%% Get the list of deps for the current working directory and identify those
|
|
|
|
%% deps that are available/present.
|
|
|
|
Deps = rebar_config:get_local(Config, deps, []),
|
|
|
|
{AvailableDeps, MissingDeps} = find_deps(Deps),
|
|
|
|
|
|
|
|
?DEBUG("Available deps: ~p\n", [AvailableDeps]),
|
|
|
|
?DEBUG("Missing deps : ~p\n", [MissingDeps]),
|
|
|
|
|
|
|
|
%% Add available deps to code path
|
|
|
|
update_deps_code_path(AvailableDeps),
|
|
|
|
|
|
|
|
%% Return all the available dep directories for process
|
|
|
|
%% TODO: Re-add support for skip_deps=true
|
|
|
|
{ok, [D#dep.dir || D <- AvailableDeps]}.
|
|
|
|
|
|
|
|
postprocess(_Config, _) ->
|
|
|
|
case erlang:get(?MODULE) of
|
|
|
|
undefined ->
|
|
|
|
{ok, []};
|
|
|
|
Dirs ->
|
|
|
|
erlang:erase(?MODULE),
|
|
|
|
{ok, Dirs}
|
2010-03-16 19:30:22 +00:00
|
|
|
end.
|
|
|
|
|
2010-03-25 19:34:19 +00:00
|
|
|
compile(Config, AppFile) ->
|
|
|
|
'check-deps'(Config, AppFile).
|
|
|
|
|
|
|
|
'check-deps'(Config, _) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
%% Get the list of immediate (i.e. non-transitive) deps that are missing
|
|
|
|
Deps = rebar_config:get_local(Config, deps, []),
|
|
|
|
case find_deps(Deps) of
|
|
|
|
{_, []} ->
|
|
|
|
%% No missing deps
|
2010-03-25 19:34:19 +00:00
|
|
|
ok;
|
2010-06-09 19:16:58 +00:00
|
|
|
{_, MissingDeps} ->
|
|
|
|
[?CONSOLE("Dependency not available: ~p-~s (~p)\n",
|
|
|
|
[D#dep.app, D#dep.vsn_regex, D#dep.source]) ||
|
|
|
|
D <- MissingDeps],
|
|
|
|
?FAIL
|
2010-03-25 19:34:19 +00:00
|
|
|
end.
|
|
|
|
|
2010-03-16 19:30:22 +00:00
|
|
|
'get-deps'(Config, _) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
%% Determine what deps are available and missing
|
|
|
|
Deps = rebar_config:get_local(Config, deps, []),
|
|
|
|
{_AvailableDeps, MissingDeps} = find_deps(Deps),
|
2010-03-16 19:30:22 +00:00
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
%% For each missing dep with a specified source, try to pull it.
|
|
|
|
PulledDeps = [use_source(D) || D <- MissingDeps, D#dep.source /= undefined],
|
|
|
|
|
|
|
|
%% Add each pulled dep to our list of dirs for post-processing. This yields
|
|
|
|
%% the necessary transitivity of the deps
|
|
|
|
erlang:put(?MODULE, [D#dep.dir || D <- PulledDeps]),
|
|
|
|
ok.
|
2009-12-30 05:05:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ===================================================================
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
get_deps_dir() ->
|
|
|
|
BaseDir = rebar_config:get_global(base_dir, []),
|
|
|
|
filename:join(BaseDir, "deps").
|
2010-03-16 19:30:22 +00:00
|
|
|
|
|
|
|
update_deps_code_path([]) ->
|
|
|
|
ok;
|
2010-06-09 19:16:58 +00:00
|
|
|
update_deps_code_path([Dep | Rest]) ->
|
|
|
|
case is_app_available(Dep#dep.app, Dep#dep.vsn_regex, Dep#dep.dir) of
|
|
|
|
{true, _} ->
|
|
|
|
code:add_patha(filename:join(Dep#dep.dir, ebin));
|
2010-03-16 19:30:22 +00:00
|
|
|
false ->
|
|
|
|
ok
|
|
|
|
end,
|
|
|
|
update_deps_code_path(Rest).
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
find_deps(Deps) ->
|
|
|
|
find_deps(Deps, {[], []}).
|
|
|
|
|
|
|
|
find_deps([], {Avail, Missing}) ->
|
|
|
|
{lists:reverse(Avail), lists:reverse(Missing)};
|
|
|
|
find_deps([App | Rest], Acc) when is_atom(App) ->
|
|
|
|
find_deps([{App, ".*", undefined} | Rest], Acc);
|
|
|
|
find_deps([{App, VsnRegex} | Rest], Acc) when is_atom(App) ->
|
|
|
|
find_deps([{App, VsnRegex, undefined} | Rest], Acc);
|
|
|
|
find_deps([{App, VsnRegex, Source} | Rest], {Avail, Missing}) ->
|
|
|
|
Dep = #dep { app = App,
|
|
|
|
vsn_regex = VsnRegex,
|
|
|
|
source = Source },
|
2009-12-31 03:03:27 +00:00
|
|
|
case is_app_available(App, VsnRegex) of
|
2010-06-09 19:16:58 +00:00
|
|
|
{true, AppDir} ->
|
|
|
|
find_deps(Rest, {[Dep#dep { dir = AppDir } | Avail], Missing});
|
2009-12-31 03:03:27 +00:00
|
|
|
false ->
|
2010-06-09 19:16:58 +00:00
|
|
|
AppDir = filename:join(get_deps_dir(), Dep#dep.app),
|
|
|
|
case is_app_available(App, VsnRegex, AppDir) of
|
|
|
|
{true, AppDir} ->
|
|
|
|
find_deps(Rest, {[Dep#dep { dir = AppDir } | Avail], Missing});
|
|
|
|
false ->
|
|
|
|
find_deps(Rest, {Avail, [Dep#dep { dir = AppDir } | Missing]})
|
|
|
|
end
|
2009-12-31 03:03:27 +00:00
|
|
|
end;
|
2010-06-09 19:16:58 +00:00
|
|
|
find_deps([Other | _Rest], _Acc) ->
|
2009-12-31 03:03:27 +00:00
|
|
|
?ABORT("Invalid dependency specification ~p in ~s\n",
|
|
|
|
[Other, rebar_utils:get_cwd()]).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
require_source_engine(Source) ->
|
|
|
|
case source_engine_avail(Source) of
|
|
|
|
true ->
|
|
|
|
ok;
|
|
|
|
false ->
|
|
|
|
?ABORT("No command line interface available to process ~p\n", [Source])
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
|
|
is_app_available(App, VsnRegex) ->
|
2009-12-30 05:05:32 +00:00
|
|
|
case code:lib_dir(App) of
|
|
|
|
{error, bad_name} ->
|
2009-12-31 03:03:27 +00:00
|
|
|
false;
|
2009-12-30 05:05:32 +00:00
|
|
|
Path ->
|
2009-12-31 03:03:27 +00:00
|
|
|
is_app_available(App, VsnRegex, Path)
|
|
|
|
end.
|
|
|
|
|
|
|
|
is_app_available(App, VsnRegex, Path) ->
|
|
|
|
case rebar_app_utils:is_app_dir(Path) of
|
|
|
|
{true, AppFile} ->
|
2010-04-28 14:44:06 +00:00
|
|
|
case rebar_app_utils:app_name(AppFile) of
|
|
|
|
App ->
|
|
|
|
Vsn = rebar_app_utils:app_vsn(AppFile),
|
2009-12-31 03:03:27 +00:00
|
|
|
?INFO("Looking for ~s-~s ; found ~s-~s at ~s\n",
|
|
|
|
[App, VsnRegex, App, Vsn, Path]),
|
|
|
|
case re:run(Vsn, VsnRegex, [{capture, none}]) of
|
|
|
|
match ->
|
2010-06-09 19:16:58 +00:00
|
|
|
{true, Path};
|
2009-12-31 03:03:27 +00:00
|
|
|
nomatch ->
|
|
|
|
?WARN("~s has version ~p; requested regex was ~s\n",
|
|
|
|
[AppFile, Vsn, VsnRegex]),
|
|
|
|
false
|
|
|
|
end;
|
2010-04-28 14:44:06 +00:00
|
|
|
OtherApp ->
|
2009-12-31 03:03:27 +00:00
|
|
|
?WARN("~s has application id ~p; expected ~p\n", [AppFile, OtherApp, App]),
|
2010-04-28 14:44:06 +00:00
|
|
|
false
|
2009-12-31 03:03:27 +00:00
|
|
|
end;
|
|
|
|
false ->
|
|
|
|
?WARN("Expected ~s to be an app dir (containing ebin/*.app), but no .app found.\n",
|
|
|
|
[Path]),
|
|
|
|
false
|
|
|
|
end.
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
use_source(Dep) ->
|
|
|
|
use_source(Dep, 3).
|
2009-12-31 03:03:27 +00:00
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
use_source(Dep, 0) ->
|
|
|
|
?ABORT("Failed to acquire source from ~p after 3 tries.\n", [Dep#dep.source]);
|
|
|
|
use_source(Dep, Count) ->
|
|
|
|
case filelib:is_dir(Dep#dep.dir) of
|
2009-12-31 03:03:27 +00:00
|
|
|
true ->
|
|
|
|
%% Already downloaded -- verify the versioning matches up with our regex
|
2010-06-09 19:16:58 +00:00
|
|
|
case is_app_available(Dep#dep.app, Dep#dep.vsn_regex, Dep#dep.dir) of
|
|
|
|
{true, _} ->
|
2009-12-31 03:03:27 +00:00
|
|
|
%% Available version matches up -- we're good to go; add the
|
|
|
|
%% app dir to our code path
|
2010-06-09 19:16:58 +00:00
|
|
|
code:add_patha(filename:join(Dep#dep.dir, ebin)),
|
|
|
|
Dep;
|
2009-12-31 03:03:27 +00:00
|
|
|
false ->
|
|
|
|
%% The app that was downloaded doesn't match up (or had
|
|
|
|
%% errors or something). For the time being, abort.
|
|
|
|
?ABORT("Dependency dir ~s does not satisfy version regex ~s.\n",
|
2010-06-09 19:16:58 +00:00
|
|
|
[Dep#dep.dir, Dep#dep.vsn_regex])
|
2009-12-31 03:03:27 +00:00
|
|
|
end;
|
|
|
|
false ->
|
2010-06-09 19:16:58 +00:00
|
|
|
?CONSOLE("Pulling ~p from ~p\n", [Dep#dep.app, Dep#dep.source]),
|
|
|
|
require_source_engine(Dep#dep.source),
|
|
|
|
TargetDir = filename:join(get_deps_dir(), Dep#dep.app),
|
|
|
|
download_source(TargetDir, Dep#dep.source),
|
|
|
|
use_source(Dep#dep { dir = TargetDir }, Count-1)
|
2009-12-31 03:03:27 +00:00
|
|
|
end.
|
|
|
|
|
|
|
|
download_source(AppDir, {hg, Url, Rev}) ->
|
|
|
|
ok = filelib:ensure_dir(AppDir),
|
2010-05-11 21:46:20 +00:00
|
|
|
rebar_utils:sh(?FMT("hg clone -U ~s ~s", [Url, filename:basename(AppDir)]), [], filename:dirname(AppDir)),
|
2010-04-14 16:39:46 +00:00
|
|
|
rebar_utils:sh(?FMT("hg update ~s", [Rev]), [], AppDir);
|
2010-01-07 14:46:06 +00:00
|
|
|
download_source(AppDir, {git, Url, Rev}) ->
|
|
|
|
ok = filelib:ensure_dir(AppDir),
|
2010-05-11 21:46:20 +00:00
|
|
|
rebar_utils:sh(?FMT("git clone -n ~s ~s", [Url, filename:basename(AppDir)]), [], filename:dirname(AppDir)),
|
2010-03-05 07:50:57 +00:00
|
|
|
rebar_utils:sh(?FMT("git checkout ~s", [Rev]), [], AppDir);
|
2010-03-05 08:06:39 +00:00
|
|
|
download_source(AppDir, {bzr, Url, Rev}) ->
|
|
|
|
ok = filelib:ensure_dir(AppDir),
|
|
|
|
rebar_utils:sh(?FMT("bzr branch -r ~s ~s ~s",
|
|
|
|
[Rev, Url, filename:basename(AppDir)]), [],
|
|
|
|
filename:dirname(AppDir));
|
2010-03-05 07:50:57 +00:00
|
|
|
download_source(AppDir, {svn, Url, Rev}) ->
|
|
|
|
ok = filelib:ensure_dir(AppDir),
|
|
|
|
rebar_utils:sh(?FMT("svn checkout -r ~s ~s ~s",
|
|
|
|
[Rev, Url, filename:basename(AppDir)]), [],
|
|
|
|
filename:dirname(AppDir)).
|
2009-12-31 03:03:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Source helper functions
|
|
|
|
%% ===================================================================
|
2009-12-30 05:05:32 +00:00
|
|
|
|
2010-03-05 08:06:39 +00:00
|
|
|
source_engine_avail({Name, _, _})
|
|
|
|
when Name == hg; Name == git; Name == svn; Name == bzr ->
|
2010-01-07 14:46:06 +00:00
|
|
|
case scm_client_vsn(Name) >= required_scm_client_vsn(Name) of
|
|
|
|
true ->
|
|
|
|
true;
|
2010-01-06 22:22:05 +00:00
|
|
|
false ->
|
2010-01-07 14:46:06 +00:00
|
|
|
?ABORT("Rebar requires version ~p or higher of ~s\n",
|
|
|
|
[required_scm_client_vsn(Name), Name])
|
|
|
|
end.
|
|
|
|
|
|
|
|
scm_client_vsn(false, _VsnArg, _VsnRegex) ->
|
|
|
|
false;
|
|
|
|
scm_client_vsn(Path, VsnArg, VsnRegex) ->
|
|
|
|
Info = os:cmd(Path ++ VsnArg),
|
|
|
|
case re:run(Info, VsnRegex, [{capture, all_but_first, list}]) of
|
|
|
|
{match, Match} ->
|
|
|
|
list_to_tuple([list_to_integer(S) || S <- Match]);
|
2010-01-06 22:22:05 +00:00
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end.
|
2010-01-07 14:46:06 +00:00
|
|
|
|
2010-04-14 18:51:52 +00:00
|
|
|
required_scm_client_vsn(hg) -> {1, 1};
|
2010-04-19 14:06:07 +00:00
|
|
|
required_scm_client_vsn(git) -> {1, 5};
|
2010-03-05 08:06:39 +00:00
|
|
|
required_scm_client_vsn(bzr) -> {2, 0};
|
2010-03-05 07:50:57 +00:00
|
|
|
required_scm_client_vsn(svn) -> {1, 6}.
|
2010-01-07 14:46:06 +00:00
|
|
|
|
|
|
|
scm_client_vsn(hg) ->
|
|
|
|
scm_client_vsn(os:find_executable(hg), " --version", "version (\\d+).(\\d+)");
|
|
|
|
scm_client_vsn(git) ->
|
|
|
|
scm_client_vsn(os:find_executable(git), " --version", "git version (\\d+).(\\d+)");
|
2010-03-05 08:06:39 +00:00
|
|
|
scm_client_vsn(bzr) ->
|
|
|
|
scm_client_vsn(os:find_executable(bzr), " --version", "Bazaar \\(bzr\\) (\\d+).(\\d+)");
|
2010-03-05 07:50:57 +00:00
|
|
|
scm_client_vsn(svn) ->
|
|
|
|
scm_client_vsn(os:find_executable(svn), " --version", "svn, version (\\d+).(\\d+)");
|
2010-01-07 14:46:06 +00:00
|
|
|
scm_client_vsn(_) ->
|
|
|
|
undefined.
|