From: Timur Safin <tsafin@tarantool.org> To: v.shpilevoy@tarantool.org, alexander.turenko@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH 2.X v4 1/4] module api: export box_tuple_validate Date: Wed, 14 Oct 2020 02:01:09 +0300 [thread overview] Message-ID: <c1e4eeb9131f548b7c43fbe205dedc04a8aaf594.1602629628.git.tsafin@tarantool.org> (raw) In-Reply-To: <cover.1602629628.git.tsafin@tarantool.org> For external merger we need means to validate tuple data, thus exporting `box_tuple_validate` which is wrapper around `tuple_validate` without revealing access to tuple internals. Part of #5384 --- src/box/tuple.c | 6 ++++ src/box/tuple.h | 11 ++++++++ src/exports.h | 1 + test/app-tap/module_api.c | 48 ++++++++++++++++++++++++++++++++ test/app-tap/module_api.test.lua | 29 ++++++++++++++++++- 5 files changed, 94 insertions(+), 1 deletion(-) diff --git a/src/box/tuple.c b/src/box/tuple.c index f3965476e..e83377c3a 100644 --- a/src/box/tuple.c +++ b/src/box/tuple.c @@ -748,6 +748,12 @@ box_tuple_new(box_tuple_format_t *format, const char *data, const char *end) return tuple_bless(ret); } +int +box_tuple_validate(box_tuple_t *tuple, box_tuple_format_t *format) +{ + return tuple_validate(format, tuple); +} + /* }}} box_tuple_* */ int diff --git a/src/box/tuple.h b/src/box/tuple.h index 53ae690cc..755aee506 100644 --- a/src/box/tuple.h +++ b/src/box/tuple.h @@ -283,6 +283,17 @@ box_tuple_update(box_tuple_t *tuple, const char *expr, const char *expr_end); box_tuple_t * box_tuple_upsert(box_tuple_t *tuple, const char *expr, const char *expr_end); +/** + * Check tuple data correspondence to the space format. + * @param tuple Tuple to validate. + * @param format Format to which the tuple must match. + * + * @retval 0 The tuple is valid. + * @retval -1 The tuple is invalid. + */ +int +box_tuple_validate(box_tuple_t *tuple, box_tuple_format_t *format); + /** \endcond public */ /** diff --git a/src/exports.h b/src/exports.h index 1d7deb518..051818ef7 100644 --- a/src/exports.h +++ b/src/exports.h @@ -78,6 +78,7 @@ EXPORT(box_tuple_to_buf) EXPORT(box_tuple_unref) EXPORT(box_tuple_update) EXPORT(box_tuple_upsert) +EXPORT(box_tuple_validate) EXPORT(box_txn) EXPORT(box_txn_alloc) EXPORT(box_txn_begin) diff --git a/test/app-tap/module_api.c b/test/app-tap/module_api.c index 8b46cdb0d..361b75873 100644 --- a/test/app-tap/module_api.c +++ b/test/app-tap/module_api.c @@ -1155,6 +1155,52 @@ test_tuple_new(struct lua_State *L) /* }}} test_tuple_new */ +/* + * Check that argument is a tuple of any format, without + * its verification + */ +static int +test_tuple_validate_default(lua_State *L) +{ + int valid = 0; + box_tuple_t *tuple = luaT_istuple(L, -1); + + if (tuple != NULL) { + box_tuple_format_t *format = box_tuple_format_default(); + valid = box_tuple_validate(tuple, format) == 0; + } + lua_pushboolean(L, valid); + + return 1; +} + +/* + * Validate tuple with format of single boolean field + */ +static int +test_tuple_validate_formatted(lua_State *L) +{ + int valid = 0; + box_tuple_t *tuple = luaT_istuple(L, -1); + + if (tuple != NULL) { + uint32_t fields[] = { 0 }; + uint32_t types[] = { FIELD_TYPE_BOOLEAN }; + box_key_def_t *key_defs[] = { + box_key_def_new(fields, types, 1) + }; + assert(key_defs[0] != NULL); + struct tuple_format *format = + box_tuple_format_new(key_defs, 1); + assert(format); + + valid = box_tuple_validate(tuple, format) == 0; + } + lua_pushboolean(L, valid); + + return 1; +} + LUA_API int luaopen_module_api(lua_State *L) { @@ -1190,6 +1236,8 @@ luaopen_module_api(lua_State *L) {"test_key_def_new_v2", test_key_def_new_v2}, {"test_key_def_dump_parts", test_key_def_dump_parts}, {"test_key_def_validate_tuple", test_key_def_validate_tuple}, + {"tuple_validate_def", test_tuple_validate_default}, + {"tuple_validate_fmt", test_tuple_validate_formatted}, {NULL, NULL} }; luaL_register(L, "module_api", lib); diff --git a/test/app-tap/module_api.test.lua b/test/app-tap/module_api.test.lua index cfb0ca00b..d250580cf 100755 --- a/test/app-tap/module_api.test.lua +++ b/test/app-tap/module_api.test.lua @@ -38,6 +38,32 @@ local function test_pushcdata(test, module) test:is(gc_counter, 1, 'pushcdata gc') end +local function test_tuple_validate(test, module) + test:plan(12) + + local nottuple1 = {} + local nottuple2 = {true, 2} + local nottuple3 = {false, nil, 2} + local nottuple4 = {1, box.NULL, 2, 3} + local tuple1 = box.tuple.new(nottuple1) + local tuple2 = box.tuple.new(nottuple2) + local tuple3 = box.tuple.new(nottuple3) + local tuple4 = box.tuple.new(nottuple4) + + test:ok(not module.tuple_validate_def(nottuple1), "not tuple 1") + test:ok(not module.tuple_validate_def(nottuple2), "not tuple 2") + test:ok(not module.tuple_validate_def(nottuple3), "not tuple 3") + test:ok(not module.tuple_validate_def(nottuple4), "not tuple 4") + test:ok(module.tuple_validate_def(tuple1), "tuple 1") + test:ok(module.tuple_validate_def(tuple2), "tuple 2") + test:ok(module.tuple_validate_def(tuple3), "tuple 3") + test:ok(module.tuple_validate_def(tuple4), "tuple 4") + test:ok(not module.tuple_validate_fmt(tuple1), "tuple 1 (fmt)") + test:ok(module.tuple_validate_fmt(tuple2), "tuple 2 (fmt)") + test:ok(module.tuple_validate_fmt(tuple3), "tuple 3 (fmt)") + test:ok(not module.tuple_validate_fmt(tuple4), "tuple 4 (fmt)") +end + local function test_iscallable(test, module) local ffi = require('ffi') @@ -172,7 +198,7 @@ local function test_iscdata(test, module) end local test = require('tap').test("module_api", function(test) - test:plan(31) + test:plan(32) local status, module = pcall(require, 'module_api') test:is(status, true, "module") test:ok(status, "module is loaded") @@ -199,6 +225,7 @@ local test = require('tap').test("module_api", function(test) test:test("pushcdata", test_pushcdata, module) test:test("iscallable", test_iscallable, module) test:test("iscdata", test_iscdata, module) + test:test("tuple_validate", test_tuple_validate, module) space:drop() end) -- 2.20.1
next prev parent reply other threads:[~2020-10-13 23:01 UTC|newest] Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-10-13 23:01 [Tarantool-patches] [PATCH 2.X v4 0/4] module api: extend for external merger Lua module Timur Safin 2020-10-13 23:01 ` Timur Safin [this message] 2020-10-15 21:38 ` [Tarantool-patches] [PATCH 2.X v4 1/4] module api: export box_tuple_validate Alexander Turenko 2020-10-15 21:47 ` Timur Safin 2020-10-15 22:03 ` Vladislav Shpilevoy 2020-10-13 23:01 ` [Tarantool-patches] [PATCH 2.X v4 2/4] module api: export box_key_def_dup Timur Safin 2020-10-13 23:01 ` [Tarantool-patches] [PATCH 2.X v4 3/4] module api: introduced luaT_toibuf instead of luaL_checkibuf Timur Safin 2020-10-14 3:50 ` Alexander Turenko 2020-10-15 21:07 ` Timur Safin 2020-10-15 22:04 ` Vladislav Shpilevoy 2020-10-13 23:01 ` [Tarantool-patches] [PATCH 2.X v4 4/4] module api: box_ibuf_* wrappers Timur Safin 2020-10-14 3:31 ` Alexander Turenko 2020-10-15 21:35 ` Timur Safin 2020-10-15 21:42 ` Alexander Turenko 2020-10-15 21:44 ` Timur Safin 2020-10-15 21:52 ` Alexander Turenko 2020-10-15 22:07 ` Vladislav Shpilevoy 2020-10-15 22:20 ` Alexander Turenko 2020-10-15 22:27 ` Timur Safin 2020-10-15 22:47 ` Alexander Turenko 2020-10-15 22:37 ` Alexander Turenko 2020-10-15 22:48 ` Alexander Turenko 2020-10-15 22:39 ` [Tarantool-patches] [PATCH 2.X v4.1] " Timur Safin 2020-10-16 6:10 ` [Tarantool-patches] [PATCH 2.X v4 0/4] module api: extend for external merger Lua module Alexander Turenko
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=c1e4eeb9131f548b7c43fbe205dedc04a8aaf594.1602629628.git.tsafin@tarantool.org \ --to=tsafin@tarantool.org \ --cc=alexander.turenko@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH 2.X v4 1/4] module api: export box_tuple_validate' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox