Question

I want to use LuaJIT for its ability to create structs and arrays in Lua. But my functions which use the data require userdata or a string (not a string representation, just used as a container) that stores the data.

But looking through the api I don't see if this is even possible. Is it?

Thanks.

Was it helpful?

Solution

LuaJIT FFI should not be mixed with classic C/API. While there are mechanisms to convert a const char* pointer to Lua string (ffi.string), there is no way to convert an FFI struct to Lua userdata.

FFI functions have no knowledge of a lua_State, which is needed to create userdata on the C side.

I don't know how large your C/API binding base is at the moment, but one solution would be to rewrite your C/API functions to FFI, if you're set on using FFI. You can do it gradually, making sure that there is a clear line between FFI and C/API.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top