2009-12-04 20:48:57 +00:00
|
|
|
#!/usr/bin/env escript
|
2011-01-31 16:43:31 +00:00
|
|
|
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
2010-02-10 23:16:34 +00:00
|
|
|
%% ex: ft=erlang ts=4 sw=4 et
|
2009-12-04 20:48:57 +00:00
|
|
|
|
|
|
|
main(Args) ->
|
2009-12-07 23:03:56 +00:00
|
|
|
%% Get a string repr of build time
|
|
|
|
Built = build_time(),
|
|
|
|
|
2010-07-28 13:19:25 +00:00
|
|
|
%% Get a string repr of first matching VCS changeset
|
2012-08-12 18:14:27 +00:00
|
|
|
VcsInfo = vcs_info([{hg, ".hg", "hg identify -i", "hg status"},
|
|
|
|
{git, ".git", "git describe --always --tags",
|
|
|
|
"git status -s"}]),
|
2010-06-22 19:47:06 +00:00
|
|
|
|
2009-12-07 23:03:56 +00:00
|
|
|
%% Check for force=1 flag to force a rebuild
|
|
|
|
case lists:member("force=1", Args) of
|
|
|
|
true ->
|
2010-08-02 17:35:26 +00:00
|
|
|
rm("ebin/*.beam");
|
2009-12-07 23:03:56 +00:00
|
|
|
false ->
|
2012-08-12 18:14:27 +00:00
|
|
|
rm("ebin/rebar.beam")
|
2009-12-07 23:03:56 +00:00
|
|
|
end,
|
2010-01-08 17:54:26 +00:00
|
|
|
|
2010-10-08 01:02:37 +00:00
|
|
|
%% Add check for debug flag
|
2011-01-10 14:50:04 +00:00
|
|
|
DebugFlag = case lists:member("debug", Args) of
|
|
|
|
true -> debug_info;
|
|
|
|
false -> undefined
|
|
|
|
end,
|
2010-10-08 01:02:37 +00:00
|
|
|
|
2012-06-04 14:46:17 +00:00
|
|
|
%% Extract the system info of the version of OTP we use to compile rebar
|
|
|
|
OtpInfo = string:strip(erlang:system_info(otp_release), both, $\n),
|
|
|
|
|
2009-12-04 20:48:57 +00:00
|
|
|
%% Compile all src/*.erl to ebin
|
2011-08-16 13:26:02 +00:00
|
|
|
case make:files(filelib:wildcard("src/*.erl"),
|
|
|
|
[{outdir, "ebin"}, {i, "include"},
|
|
|
|
DebugFlag,
|
|
|
|
{d, 'BUILD_TIME', Built},
|
2012-06-04 14:46:17 +00:00
|
|
|
{d, 'VCS_INFO', VcsInfo},
|
|
|
|
{d, 'OTP_INFO', OtpInfo}]) of
|
2009-12-04 20:48:57 +00:00
|
|
|
up_to_date ->
|
|
|
|
ok;
|
|
|
|
error ->
|
|
|
|
io:format("Failed to compile rebar files!\n"),
|
|
|
|
halt(1)
|
|
|
|
end,
|
|
|
|
|
|
|
|
%% Make sure file:consult can parse the .app file
|
|
|
|
case file:consult("ebin/rebar.app") of
|
|
|
|
{ok, _} ->
|
|
|
|
ok;
|
|
|
|
{error, Reason} ->
|
|
|
|
io:format("Invalid syntax in ebin/rebar.app: ~p\n", [Reason]),
|
|
|
|
halt(1)
|
|
|
|
end,
|
|
|
|
|
|
|
|
%% Add ebin/ to our path
|
|
|
|
true = code:add_path("ebin"),
|
|
|
|
|
2012-05-18 20:16:38 +00:00
|
|
|
%% Run rebar compile to do proper .app validation etc.
|
|
|
|
%% and rebar escriptize to create the rebar script
|
2013-12-14 16:33:28 +00:00
|
|
|
RebarArgs = Args -- ["debug"], %% Avoid trying to run 'debug' command
|
|
|
|
rebar:main(["compile", "escriptize"] ++ RebarArgs),
|
2009-12-04 20:48:57 +00:00
|
|
|
|
2011-12-22 05:27:42 +00:00
|
|
|
%% Finally, update executable perms for our script on *nix,
|
|
|
|
%% or write out script files on win32.
|
2010-08-02 17:35:26 +00:00
|
|
|
case os:type() of
|
|
|
|
{unix,_} ->
|
|
|
|
[] = os:cmd("chmod u+x rebar"),
|
|
|
|
ok;
|
2011-12-22 05:27:42 +00:00
|
|
|
{win32,_} ->
|
|
|
|
write_windows_scripts(),
|
|
|
|
ok;
|
2010-08-02 17:35:26 +00:00
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end,
|
2011-08-08 20:35:45 +00:00
|
|
|
|
2009-12-04 20:54:44 +00:00
|
|
|
%% Add a helpful message
|
2011-08-16 13:26:02 +00:00
|
|
|
io:format("Congratulations! You now have a self-contained script called"
|
|
|
|
" \"rebar\" in\n"
|
|
|
|
"your current working directory. "
|
|
|
|
"Place this script anywhere in your path\n"
|
2009-12-04 20:54:44 +00:00
|
|
|
"and you can use rebar to build OTP-compliant apps.\n").
|
|
|
|
|
2010-08-02 17:35:26 +00:00
|
|
|
rm(Path) ->
|
2011-08-08 20:35:45 +00:00
|
|
|
NativePath = filename:nativename(Path),
|
2010-08-02 17:35:26 +00:00
|
|
|
Cmd = case os:type() of
|
|
|
|
{unix,_} -> "rm -f ";
|
|
|
|
{win32,_} -> "del /q "
|
|
|
|
end,
|
2011-08-08 20:35:45 +00:00
|
|
|
[] = os:cmd(Cmd ++ NativePath),
|
2010-08-02 17:35:26 +00:00
|
|
|
ok.
|
2010-01-08 17:54:26 +00:00
|
|
|
|
2009-12-07 23:03:56 +00:00
|
|
|
build_time() ->
|
|
|
|
{{Y, M, D}, {H, Min, S}} = calendar:now_to_universal_time(now()),
|
2011-08-16 13:26:02 +00:00
|
|
|
lists:flatten(io_lib:format("~4..0w~2..0w~2..0w_~2..0w~2..0w~2..0w",
|
|
|
|
[Y, M, D, H, Min, S])).
|
2009-12-04 20:48:57 +00:00
|
|
|
|
2010-07-28 13:19:25 +00:00
|
|
|
vcs_info([]) ->
|
|
|
|
"No VCS info available.";
|
2012-08-12 18:14:27 +00:00
|
|
|
vcs_info([{Id, Dir, VsnCmd, StatusCmd} | Rest]) ->
|
2010-07-28 13:19:25 +00:00
|
|
|
case filelib:is_dir(Dir) of
|
|
|
|
true ->
|
2012-08-12 18:14:27 +00:00
|
|
|
Vsn = string:strip(os:cmd(VsnCmd), both, $\n),
|
|
|
|
Status = case string:strip(os:cmd(StatusCmd), both, $\n) of
|
|
|
|
[] ->
|
|
|
|
"";
|
|
|
|
_ ->
|
|
|
|
"-dirty"
|
|
|
|
end,
|
|
|
|
lists:concat([Id, " ", Vsn, Status]);
|
2010-07-28 13:19:25 +00:00
|
|
|
false ->
|
|
|
|
vcs_info(Rest)
|
|
|
|
end.
|
2011-12-22 05:27:42 +00:00
|
|
|
|
|
|
|
write_windows_scripts() ->
|
|
|
|
CmdScript=
|
|
|
|
"@echo off\r\n"
|
|
|
|
"setlocal\r\n"
|
|
|
|
"set rebarscript=%~f0\r\n"
|
2012-01-10 17:00:25 +00:00
|
|
|
"escript.exe \"%rebarscript:.cmd=%\" %*\r\n",
|
2012-01-10 17:15:40 +00:00
|
|
|
ok = file:write_file("rebar.cmd", CmdScript).
|