如何将luajit指针转换为字符串再转回来?
2021-4-17 21:37:2
收藏:0
阅读:204
评论:1
我需要些帮助将luajit指针转换为字符串再转回来。
首先我定义了这个 ctype:
ffi.cdef[[
typedef struct {
unsigned char Bytes[16];
} EncryptionKeys[100000000];
void* malloc(size_t);
void free(void*);
]]
然后使用 malloc 分配了一些内存并创建了“EncryptionKeys”变量。
local EncryptionKeyMemoryAddress = ffi.C.malloc(ffi.sizeof("EncryptionKeys"))
local EncryptionKeys = ffi.cast("EncryptionKeys(&)", EncryptionKeyMemoryAddress)
我首先使用以下方法将变量转换为 lua 字符串:
ffi.string(EncryptionKeyMemoryAddress)
但我无法弄清如何将其转换回来! 有人可以帮帮我吗?
FYI:我正在将 'EncryptionKeyMemoryAddress' 变量传递给 lua lane 的一个函数参数(https://lualanes.github.io/lanes/)。
编辑: 以下是我正在工作的代码部分: 这是我的服务器的客户端管理模块,管理着一组所有可以访问服务器上连接的任何客户端的 lua 状态的列表。他们都使用共享内存部分,我希望他们可以使用指针访问它。
local ClientFFIString = [[
typedef struct {
unsigned char Bytes[16];
} EncryptionKeys[100000000];
void* malloc(size_t);
void free(void*);
]]
ffi.cdef(Matchpools.FFIString)
local EncryptionKeyMemoryAddress = ffi.C.malloc(ffi.sizeof("EncryptionKeys"))
--------------------------------------------
function ClientManagers.CreateNewClientManager()
local EncryptionKeys = ffi.cast("EncryptionKeys(&)", EncryptionKeyMemoryAddress)
EncryptionKeys[0].Bytes[0] = 24
print("___a", EncryptionKeys[0].Bytes[0])
local NewIndex = #ClientManagers.List+1
ClientManagers.List[NewIndex] = ClientManagerFunc(
ClientFFIString,
ffi.string(EncryptionKeysMemoryAddress)
)
end
--------------------------------------------
local ClientManagerFunc = Lanes.gen("*", function(ClientFFIString, EncryptionKeysMemoryAddress)
ffi = require("ffi")
ffi.cdef(ClientFFIString)
local EncryptionKeys = ffi.cast("EncryptionKeys(&)", EncryptionKeyMemoryAddress)
print("___a", EncryptionKeys[0].Bytes[0])
-- 我希望这也像创建此 lua 状态的函数一样是 24
local ClientManagerRunning = true
while ClientManagerRunning do
--local dt = GetDt()
--UpdateClientData(dt)
--UpdateMatchmaking(dt)
end
end)
点赞
评论区的留言会收到邮件通知哦~
推荐文章
- Lua 虚拟机加密load(string.dump(function)) 后执行失败问题如何解决
- 我想创建一个 Nginx 规则,禁止访问
- 如何将两个不同的lua文件合成一个 东西有点长 大佬请耐心看完 我是小白研究几天了都没搞定
- 如何在roblox studio中1:1导入真实世界的地形?
- 求解,lua_resume的第二次调用继续执行协程问题。
- 【上海普陀区】内向猫网络招募【Skynet游戏框架Lua后端程序员】
- SF爱好求教:如何用lua实现游戏内调用数据库函数实现账号密码注册?
- Lua实现网站后台开发
- LUA错误显式返回,社区常见的规约是怎么样的
- lua5.3下载库失败
- 请问如何实现文本框内容和某个网页搜索框内容连接,并把网页输出来的结果反馈到另外一个文本框上
- lua lanes多线程使用
- 一个kv数据库
- openresty 有没有比较轻量的 docker 镜像
- 想问一下,有大佬用过luacurl吗
- 在Lua执行过程中使用Load函数出现问题
- 为什么 neovim 里没有显示一些特殊字符?
- Lua比较两个表的值(不考虑键的顺序)
- 有个lua简单的项目,外包,有意者加微信 liuheng600456详谈,最好在成都
- 如何在 Visual Studio 2022 中运行 Lua 代码?

你可以将 Lua 字符串转换为结构体指针(并且之后可以像数组一样使用):
ffi.cdef"typedef struct {unsigned char Bytes[16];} Key;" ptr=ffi.cast("Key *", your_string) print("First Byte of the First Key in your Array:", ptr[0].Bytes[0])更新:
让我们测试一下它如何使用包含三个键的数组:
local ffi = require'ffi' ffi.cdef"typedef struct {unsigned char Bytes[16];} Key;" local your_string = string.char(11):rep(16)..string.char(22):rep(16)..string.char(33):rep(16) local ptr=ffi.cast("Key *", your_string) print("First Byte of the First Key in your Array:", ptr[0].Bytes[0]) print("First Byte of the Second Key in your Array:", ptr[1].Bytes[0]) print("First Byte of the Third Key in your Array:", ptr[2].Bytes[0])它会打印出 11,22,33。
更新 2:
传递缓冲区的地址而不是缓冲区的内容
在主线程中
-- allocate the buffer local Keys = ffi.cast("EncryptionKeys&", ffi.C.malloc(ffi.sizeof("EncryptionKeys"))) -- write to the buffer Keys[2].Bytes[5] = 42 -- create string containing 64-bit address local string_to_send = tostring(ffi.cast("uint64_t", Keys)) -- Send string_to_send to a lane在子线程中
-- receive the string local received_string = ..... -- restore the buffer pointer local Keys = ffi.cast("EncryptionKeys&", loadstring("return "..received_string)()) -- read the data from the buffer print(Keys[2].Bytes[5])