ImageVerifierCode 换一换
格式:PPT , 页数:27 ,大小:340KB ,
资源ID:374487      下载积分:2000 积分
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝扫码支付 微信扫码支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【http://www.mydoc123.com/d-374487.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(Erlware For Managing Distribution and Build.ppt)为本站会员(unhappyhay135)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

Erlware For Managing Distribution and Build.ppt

1、Erlware For Managing Distribution and Build,Erlang User Conference 2007,Erlware Goals,Allow the Erlang Community to drive itself Allow the community to evolve the language/platform Make the language/platform accessible to reasonably competent programmers,Steps to Reach Erlwares Goals,Define a Common

2、 Repository for OTP Artifacts Make it easy for anyone to host their own version of the Repository Build tools that leverage the features of the Repository,Repository Design Goals,Be Lazy Dont add more meta data then you need Where ever possible leverage existing OTP metadata,Repository and OTP,OTP a

3、lready provides most of the metadata that we need. OTP Applications make good artifacts. OTP *.app files make for good metadata. OTP *.boot, *.script, *.rel files make really good release packages.,Anatomy of a package,Contains a src directory Contains an ebin directory Contains a *.app file Contain

4、s source code,Application,Release,Contains an *.rel fileContains a sys.config fileContains command templates,Repository Implementation,Dirt Simple Http Server with WEBDAV Enabled Specific, well documented directory structure,Repository Layout,The structure of the repo is/ /and/Meta/Example: The Sina

5、n-1.0.1 release package for mac sits in:http:/repo.erlware.org/pub/5.5.5/ i386-apple-darwin8.9/releases/sinan/,Leveraging the Repository,Sinan is a build system that understands erlang and OTP. It makes it very easy to handle complex OTP build logic,Faxien is a distribution system built on the same

6、backend as Sinan. It provides functionality similar to rubygems or CPAN for Erlang.,OTP Centric Build System Expects OTP Applications, Understands OTP Applications Written and extensible in Erlang,Getting Started,Generate an OTP Projectsinan genAfter asking a few questions generates a useful, sinan

7、compliant, compilable OTP application with a complete skeleton,Dependency Detection,Just runsinan dependsEvaluates the OTP application dependencies and restrictions in the project. Hits the repository to gather information. Comes back with a list of hard dependencies (app, version) for each of the d

8、ependencies and transitive dependencies in the project. Many other tasks in Sinan depend on this one.,Building,Just runsinanorsinan buildBuilds all of your artifacts into the _build directory. Will only rebuild when a file needs to be rebuilt. Understands includes, parse transforms etc.,Testing,We d

9、ecided to leverage eunit in Sinan. Want to run all of the eunit tests in your project.sinan testSinan prints successes and failures to the shell. It also generates html code coverage reports to _build/reports.,The Good Stuff - Releases,Want to generate *.rel, *.boot, *.script files for your project?

10、 How about taring it up and getting it ready for a push to an Erlang node?Just dosinan releaseorsinan tarBest of all, Faxien knows how to push these releases out to a repository. That makes distribution a no brainer.,Extras,How about running dialyzer on your project?sinan analyzeThe first time its r

11、un it generates a plt file for dependencies so you only get the output relevant for your project.Want an erlang shell with all of your paths set so you can noodle with your project?sinan shell,The Future,Anything you want. Sinan is an extensible system so anything useful can be quickly incorporated.

12、 Of course, there is still a lot of functionality we want to expose in Sinan. No doubt the community will come up with a bunch of things that we have never thought of.,Easy to find and install otp packages list out packages available in remote repositories simply type faxien install to install anyon

13、e of them Install applications and releases Easy to publish OTP packages so that community can access them faxien publish auto discovers package type, app, release, or erts,Install the tools,http:/ (links also found at www.erlware.org)Execute faxien_launcher -b to install faxien now install Sinan wi

14、th faxien install sinan,Installation,The past -Google for an application that fits your needs Find lots of stuff written in perl but no Erlang Some obscure website listed on the 13th page has a half baked Erlang app Hack around with it for a bit Give up and write your ownWith Faxien -faxien list pic

15、k an app faxien install_app vsn faxien install vsn,How does installation work?,Configured to know about a list of repositories Pulls down packages both releases and applications then installs the now local tars creating scripts and boot files the fit the local environment among other things. Pulls d

16、own erts (you need not install Erlang from source anymore) If a package is not found for the erts vsn you specify Faxien automatically selects the next lowest compatible erts vsn. By default all packages are installed in /usr/local/erlware or on windows c:erlware though this is fully configurable. (

17、windows code not complete as of this writing),Publishing,The past -build it write some convoluted make file that would break for the next guy, put it up on your website and hope people find it Be disappointed when no one does and watch the community grow slowly without your codeWith faxien“faxien pu

18、blish my_app“ “faxien publish my_rel“Now everyone can get at it,How does publishing work?,Faxien publishes precompiled applications Publishes into a repo location specific to the local architecture, if project is pure Erlang then publishes to a platform neutral location Auto discovers the package ty

19、pe by looking for things like a .app file or a .rel file, or the fact the the directory looks something like “erts-“. faxien publish sasl-1.3.2.1 works faxien publish my_release-2.3.2 works faxien publish erts-5.5.5 works if a package does not have the appropriate OTP structure it will not be publis

20、hed.,Extra Commands,Faxien allows you to do quite a bit more than this short presentation has time to address. Two commands I want to note are:faxien list - list all available apps that match the supplied pattern across many reposfaxien upgrade - upgrade one or all packages on the local file system

21、to their latest vsnAnd of course lets not forget faxien help to print out a list of what faxien can do,Summing it up. (Erlware cycle),Install Faxien (Erlang Package Management) Install Sinan (Erlang Build System) Use Sinan projgen to create a project Build, document, and test with Sinan Publish an a

22、pp or release with Faxien Other folks download and use your package,Erlware Goals Revisited,Allow the Erlang Community to drive itself Create otp packages with Sinan then publish and install them with Faxien. Now we can easily leverage each others work. Allow the community to evolve the language/pla

23、tform No need to install Erlang from source, you can create your own release and people can simply install that if you want to bundle your alternative to stdlib instead of the original go ahead Make the language/platform accessible to reasonably competent programmers OTP apps and releases are easy to install, create, and publish with Faxien and Sinan.,Get Involved with Erlware,erlware- erlware- contacterlware.orgWe are a community project. We want your help, we will not succeed without it!,

copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1