- 浏览: 337127 次
- 性别:
- 来自: 北京
最新评论
-
perfect_control:
真的很详细,一些东西很容易被我忽略掉了
使用fprof进行性能分析 -
leeyisoft:
http://www.erlangqa.com/ 怎么变成 “ ...
Erlang问答网站,欢迎各位提出问题,解答问题。 -
simsunny22:
4年之后我才看到 慢慢的干货
Erlang服务器内存耗尽bug跟踪过程 -
爱死我:
...
使用etop查看系统中进程信息 -
宋兵甲:
在跑这个服务的时候,每秒建立一个客户端连接,连续建立10000 ...
自己写一个tcp 通用服务器
说明,最近比较忙,没有太多时间更新blog,请各位朋友谅解.
寻找俺的朋友,可以gtalk : litaocheng[at]gmail.com 或者 twitter : @litaocheng
这篇文章,应该是我写的最久的一篇,请各位多实践.
reltool使用指南
litaocheng |
litaocheng@gmail.com |
1 |
2009.10.28 |
目录
1 概述
reltool 是 Erlang 提供的 release 管理工具. 我们依据 Erlang/OTP 开发的 application, 最后需要发布,这时需要使用 reltool 帮我们生成最终的 release, 也称为 target system. 同时 reltool 可以分析 application 的依赖关系,帮助我们正确的发布应用.
reltool 包括一个基于 wx 的 GUI 前端(wxWidgets erlang bind), 其可以用来查看 application 的依赖关系,可以查看模块的依赖关系,可以查看源代码. reltool 也提供使用命令来生成自定义的发布包.
1.1 适用范围和目的
本文档主要介绍如何使用 reltool, reltool 为 Erlang/OTP 开发环境的一部分. 本文假设读者对Erlang相关开发比较熟悉,了解 Eralng/OTP 开发规范. Erlang/OTP 要求R13B02及以上版本.
1.2 了解更多内容
可以通过下列相关文档了解更多 Erlang/OTP 开发相关信息
- reltool 参考手册
- reltool user guide
- Erlang/OTP System Principles
- Erlang/OTP Design Principles
- 图书 Programming Erlang: Software for a concurrent World (2007)
2 使用
前面讲过, reltool 提供 GUI 和命令两种交互方式, 本章首先简单的介绍GUI界面相关内容, 重点是使用命令生成 release, 发布自己的应用. 之所以重点介绍命令方式,主要基于两个因素:
- 命令方式是基础, GUI 只是提供了一个界面封装, 本质还是调用的相关的命令
- GUI 目前功能还不是很完整,很多操作不支持
2.1 GUI 相关
2.1.1 System Window
通过调用 reltool:start/0,1 启动 reltool, reltool 在启动时,首先扫描所有的 application 和 module, 分析其相互依赖关系.随后启动 system window.
system window 包含四个page window (tabs):
- Libraries
- System settings
- Applications
- Releases
点击对应的tag, 可以切换page.
system window 如下图:
Librarie 窗口如下图
在 library 窗口, 我们设置 reltool 将要使用的代码. 本页面以 tree 的形式来组织内容, 你可以点击每行前面的标记折叠/展开对应内容.
Library directories, Escript files 都可以进行操作. 选择对应的项目,按住鼠标右键显示对应的菜单, 移动鼠标选择对应的菜单项,释放鼠标右键.
双击 lib 下某个 application, 可以显示对应的 application window.
通过 reltool GUI, 我们还可以查看很多 windows, 如 aplication 依赖图:
源代码窗口:
2.1.2 System Settings
Avaiable 中显示的所有可用的 applications. 在 system page 中,我们可以设置全局的 application 包含规则, 即 incl_cond.
incl_cond 包含三种策略,我们在介绍命令方式创建release时,会详细介绍.
3 用命令生成relase(target system)
先说一下为自己的 application 生成 release 的步骤:
- 依据 Erlang/OTP 项目完成, 测试通过
- 定义 reltool 使用的关于最终 release 的各种配置参数 Config
- reltool:start_server(Config) 启动 reltool
- reltool:get_target_spec/1 获取根据 Config 产生的用来创建 target system 的一系列"动作"(Spec)
- reltool:eval_target_spec/3 根据 Spec 生成 target system
- 书写辅助的脚本,用来生成最终的安装包(可以为tar包,或者zip等)
我们假设第1步,您已经完成.
生成 target system 的重点就是 config 的设置了, 让我们详细的描述一下 reltool 手册中各项 config 参数.
config 可以大体分为4种类型:
- 基本配置
- sys 配置
- app 配置
- mod 配置
其中,很多配置信息在 sys, application, mod 三个等级中均会出现,其关系为: mod > app > sys, 即 mod 配置覆盖 app 配置, app 配置覆盖 sys 配置.
3.1 基本配置
-
root_dir
Reltool 根据当前开发环境产生 target system, 因此 config 信息中势必包含 erlang root_dir 信息.
root_dir 指明 erlang 的当前安装目录(比如在 ubuntu 9.04 下, 默认为 /usr/local/lib/erlang).本选项可以不用指定, reltool 会自动设置 root_dir.
-
lib_dirs
除却 $ERL_LIB 外, 指定附加的 library 目录. 主要用来指定非 Erlang/OTP 正式发布版本中的 application 或 library.如第三方 library, 或我们自己的 application.
3.2 sys 配置
-
erts
指定 erts application 信息, 具体的字段参考后面介绍的 app 配置.
-
escript
escript 脚本配置信息, 包含 escript 文件,以及对应的配置信息
-
app
target system 中包含的 app 信息. 比如所有的 release 都要包含 kernel, stdlib, 具体的app的相关配置,轻参考后面介绍的 app level 配置
-
mod_cond
设置 module 的包含策略. 其包含多种方式:
- all - 表示如果某个 app 被包含,那么其包含的所有模块全部被包含. 假设 app 名为 demoapp, all 不仅包含 demoapp/ebin 下的所有模块, 同时 demoapp.app 中 modules 字段描述的所有模块也将被包括(默认)
- ebin - 表示 ebin 目录下所有的模块,以及相关的模块会被包含
- app - 表示 .app 描述文件,以及相关的模块会被包含
- derived - 表示被其他包含的模块用到的相关模块会被包含
此处配置的 mod_cond 是 sys level 的配置, 控制所有的 app 中的 module 包含策略. 当然我们可以对这个信息, 在 app level 进行覆盖.
-
incl_cond 设置 applicaion 以及 escript 的包含策略.
其包含3种类型:
- derived - 表示 包含 没有明确设置 incl_cond, 同时被其他 application 直接或间接引用的application. (默认)
- include - 表示 包含 所有没有明确设置 incl_cond 的application
- exclude - 表示 排除 排除没有明确设置 incl_cond 的application
include 和 exclude 意义相反. 一个是包含没有设置 incl_cond 的 apps, 一个是排除没有设置 incl_cond 的 apps.
一般我们使用默认的 derived 选项,这样保证所有相关的 application 均被包含, 不会出现 target system 中,某个模块没有定义的错误.我们可以通过前面 reltool GUI 部分介绍的 application 依赖关系图 来了解 application 的交互相关信息.
-
boot_rel
指定 target system 中默认启动项 (rel), 一个target system 中可能包含很多的 release(通过 rel 来指定)
-
rel
指定 rel 内容 (Release specific configuration), 每个 rel 定义会被映射成 rel, script 和 boot 文件,请参考 Erlang/OTP Design Principles Release
-
relocable
指定 target system 中erl 执行时自动检测路径相关信息({relocable, true}), 还是硬编码指定路径启动({relocable, false}). 如果 relocable 为 false, 那么 target system 必须首先通过 reltool:install/2 进行安装, 如果 relocable 为 true, target system 移动到其他目录时,仍然可以方便的运行. {relocable, true} (默认)
-
profile 指定 tareget system 的类型, 此选项主要影响:incl_sys_filters, excl_sys_filters, incl_app_filters 和 excl_app_filters. 不同的 profile 类型, 以上4个 filters 不同.
主要包含3种:
- development - 开发测试模式(默认)
- embedded - 嵌入式完整模式
- standalone - 单独模式,不携带相关的可执行文件
在生成 target system 时, 实际上主要有两个步骤:首先创建一个完整的文件候选列表,它包含尽可能多的文件; 随后调用各种相关的 filter 定义,对结果进行过滤, 最后声称最终的 target system.
一般情况下,我们的target system 要是一个完整的可执行的系统,因此我们许要设置 profile 为 embedded. (当然不设置 profile, 只是修改4个相关的 filter, 也可以达到我们想要的效果)
-
app_file
控制 app 的内容, 因为有各种各样的 filter, 因此最终的 target system 中包含的模块,可能与 app 文件定义的模块列表不一致, 本选项控制 app 的内容. 主要包含3种:
- keep - 将 app 直接拷贝到 target system 中(默认)
- strip - 依据 app 文件产生 target system 中的 app 文件, 并将未被包含的模块从 app 文件中移出
- all - 依据 app 文件产生 tarege system 中的 app 文件, 同时所有的模块将添加到 app 文件中, 如果某个应用没有 app 文件,那么会自动创建一个 app 文件.
-
debug_info
是否去除 beam 文件中的调试信息: keep 表示保持; strip 表示去除
-
incl_sys_filters
指定一个正则表达式列表,用来表示哪些系统文件可以出现在 target system 中. 如果某个系统文件想被包括, 那么其必须满足 incl_sys_filters 中的某个正则表达式, 同时不能满足 excl_sys_filters 中的任何表达式.
比如:
{incl_sys_filters,["^bin","^erts","^lib","^releases"]},
表示 $ERL_ROOT 目录下的 bin, erts, lib, releases 目录均要包含.
incl_app_filters, excl_app_filters 同 sys 相关的 filters 含义大致相同,只是用来控制 application 的包含规则.
-
excl_sys_filters
指定一个正则表达式列表,表示哪些系统文件不可以出现在 target system 中. 默认 为 [].
-
incl_app_filters
指定一个正则表达式列表,表示 application 中的哪些文件可以被包含. 如果某个文件想被包含,至少要满足正则表达式列表中的一个表达式. 默认为 [".*"], 如果设置为 [], 那么 application 中的任何文件都不会被包含.
-
excl_app_filters
指定一个正则表达式列表,表示 application 的哪些文件不可以出现在 target system 中. 默认 为 [].
-
incl_archive_filters
指定 application 中哪些一级子目录包含在压缩包中(与包含正常的目录对应), 通过一个正则表达式列表指定要包含在压缩包中的一级子目录. 默认为 [".*"]
-
excl_archive_filters
指定一个正则表达式列表,指定 application 的哪些一级目录不包含在压缩包中. 如果某个目录,匹配任何一个正则表达式,则不会包含在压缩包中. 默认为 ["^include$", "^priv$"]
-
archive_opts
创建压缩包对应的参数,在 zip:create/3 中使用, 请参考 zip module, 默认 为 [].
3.3 app 配置
-
vsn
指定要包含的 application 的版本, 因为在系统中,可能存在同一应用的多个版本. 如果忽略,则使用最新版本.
-
mod
模块相关的配置信息. 必须包含一个模块名称,以及其他可选的模块配置(参照后面 mod 配置)
-
mod_cond - 同 sys level 的同名配置含义相同
-
incl_cond - 同上
-
debug_info - 同上
-
incl_app_filters - 同上
-
excl_app_filters - 同上
-
incl_archive_filters - 同上
-
excl_archive_filters - 同上
-
archive_opts - 同上
3.4 mod 配置
-
incl_cond
指示模块是否被包含,其覆盖 application 及 system 配置中的 incl_cond 信息.
其包含3个值:
- include - 表示本模块将被包含
- exclude - 表示本模块不被包含
- derived - 表示如果其他被包含的模块引用本模块,则本模块被也被包含.
-
debug_info
同 app 配置中 debug_info 描述.
4 例子
最后是一个实例,我们为 erlips (erlang ip service) 生成 target system.
config (erlips.config)如下:
{sys, [ {lib_dirs,["/home/litaocheng/erlang"]}, {boot_rel, "erlips"}, {rel, "erlips", "0.1", [kernel, stdlib, sasl, mochiweb, erlips]}, {relocatable, true}, {profile, embedded}, {app_file, keep}, {debug_info, strip}, {mod_cond, all}, {incl_cond, derived}, {incl_app_filters, ["^include", "^priv", "^ebin", "^src"]}, {excl_app_filters, []}, {incl_archive_filters,[]}, {excl_archive_filters,[".*"]}, {app, kernel, [{incl_cond, include}]}, {app, stdlib, [{incl_cond, include}]}, {app, sasl, [{incl_cond, include}]}, {app, erlips, [{incl_cond, include}, {incl_app_filters, [".*"]}, {excl_app_filters, ["^log", "^var", "^release"]}]}, {app, mochiweb, [{incl_cond, include}]}, {app, runtime_tools, [{incl_cond, include}]} ] }.
我们为一个名叫 erlips 的 application 生成 target system.
随后执行:
> {ok, Server} = reltool:start_server([{config, "erlips.config"}]). > {ok, Spec} = reltool:get_target_spec(Server). > RelDir = "target_dir". > file:make_dir(RelDir). > ok = reltool:eval_target_spec(Spec, code:root_dir(), RelDir). > zip:zip(RelDir ++ ".zip", [RelDir]). % 创建zip包
将生成的 zip 包拷贝到没有安装 Erlang 环境的电脑中, 解压 zip 包, 随后运行:
./bin/erl
则自动启动 erlips 应用.
5 config type定义
下面为 reltool 中各相关 config 的 type 定义(参考 reltool):
options() = [option()] option() = {config, config() | file()} | {trap_exit, bool()} | {wx_debug, term()} config() = {sys, [sys()]} sys() = {root_dir, root_dir()} | {lib_dirs, [lib_dir()]} | {profile, profile()} | {erts, app()} | {escript, escript_file(), [escript()]} | {app, app_name(), [app()]} | {mod_cond, mod_cond()} | {incl_cond, incl_cond()} | {boot_rel, boot_rel()} | {rel, rel_name(), rel_vsn(), [rel_app()]} | {relocatable, relocatable()} | {app_file, app_file()} | {debug_info, debug_info()} | {incl_sys_filters, incl_sys_filters()} | {excl_sys_filters, excl_sys_filters()} | {incl_app_filters, incl_app_filters()} | {excl_app_filters, excl_app_filters()} | {incl_archive_filters, incl_archive_filters()} | {excl_archive_filters, excl_archive_filters()} | {archive_opts, [archive_opt()]} app() = {vsn, app_vsn()} | {mod, mod_name(), mod()} | {mod_cond, mod_cond()} | {incl_cond, incl_cond()} | {debug_info, debug_info()} | {app_file, app_file()} | {incl_sys_filters, incl_sys_filters()} | {excl_sys_filters, excl_sys_filters()} | {incl_app_filters, incl_app_filters()} | {excl_app_filters, excl_app_filters()} | {incl_archive_filters, incl_archive_filters()} | {excl_archive_filters, excl_archive_filters()} | {archive_opts, [archive_opt()]} mod() = {vsn, app_vsn()} | {incl_cond, incl_cond()} | {debug_info, debug_info()} rel_app() = app_name() | {app_name(), app_type()} | {app_name(), [incl_app()]} | {app_name(), app_type(), [incl_app()]} app_name() = atom() app_type() = permanent | transient | temporary | load | none app_vsn() = string() archive_opt = zip_create_opt() boot_rel() = rel_name() app_file() = keep | strip | all debug_info() = keep | strip dir() = string() escript() = {incl_cond, incl_cond()} escript_file() = file() excl_app_filters() = regexps() excl_archive_filters() = regexps() excl_sys_filters() = regexps() file() = string() incl_app() = app_name() incl_app_filters() = regexps() incl_archive_filters() = regexps() incl_cond() = include | exclude | derived incl_sys_filters() = regexps() lib_dir() = dir() mod_cond() = all | app | ebin | derived | none mod_name() = atom() profile() = development | embedded | standalone re_regexp() = string() reason() = string() regexps() = [re_regexp()] | {add, [re_regexp()]} | {del, [re_regexp()]} rel_file() = term() rel_name() = string() rel_vsn() = string() relocatable = boolean() root_dir() = dir() script_file() = term() server() = server_pid() | options() server_pid() = pid() target_dir() = file()
发表评论
-
Erlang问答网站,欢迎各位提出问题,解答问题。
2012-03-18 15:07 5316平时收到很多关于Erlang的问题,我都尽量一一解答,可是时间 ... -
Emakefile并行编译
2011-11-17 13:15 7672项目代码越来越多,使用erlang编译也越来越慢。无论是Mak ... -
Erlang服务器内存耗尽bug跟踪过程
2011-10-25 21:44 21888本文描述朋友Erlang服务器内存耗尽bug的解决过程 ... -
inet:getstat/2小用法
2011-04-27 09:32 4595inet:getstat/2的用处 在 ... -
Erlang游戏开发-协议
2011-04-22 16:10 10739Erlang游戏开发-协议 ... -
Gearman Erlang Client
2010-10-17 21:14 3729Gearman Gearman是一个通用的任务调度框架。 ... -
ECUG归来
2010-10-17 21:02 2990今天ECUG V圆满结束了,不知不觉作为讲师已经参加过3次大会 ... -
gen-erl-app快速生成erlang app 框架
2010-04-07 14:22 4010经常需要创建各种erlang app,这个过程一旦掌握,就很繁 ... -
erl-redis发布
2010-03-30 11:44 5805最近几天因为需要,实现了一个redis erlang clie ... -
用Erlang做了很多事
2010-01-19 14:08 5093因为工作及时间关系,最近比较忙碌,没有太多的时间写文章。 ... -
ecug topic - erlang开发实践
2009-11-11 10:04 3774从ecug归来,感觉不错,大家学习探讨的积极性很高哦。 很高 ... -
Erlang定时任务server (仿crontab语法)
2009-09-23 18:03 6386好久不写blog了,看到yufeng老大那么活跃,我也“耐不住 ... -
Erlang进程之错?
2009-07-27 15:06 3702前阵子erlang-china关于erla ... -
CNode指南
2009-07-27 14:13 3355好久不发文章,因为工作太忙。这个东西就凑凑数吧。各位见谅。 ... -
Erlang类型及函数声明规格
2009-06-08 22:41 9574Erlang类型及函数声明 ... -
使用etop查看系统中进程信息
2009-05-29 13:57 6189Erlang提供了丰富的开发工具,你认为没有的时候,很可能是你 ... -
创建gen_server组解决单process瓶颈
2009-05-27 17:05 5276并发和顺序是一个令人 ... -
又有人投入Erlang的怀抱了:37Signals Campfire loves Erlang
2009-05-14 23:00 3685就喜欢看这样的东西... This is so juicy ... -
list random shuffle实现
2009-05-07 13:41 4364在项目中需要对list进行随机shuffle,但是在erlan ... -
Erlang开发建议(杂记版)
2009-04-24 18:27 6492以下是在erlang项目开发中的一些记录,即包含很多通俗易懂的 ...
相关推荐
本文档阐述了工业机器人reLTOOL坐标方向以及TCF标定的六点法原理,这对于理解机器人运动控制至关重要。 一、标定基本步骤 1. 首先,选取一个精确的固定点作为参考点,通常位于机器人工作范围内的稳定位置。 2. 在...
本文将深入探讨ABB机器人中reLTOOL函数的使用,以及姿态表示和乘法运算的差异。 reLTOOL函数在ABB机器人编程中用于描述工具相对于基座或者工作对象(WObj)的相对位置和姿态。在这个例子中,我们看到`reltool(phome...
换键选择所用函数 Offs() 或 RelTool() 。 •Offs(p1,100,50,0) 代表一个距离 p1 点 X 轴偏差量为 100mm,Y 轴偏差量为 50mm,Z 轴偏差量为 0 的点。 •函数 Offs() 座标方向与机器人 World 座 标系一致。
- 微调工具角度:如`MoveL Reltool(P10,0,0,0\Rx:=70\Ry:=45\Rz:=15),V300,Z5,Tool\Wobj`。 - **目的:** 控制最后一遍滚边的表面质量。 #### 三、常见缺陷及其解决方案 **1. 外板波纹:** - **原因分析:** ...
2. **教导编程(Teach Pendant Programming)**:教导编程是一种通过手持设备输入指令来训练机器人的方式,用户逐点教导机器人运动轨迹。 3. **离线编程(Offline Programming)**:离线编程是相对于教导编程而言,...
本文将深入解析这些指令,帮助用户更好地理解和运用。 首先,我们关注的是机器人运动指令。在ABB机器人的世界里,机器人的运动控制是最基础的部分。通过特定的指令,可以指导机器人按照预设路径或参数进行精确移动...
机器人与控制柜之间通过各种线缆进行通信,包括马达讯号线缆、用户讯号线缆和教导盒讯号线缆。教导盒是用于手动操纵和教学的重要工具,而IRC5控制箱则是机器人的核心,负责处理指令和监控系统状态。 训练进一步深入...
- **RelTool()**:相对工具坐标系函数,除了XYZ轴偏差量外,还可以指定轴角度偏差。 4. **示例**: - 使用Offs()和RelTool()函数创建简单的路径,如绘制长方形。 5. **转轴运动指令**: - **MoveAbsJ**:绝对...
在实际操作中,为了优化滚边效果,经常会使用`Reltool`指令来微调滚头的位置和角度。例如: - `MoveL Reltool(P10, 0, 0, 0), V300, Z5, Tool\Wobj;` 该指令用于调整滚头的压力。 - `MoveL Reltool(P10, 0, 0, 0\Rx:...
**说明**:RelTool()函数同样用于创建一个新的位置,但这个新位置相对于原位置p1不仅有线性偏移(100mm, 50mm, 0mm),还有旋转偏移(30度, -60度, 45度)。新位置与原位置之间的坐标关系基于机器人的工具坐标系...
13. RelTool 对工具的位置和姿态进行偏移,正确。 接下来是选择题,主要考察特定指令的功能和应用场景: 1. SearchL 指令使得TCP以线性运动方式搜索目标位置,因此选项B正确。 2. StartMove 指令用于启动机器人...
重点介绍了Move指令、Offs指令、Reltool指令、Clock计时指令、TPWrite显示指令等基本指令,这些都是构建机器人动作序列的核心元素。 5. **信号设定**:教学内容包括如何设置和查询输入输出信号,这对于理解机器人...
在实际应用部署中,开发者通常会结合Erlang的释放(release)管理工具,如`systools`和`reltool`。这些工具可以帮助打包应用程序,创建包含所有必要组件(如beam文件、资源文件、配置文件等)的版本释放,并生成升级...
在带参数的例行程序中,使用`movel`运动指令结合`RelTool`参考点,如`pqu1`,以及从数组中提取的坐标值(如`pick{n,1}`, `pick{n,2}`, `pick{n,3}`, `pick{n,4}`)来控制机器人的运动。这允许机器人根据数组中的...
- `RelTool`:处理工具的地址和姿态偏移。 - `CalcRobTCPos`, `CRobTCJointT`, `TReadMotorC`, `CToolC`, `WObjMirPos`, `CalcJointTDistance`:进行不同类型的坐标转换和距离计算。 - `PFRestart`:检查路径中断...
这通常涉及到`reltool`或`rebar3`工具的使用,它们可以帮助生成新的应用版本并执行无缝升级。 通过以上步骤,我们可以创建一个基本的Erlang Application,如"bank1",并实现特定的业务逻辑。记住,Erlang强调的是...
- **第一次横向移动**: 使用`MoveL`指令,基于工具坐标系(`RelTool`)将工具(toGripper)以速度v2500精确地移动到相对于`pExtract`点沿Y轴方向偏移200mm的位置。 - **第二次横向移动**: 继续使用`MoveL`指令,将工具以...