Erlang Build Tools--系列7

本文介绍如何通过配置rebar.app文件及创建特定模块来扩展Erlang构建工具Rebar的功能,包括在任意目录执行命令及与应用或发布目录关联的命令。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

转载:https://bitbucket.org/basho/rebar/wiki/Extensions

 

 

Extending rebar

In its standard release, rebar provides for most Erlang development needs. Should you encounter a need to extend rebar's capabilities, then its implementation allows easy inclusion of further functionality.

Contexts

The key to understanding how to extend rebar is, the role of contexts within the rebar core machinery. Contexts determine which commands (rebar modules) should be considered for execution within the project's directory structure.

Any directory context

Any commands (rebar modules) associated with the any directory context are allowed to be performed within any directory of the project.

The association is made in the any_dir_modules configuration parameter of the rebar.app resource file. For example, to have the rebar_exemplar module be considered for performing for all project directories, you would add the following to rebar.app :


{
application
,
 rebar
,

[{ description , "Rebar: Erlang Build Tool" },
%% ...
{ env , [
%% ...

%% any_dir processing modules
{ any_dir_modules , [
%% ...
rebar_exemplar
]},

%% ...
]}
]}.
Module context

The module context allows rebar commands to be associated with either the application directory, or with the release directory.

You can see this within the rebar.app resource file, and noting the use of app_dir and rel_dir within the modules configuration parameter.

Example: EDoc command

Changing rebar.app :


{
application
,
 rebar
,

[{ description , "Rebar: Erlang Build Tool" },
{ vsn , "2" },
{ modules , [ rebar ,
%% ...
rebar_edoc ,
%% ...
mustache ]},
{ registered , []},
{ applications , [ kernel ,
stdlib ,
sasl ]},
{ env , [
%% ...

%% Dir specific processing modules
{ modules , [
{ app_dir , [
%% ...
rebar_edoc ,
%% ...
]},

{ rel_dir , [
rebar_reltool
]}
]}
]}
]}.

Introducing the rebar_edoc module:


-
module
(
rebar_edoc
).


- export ([ doc / 2 , clean / 2 ]).

- include ( "rebar.hrl" ).

%% @doc Generate Erlang program documentation.
%% @spec doc(#config{}, string()) -> ok
- spec ( doc ( Config :: #config {}, File :: string ()) -> ok ).
doc ( Config , File ) ->
{ ok , AppName , _ AppData } = rebar_app_utils : load_app_file ( File ),
EDocOpts = rebar_config : get ( Config , edoc_opts , []),
ok = edoc : application ( AppName , "." , EDocOpts ),
ok .

%% @doc Remove the generated Erlang program documentation.
%% @spec clean(#config{}, string()) -> ok
- spec ( clean ( Config :: #config {}, File :: string ()) -> ok ).
clean ( Config , _ File ) ->
EDocOpts = rebar_config : get ( Config , edoc_opts , []),
DocDir = proplists : get_value ( dir , EDocOpts , "doc" ),
rebar_file_utils : rm_rf ( DocDir ).
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值