- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Lua中设置table为只读属性的方法详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
项目中部分只读表易被人误改写,故决定在非线上环境里对这些表附加只读属性,方便在出现误改写的时候抛出lua错误,最终版代码如下:
- --[[------------------------------------------------------------------------------
- -** 设置table只读 出现改写会抛出lua error
- -- 用法 local cfg_proxy = read_only(cfg) retur cfg_proxy
- -- 增加了防重置设置read_only的机制
- -- lua5.3支持 1)table库支持调用元方法,所以table.remove table.insert 也会抛出错误,
- -- 2)不用定义__ipairs 5.3 ipairs迭代器支持访问元方法__index,pairs迭代器next不支持故需要元方法__pairs
- -- 低版本lua此函数不能完全按照预期工作
- *]]
- function read_only(inputTable)
- local travelled_tables = {}
- local function __read_only(tbl)
- if not travelled_tables[tbl] then
- local tbl_mt = getmetatable(tbl)
- if not tbl_mt then
- tbl_mt = {}
- setmetatable(tbl, tbl_mt)
- end
- local proxy = tbl_mt.__read_only_proxy
- if not proxy then
- proxy = {}
- tbl_mt.__read_only_proxy = proxy
- local proxy_mt = {
- __index = tbl,
- __newindex = function (t, k, v) error("error write to a read-only table with key = " .. tostring(k)) end,
- __pairs = function (t) return pairs(tbl) end,
- -- __ipairs = function (t) return ipairs(tbl) end, 5.3版本不需要此方法
- __len = function (t) return #tbl end,
- __read_only_proxy = proxy
- }
- setmetatable(proxy, proxy_mt)
- end
- travelled_tables[tbl] = proxy
- for k, v in pairs(tbl) do
- if type(v) == "table" then
- tbl[k] = __read_only(v)
- end
- end
- end
- return travelled_tables[tbl]
- end
- return __read_only(inputTable)
- end
测试代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
local t0 = {k = 1}
local t2 = {
fdsf = {456}
}
local t1 = {
a = {456, 89},
b = {456,ddss = 9, t2 = t2},
d = 45,
e =
"string"
,
}
t1.c=t1
local t3 = read_only(t1)
print(t3.d, t3.c.e, t3.c.c.b.t2.fdsf)
function
q1() t3.d = 4555 end
function
q2() t3.c.d = 90 end
function
q3() t3.c.c.b.t2.fdsf =90 end
function
q4() table.remove(t3.a) end
function
q5() t3.b[ddss] = nil end
function
q6() t3[f] = 89 end
function
q7() table.insert(t3.a, 999) end
print(pcall(q1))
print(pcall(q2))
print(pcall(q3))
print(pcall(q4))
print(pcall(q5))
print(pcall(q6))
print(pcall(q7))
print(t3.a[1])
for
k,v
in
pairs(t3)
do
print(
"===pairs t3:"
,k,v)
end
for
k,v
in
pairs(t3.a)
do
print(
"===pairs t3.a:"
,k,v)
end
for
k,v
in
ipairs(t3)
do
print(
"===ipairs t3:"
,k,v)
end
for
k,v
in
ipairs(t3.a)
do
print(
"===ipair t3.a"
,k,v)
end
print(
"len t3:"
,
#t3)
print(
"len t3.a:"
,
#t3.a)
local t4 = read_only(t2)
local t5 = read_only(t0)
local t6 = read_only(t0)
print(t3.b.t2, read_only(t2))
print(t5, t6, t0)
|
测试环境https://www.lua.org/cgi-bin/demo lua5.3.4:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
string table: 0x20d4ba0
false input:17: error write to a read-only table with key = d
false input:17: error write to a read-only table with key = d
false input:17: error write to a read-only table with key = fdsf
false input:17: error write to a read-only table with key = 2
false input:17: error write to a read-only table with key = nil
false input:17: error write to a read-only table with key = nil
false input:17: error write to a read-only table with key = 3
===pairs t3: e string
===pairs t3: b table: 0x20ccd60
===pairs t3: a table: 0x20d4e70
===pairs t3: d 45
===pairs t3: c table: 0x20ca700
===pairs t3.a: 1 456
===pairs t3.a: 2 89
===ipair t3.a 1 456
===ipair t3.a 2 89
len t3: 0
len t3.a: 2
table: 0x20d4870 table: 0x20d4870
table: 0x20d5690 table: 0x20d5690 table: 0x20d1140
|
代码思路设计:
1.使用proxy={}空表而不是目标表tbl来设置__newindex是因为__newindex必须在原表里面不存在才会调用,这样就依然可以对已存在的字段进行改写 。
1
2
3
4
5
|
__newindex: The indexing assignment table[key] = value. Like the index event, this event happens when table is not a table or when key is not present in table. The metamethod is looked up in table.
Like with indexing, the metamethod for this event can be either a function or a table. If it is a function, it is called with table, key, and value as arguments. If it is a table, Lua does an indexing assignment to this table with the same key and value. (This assignment is regular, not raw, and therefore can trigger another metamethod.)
Whenever there is a __newindex metamethod, Lua does not perform the primitive assignment. (If necessary, the metamethod itself can call rawset to do the assignment.)
|
2.避免出现table的互相引用,加入travelled_tables存储已经设置过proxy的table的映射 。
3.对于原表tbl的访问使用__index=tbl 。
4.对于表查长度使用__len= function () return #tbl end 。
5.对于遍历pairs,查到lua5.3的pairs默认迭代器next不支持访问元表__index,故直接__pairs = function () return pairs(tbl) end,以此来生成对目标表的迭代遍历 。
6.对于ipairs,查到lua5.3 ipairs函数生成的迭代器默认就支持访问元表__index,故不需要添加__ipairs 。
8.2 – Changes in the Libraries 。
•The ipairs iterator now respects metamethods and its __ipairs metamethod has been deprecated. 。
7.对于table.insert , table.remove不用特殊处理,lua5.3的table lib支持元表操作,故依然会抛错 。
8.2 – Changes in the Libraries 。
•The Table library now respects metamethods for setting and getting elements. 。
8.避免重复创建read_only,每个tbl只创建一个proxy代理,在tbl的metatable里和proxy的metatable里都设置属性__read_only_proxy,可以直接访问获得 。
总结 。
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对我的支持.
原文链接:http://www.cnblogs.com/vanishfan/p/6909153.html 。
最后此篇关于Lua中设置table为只读属性的方法详解的文章就讲到这里了,如果你想了解更多关于Lua中设置table为只读属性的方法详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!