2011-01-31 16:43:31 +00:00
|
|
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
2011-01-27 17:15:25 +00:00
|
|
|
%% ex: ts=4 sw=4 et
|
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% rebar: Erlang Build Tools
|
|
|
|
%%
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Copyright (c) 2011 Joe Williams (joe@joetify.com)
|
2011-01-27 17:15:25 +00:00
|
|
|
%%
|
|
|
|
%% 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_upgrade).
|
|
|
|
|
|
|
|
-include("rebar.hrl").
|
|
|
|
-include_lib("kernel/include/file.hrl").
|
|
|
|
|
|
|
|
-export(['generate-upgrade'/2]).
|
|
|
|
|
2011-09-20 16:44:41 +00:00
|
|
|
-define(TMP, "_tmp").
|
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% ====================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ====================================================================
|
2011-01-27 17:15:25 +00:00
|
|
|
|
|
|
|
'generate-upgrade'(_Config, ReltoolFile) ->
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Get the old release path
|
2011-06-30 21:50:56 +00:00
|
|
|
ReltoolConfig = rebar_rel_utils:load_config(ReltoolFile),
|
|
|
|
TargetParentDir = rebar_rel_utils:get_target_parent_dir(ReltoolConfig),
|
|
|
|
TargetDir = rebar_rel_utils:get_target_dir(ReltoolConfig),
|
|
|
|
|
|
|
|
OldVerPath = filename:join([TargetParentDir,
|
|
|
|
rebar_rel_utils:get_previous_release_path()]),
|
2011-02-17 18:12:32 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Run checks to make sure that building a package is possible
|
2011-06-30 21:50:56 +00:00
|
|
|
{NewVerPath, NewName, NewVer} = run_checks(OldVerPath, ReltoolConfig),
|
2011-02-16 17:46:40 +00:00
|
|
|
NameVer = NewName ++ "_" ++ NewVer,
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Save the code path prior to doing anything
|
|
|
|
OrigPath = code:get_path(),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Prepare the environment for building the package
|
2011-06-30 21:50:56 +00:00
|
|
|
ok = setup(OldVerPath, NewVerPath, NewName, NewVer, NameVer),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Build the package
|
|
|
|
run_systools(NameVer, NewName),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Boot file changes
|
2011-06-30 21:50:56 +00:00
|
|
|
{ok, _} = boot_files(TargetDir, NewVer, NewName),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Extract upgrade and tar it back up with changes
|
|
|
|
make_tar(NameVer),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Clean up files that systools created
|
2011-06-30 21:50:56 +00:00
|
|
|
ok = cleanup(NameVer),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% Restore original path
|
|
|
|
true = code:set_path(OrigPath),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
ok.
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
%% ===================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ==================================================================
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
run_checks(OldVerPath, ReltoolConfig) ->
|
2011-02-16 17:46:40 +00:00
|
|
|
true = rebar_utils:prop_check(filelib:is_dir(OldVerPath),
|
2011-01-27 17:15:25 +00:00
|
|
|
"Release directory doesn't exist (~p)~n", [OldVerPath]),
|
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
{Name, Ver} = rebar_rel_utils:get_reltool_release_info(ReltoolConfig),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
NewVerPath = filename:join([
|
|
|
|
rebar_rel_utils:get_target_parent_dir(ReltoolConfig),
|
|
|
|
Name]),
|
|
|
|
true = rebar_utils:prop_check(filelib:is_dir(NewVerPath),
|
|
|
|
"Release directory doesn't exist (~p)~n", [NewVerPath]),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
{NewName, NewVer} = rebar_rel_utils:get_rel_release_info(Name, NewVerPath),
|
2011-02-16 17:46:40 +00:00
|
|
|
{OldName, OldVer} = rebar_rel_utils:get_rel_release_info(Name, OldVerPath),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-02-16 17:46:40 +00:00
|
|
|
true = rebar_utils:prop_check(NewName == OldName,
|
2011-01-27 17:15:25 +00:00
|
|
|
"New and old .rel release names do not match~n", []),
|
2011-02-16 17:46:40 +00:00
|
|
|
true = rebar_utils:prop_check(Name == NewName,
|
2011-01-27 17:15:25 +00:00
|
|
|
"Reltool and .rel release names do not match~n", []),
|
2011-02-16 17:46:40 +00:00
|
|
|
true = rebar_utils:prop_check(NewVer =/= OldVer,
|
2011-01-27 17:15:25 +00:00
|
|
|
"New and old .rel contain the same version~n", []),
|
2011-02-16 17:46:40 +00:00
|
|
|
true = rebar_utils:prop_check(Ver == NewVer,
|
2011-01-27 17:15:25 +00:00
|
|
|
"Reltool and .rel versions do not match~n", []),
|
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
{NewVerPath, NewName, NewVer}.
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
setup(OldVerPath, NewVerPath, NewName, NewVer, NameVer) ->
|
|
|
|
Src = filename:join([NewVerPath, "releases",
|
2011-01-27 17:15:25 +00:00
|
|
|
NewVer, NewName ++ ".rel"]),
|
|
|
|
Dst = filename:join([".", NameVer ++ ".rel"]),
|
|
|
|
{ok, _} = file:copy(Src, Dst),
|
|
|
|
ok = code:add_pathsa(
|
|
|
|
lists:append([
|
|
|
|
filelib:wildcard(filename:join([OldVerPath,
|
|
|
|
"releases", "*"])),
|
|
|
|
filelib:wildcard(filename:join([OldVerPath,
|
|
|
|
"lib", "*", "ebin"])),
|
2011-06-30 21:50:56 +00:00
|
|
|
filelib:wildcard(filename:join([NewVerPath,
|
2011-01-27 17:15:25 +00:00
|
|
|
"lib", "*", "ebin"])),
|
2011-06-30 21:50:56 +00:00
|
|
|
filelib:wildcard(filename:join([NewVerPath, "*"]))
|
2011-01-27 17:15:25 +00:00
|
|
|
])).
|
|
|
|
|
|
|
|
run_systools(NewVer, Name) ->
|
|
|
|
Opts = [silent],
|
|
|
|
NameList = [Name],
|
|
|
|
case systools:make_relup(NewVer, NameList, NameList, Opts) of
|
|
|
|
{error, _, _Message} ->
|
|
|
|
?ABORT("Systools aborted with: ~p~n", [_Message]);
|
|
|
|
_ ->
|
|
|
|
?DEBUG("Relup created~n", []),
|
|
|
|
case systools:make_script(NewVer, Opts) of
|
|
|
|
{error, _, _Message1} ->
|
|
|
|
?ABORT("Systools aborted with: ~p~n", [_Message1]);
|
|
|
|
_ ->
|
|
|
|
?DEBUG("Script created~n", []),
|
|
|
|
case systools:make_tar(NewVer, Opts) of
|
|
|
|
{error, _, _Message2} ->
|
|
|
|
?ABORT("Systools aborted with: ~p~n", [_Message2]);
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
boot_files(TargetDir, Ver, Name) ->
|
2011-09-20 16:44:41 +00:00
|
|
|
ok = file:make_dir(filename:join([".", ?TMP])),
|
|
|
|
ok = file:make_dir(filename:join([".", ?TMP, "releases"])),
|
|
|
|
ok = file:make_dir(filename:join([".", ?TMP, "releases", Ver])),
|
2011-01-28 15:08:27 +00:00
|
|
|
ok = file:make_symlink(
|
|
|
|
filename:join(["start.boot"]),
|
2011-09-20 16:44:41 +00:00
|
|
|
filename:join([".", ?TMP, "releases", Ver, Name ++ ".boot"])),
|
2011-01-28 15:08:27 +00:00
|
|
|
{ok, _} = file:copy(
|
2011-06-30 21:50:56 +00:00
|
|
|
filename:join([TargetDir, "releases", Ver, "start_clean.boot"]),
|
2011-09-20 16:44:41 +00:00
|
|
|
filename:join([".", ?TMP, "releases", Ver, "start_clean.boot"])).
|
2011-01-27 17:15:25 +00:00
|
|
|
|
|
|
|
make_tar(NameVer) ->
|
|
|
|
Filename = NameVer ++ ".tar.gz",
|
2011-06-30 21:50:56 +00:00
|
|
|
{ok, Cwd} = file:get_cwd(),
|
|
|
|
Absname = filename:join([Cwd, Filename]),
|
2011-09-20 16:44:41 +00:00
|
|
|
ok = file:set_cwd(?TMP),
|
2011-06-30 21:50:56 +00:00
|
|
|
ok = erl_tar:extract(Absname, [compressed]),
|
|
|
|
ok = file:delete(Absname),
|
|
|
|
{ok, Tar} = erl_tar:open(Absname, [write, compressed]),
|
2011-01-27 17:15:25 +00:00
|
|
|
ok = erl_tar:add(Tar, "lib", []),
|
|
|
|
ok = erl_tar:add(Tar, "releases", []),
|
|
|
|
ok = erl_tar:close(Tar),
|
2011-06-30 21:50:56 +00:00
|
|
|
ok = file:set_cwd(Cwd),
|
2011-01-27 17:15:25 +00:00
|
|
|
?CONSOLE("~s upgrade package created~n", [NameVer]).
|
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
cleanup(NameVer) ->
|
2011-01-27 17:15:25 +00:00
|
|
|
?DEBUG("Removing files needed for building the upgrade~n", []),
|
|
|
|
Files = [
|
|
|
|
filename:join([".", NameVer ++ ".rel"]),
|
|
|
|
filename:join([".", NameVer ++ ".boot"]),
|
|
|
|
filename:join([".", NameVer ++ ".script"]),
|
|
|
|
filename:join([".", "relup"])
|
|
|
|
],
|
2011-01-29 14:50:24 +00:00
|
|
|
lists:foreach(fun(F) -> ok = file:delete(F) end, Files),
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-09-20 16:44:41 +00:00
|
|
|
ok = remove_dir_tree(?TMP).
|
2011-01-27 17:15:25 +00:00
|
|
|
|
2011-06-30 21:50:56 +00:00
|
|
|
%% adapted from http://www.erlang.org/doc/system_principles/create_target.html
|
2011-01-27 17:15:25 +00:00
|
|
|
remove_dir_tree(Dir) ->
|
|
|
|
remove_all_files(".", [Dir]).
|
|
|
|
remove_all_files(Dir, Files) ->
|
|
|
|
lists:foreach(fun(File) ->
|
|
|
|
FilePath = filename:join([Dir, File]),
|
2011-06-30 21:50:56 +00:00
|
|
|
{ok, FileInfo, Link} = file_info(FilePath),
|
|
|
|
case {Link, FileInfo#file_info.type} of
|
|
|
|
{false, directory} ->
|
2011-01-27 17:15:25 +00:00
|
|
|
{ok, DirFiles} = file:list_dir(FilePath),
|
|
|
|
remove_all_files(FilePath, DirFiles),
|
|
|
|
file:del_dir(FilePath);
|
|
|
|
_ ->
|
|
|
|
file:delete(FilePath)
|
|
|
|
end
|
|
|
|
end, Files).
|
2011-06-30 21:50:56 +00:00
|
|
|
|
|
|
|
file_info(Path) ->
|
|
|
|
case file:read_file_info(Path) of
|
|
|
|
{ok, Info} ->
|
|
|
|
{ok, Info, false};
|
|
|
|
{error, enoent} ->
|
|
|
|
{ok, Info} = file:read_link_info(Path),
|
|
|
|
{ok, Info, true};
|
|
|
|
Error ->
|
|
|
|
Error
|
|
|
|
end.
|