core/lua: introduce func_adapter for Lua
We are going to introduce universal triggers registry and use it for tarantool triggers (e.g. space.on_replace). However, when trigger is set to the registry, we do not know which arguments will be passed there from C. That is why current implementation of triggers in tarantool is not suitable for use in universal registry. We decided to introduce func_adapter interface which allows to call functions from any programming language. Now we support only one language, which is Lua, so for the most part this interface is needed to invert dependencies. The patch introduces func_adapter interface and its implementation for Lua functions. Part of #8657 NO_CHANGELOG=internal NO_DOC=internal
Showing
- src/box/CMakeLists.txt 1 addition, 0 deletionssrc/box/CMakeLists.txt
- src/box/lua/func_adapter.c 257 additions, 0 deletionssrc/box/lua/func_adapter.c
- src/box/lua/func_adapter.h 23 additions, 0 deletionssrc/box/lua/func_adapter.h
- src/lib/core/func_adapter.h 258 additions, 0 deletionssrc/lib/core/func_adapter.h
- test/unit/CMakeLists.txt 10 additions, 0 deletionstest/unit/CMakeLists.txt
- test/unit/lua_func_adapter.c 308 additions, 0 deletionstest/unit/lua_func_adapter.c
Loading
Please register or sign in to comment