lua: add MsgPack encoding/decoding context to MsgPack objects
Extend the MsgPack object creation interface to push a MsgPack context required for decoding tuples coming from IPROTO, the context ownership is acquired by the new object to avoid copying (thus, a virtual `move` function is added to the MsgPack context). When a MsgPack context is owned by a MsgPack object, the lifetime of the former is controlled by the latter, hence a virtual `destroy` function is added to the MsgPack context. Needed for #8147 NO_CHANGELOG=refactoring NO_DOC=refactoring NO_TEST=refactoring
Showing
- src/box/lua/iproto.c 9 additions, 7 deletionssrc/box/lua/iproto.c
- src/box/lua/iproto.h 1 addition, 1 deletionsrc/box/lua/iproto.h
- src/lib/core/CMakeLists.txt 1 addition, 0 deletionssrc/lib/core/CMakeLists.txt
- src/lib/core/mp_ctx.c 18 additions, 0 deletionssrc/lib/core/mp_ctx.c
- src/lib/core/mp_ctx.h 44 additions, 1 deletionsrc/lib/core/mp_ctx.h
- src/lua/msgpack.c 16 additions, 17 deletionssrc/lua/msgpack.c
- src/lua/msgpack.h 5 additions, 9 deletionssrc/lua/msgpack.h
- test/unit/lua_msgpack.c 6 additions, 4 deletionstest/unit/lua_msgpack.c
Loading
Please register or sign in to comment