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
|
|
|
|
VcsInfo = vcs_info([{hg, ".hg", "hg identify -i"},
|
|
|
|
{git, ".git", "git describe --always"}]),
|
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 ->
|
2010-08-02 17:35:26 +00:00
|
|
|
rm("ebin/rebar_core.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
|
|
|
|
2009-12-04 20:48:57 +00:00
|
|
|
%% Compile all src/*.erl to ebin
|
2009-12-07 23:03:56 +00:00
|
|
|
case make:files(filelib:wildcard("src/*.erl"), [{outdir, "ebin"}, {i, "include"},
|
2010-10-08 01:02:37 +00:00
|
|
|
DebugFlag,
|
2010-06-22 19:47:06 +00:00
|
|
|
{d, 'BUILD_TIME', Built},
|
2010-07-28 13:19:25 +00:00
|
|
|
{d, 'VCS_INFO', VcsInfo}]) 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"),
|
|
|
|
|
|
|
|
%% Run rebar to do proper .app validation and such
|
|
|
|
rebar:main(["compile"] ++ Args),
|
|
|
|
|
2010-01-08 17:54:26 +00:00
|
|
|
%% Read the contents of the files in ebin and templates; note that we place
|
|
|
|
%% all the beam files at the top level of the code archive so that code loading
|
|
|
|
%% works properly.
|
|
|
|
Files = load_files("*", "ebin") ++ load_files("priv/templates/*", "."),
|
|
|
|
|
|
|
|
case zip:create("mem", Files, [memory]) of
|
2009-12-04 20:48:57 +00:00
|
|
|
{ok, {"mem", ZipBin}} ->
|
|
|
|
%% Archive was successfully created. Prefix that binary with our
|
2011-08-16 13:11:56 +00:00
|
|
|
%% header and write to "rebar" file.
|
|
|
|
%% Without -noshell -noinput escript consumes all input that would
|
|
|
|
%% otherwise go to the shell for the next command.
|
2010-08-10 19:23:32 +00:00
|
|
|
Script = <<"#!/usr/bin/env escript\n%%! -noshell -noinput\n", ZipBin/binary>>,
|
2009-12-04 20:48:57 +00:00
|
|
|
case file:write_file("rebar", Script) of
|
|
|
|
ok ->
|
|
|
|
ok;
|
|
|
|
{error, WriteError} ->
|
|
|
|
io:format("Failed to write rebar script: ~p\n", [WriteError]),
|
|
|
|
halt(1)
|
|
|
|
end;
|
|
|
|
{error, ZipError} ->
|
|
|
|
io:format("Failed to construct rebar script archive: ~p\n", [ZipError]),
|
|
|
|
halt(1)
|
|
|
|
end,
|
|
|
|
|
|
|
|
%% Finally, update executable perms for our script
|
2010-08-02 17:35:26 +00:00
|
|
|
case os:type() of
|
|
|
|
{unix,_} ->
|
|
|
|
[] = os:cmd("chmod u+x rebar"),
|
|
|
|
ok;
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end,
|
2011-08-08 20:35:45 +00:00
|
|
|
|
2009-12-04 20:54:44 +00:00
|
|
|
%% Add a helpful message
|
|
|
|
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"
|
|
|
|
"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()),
|
|
|
|
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-01-08 17:54:26 +00:00
|
|
|
|
|
|
|
load_files(Wildcard, Dir) ->
|
|
|
|
[read_file(Filename, Dir) || Filename <- filelib:wildcard(Wildcard, Dir)].
|
|
|
|
|
|
|
|
read_file(Filename, Dir) ->
|
|
|
|
{ok, Bin} = file:read_file(filename:join(Dir, Filename)),
|
|
|
|
{Filename, Bin}.
|
2010-07-28 13:19:25 +00:00
|
|
|
|
|
|
|
vcs_info([]) ->
|
|
|
|
"No VCS info available.";
|
|
|
|
vcs_info([{Id, Dir, Cmd} | Rest]) ->
|
|
|
|
case filelib:is_dir(Dir) of
|
|
|
|
true ->
|
|
|
|
lists:concat([Id, " ", string:strip(os:cmd(Cmd), both, $\n)]);
|
|
|
|
false ->
|
|
|
|
vcs_info(Rest)
|
|
|
|
end.
|