2011-01-31 16:43:31 +00:00
|
|
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
2009-12-31 18:42:53 +00:00
|
|
|
%% 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,
|
2011-05-09 04:46:44 +00:00
|
|
|
setup_env/1,
|
2010-03-25 19:34:19 +00:00
|
|
|
'check-deps'/2,
|
2010-06-09 20:07:34 +00:00
|
|
|
'get-deps'/2,
|
2010-12-09 18:45:58 +00:00
|
|
|
'update-deps'/2,
|
2011-04-21 12:08:40 +00:00
|
|
|
'delete-deps'/2,
|
|
|
|
'list-deps'/2]).
|
2010-06-09 19:16:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
-record(dep, { dir,
|
|
|
|
app,
|
|
|
|
vsn_regex,
|
|
|
|
source }).
|
2009-12-26 06:19:47 +00:00
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ===================================================================
|
|
|
|
|
|
|
|
preprocess(Config, _) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
%% Side effect to set deps_dir globally for all dependencies from
|
|
|
|
%% top level down. Means the root deps_dir is honoured or the default
|
|
|
|
%% used globally since it will be set on the first time through here
|
2010-06-12 20:55:58 +00:00
|
|
|
set_global_deps_dir(Config, rebar_config:get_global(deps_dir, [])),
|
|
|
|
|
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, []),
|
2010-12-09 18:45:58 +00:00
|
|
|
{AvailableDeps, MissingDeps} = find_deps(find, Deps),
|
2010-06-09 19:16:58 +00:00
|
|
|
|
|
|
|
?DEBUG("Available deps: ~p\n", [AvailableDeps]),
|
|
|
|
?DEBUG("Missing deps : ~p\n", [MissingDeps]),
|
|
|
|
|
|
|
|
%% Add available deps to code path
|
|
|
|
update_deps_code_path(AvailableDeps),
|
|
|
|
|
2010-06-21 16:24:01 +00:00
|
|
|
%% If skip_deps=true, mark each dep dir as a skip_dir w/ the core so that
|
|
|
|
%% the current command doesn't run on the dep dir. However, pre/postprocess
|
|
|
|
%% WILL run (and we want it to) for transitivity purposes.
|
2010-06-09 19:32:28 +00:00
|
|
|
case rebar_config:get_global(skip_deps, false) of
|
2010-06-21 16:24:01 +00:00
|
|
|
"true" ->
|
2010-10-10 20:11:13 +00:00
|
|
|
lists:foreach(fun (#dep{dir = Dir}) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
rebar_core:skip_dir(Dir)
|
|
|
|
end, AvailableDeps);
|
2010-06-12 20:55:58 +00:00
|
|
|
_ ->
|
2010-06-21 16:24:01 +00:00
|
|
|
ok
|
|
|
|
end,
|
|
|
|
|
|
|
|
%% Return all the available dep directories for process
|
|
|
|
{ok, [D#dep.dir || D <- AvailableDeps]}.
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
|
|
|
|
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).
|
|
|
|
|
2011-05-09 04:46:44 +00:00
|
|
|
%% set REBAR_DEPS_DIR and ERL_LIBS environment variables
|
|
|
|
setup_env(_Config) ->
|
|
|
|
{true, DepsDir} = get_deps_dir(),
|
|
|
|
%% include rebar's DepsDir in ERL_LIBS
|
|
|
|
ERL_LIBS = case os:getenv("ERL_LIBS") of
|
|
|
|
false ->
|
|
|
|
{"ERL_LIBS", DepsDir};
|
|
|
|
PrevValue ->
|
|
|
|
{"ERL_LIBS", DepsDir ++ ":" ++ PrevValue}
|
|
|
|
end,
|
|
|
|
[{"REBAR_DEPS_DIR", DepsDir}, ERL_LIBS].
|
|
|
|
|
2010-03-25 19:34:19 +00:00
|
|
|
'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, []),
|
2010-12-09 18:45:58 +00:00
|
|
|
case find_deps(find, Deps) of
|
2010-06-09 19:16:58 +00:00
|
|
|
{_, []} ->
|
|
|
|
%% No missing deps
|
2010-03-25 19:34:19 +00:00
|
|
|
ok;
|
2010-06-09 19:16:58 +00:00
|
|
|
{_, MissingDeps} ->
|
2010-10-10 20:11:13 +00:00
|
|
|
lists:foreach(fun (#dep{app=App, vsn_regex=Vsn, source=Src}) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?CONSOLE("Dependency not available: "
|
|
|
|
"~p-~s (~p)\n", [App, Vsn, Src])
|
|
|
|
end, MissingDeps),
|
2010-06-09 19:16:58 +00:00
|
|
|
?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, []),
|
2010-12-09 18:45:58 +00:00
|
|
|
{_AvailableDeps, MissingDeps} = find_deps(find, 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.
|
2010-12-09 18:45:58 +00:00
|
|
|
PulledDeps = [use_source(D) || D <- MissingDeps, D#dep.source /= undefined],
|
2010-06-09 19:16:58 +00:00
|
|
|
|
|
|
|
%% Add each pulled dep to our list of dirs for post-processing. This yields
|
|
|
|
%% the necessary transitivity of the deps
|
2010-12-09 18:45:58 +00:00
|
|
|
erlang:put(?MODULE, [D#dep.dir || D <- PulledDeps]),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
'update-deps'(Config, _) ->
|
|
|
|
%% Determine what deps are available and missing
|
|
|
|
Deps = rebar_config:get_local(Config, deps, []),
|
|
|
|
UpdatedDeps = [update_source(D) || D <- find_deps(read, Deps),
|
|
|
|
D#dep.source /= undefined],
|
|
|
|
%% Add each updated dep to our list of dirs for post-processing. This yields
|
|
|
|
%% the necessary transitivity of the deps
|
|
|
|
erlang:put(?MODULE, [D#dep.dir || D <- UpdatedDeps]),
|
2010-06-09 19:16:58 +00:00
|
|
|
ok.
|
2009-12-30 05:05:32 +00:00
|
|
|
|
2010-06-09 20:07:34 +00:00
|
|
|
'delete-deps'(Config, _) ->
|
2010-08-20 16:42:02 +00:00
|
|
|
%% Delete all the available deps in our deps/ directory, if any
|
2011-02-02 04:37:03 +00:00
|
|
|
{true, DepsDir} = get_deps_dir(),
|
2010-06-11 16:03:41 +00:00
|
|
|
Deps = rebar_config:get_local(Config, deps, []),
|
2010-12-09 18:45:58 +00:00
|
|
|
{AvailableDeps, _} = find_deps(find, Deps),
|
2011-01-08 18:09:24 +00:00
|
|
|
_ = [delete_dep(D)
|
|
|
|
|| D <- AvailableDeps,
|
|
|
|
lists:prefix(DepsDir, D#dep.dir)],
|
2010-06-11 16:03:41 +00:00
|
|
|
ok.
|
|
|
|
|
2011-04-21 12:08:40 +00:00
|
|
|
'list-deps'(Config, _) ->
|
|
|
|
Deps = rebar_config:get_local(Config, deps, []),
|
|
|
|
case find_deps(find, Deps) of
|
|
|
|
{AvailDeps, []} ->
|
2011-09-02 12:54:08 +00:00
|
|
|
lists:foreach(fun(Dep) -> print_source(Dep) end, AvailDeps),
|
2011-04-21 12:08:40 +00:00
|
|
|
ok;
|
|
|
|
{_, MissingDeps} ->
|
|
|
|
?ABORT("Missing dependencies: ~p\n", [MissingDeps])
|
|
|
|
end.
|
|
|
|
|
2010-06-09 20:07:34 +00:00
|
|
|
|
2009-12-30 05:05:32 +00:00
|
|
|
%% ===================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ===================================================================
|
|
|
|
|
2010-06-12 20:55:58 +00:00
|
|
|
%% Added because of trans deps,
|
|
|
|
%% need all deps in same dir and should be the one set by the root rebar.config
|
|
|
|
%% Sets a default if root config has no deps_dir set
|
|
|
|
set_global_deps_dir(Config, []) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
rebar_config:set_global(deps_dir,
|
|
|
|
rebar_config:get_local(Config, deps_dir, "deps"));
|
2010-06-12 20:55:58 +00:00
|
|
|
set_global_deps_dir(_Config, _DepsDir) ->
|
|
|
|
ok.
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
get_deps_dir() ->
|
2011-02-02 04:37:03 +00:00
|
|
|
get_deps_dir("").
|
|
|
|
|
|
|
|
get_deps_dir(App) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
BaseDir = rebar_config:get_global(base_dir, []),
|
2010-06-12 20:55:58 +00:00
|
|
|
DepsDir = rebar_config:get_global(deps_dir, "deps"),
|
2011-02-02 04:37:03 +00:00
|
|
|
{true, filename:join([BaseDir, DepsDir, App])}.
|
|
|
|
|
|
|
|
get_lib_dir(App) ->
|
2011-03-13 13:10:31 +00:00
|
|
|
%% Find App amongst the reachable lib directories
|
|
|
|
%% Returns either the found path or a tagged tuple with a boolean
|
|
|
|
%% to match get_deps_dir's return type
|
2011-02-02 04:37:03 +00:00
|
|
|
case code:lib_dir(App) of
|
|
|
|
{error, bad_name} -> {false, bad_name};
|
|
|
|
Path -> {true, Path}
|
|
|
|
end.
|
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, _} ->
|
2010-10-25 12:48:17 +00:00
|
|
|
Dir = filename:join(Dep#dep.dir, "ebin"),
|
|
|
|
ok = filelib:ensure_dir(filename:join(Dir, "dummy")),
|
2012-01-13 17:18:51 +00:00
|
|
|
?DEBUG("Adding ~s to code path~n", [Dir]),
|
2010-10-25 12:48:17 +00:00
|
|
|
true = code:add_patha(Dir);
|
2010-11-29 23:46:50 +00:00
|
|
|
{false, _} ->
|
2010-10-10 20:11:13 +00:00
|
|
|
true
|
2010-03-16 19:30:22 +00:00
|
|
|
end,
|
|
|
|
update_deps_code_path(Rest).
|
|
|
|
|
2010-06-09 19:16:58 +00:00
|
|
|
|
2010-12-09 18:45:58 +00:00
|
|
|
find_deps(find=Mode, Deps) ->
|
|
|
|
find_deps(Mode, Deps, {[], []});
|
|
|
|
find_deps(read=Mode, Deps) ->
|
|
|
|
find_deps(Mode, Deps, []).
|
|
|
|
|
|
|
|
find_deps(find, [], {Avail, Missing}) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
{lists:reverse(Avail), lists:reverse(Missing)};
|
2010-12-09 18:45:58 +00:00
|
|
|
find_deps(read, [], Deps) ->
|
|
|
|
lists:reverse(Deps);
|
|
|
|
find_deps(Mode, [App | Rest], Acc) when is_atom(App) ->
|
|
|
|
find_deps(Mode, [{App, ".*", undefined} | Rest], Acc);
|
|
|
|
find_deps(Mode, [{App, VsnRegex} | Rest], Acc) when is_atom(App) ->
|
|
|
|
find_deps(Mode, [{App, VsnRegex, undefined} | Rest], Acc);
|
|
|
|
find_deps(Mode, [{App, VsnRegex, Source} | Rest], Acc) ->
|
2012-02-10 14:55:36 +00:00
|
|
|
find_deps(Mode, [{App, VsnRegex, Source, []} | Rest], Acc);
|
|
|
|
find_deps(Mode, [{App, VsnRegex, Source, Opts} | Rest], Acc) ->
|
2010-06-09 19:16:58 +00:00
|
|
|
Dep = #dep { app = App,
|
|
|
|
vsn_regex = VsnRegex,
|
2012-02-10 14:55:36 +00:00
|
|
|
source = get_source(Source, Opts) },
|
2011-02-02 04:37:03 +00:00
|
|
|
{Availability, FoundDir} = find_dep(Dep),
|
|
|
|
find_deps(Mode, Rest, acc_deps(Mode, Availability, Dep, FoundDir, Acc));
|
2010-12-09 18:45:58 +00:00
|
|
|
find_deps(_Mode, [Other | _Rest], _Acc) ->
|
2009-12-31 03:03:27 +00:00
|
|
|
?ABORT("Invalid dependency specification ~p in ~s\n",
|
|
|
|
[Other, rebar_utils:get_cwd()]).
|
|
|
|
|
2012-02-10 14:55:36 +00:00
|
|
|
get_source(undefined, _Opts) ->
|
|
|
|
undefined;
|
|
|
|
get_source(Source, Opts) ->
|
|
|
|
setelement(2, Source, dep_url(element(2, Source), Opts)).
|
|
|
|
|
|
|
|
dep_url(Url, Opts) ->
|
|
|
|
case rebar_config:get_global(alt_urls, "false") of
|
|
|
|
"true" ->
|
|
|
|
proplists:get_value(alt_url, Opts, Url);
|
|
|
|
"false" ->
|
|
|
|
Url
|
|
|
|
end.
|
|
|
|
|
2011-02-02 04:37:03 +00:00
|
|
|
find_dep(Dep) ->
|
2011-03-13 13:10:31 +00:00
|
|
|
%% Find a dep based on its source,
|
|
|
|
%% e.g. {git, "https://github.com/mochi/mochiweb.git", "HEAD"}
|
|
|
|
%% Deps with a source must be found (or fetched) locally.
|
|
|
|
%% Those without a source may be satisfied from lib dir (get_lib_dir).
|
2011-02-02 04:37:03 +00:00
|
|
|
find_dep(Dep, Dep#dep.source).
|
|
|
|
|
|
|
|
find_dep(Dep, undefined) ->
|
2011-03-13 13:10:31 +00:00
|
|
|
%% 'source' is undefined. If Dep is not satisfied locally,
|
|
|
|
%% go ahead and find it amongst the lib_dir's.
|
2011-02-02 04:37:03 +00:00
|
|
|
case find_dep_in_dir(Dep, get_deps_dir(Dep#dep.app)) of
|
2011-03-13 14:55:36 +00:00
|
|
|
{avail, _Dir} = Avail -> Avail;
|
2011-02-02 04:37:03 +00:00
|
|
|
{missing, _} -> find_dep_in_dir(Dep, get_lib_dir(Dep#dep.app))
|
|
|
|
end;
|
|
|
|
find_dep(Dep, _Source) ->
|
2011-03-13 13:10:31 +00:00
|
|
|
%% _Source is defined. Regardless of what it is, we must find it
|
|
|
|
%% locally satisfied or fetch it from the original source
|
|
|
|
%% into the project's deps
|
2011-02-02 04:37:03 +00:00
|
|
|
find_dep_in_dir(Dep, get_deps_dir(Dep#dep.app)).
|
|
|
|
|
|
|
|
find_dep_in_dir(_Dep, {false, Dir}) ->
|
|
|
|
{missing, Dir};
|
|
|
|
find_dep_in_dir(Dep, {true, Dir}) ->
|
|
|
|
App = Dep#dep.app,
|
|
|
|
VsnRegex = Dep#dep.vsn_regex,
|
|
|
|
case is_app_available(App, VsnRegex, Dir) of
|
|
|
|
{true, _AppFile} -> {avail, Dir};
|
|
|
|
{false, _} -> {missing, Dir}
|
|
|
|
end.
|
|
|
|
|
2010-12-09 18:45:58 +00:00
|
|
|
acc_deps(find, avail, Dep, AppDir, {Avail, Missing}) ->
|
|
|
|
{[Dep#dep { dir = AppDir } | Avail], Missing};
|
|
|
|
acc_deps(find, missing, Dep, AppDir, {Avail, Missing}) ->
|
|
|
|
{Avail, [Dep#dep { dir = AppDir } | Missing]};
|
|
|
|
acc_deps(read, _, Dep, AppDir, Acc) ->
|
|
|
|
[Dep#dep { dir = AppDir } | Acc].
|
2009-12-31 03:03:27 +00:00
|
|
|
|
2010-06-11 16:03:41 +00:00
|
|
|
delete_dep(D) ->
|
|
|
|
case filelib:is_dir(D#dep.dir) of
|
|
|
|
true ->
|
|
|
|
?INFO("Deleting dependency: ~s\n", [D#dep.dir]),
|
|
|
|
rebar_file_utils:rm_rf(D#dep.dir);
|
|
|
|
false ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
2009-12-31 03:03:27 +00:00
|
|
|
require_source_engine(Source) ->
|
2010-10-25 22:38:51 +00:00
|
|
|
true = source_engine_avail(Source),
|
|
|
|
ok.
|
2009-12-31 03:03:27 +00:00
|
|
|
|
|
|
|
is_app_available(App, VsnRegex, Path) ->
|
2011-11-09 21:56:54 +00:00
|
|
|
?DEBUG("is_app_available, looking for App ~p with Path ~p~n", [App, Path]),
|
2009-12-31 03:03:27 +00:00
|
|
|
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]),
|
2011-01-06 13:51:35 +00:00
|
|
|
{false, {version_mismatch,
|
|
|
|
{AppFile,
|
|
|
|
{expected, VsnRegex}, {has, Vsn}}}}
|
2009-12-31 03:03:27 +00:00
|
|
|
end;
|
2010-04-28 14:44:06 +00:00
|
|
|
OtherApp ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?WARN("~s has application id ~p; expected ~p\n",
|
|
|
|
[AppFile, OtherApp, App]),
|
2011-01-06 13:51:35 +00:00
|
|
|
{false, {name_mismatch,
|
|
|
|
{AppFile, {expected, App}, {has, OtherApp}}}}
|
2009-12-31 03:03:27 +00:00
|
|
|
end;
|
|
|
|
false ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?WARN("Expected ~s to be an app dir (containing ebin/*.app), "
|
|
|
|
"but no .app found.\n", [Path]),
|
2011-01-06 13:51:35 +00:00
|
|
|
{false, {missing_app_file, Path}}
|
2009-12-31 03:03:27 +00:00
|
|
|
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) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?ABORT("Failed to acquire source from ~p after 3 tries.\n",
|
|
|
|
[Dep#dep.source]);
|
2010-06-09 19:16:58 +00:00
|
|
|
use_source(Dep, Count) ->
|
|
|
|
case filelib:is_dir(Dep#dep.dir) of
|
2009-12-31 03:03:27 +00:00
|
|
|
true ->
|
2011-01-28 15:08:27 +00:00
|
|
|
%% Already downloaded -- verify the versioning matches the regex
|
|
|
|
case is_app_available(Dep#dep.app,
|
|
|
|
Dep#dep.vsn_regex, Dep#dep.dir) of
|
2010-06-09 19:16:58 +00:00
|
|
|
{true, _} ->
|
2010-10-25 12:48:17 +00:00
|
|
|
Dir = filename:join(Dep#dep.dir, "ebin"),
|
|
|
|
ok = filelib:ensure_dir(filename:join(Dir, "dummy")),
|
2010-10-10 20:11:13 +00:00
|
|
|
%% Available version matches up -- we're good to go;
|
|
|
|
%% add the app dir to our code path
|
2010-10-25 12:48:17 +00:00
|
|
|
true = code:add_patha(Dir),
|
2010-06-09 19:16:58 +00:00
|
|
|
Dep;
|
2010-11-29 23:46:50 +00:00
|
|
|
{false, Reason} ->
|
2009-12-31 03:03:27 +00:00
|
|
|
%% The app that was downloaded doesn't match up (or had
|
|
|
|
%% errors or something). For the time being, abort.
|
2010-11-29 23:46:50 +00:00
|
|
|
?ABORT("Dependency dir ~s failed application validation "
|
2011-01-28 15:08:27 +00:00
|
|
|
"with reason:~n~p.\n", [Dep#dep.dir, Reason])
|
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),
|
2011-02-02 04:37:03 +00:00
|
|
|
{true, TargetDir} = get_deps_dir(Dep#dep.app),
|
2010-06-09 19:16:58 +00:00
|
|
|
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-12-05 00:07:12 +00:00
|
|
|
rebar_utils:sh(?FMT("hg clone -U ~s ~s", [Url, filename:basename(AppDir)]),
|
|
|
|
[{cd, filename:dirname(AppDir)}]),
|
|
|
|
rebar_utils:sh(?FMT("hg update ~s", [Rev]), [{cd, AppDir}]);
|
2011-02-07 23:32:12 +00:00
|
|
|
download_source(AppDir, {git, Url}) ->
|
2011-10-31 21:29:46 +00:00
|
|
|
download_source(AppDir, {git, Url, {branch, "HEAD"}});
|
2011-02-07 23:32:12 +00:00
|
|
|
download_source(AppDir, {git, Url, ""}) ->
|
2011-10-31 21:29:46 +00:00
|
|
|
download_source(AppDir, {git, Url, {branch, "HEAD"}});
|
2010-09-15 10:10:53 +00:00
|
|
|
download_source(AppDir, {git, Url, {branch, Branch}}) ->
|
|
|
|
ok = filelib:ensure_dir(AppDir),
|
2010-12-05 00:07:12 +00:00
|
|
|
rebar_utils:sh(?FMT("git clone -n ~s ~s", [Url, filename:basename(AppDir)]),
|
|
|
|
[{cd, filename:dirname(AppDir)}]),
|
|
|
|
rebar_utils:sh(?FMT("git checkout -q origin/~s", [Branch]), [{cd, AppDir}]);
|
2010-09-15 10:10:53 +00:00
|
|
|
download_source(AppDir, {git, Url, {tag, Tag}}) ->
|
2010-01-07 14:46:06 +00:00
|
|
|
ok = filelib:ensure_dir(AppDir),
|
2010-12-05 00:07:12 +00:00
|
|
|
rebar_utils:sh(?FMT("git clone -n ~s ~s", [Url, filename:basename(AppDir)]),
|
|
|
|
[{cd, filename:dirname(AppDir)}]),
|
|
|
|
rebar_utils:sh(?FMT("git checkout -q ~s", [Tag]), [{cd, AppDir}]);
|
2010-09-15 10:10:53 +00:00
|
|
|
download_source(AppDir, {git, Url, Rev}) ->
|
2011-08-13 00:14:17 +00:00
|
|
|
ok = filelib:ensure_dir(AppDir),
|
|
|
|
rebar_utils:sh(?FMT("git clone -n ~s ~s", [Url, filename:basename(AppDir)]),
|
|
|
|
[{cd, filename:dirname(AppDir)}]),
|
|
|
|
rebar_utils:sh(?FMT("git checkout -q ~s", [Rev]), [{cd, 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",
|
2010-12-05 00:07:12 +00:00
|
|
|
[Rev, Url, filename:basename(AppDir)]),
|
|
|
|
[{cd, 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",
|
2010-12-05 00:07:12 +00:00
|
|
|
[Rev, Url, filename:basename(AppDir)]),
|
|
|
|
[{cd, filename:dirname(AppDir)}]).
|
2009-12-31 03:03:27 +00:00
|
|
|
|
2010-10-03 15:22:47 +00:00
|
|
|
update_source(Dep) ->
|
2010-12-07 17:37:29 +00:00
|
|
|
%% It's possible when updating a source, that a given dep does not have a
|
|
|
|
%% VCS directory, such as when a source archive is built of a project, with
|
|
|
|
%% all deps already downloaded/included. So, verify that the necessary VCS
|
|
|
|
%% directory exists before attempting to do the update.
|
2011-02-02 04:37:03 +00:00
|
|
|
{true, AppDir} = get_deps_dir(Dep#dep.app),
|
2010-12-07 17:37:29 +00:00
|
|
|
case has_vcs_dir(element(1, Dep#dep.source), AppDir) of
|
|
|
|
true ->
|
|
|
|
?CONSOLE("Updating ~p from ~p\n", [Dep#dep.app, Dep#dep.source]),
|
|
|
|
require_source_engine(Dep#dep.source),
|
|
|
|
update_source(AppDir, Dep#dep.source),
|
|
|
|
Dep;
|
|
|
|
false ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?WARN("Skipping update for ~p: "
|
|
|
|
"no VCS directory available!\n", [Dep]),
|
2010-12-07 17:37:29 +00:00
|
|
|
Dep
|
|
|
|
end.
|
2010-10-03 15:22:47 +00:00
|
|
|
|
2011-02-07 23:32:12 +00:00
|
|
|
update_source(AppDir, {git, Url}) ->
|
2011-10-31 21:29:46 +00:00
|
|
|
update_source(AppDir, {git, Url, {branch, "HEAD"}});
|
2011-02-07 23:32:12 +00:00
|
|
|
update_source(AppDir, {git, Url, ""}) ->
|
2011-10-31 21:29:46 +00:00
|
|
|
update_source(AppDir, {git, Url, {branch, "HEAD"}});
|
2010-11-16 01:25:14 +00:00
|
|
|
update_source(AppDir, {git, _Url, {branch, Branch}}) ->
|
2011-01-08 18:09:24 +00:00
|
|
|
ShOpts = [{cd, AppDir}],
|
|
|
|
rebar_utils:sh("git fetch origin", ShOpts),
|
|
|
|
rebar_utils:sh(?FMT("git checkout -q origin/~s", [Branch]), ShOpts);
|
2010-11-16 01:25:14 +00:00
|
|
|
update_source(AppDir, {git, _Url, {tag, Tag}}) ->
|
2011-01-08 18:09:24 +00:00
|
|
|
ShOpts = [{cd, AppDir}],
|
|
|
|
rebar_utils:sh("git fetch --tags origin", ShOpts),
|
|
|
|
rebar_utils:sh(?FMT("git checkout -q ~s", [Tag]), ShOpts);
|
2011-08-13 00:14:17 +00:00
|
|
|
update_source(AppDir, {git, _Url, Refspec}) ->
|
|
|
|
ShOpts = [{cd, AppDir}],
|
|
|
|
rebar_utils:sh("git fetch origin", ShOpts),
|
|
|
|
rebar_utils:sh(?FMT("git checkout -q ~s", [Refspec]), ShOpts);
|
2010-10-03 15:22:47 +00:00
|
|
|
update_source(AppDir, {svn, _Url, Rev}) ->
|
2010-12-05 00:07:12 +00:00
|
|
|
rebar_utils:sh(?FMT("svn up -r ~s", [Rev]), [{cd, AppDir}]);
|
2010-10-03 15:22:47 +00:00
|
|
|
update_source(AppDir, {hg, _Url, Rev}) ->
|
2010-12-05 00:07:12 +00:00
|
|
|
rebar_utils:sh(?FMT("hg pull -u -r ~s", [Rev]), [{cd, AppDir}]);
|
2010-10-03 15:22:47 +00:00
|
|
|
update_source(AppDir, {bzr, _Url, Rev}) ->
|
2010-12-05 00:07:12 +00:00
|
|
|
rebar_utils:sh(?FMT("bzr update -r ~s", [Rev]), [{cd, AppDir}]).
|
2010-10-03 15:22:47 +00:00
|
|
|
|
|
|
|
|
2009-12-31 03:03:27 +00:00
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Source helper functions
|
|
|
|
%% ===================================================================
|
2009-12-30 05:05:32 +00:00
|
|
|
|
2011-07-08 11:58:01 +00:00
|
|
|
source_engine_avail(Source) ->
|
|
|
|
Name = element(1, Source),
|
|
|
|
source_engine_avail(Name, Source).
|
|
|
|
|
|
|
|
source_engine_avail(Name, Source)
|
2010-03-05 08:06:39 +00:00
|
|
|
when Name == hg; Name == git; Name == svn; Name == bzr ->
|
2011-09-02 12:54:08 +00:00
|
|
|
case vcs_client_vsn(Name) >= required_vcs_client_vsn(Name) of
|
2010-01-07 14:46:06 +00:00
|
|
|
true ->
|
|
|
|
true;
|
2010-01-06 22:22:05 +00:00
|
|
|
false ->
|
2010-09-29 21:09:04 +00:00
|
|
|
?ABORT("Rebar requires version ~p or higher of ~s to process ~p\n",
|
2011-09-02 12:54:08 +00:00
|
|
|
[required_vcs_client_vsn(Name), Name, Source])
|
2010-01-07 14:46:06 +00:00
|
|
|
end.
|
|
|
|
|
2011-09-02 12:54:08 +00:00
|
|
|
vcs_client_vsn(false, _VsnArg, _VsnRegex) ->
|
2010-01-07 14:46:06 +00:00
|
|
|
false;
|
2011-09-02 12:54:08 +00:00
|
|
|
vcs_client_vsn(Path, VsnArg, VsnRegex) ->
|
2010-12-05 00:07:12 +00:00
|
|
|
{ok, Info} = rebar_utils:sh(Path ++ VsnArg, [{env, [{"LANG", "C"}]},
|
|
|
|
{use_stdout, false}]),
|
2010-01-07 14:46:06 +00:00
|
|
|
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
|
|
|
|
2011-09-02 12:54:08 +00:00
|
|
|
required_vcs_client_vsn(hg) -> {1, 1};
|
|
|
|
required_vcs_client_vsn(git) -> {1, 5};
|
|
|
|
required_vcs_client_vsn(bzr) -> {2, 0};
|
|
|
|
required_vcs_client_vsn(svn) -> {1, 6}.
|
2010-01-07 14:46:06 +00:00
|
|
|
|
2011-09-02 12:54:08 +00:00
|
|
|
vcs_client_vsn(hg) ->
|
|
|
|
vcs_client_vsn(rebar_utils:find_executable("hg"), " --version",
|
2011-01-28 15:08:27 +00:00
|
|
|
"version (\\d+).(\\d+)");
|
2011-09-02 12:54:08 +00:00
|
|
|
vcs_client_vsn(git) ->
|
|
|
|
vcs_client_vsn(rebar_utils:find_executable("git"), " --version",
|
2011-01-28 15:08:27 +00:00
|
|
|
"git version (\\d+).(\\d+)");
|
2011-09-02 12:54:08 +00:00
|
|
|
vcs_client_vsn(bzr) ->
|
|
|
|
vcs_client_vsn(rebar_utils:find_executable("bzr"), " --version",
|
2011-01-28 15:08:27 +00:00
|
|
|
"Bazaar \\(bzr\\) (\\d+).(\\d+)");
|
2011-09-02 12:54:08 +00:00
|
|
|
vcs_client_vsn(svn) ->
|
|
|
|
vcs_client_vsn(rebar_utils:find_executable("svn"), " --version",
|
2011-01-28 15:08:27 +00:00
|
|
|
"svn, version (\\d+).(\\d+)").
|
2010-12-07 17:37:29 +00:00
|
|
|
|
|
|
|
has_vcs_dir(git, Dir) ->
|
|
|
|
filelib:is_dir(filename:join(Dir, ".git"));
|
|
|
|
has_vcs_dir(hg, Dir) ->
|
|
|
|
filelib:is_dir(filename:join(Dir, ".hg"));
|
2010-12-07 18:32:58 +00:00
|
|
|
has_vcs_dir(bzr, Dir) ->
|
|
|
|
filelib:is_dir(filename:join(Dir, ".bzr"));
|
|
|
|
has_vcs_dir(svn, Dir) ->
|
|
|
|
filelib:is_dir(filename:join(Dir, ".svn"))
|
|
|
|
orelse filelib:is_dir(filename:join(Dir, "_svn"));
|
2010-12-07 17:37:29 +00:00
|
|
|
has_vcs_dir(_, _) ->
|
|
|
|
true.
|
2011-04-21 12:08:40 +00:00
|
|
|
|
2011-09-02 12:54:08 +00:00
|
|
|
print_source(#dep{app=App, source=Source}) ->
|
|
|
|
?CONSOLE("~s~n", [format_source(App, Source)]).
|
|
|
|
|
|
|
|
format_source(App, {git, Url}) ->
|
|
|
|
?FMT("~p BRANCH ~s ~s", [App, "HEAD", Url]);
|
|
|
|
format_source(App, {git, Url, ""}) ->
|
|
|
|
?FMT("~p BRANCH ~s ~s", [App, "HEAD", Url]);
|
|
|
|
format_source(App, {git, Url, {branch, Branch}}) ->
|
|
|
|
?FMT("~p BRANCH ~s ~s", [App, Branch, Url]);
|
|
|
|
format_source(App, {git, Url, {tag, Tag}}) ->
|
|
|
|
?FMT("~p TAG ~s ~s", [App, Tag, Url]);
|
|
|
|
format_source(App, {_, Url, Rev}) ->
|
|
|
|
?FMT("~p REV ~s ~s", [App, Rev, Url]);
|
|
|
|
format_source(App, undefined) ->
|
|
|
|
?FMT("~p", [App]).
|