2011-01-31 16:43:31 +00:00
|
|
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
2010-01-08 05:18:55 +00:00
|
|
|
%% ex: ts=4 sw=4 et
|
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% 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_templater).
|
|
|
|
|
2010-01-08 17:54:43 +00:00
|
|
|
-export(['create-app'/2,
|
2013-12-19 22:01:25 +00:00
|
|
|
'create-lib'/2,
|
2010-01-08 19:16:57 +00:00
|
|
|
'create-node'/2,
|
2010-08-20 15:30:37 +00:00
|
|
|
'list-templates'/2,
|
2010-01-08 17:54:43 +00:00
|
|
|
create/2]).
|
2010-01-08 05:18:55 +00:00
|
|
|
|
2011-04-10 22:01:34 +00:00
|
|
|
%% API for other utilities that need templating functionality
|
|
|
|
-export([resolve_variables/2,
|
|
|
|
render/2]).
|
|
|
|
|
2012-11-10 20:59:19 +00:00
|
|
|
%% for internal use only
|
|
|
|
-export([info/2]).
|
|
|
|
|
2010-01-08 05:18:55 +00:00
|
|
|
-include("rebar.hrl").
|
|
|
|
|
2010-01-08 17:54:43 +00:00
|
|
|
-define(TEMPLATE_RE, ".*\\.template\$").
|
|
|
|
|
2010-01-08 05:18:55 +00:00
|
|
|
%% ===================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ===================================================================
|
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
'create-app'(Config, _File) ->
|
2010-01-08 17:54:43 +00:00
|
|
|
%% Alias for create w/ template=simpleapp
|
2012-07-14 21:44:47 +00:00
|
|
|
create1(Config, "simpleapp").
|
2010-01-08 17:54:43 +00:00
|
|
|
|
2013-12-19 22:01:25 +00:00
|
|
|
'create-lib'(Config, _File) ->
|
|
|
|
%% Alias for create w/ template=simplelib
|
|
|
|
create1(Config, "simplelib").
|
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
'create-node'(Config, _File) ->
|
2010-01-08 19:16:57 +00:00
|
|
|
%% Alias for create w/ template=simplenode
|
2012-07-14 21:44:47 +00:00
|
|
|
create1(Config, "simplenode").
|
2010-01-08 19:16:57 +00:00
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
'list-templates'(Config, _File) ->
|
|
|
|
{AvailTemplates, Files} = find_templates(Config),
|
2012-05-26 17:33:33 +00:00
|
|
|
?DEBUG("Available templates: ~p\n", [AvailTemplates]),
|
2010-08-20 15:30:37 +00:00
|
|
|
|
2012-06-30 21:17:22 +00:00
|
|
|
lists:foreach(
|
|
|
|
fun({Type, F}) ->
|
|
|
|
BaseName = filename:basename(F, ".template"),
|
2012-05-26 17:33:33 +00:00
|
|
|
TemplateTerms = consult(load_file(Files, Type, F)),
|
2012-06-30 21:17:22 +00:00
|
|
|
{_, VarList} = lists:keyfind(variables, 1, TemplateTerms),
|
|
|
|
Vars = lists:foldl(fun({V,_}, Acc) ->
|
|
|
|
[atom_to_list(V) | Acc]
|
|
|
|
end, [], VarList),
|
|
|
|
?CONSOLE(" * ~s: ~s (~p) (variables: ~p)\n",
|
|
|
|
[BaseName, F, Type, string:join(Vars, ", ")])
|
|
|
|
end, AvailTemplates),
|
2010-08-20 15:30:37 +00:00
|
|
|
ok.
|
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
create(Config, _) ->
|
|
|
|
TemplateId = template_id(Config),
|
|
|
|
create1(Config, TemplateId).
|
2012-07-05 21:23:13 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
%% Given a list of key value pairs, for each string value attempt to
|
|
|
|
%% render it using Dict as the context. Storing the result in Dict as Key.
|
|
|
|
%%
|
|
|
|
resolve_variables([], Dict) ->
|
|
|
|
Dict;
|
|
|
|
resolve_variables([{Key, Value0} | Rest], Dict) when is_list(Value0) ->
|
|
|
|
Value = render(list_to_binary(Value0), Dict),
|
|
|
|
resolve_variables(Rest, dict:store(Key, Value, Dict));
|
Support reading mustache 'lists' from files
This commit add support for reading mustache 'lists' from files, so you
can use the list section functionality when templating things.
An example of the list syntax is as follows:
{package_commands, {list, [[{name, "riak"}], [{name, "riak-admin"}], [{name, "search-cmd"}]]}}.
Then you can, for each of the list elements, render some text:
{{#package_commands}}
chmod +x bin/{{name}}
{{/package_commands}}
2013-01-25 18:53:27 +00:00
|
|
|
resolve_variables([{Key, {list, Dicts}} | Rest], Dict) when is_list(Dicts) ->
|
|
|
|
%% just un-tag it so mustache can use it
|
|
|
|
resolve_variables(Rest, dict:store(Key, Dicts, Dict));
|
2012-07-05 21:23:13 +00:00
|
|
|
resolve_variables([_Pair | Rest], Dict) ->
|
|
|
|
resolve_variables(Rest, Dict).
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% Render a binary to a string, using mustache and the specified context
|
|
|
|
%%
|
|
|
|
render(Bin, Context) ->
|
|
|
|
%% Be sure to escape any double-quotes before rendering...
|
|
|
|
ReOpts = [global, {return, list}],
|
|
|
|
Str0 = re:replace(Bin, "\\\\", "\\\\\\", ReOpts),
|
|
|
|
Str1 = re:replace(Str0, "\"", "\\\\\"", ReOpts),
|
2013-12-05 21:02:12 +00:00
|
|
|
rebar_mustache:render(Str1, Context).
|
2012-07-05 21:23:13 +00:00
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ===================================================================
|
|
|
|
|
2012-11-10 20:59:19 +00:00
|
|
|
info(help, create) ->
|
|
|
|
?CONSOLE(
|
|
|
|
"Create skel based on template and vars.~n"
|
|
|
|
"~n"
|
|
|
|
"Valid command line options:~n"
|
|
|
|
" template= [var=foo,...]~n", []);
|
|
|
|
info(help, 'create-app') ->
|
|
|
|
?CONSOLE(
|
|
|
|
"Create simple app skel.~n"
|
|
|
|
"~n"
|
|
|
|
"Valid command line options:~n"
|
|
|
|
" [appid=myapp]~n", []);
|
2013-12-19 22:01:25 +00:00
|
|
|
info(help, 'create-lib') ->
|
|
|
|
?CONSOLE(
|
|
|
|
"Create simple lib skel.~n"
|
|
|
|
"~n"
|
|
|
|
"Valid command line options:~n"
|
|
|
|
" [libid=mylib]~n", []);
|
2012-11-10 20:59:19 +00:00
|
|
|
info(help, 'create-node') ->
|
|
|
|
?CONSOLE(
|
|
|
|
"Create simple node skel.~n"
|
|
|
|
"~n"
|
|
|
|
"Valid command line options:~n"
|
|
|
|
" [nodeid=mynode]~n", []);
|
|
|
|
info(help, 'list-templates') ->
|
|
|
|
?CONSOLE("List available templates.~n", []).
|
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
create1(Config, TemplateId) ->
|
|
|
|
{AvailTemplates, Files} = find_templates(Config),
|
2010-01-08 17:54:43 +00:00
|
|
|
?DEBUG("Available templates: ~p\n", [AvailTemplates]),
|
|
|
|
|
|
|
|
%% Using the specified template id, find the matching template file/type.
|
|
|
|
%% Note that if you define the same template in both ~/.rebar/templates
|
|
|
|
%% that is also present in the escript, the one on the file system will
|
|
|
|
%% be preferred.
|
2011-01-09 11:29:41 +00:00
|
|
|
{Type, Template} = select_template(AvailTemplates, TemplateId),
|
2010-01-08 17:54:43 +00:00
|
|
|
|
|
|
|
%% Load the template definition as is and get the list of variables the
|
|
|
|
%% template requires.
|
2012-05-26 17:33:33 +00:00
|
|
|
TemplateTerms = consult(load_file(Files, Type, Template)),
|
2010-10-25 22:38:51 +00:00
|
|
|
case lists:keyfind(variables, 1, TemplateTerms) of
|
|
|
|
{variables, Vars} ->
|
2010-01-08 17:54:43 +00:00
|
|
|
case parse_vars(Vars, dict:new()) of
|
|
|
|
{error, Entry} ->
|
|
|
|
Context0 = undefined,
|
2010-02-21 03:15:07 +00:00
|
|
|
?ABORT("Failed while processing variables from template ~p."
|
|
|
|
"Variable definitions must follow form of "
|
|
|
|
"[{atom(), term()}]. Failed at: ~p\n",
|
2011-01-09 11:29:41 +00:00
|
|
|
[TemplateId, Entry]);
|
2010-01-08 17:54:43 +00:00
|
|
|
Context0 ->
|
|
|
|
ok
|
|
|
|
end;
|
|
|
|
false ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?WARN("No variables section found in template ~p; "
|
|
|
|
"using empty context.\n", [TemplateId]),
|
2010-01-08 17:54:43 +00:00
|
|
|
Context0 = dict:new()
|
|
|
|
end,
|
|
|
|
|
2011-03-30 03:38:14 +00:00
|
|
|
%% Load variables from disk file, if provided
|
2012-07-14 21:44:47 +00:00
|
|
|
Context1 = case rebar_config:get_global(Config, template_vars, undefined) of
|
2011-03-30 03:38:14 +00:00
|
|
|
undefined ->
|
|
|
|
Context0;
|
|
|
|
File ->
|
Support reading mustache 'lists' from files
This commit add support for reading mustache 'lists' from files, so you
can use the list section functionality when templating things.
An example of the list syntax is as follows:
{package_commands, {list, [[{name, "riak"}], [{name, "riak-admin"}], [{name, "search-cmd"}]]}}.
Then you can, for each of the list elements, render some text:
{{#package_commands}}
chmod +x bin/{{name}}
{{/package_commands}}
2013-01-25 18:53:27 +00:00
|
|
|
case consult(load_file([], file, File)) of
|
2011-03-30 03:38:14 +00:00
|
|
|
{error, Reason} ->
|
|
|
|
?ABORT("Unable to load template_vars from ~s: ~p\n",
|
Support reading mustache 'lists' from files
This commit add support for reading mustache 'lists' from files, so you
can use the list section functionality when templating things.
An example of the list syntax is as follows:
{package_commands, {list, [[{name, "riak"}], [{name, "riak-admin"}], [{name, "search-cmd"}]]}}.
Then you can, for each of the list elements, render some text:
{{#package_commands}}
chmod +x bin/{{name}}
{{/package_commands}}
2013-01-25 18:53:27 +00:00
|
|
|
[File, Reason]);
|
|
|
|
Terms ->
|
|
|
|
%% TODO: Cleanup/merge with similar code in rebar_reltool
|
|
|
|
M = fun(_Key, _Base, Override) -> Override end,
|
|
|
|
dict:merge(M, Context0, dict:from_list(Terms))
|
2011-03-30 03:38:14 +00:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
2011-01-28 15:08:27 +00:00
|
|
|
%% For each variable, see if it's defined in global vars -- if it is,
|
|
|
|
%% prefer that value over the defaults
|
2012-07-14 21:44:47 +00:00
|
|
|
Context2 = update_vars(Config, dict:fetch_keys(Context1), Context1),
|
2011-01-09 11:29:41 +00:00
|
|
|
?DEBUG("Template ~p context: ~p\n", [TemplateId, dict:to_list(Context1)]),
|
Support single level of nested template variables
Add support for defining template variables of the following form:
{variables, [{appid, "mochiwebapp"},
{author, "Mochi Media <dev@mochimedia.com>"},
{year, "2010"},
{version, "0.1"},
{port, 8080},
{dest, "{{appid}}"}]}.
Where dest may be overridden on the commandline but will default to
being the appid. Mochiweb uses this so that we can create new
projects from the template in a configurable directory.
So
$ rebar create template=mochiwebapp dest=foo appid=bar
I thought about special casing dest but figured it might be generally
useful to be able to nest template vars.
However this patch only does one level of resolution. So if
{variables, [{foo, "{{bar}}"},
{bar, "{{foo}}"}]}.
then bar will end up being the literal string {{bar}} and foo the
literal string {{foo}}.
2010-11-11 17:41:13 +00:00
|
|
|
|
|
|
|
%% Handle variables that possibly include other variables in their
|
|
|
|
%% definition
|
2011-04-10 22:01:34 +00:00
|
|
|
Context = resolve_variables(dict:to_list(Context2), Context2),
|
Support single level of nested template variables
Add support for defining template variables of the following form:
{variables, [{appid, "mochiwebapp"},
{author, "Mochi Media <dev@mochimedia.com>"},
{year, "2010"},
{version, "0.1"},
{port, 8080},
{dest, "{{appid}}"}]}.
Where dest may be overridden on the commandline but will default to
being the appid. Mochiweb uses this so that we can create new
projects from the template in a configurable directory.
So
$ rebar create template=mochiwebapp dest=foo appid=bar
I thought about special casing dest but figured it might be generally
useful to be able to nest template vars.
However this patch only does one level of resolution. So if
{variables, [{foo, "{{bar}}"},
{bar, "{{foo}}"}]}.
then bar will end up being the literal string {{bar}} and foo the
literal string {{foo}}.
2010-11-11 17:41:13 +00:00
|
|
|
|
2011-01-28 15:08:27 +00:00
|
|
|
?DEBUG("Resolved Template ~p context: ~p\n",
|
2011-03-30 03:38:14 +00:00
|
|
|
[TemplateId, dict:to_list(Context)]),
|
2010-01-08 17:54:43 +00:00
|
|
|
|
2011-01-28 15:08:27 +00:00
|
|
|
%% Now, use our context to process the template definition -- this
|
|
|
|
%% permits us to use variables within the definition for filenames.
|
2012-05-26 17:33:33 +00:00
|
|
|
FinalTemplate = consult(render(load_file(Files, Type, Template), Context)),
|
2011-01-09 11:29:41 +00:00
|
|
|
?DEBUG("Final template def ~p: ~p\n", [TemplateId, FinalTemplate]),
|
2010-01-08 17:54:43 +00:00
|
|
|
|
|
|
|
%% Execute the instructions in the finalized template
|
2012-07-14 21:44:47 +00:00
|
|
|
Force = rebar_config:get_global(Config, force, "0"),
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, FinalTemplate, Type, Template, Context, Force, []).
|
2010-01-08 17:54:43 +00:00
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
find_templates(Config) ->
|
2012-05-26 17:33:33 +00:00
|
|
|
%% Load a list of all the files in the escript -- cache them since
|
|
|
|
%% we'll potentially need to walk it several times over the course of
|
|
|
|
%% a run.
|
2012-07-14 21:44:47 +00:00
|
|
|
Files = cache_escript_files(Config),
|
2012-05-26 17:33:33 +00:00
|
|
|
|
|
|
|
%% Build a list of available templates
|
2012-07-14 21:44:47 +00:00
|
|
|
AvailTemplates = find_disk_templates(Config)
|
|
|
|
++ find_escript_templates(Files),
|
2012-05-26 17:33:33 +00:00
|
|
|
|
|
|
|
{AvailTemplates, Files}.
|
|
|
|
|
2010-01-08 17:54:43 +00:00
|
|
|
%%
|
2012-05-26 17:33:33 +00:00
|
|
|
%% Scan the current escript for available files
|
2010-01-08 17:54:43 +00:00
|
|
|
%%
|
2012-07-14 21:44:47 +00:00
|
|
|
cache_escript_files(Config) ->
|
2010-03-05 21:56:31 +00:00
|
|
|
{ok, Files} = rebar_utils:escript_foldl(
|
2011-01-28 15:08:27 +00:00
|
|
|
fun(Name, _, GetBin, Acc) ->
|
|
|
|
[{Name, GetBin()} | Acc]
|
|
|
|
end,
|
2012-07-14 21:44:47 +00:00
|
|
|
[], rebar_config:get_xconf(Config, escript)),
|
2012-05-26 17:33:33 +00:00
|
|
|
Files.
|
2010-01-08 17:54:43 +00:00
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
template_id(Config) ->
|
|
|
|
case rebar_config:get_global(Config, template, undefined) of
|
2010-01-08 17:54:43 +00:00
|
|
|
undefined ->
|
|
|
|
?ABORT("No template specified.\n", []);
|
|
|
|
TemplateId ->
|
|
|
|
TemplateId
|
|
|
|
end.
|
|
|
|
|
2012-05-26 17:33:33 +00:00
|
|
|
find_escript_templates(Files) ->
|
|
|
|
[{escript, Name}
|
|
|
|
|| {Name, _Bin} <- Files,
|
|
|
|
re:run(Name, ?TEMPLATE_RE, [{capture, none}]) == match].
|
2010-01-08 17:54:43 +00:00
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
find_disk_templates(Config) ->
|
|
|
|
OtherTemplates = find_other_templates(Config),
|
2011-07-17 16:38:59 +00:00
|
|
|
HomeFiles = rebar_utils:find_files(filename:join([os:getenv("HOME"),
|
|
|
|
".rebar", "templates"]),
|
2011-01-28 15:08:27 +00:00
|
|
|
?TEMPLATE_RE),
|
2010-02-04 19:30:10 +00:00
|
|
|
LocalFiles = rebar_utils:find_files(".", ?TEMPLATE_RE),
|
2010-08-28 14:04:47 +00:00
|
|
|
[{file, F} || F <- OtherTemplates ++ HomeFiles ++ LocalFiles].
|
|
|
|
|
2012-07-14 21:44:47 +00:00
|
|
|
find_other_templates(Config) ->
|
|
|
|
case rebar_config:get_global(Config, template_dir, undefined) of
|
2010-08-28 14:04:47 +00:00
|
|
|
undefined ->
|
|
|
|
[];
|
|
|
|
TemplateDir ->
|
|
|
|
rebar_utils:find_files(TemplateDir, ?TEMPLATE_RE)
|
|
|
|
end.
|
2010-01-08 17:54:43 +00:00
|
|
|
|
|
|
|
select_template([], Template) ->
|
|
|
|
?ABORT("Template ~s not found.\n", [Template]);
|
|
|
|
select_template([{Type, Avail} | Rest], Template) ->
|
|
|
|
case filename:basename(Avail, ".template") == Template of
|
|
|
|
true ->
|
|
|
|
{Type, Avail};
|
|
|
|
false ->
|
|
|
|
select_template(Rest, Template)
|
|
|
|
end.
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% Read the contents of a file from the appropriate source
|
|
|
|
%%
|
2012-05-26 17:33:33 +00:00
|
|
|
load_file(Files, escript, Name) ->
|
|
|
|
{Name, Bin} = lists:keyfind(Name, 1, Files),
|
2010-01-08 17:54:43 +00:00
|
|
|
Bin;
|
2012-05-26 17:33:33 +00:00
|
|
|
load_file(_Files, file, Name) ->
|
2010-01-08 17:54:43 +00:00
|
|
|
{ok, Bin} = file:read_file(Name),
|
|
|
|
Bin.
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% Parse/validate variables out from the template definition
|
|
|
|
%%
|
|
|
|
parse_vars([], Dict) ->
|
|
|
|
Dict;
|
|
|
|
parse_vars([{Key, Value} | Rest], Dict) when is_atom(Key) ->
|
|
|
|
parse_vars(Rest, dict:store(Key, Value, Dict));
|
|
|
|
parse_vars([Other | _Rest], _Dict) ->
|
|
|
|
{error, Other};
|
|
|
|
parse_vars(Other, _Dict) ->
|
|
|
|
{error, Other}.
|
|
|
|
|
|
|
|
%%
|
|
|
|
%% Given a list of keys in Dict, see if there is a corresponding value defined
|
|
|
|
%% in the global config; if there is, update the key in Dict with it
|
|
|
|
%%
|
2012-07-14 21:44:47 +00:00
|
|
|
update_vars(_Config, [], Dict) ->
|
2010-01-08 17:54:43 +00:00
|
|
|
Dict;
|
2012-07-14 21:44:47 +00:00
|
|
|
update_vars(Config, [Key | Rest], Dict) ->
|
|
|
|
Value = rebar_config:get_global(Config, Key, dict:fetch(Key, Dict)),
|
|
|
|
update_vars(Config, Rest, dict:store(Key, Value, Dict)).
|
2010-01-08 17:54:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
%%
|
2012-06-30 20:13:26 +00:00
|
|
|
%% Given a string or binary, parse it into a list of terms, ala file:consult/1
|
2010-01-08 17:54:43 +00:00
|
|
|
%%
|
|
|
|
consult(Str) when is_list(Str) ->
|
|
|
|
consult([], Str, []);
|
|
|
|
consult(Bin) when is_binary(Bin)->
|
|
|
|
consult([], binary_to_list(Bin), []).
|
|
|
|
|
|
|
|
consult(Cont, Str, Acc) ->
|
|
|
|
case erl_scan:tokens(Cont, Str, 0) of
|
|
|
|
{done, Result, Remaining} ->
|
|
|
|
case Result of
|
|
|
|
{ok, Tokens, _} ->
|
|
|
|
{ok, Term} = erl_parse:parse_term(Tokens),
|
Support reading mustache 'lists' from files
This commit add support for reading mustache 'lists' from files, so you
can use the list section functionality when templating things.
An example of the list syntax is as follows:
{package_commands, {list, [[{name, "riak"}], [{name, "riak-admin"}], [{name, "search-cmd"}]]}}.
Then you can, for each of the list elements, render some text:
{{#package_commands}}
chmod +x bin/{{name}}
{{/package_commands}}
2013-01-25 18:53:27 +00:00
|
|
|
consult([], Remaining, [maybe_dict(Term) | Acc]);
|
2010-01-08 17:54:43 +00:00
|
|
|
{eof, _Other} ->
|
|
|
|
lists:reverse(Acc);
|
|
|
|
{error, Info, _} ->
|
|
|
|
{error, Info}
|
|
|
|
end;
|
|
|
|
{more, Cont1} ->
|
|
|
|
consult(Cont1, eof, Acc)
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
Support reading mustache 'lists' from files
This commit add support for reading mustache 'lists' from files, so you
can use the list section functionality when templating things.
An example of the list syntax is as follows:
{package_commands, {list, [[{name, "riak"}], [{name, "riak-admin"}], [{name, "search-cmd"}]]}}.
Then you can, for each of the list elements, render some text:
{{#package_commands}}
chmod +x bin/{{name}}
{{/package_commands}}
2013-01-25 18:53:27 +00:00
|
|
|
maybe_dict({Key, {list, Dicts}}) ->
|
|
|
|
%% this is a 'list' element; a list of lists representing dicts
|
|
|
|
{Key, {list, [dict:from_list(D) || D <- Dicts]}};
|
|
|
|
maybe_dict(Term) ->
|
|
|
|
Term.
|
|
|
|
|
|
|
|
|
2010-02-13 19:14:29 +00:00
|
|
|
write_file(Output, Data, Force) ->
|
|
|
|
%% determine if the target file already exists
|
2011-01-07 15:32:36 +00:00
|
|
|
FileExists = filelib:is_regular(Output),
|
2010-01-30 16:56:06 +00:00
|
|
|
|
2010-02-13 19:14:29 +00:00
|
|
|
%% perform the function if we're allowed,
|
|
|
|
%% otherwise just process the next template
|
2011-01-07 13:58:30 +00:00
|
|
|
case Force =:= "1" orelse FileExists =:= false of
|
|
|
|
true ->
|
2010-10-10 20:11:13 +00:00
|
|
|
ok = filelib:ensure_dir(Output),
|
2011-01-09 11:29:41 +00:00
|
|
|
case {Force, FileExists} of
|
|
|
|
{"1", true} ->
|
2010-02-13 19:14:29 +00:00
|
|
|
?CONSOLE("Writing ~s (forcibly overwriting)~n",
|
|
|
|
[Output]);
|
2011-01-09 11:29:41 +00:00
|
|
|
_ ->
|
2010-01-30 16:56:06 +00:00
|
|
|
?CONSOLE("Writing ~s~n", [Output])
|
|
|
|
end,
|
2010-02-13 19:14:29 +00:00
|
|
|
case file:write_file(Output, Data) of
|
2010-01-30 16:56:06 +00:00
|
|
|
ok ->
|
2010-02-13 19:14:29 +00:00
|
|
|
ok;
|
2010-01-30 16:56:06 +00:00
|
|
|
{error, Reason} ->
|
2010-02-13 19:14:29 +00:00
|
|
|
?ABORT("Failed to write output file ~p: ~p\n",
|
|
|
|
[Output, Reason])
|
2010-01-30 16:56:06 +00:00
|
|
|
end;
|
2011-01-07 13:58:30 +00:00
|
|
|
false ->
|
2010-02-13 19:14:29 +00:00
|
|
|
{error, exists}
|
|
|
|
end.
|
|
|
|
|
2013-09-19 05:11:37 +00:00
|
|
|
prepend_instructions(Instructions, Rest) when is_list(Instructions) ->
|
|
|
|
Instructions ++ Rest;
|
|
|
|
prepend_instructions(Instruction, Rest) ->
|
|
|
|
[Instruction|Rest].
|
2010-02-13 19:14:29 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
%% Execute each instruction in a template definition file.
|
|
|
|
%%
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(_Files, [], _TemplateType, _TemplateName,
|
|
|
|
_Context, _Force, ExistingFiles) ->
|
2010-10-25 22:38:51 +00:00
|
|
|
case ExistingFiles of
|
|
|
|
[] ->
|
2010-02-13 19:14:29 +00:00
|
|
|
ok;
|
|
|
|
_ ->
|
2011-01-28 15:08:27 +00:00
|
|
|
Msg = lists:flatten([io_lib:format("\t* ~p~n", [F]) ||
|
|
|
|
F <- lists:reverse(ExistingFiles)]),
|
2012-07-14 21:44:47 +00:00
|
|
|
Help = "To force overwriting, specify -f/--force/force=1"
|
|
|
|
" on the command line.\n",
|
2011-01-28 15:08:27 +00:00
|
|
|
?ERROR("One or more files already exist on disk and "
|
|
|
|
"were not generated:~n~s~s", [Msg , Help])
|
2010-02-13 19:14:29 +00:00
|
|
|
end;
|
2013-09-19 05:11:37 +00:00
|
|
|
execute_template(Files, [{'if', Cond, True} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
|
|
|
execute_template(Files, [{'if', Cond, True, []}|Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles);
|
|
|
|
execute_template(Files, [{'if', Cond, True, False} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
|
|
|
Instructions = case dict:find(Cond, Context) of
|
|
|
|
{ok, true} ->
|
|
|
|
True;
|
|
|
|
{ok, "true"} ->
|
|
|
|
True;
|
|
|
|
_ ->
|
|
|
|
False
|
|
|
|
end,
|
|
|
|
execute_template(Files, prepend_instructions(Instructions, Rest),
|
|
|
|
TemplateType, TemplateName, Context, Force,
|
|
|
|
ExistingFiles);
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [{template, Input, Output} | Rest], TemplateType,
|
2011-01-28 15:08:27 +00:00
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
2010-02-13 19:14:29 +00:00
|
|
|
InputName = filename:join(filename:dirname(TemplateName), Input),
|
2012-05-26 17:33:33 +00:00
|
|
|
File = load_file(Files, TemplateType, InputName),
|
|
|
|
case write_file(Output, render(File, Context), Force) of
|
2010-02-13 19:14:29 +00:00
|
|
|
ok ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
|
|
|
Context, Force, ExistingFiles);
|
2010-02-13 19:14:29 +00:00
|
|
|
{error, exists} ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
|
|
|
Context, Force, [Output|ExistingFiles])
|
2010-02-13 19:14:29 +00:00
|
|
|
end;
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [{file, Input, Output} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
2010-02-13 19:14:29 +00:00
|
|
|
InputName = filename:join(filename:dirname(TemplateName), Input),
|
2012-05-26 17:33:33 +00:00
|
|
|
File = load_file(Files, TemplateType, InputName),
|
|
|
|
case write_file(Output, File, Force) of
|
2010-02-13 19:14:29 +00:00
|
|
|
ok ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
2011-01-28 15:08:27 +00:00
|
|
|
Context, Force, ExistingFiles);
|
2010-02-13 19:14:29 +00:00
|
|
|
{error, exists} ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
2011-01-28 15:08:27 +00:00
|
|
|
Context, Force, [Output|ExistingFiles])
|
2010-01-08 17:54:43 +00:00
|
|
|
end;
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [{dir, Name} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
2010-01-08 17:54:43 +00:00
|
|
|
case filelib:ensure_dir(filename:join(Name, "dummy")) of
|
|
|
|
ok ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
2011-01-28 15:08:27 +00:00
|
|
|
Context, Force, ExistingFiles);
|
2010-01-08 17:54:43 +00:00
|
|
|
{error, Reason} ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?ABORT("Failed while processing template instruction "
|
|
|
|
"{dir, ~s}: ~p\n", [Name, Reason])
|
2011-07-04 22:17:44 +00:00
|
|
|
end;
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [{copy, Input, Output} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
2011-07-04 22:17:44 +00:00
|
|
|
InputName = filename:join(filename:dirname(TemplateName), Input),
|
2011-07-18 16:52:32 +00:00
|
|
|
try rebar_file_utils:cp_r([InputName ++ "/*"], Output) of
|
2011-07-04 22:17:44 +00:00
|
|
|
ok ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
2011-07-18 16:52:32 +00:00
|
|
|
Context, Force, ExistingFiles)
|
|
|
|
catch _:_ ->
|
2011-07-04 22:17:44 +00:00
|
|
|
?ABORT("Failed while processing template instruction "
|
2012-02-17 10:03:32 +00:00
|
|
|
"{copy, ~s, ~s}~n", [Input, Output])
|
2010-01-08 17:54:43 +00:00
|
|
|
end;
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [{chmod, Mod, File} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles)
|
|
|
|
when is_integer(Mod) ->
|
2010-02-04 22:45:05 +00:00
|
|
|
case file:change_mode(File, Mod) of
|
|
|
|
ok ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
2011-01-28 15:08:27 +00:00
|
|
|
Context, Force, ExistingFiles);
|
2010-02-04 22:45:05 +00:00
|
|
|
{error, Reason} ->
|
2011-01-28 15:08:27 +00:00
|
|
|
?ABORT("Failed while processing template instruction "
|
2012-02-17 10:03:32 +00:00
|
|
|
"{chmod, ~b, ~s}: ~p~n", [Mod, File, Reason])
|
2010-02-04 22:45:05 +00:00
|
|
|
end;
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [{symlink, Existing, New} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
2011-10-21 15:59:29 +00:00
|
|
|
case file:make_symlink(Existing, New) of
|
2011-09-28 22:23:08 +00:00
|
|
|
ok ->
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
2011-09-28 22:23:08 +00:00
|
|
|
Context, Force, ExistingFiles);
|
|
|
|
{error, Reason} ->
|
|
|
|
?ABORT("Failed while processing template instruction "
|
2011-10-21 15:59:29 +00:00
|
|
|
"{symlink, ~s, ~s}: ~p~n", [Existing, New, Reason])
|
2011-09-28 22:23:08 +00:00
|
|
|
end;
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [{variables, _} | Rest], TemplateType,
|
|
|
|
TemplateName, Context, Force, ExistingFiles) ->
|
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName,
|
2011-01-28 15:08:27 +00:00
|
|
|
Context, Force, ExistingFiles);
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, [Other | Rest], TemplateType, TemplateName,
|
|
|
|
Context, Force, ExistingFiles) ->
|
2010-01-08 17:54:43 +00:00
|
|
|
?WARN("Skipping unknown template instruction: ~p\n", [Other]),
|
2012-05-26 17:33:33 +00:00
|
|
|
execute_template(Files, Rest, TemplateType, TemplateName, Context,
|
2011-01-28 15:08:27 +00:00
|
|
|
Force, ExistingFiles).
|