Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5096383
  • 博文数量: 921
  • 博客积分: 16037
  • 博客等级: 上将
  • 技术积分: 8469
  • 用 户 组: 普通用户
  • 注册时间: 2006-04-05 02:08
文章分类

全部博文(921)

文章存档

2020年(1)

2019年(3)

2018年(3)

2017年(6)

2016年(47)

2015年(72)

2014年(25)

2013年(72)

2012年(125)

2011年(182)

2010年(42)

2009年(14)

2008年(85)

2007年(89)

2006年(155)

分类: Python/Ruby

2012-08-26 15:09:40

本章介绍了Mnesia:
1)启动一个Erlang session并制定Mnesia数据库的目录
2)初始化数据库结构
3)启动Mnesia并创建必要的表

1,初次启动Mnesia
以下是Mnesia系统启动的一个简单展示:

  1. unix> erl -mnesia dir '"/tmp/funky"'
  2. Erlang (BEAM) emulator version 4.9

  3. Eshell V4.9 (abort with ^G)
  4. 1>
  5. 1> mnesia:create_schema([node()]).
  6. ok
  7. 2> mnesia:start().
  8. ok
  9. 3> mnesia:create_table(funky, []).
  10. {atomic,ok}
  11. 4> mnesia:info().
  12. ---> Processes holding locks <---
  13. ---> Processes waiting for locks <---
  14. ---> Pending (remote) transactions <---
  15. ---> Active (local) transactions <---
  16. ---> Uncertain transactions <---
  17. ---> Active tables <---
  18. funky : with 0 records occupying 269 words of mem
  19. schema : with 2 records occupying 353 words of mem
  20. ===> System info in version "1.0", debug level = none <===
  21. opt disc. Directory "/tmp/funky" is used.
  22. use fall-back at restart = false
  23. running db nodes = [nonode@nohost]
  24. stopped db nodes = []
  25. remote = []
  26. ram copies = [funky]
  27. disc copies = [schema]
  28. disc only copies = []
  29. [fnonode@nohost,disc copiesg] = [schema]
  30. [fnonode@nohost,ram copiesg] = [funky]
  31. 1 transactions committed, 0 aborted, 0 restarted, 1 logged to disc
  32. 0 held locks, 0 in queue; 0 local transactions, 0 remote
  33. 0 transactions waits for other nodes: []
  34. ok
上面的例子里:
1)启动erl时参数-mnesia dir '"/tmp/funky"'指定了Mnesia存储数据的目录,windows下可以是erl -mnesia dir 'D:/erl/code'
2)mnesia:create_schema([node()])在本地节点上初始化一个空的schema
3)DBMS通过mnesia:start()启动
4)通过mnesia:create_table(funky, [])来创建表funky
5)mnesia:info()根据数据库的状态来显示信息

2,一个例子
Mnesia数据库组织为一个表的集合,一个表也包含一些属性,如location和persistence
在这个例子中:
1)启动一个Erlang系统,指定数据库位置目录
2)初始化一个新的schema,使用一个属性来指定数据库在那些节点上操作
3)启动Mnesia本身
4)创建数据库表

例子数据库
在这个数据库例子里,我们将创建如下数据库和关系,称为Company数据库
Company ER图:

  1. id name   emp_no name salary (s e x) phone room_no         name number
    \    /               \        /                         \       /
     Dept   - Manager -   Employee        - In_proj -        Project
         \              /
             At_dep


数据库模型如下:
1)有三个实体:employee,project,department
2)这些实体间有三个关系:
  i)一个department由一个employee管理,manager关系
  ii)一个employee在一个department工作,at_dep关系
  iii)每个employee对多个project工作,in_proj关系

定义结构和内容
我们首先将record定义输入到一个company.hrl文件,该文件定义了如下结构:

  1. -record(employee, {emp_no,
  2.                    name,
  3.                    salary,
  4.                    ***,
  5.                    phone,
  6.                    room_no}).

  7. -record(dept, {id,
  8.                name}).

  9. -record(project, {name,
  10.                   number}).

  11. -record(manager, {emp,
  12.                   dept}).

  13. -record(at_dep, {emp,
  14.                  dept_id}).

  15. -record(in_proj, {emp,
  16.                   proj_name}).
该结构在我们的数据库定义了6个表
在Mnesia里,mnesia:create_table(Name, ArgList)用来创建表
Name是表名,当前的Mnesia不要求表名和record名一样
例如,employee表的创建为mnesia:create_table(employee, [{attributes, record_info(fields, employee)}])
record_info(fields, RecordName)表达式由Erlang预处理程序处理为一个包含一个record的不同fields的list

程序
以下启动一个Mnesia并初始化company数据库的schema

  1. % erl -mnesia dir '"/ldisc/scratch/Mnesia.Company"'
  2. Erlang (BEAM) emulator version 4.9

  3. Eshell V4.9 (abort with ^G)
  4. 1> mnesia:create_schema([node()]).
  5. ok
  6. 2) mnesia:start().
  7. ok

以下程序模块创建前面定义的表:

  1. -include_lib("stdlib/include/qlc.hrl").
  2. -include("company.hrl").

  3. init() ->
  4.   mnesia:create_table(employee, [{attributes, record_info(fields, employee)}]),
  5.   mnesia:create_table(dept, [{attributes, record_info(fields, dept)}]),
  6.   mnesia:create_table(project, [{attributes, record_info(fields, project)}]),
  7.   mnesia:create_table(manager, [{type, bag}, {attributes, record_info(fields, manager)}]),
  8.   mnesia:create_table(at_dep, [{type, set}, {attributes, record_info(fields, at_dep)}]),
  9.   mnesia:create_table(in_proj, [{type, bag}, {attributes, record_info(fields, in_proj)}]),
程序的解释
以下命令用来初始化Company数据库:
1)% erl -mnesia dir '"/ldisc/scratch/Mnesia.Company"',-mnesia dir Dir指定了数据库目录的位置
2)mnesia:create_schema([nocde()])初始化一个新的schema
3)mnesia:start()启动Mnesia
4)mnesia:create_table(Name, ArgList)用来创建必要的数据库表
下面继续:

  1. 3> company:init().
  2. {atomic,ok}
  3. 4> mnesia:info().
  4. nsactions <---
  5. ---> Active tables <---
  6. in proj : with 0 records occuping 269 words of mem
  7. at dep : with 0 records occuping 269 words of mem
  8. manager : with 0 records occuping 269 words of mem
  9. project : with 0 records occuping 269 words of mem
  10. dept : with 0 records occuping 269 words of mem
  11. employee : with 0 records occuping 269 words of mem
  12. schema : with 7 records occuping 571 words of mem
  13. ===> System info in version "1.0", debug level = none <===
  14. opt disc. Directory "/ldisc/scratch/Mnesia.Company" is used.
  15. use fall-back at restart = false
  16. running db nodes = [nonode@nohost]
  17. stopped db nodes = []
  18. remote = []
  19. ram copies =
  20. [at dep,dept,employee,in proj,manager,project]
  21. disc copies = [schema]
  22. disc only copies = []
  23. [fnonode@nohost,disc copiesg] = [schema]
  24. [fnonode@nohost,ram copiesg] =
  25. [employee,dept,project,manager,at dep,in proj]
  26. 6 transactions committed, 0 aborted, 0 restarted, 6 logged to disc
  27. 0 held locks, 0 in queue; 0 local transactions, 0 remote
  28. 0 transactions waits for other nodes: []
  29. ok
company:init/0创建我们的表,有两个表类型是bag
bag表示one-to-many,set表示one-to-one
mnesia:info()现在显示数据库有7个本地表,其中6个我们定义的表,另一个是schema
6个事务被提交,因为创建表时6个事务被成功运行

插入一个employee record到数据库、一个at_dep record和一些in_proj record的例子:

  1. insert_emp(Emp, DeptId, ProjNames) ->
  2.   Ename = Emp#employee.name,
  3.   Fun = fun() ->
  4.     mnesia:write(Emp),
  5.     AtDep = #at_dep{emp = Ename, dept_id = DeptId},
  6.     mnesia:write(AtDep),
  7.     mk_projs(Ename, ProjNames)
  8.   end,
  9.   mnesia:transaction(Fun).

  10. mk_projs(Ename, [ProjName|Tail]) ->
  11.   mnesia:write(#in_proj{emp = Ename, proj_name = ProjName}),
  12.   mk_projs(Ename, Tail);
  13. mk_projs(_, []) -> ok.
insert_emp/3的参数为:
1)Emp是employee record
2)DeptId是department的id
3)ProjNames是project的name的list
insert_emp/3 -> function创建一个函数式对象,函数式对象由Fun来表示
mnesia:transaction(Fun)表示Fun位于一个事务中:
1)Fun要么完全成功要么完全失败
2)操作同样数据record的代码可以并行运行,不同的进程不会相互干扰
该方法可以这样使用:

  1. Me = #employee{emp_no= 104732,
  2.                 name = klacke,
  3.                 salary = 7,
  4.                 *** = male,
  5.                 phone = 98108,
  6.                 room_no = {221, 015}},
  7. insert_emp(Me, 'B/SFR', [erlang, mnesia, otp]).
初始化数据库内容
employee表的数据对应的tuple展现: {employee, 104732, klacke, 7, male, 98108, {221, 015}}
at_dep表的数据对应的tuple展现: {at_dep, klacke, 'B/SFR'}
in_proj表的数据对应的tuple展现: {in_proj, klacke, erlang, klacke, otp, klacke, mnesia}
Mnesia表由Mnesia record展现,如tuple{boss, klacke, bjarne}是一个record,第一个元素为表名,第二个为key
object identifier(oid)是指{Tab, Key}这个tuple,第一个元素为表名,第二个为key
一个oid可以对应0、1或多个record,这取决于表类型是set或bag
我们可以插入{boss, klacke, bjarne}record到数据库,Mnesia不强迫非得有klacke和bjarne这两个employeee的数据

添加记录和关系到数据库
employee

  1. {employee, 104465, "Johnson Torbjorn", 1, male, 99184, {242,038}}.
  2. {employee, 107912, "Carlsson Tuula", 2, female,94556, {242,056}}.
  3. {employee, 114872, "Dacker Bjarne", 3, male, 99415, {221,035}}.
  4. {employee, 104531, "Nilsson Hans", 3, male, 99495, {222,026}}.
  5. {employee, 104659, "Tornkvist Torbjorn", 2, male, 99514, {222,022}}.
  6. {employee, 104732, "Wikstrom Claes", 2, male, 99586, {221,015}}.
  7. {employee, 117716, "Fedoriw Anna", 1, female,99143, {221,031}}.
  8. {employee, 115018, "Mattsson Hakan", 3, male, 99251, {203,348}}.
dept

  1. {dept, 'B/SF', "Open Telecom Platform"}.
  2. {dept, 'B/SFP', "OTP - Product Development"}.
  3. {dept, 'B/SFR', "Computer Science Laboratory"}.
project

  1. {project, erlang, 1}.
  2. {project, otp, 2}.
  3. {project, beam, 3}.
  4. {project, mnesia, 5}.
  5. {project, wolf, 6}.
  6. {project, documentation, 7}.
  7. {project, www, 8}.

manager

  1. {manager, 104465, 'B/SF'}.
  2. {manager, 104465, 'B/SFP'}.
  3. {manager, 114872, 'B/SFR'}.
at_dep

  1. {at_dep, 104465, 'B/SF'}.
  2. {at_dep, 107912, 'B/SF'}.
  3. {at_dep, 114872, 'B/SFR'}.
  4. {at_dep, 104531, 'B/SFR'}.
  5. {at_dep, 104659, 'B/SFR'}.
  6. {at_dep, 104732, 'B/SFR'}.
  7. {at_dep, 117716, 'B/SFP'}.
  8. {at_dep, 115018, 'B/SFP'}.
in_proj

  1. {in_proj, 104465, otp}.
  2. {in_proj, 107912, otp}.
  3. {in_proj, 114872, otp}.
  4. {in_proj, 104531, otp}.
  5. {in_proj, 104531, mnesia}.
  6. {in_proj, 104545, wolf}.
  7. {in_proj, 104659, otp}.
  8. {in_proj, 104659, wolf}.
  9. {in_proj, 104732, otp}.
  10. {in_proj, 104732, mnesia}.
  11. {in_proj, 104732, erlang}.
  12. {in_proj, 117716, otp}.
  13. {in_proj, 117716, documentation}.
  14. {in_proj, 115018, otp}.
  15. {in_proj, 115018, mnesia}.

写查询语句
从DBMS里获取数据的方法为mnesia:read/3或mnesia:read/1:

  1. raise(Eno, Raise) ->
  2.   F = fun() ->
  3.     [E] = mnesia:read(employee, Eno, write),
  4.     Salary = E#employee.salary + Raise,
  5.     New = E#employee{salary = Salary},
  6.     mnesia:write(New)
  7.   end,
  8.   mnesia:transaction(F).
由于我们希望在增加salary之后使用mnesia:write/1来更新record,所以我们在从table读数据时获得一个写lock(read方法的第三个参数)
有时候我们需要搜索多个表才能获取数据,这种查询比直接的mnesia:read开销要大很多
有两种方式来写数据库查询:
1) Mnesia方法
2) QLC

Mnesia方法
从数据库获取女性employee的名字:

  1. mnesia:select(employee, [{#employee{*** = female, name = '$1', _ = '_'}, [], ['$1']}]).
select必须运行在transaction等activity里面,所有我们需要构造一个方法:

  1. all_females() ->
  2.   F = fun() ->
  3.     Female = #employee{*** = female, name = '$1', _ = '_'},
  4.     mnesia:select(employee, [{Female, [], ['$1']}])
  5.   end,
  6.   mnesia:transaction(F).
select表达式匹配employee表里所有的记录中***为female的记录
该方法可以从shell里直接调用:

  1. 1> company:all_females().
  2. {atomic, ["Carlsson Tuula", "Fedoriw Anna"]}
使用QLC
使用QLC可能比使用Mnesia方法开销更大,但是它提供了一个很好的语法

  1. Q = qlc:q([E#employee.name || E <- mnesia:table(employee), E#employee.*** == female]),
  2. qlc:e(Q).
使用QLC list comprehension来访问Mnesia表时必须运行在一个transaction里:

  1. females() ->
  2.   F = fun() ->
  3.     Q = qlc:q([E#employee.name || E <- mnesia:table(employee), E#employee.*** == female]),
  4.     qlc:e(Q)
  5.   end,
  6.   mnesia:transaction(F).
调用QLC写的方法:

  1. company:females().
list comprehension表达式:
1)[括号表示“构建list”
2)||表示“例如”,<-表示“从哪里取”
上面的list comprehension表示:构建list E#employee.name,E来自employee表,并且***属性等于female
raise female salary的方法:

  1. raise_females(Amount) ->
  2.   F = fun() ->
  3.     Q = qlc:q([E || E <- mnesia:table(employee),
  4.     E#employee.*** == female]),
  5.     Fs = qlc:e(Q),
  6.     over_write(Fs, Amount)
  7.   end,
  8.   mnesia:transaction(F).

  9. over_write([E|Tail], Amount) ->
  10.   Salary = E#employee.salary + Amount,
  11.   New = E#employee{salary = Salary},
  12.   mnesia:write(New),
  13.   1 + over_write(Tail, Amount);

  14. over_write([], _) ->
  15.   0.
阅读(2701) | 评论(0) | 转发(0) |
0

上一篇:Erlang的JSON库

下一篇:eclips开发erlang

给主人留下些什么吧!~~