local cjson = require('cjson')
local cmsgpack = require('cmsgpack')
local encoded_hash = cmsgpack.pack({k1 = nil, k2 = cjson.null, k3 = 'baz'})
local decoded_hash = cmsgpack.unpack(encoded_hash)
print('decoded_hash.k2 == cjson.null?', decoded_hash.k2 == cjson.null)
for k, v in pairs(decoded_hash) do
print(k, '->', v)
end
local encoded_array = cmsgpack.pack({'foo', nil, cjson.null, 'bar'})
local decoded_array = cmsgpack.unpack(encoded_array)
print('#decoded_array =', #decoded_array)
for i = 1, 4 do
print(i, '->', decoded_array[i])
end
1条答案
按热度按时间fiei3ece1#
我做了一个快速的研究,没有发现任何msgpack库可以处理
null
哈希表中的值。不过,我并不是说这样的图书馆不存在。我选择了另一种方法。自
lua-cmsgpack
没有什么特别的处理方法null
解码messagepack二进制数据时的值nil
值只是表中的问题,我们可以添加一些特殊的哈希代码→ 表解码器。实际上,这个补丁非常简单:
这是我的第二个电话
mp_decode_to_lua_type
将哈希条目值转换为相应的lua类型值,并在该值为nil
(也就是说,null
在messagepack中,我们将其替换为一个轻userdata(NULL
指针)。相同的用户数据(NULL
指针)用作cjson.null
价值观。我们不需要修补编码器,因为它编码任何不支持的值,包括任何用户数据
null
,即可以使用cjson.null
要表示的用户数据null
值(cjson.decode就是这么做的)。当哈希被解码时,您将得到相同的用户数据。同样的技巧也可以应用于类似数组的表,但如果您知道表的大小,则不必这样做—您可以从第一个索引迭代到最后一个索引。
输出:
多亏了luarocks,我们甚至不需要为这样一个微不足道的补丁支持库的fork。补丁可以直接包含在rockspec文件中。我用修改后的rockspec创建了一个要点:https://gist.github.com/un-def/d6b97f5ef6b47edda7f65e0c6144663c
可以使用以下命令安装库的修补版本: