[tarantool-patches] [PATCH 00/10] swim Lua API

Vladislav Shpilevoy v.shpilevoy at tarantool.org
Wed May 15 22:36:36 MSK 2019


This huge patchset introduces SWIM Lua module - wrapper around C SWIM. It
duplicates C API one in one, with additional internal checks related to Lua
dynamic typing.

First 3 patches are preparatory, they fix some bugs in the C module appeared
during Lua API development.

Next 4 patches are the core - 4 independent parts of Lua API. They are simple
and somewhere not efficient.

Next 3 patches are optimizations, then eliminate some performance problems of
the core patches.

Branch: http://github.com/tarantool/tarantool/tree/gerold103/swim-lua
Issue: https://github.com/tarantool/tarantool/issues/3234

Vladislav Shpilevoy (10):
  swim: fix an assertion on attempt to chage timeouts
  swim: make swim_new_round() void
  swim: validate URI in swim_probe_member()
  swim: introduce Lua interface
  swim: Lua bindings to manipulate member table
  swim: Lua bindings to access individual members
  swim: pairs() function to iterate over member table
  swim: allow to use cdata struct tt_uuid in Lua API
  swim: cache decoded payload in the Lua module
  swim: cache members in Lua member table

 extra/exports           |   26 +
 src/CMakeLists.txt      |    1 +
 src/lib/swim/swim.c     |   46 +-
 src/lib/swim/swim.h     |   12 +
 src/lib/swim/swim_ev.h  |    2 +
 src/lua/init.c          |    2 +
 src/lua/swim.lua        |  777 ++++++++++++++++++++++++++++++
 test/swim/box.lua       |   24 +
 test/swim/suite.ini     |    5 +
 test/swim/swim.result   | 1011 +++++++++++++++++++++++++++++++++++++++
 test/swim/swim.test.lua |  340 +++++++++++++
 test/unit/swim.c        |    3 +-
 test/unit/swim.result   |    7 +-
 13 files changed, 2234 insertions(+), 22 deletions(-)
 create mode 100644 src/lua/swim.lua
 create mode 100644 test/swim/box.lua
 create mode 100644 test/swim/suite.ini
 create mode 100644 test/swim/swim.result
 create mode 100644 test/swim/swim.test.lua

-- 
2.20.1 (Apple Git-117)





More information about the Tarantool-patches mailing list