2

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.

greatwolf
  • 20,287
  • 13
  • 71
  • 105
joesmoe891
  • 223
  • 3
  • 10

1 Answers1

3

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.

W.B.
  • 5,445
  • 19
  • 29