func_adapter: use ports for arguments and return values
Current func_adapter implementation has several drawbacks. Firstly, the interface has 21 virtual method (except for virtual destructor) which means you need to implement all these methods if you need a new func_adapter. Secondly, if you need to pass arguments from Lua to func_adapter, you need to iterate over Lua stack and push the value to func_adapter with appropriate type. We have internal interface for calling persistent functions - port. Let's use it for triggers too. It will allow to easily implement new func_adapter since it will have only call method and virtual destructor. Also, it will allow to easily call any func_adapter from Lua using port_lua - now module trigger relies on the fact that there are only Lua triggers. This change reduces code complexity as well - since we are using port_c for triggers, that allows to be dumped several times, we can create helper `event_run_triggers` which incapsulates work with `event_trigger_iterator` and simply calls all the triggers from the event passing the same port with arguments. Since func_adapter is used mostly for triggers, let's make both ports arguments optional - many triggers have no arguments and almost all triggers ignore returned values. Along the way, fix a possible crash when iterator passed to transactional trigger is saved and used after the trigger is over. NO_CHANGELOG=internal NO_DOC=internal
Showing
- src/box/box.cc 11 additions, 29 deletionssrc/box/box.cc
- src/box/iproto.cc 13 additions, 17 deletionssrc/box/iproto.cc
- src/box/lua/func_adapter.c 26 additions, 299 deletionssrc/box/lua/func_adapter.c
- src/box/raft.c 2 additions, 14 deletionssrc/box/raft.c
- src/box/schema.cc 2 additions, 15 deletionssrc/box/schema.cc
- src/box/session.c 15 additions, 43 deletionssrc/box/session.c
- src/box/space.c 72 additions, 46 deletionssrc/box/space.c
- src/box/txn_event_trigger.c 95 additions, 44 deletionssrc/box/txn_event_trigger.c
- src/lib/core/event.c 31 additions, 0 deletionssrc/lib/core/event.c
- src/lib/core/event.h 17 additions, 0 deletionssrc/lib/core/event.h
- src/lib/core/func_adapter.h 17 additions, 299 deletionssrc/lib/core/func_adapter.h
- src/on_shutdown.c 1 addition, 4 deletionssrc/on_shutdown.c
- test/app-luatest/trigger_module_test.lua 4 additions, 0 deletionstest/app-luatest/trigger_module_test.lua
- test/engine-luatest/gh_5717_txn_event_triggers_test.lua 57 additions, 0 deletionstest/engine-luatest/gh_5717_txn_event_triggers_test.lua
- test/unit/lua_func_adapter.c 227 additions, 159 deletionstest/unit/lua_func_adapter.c
Loading
Please register or sign in to comment