From: Kirill Shcherbatov <kshcherbatov@tarantool.org>
To: tarantool-patches@freelists.org
Cc: Kirill Shcherbatov <kshcherbatov@tarantool.org>
Subject: [tarantool-patches] [PATCH v2 1/1] tuple:tomap: only_names option
Date: Tue, 27 Mar 2018 18:00:43 +0300 [thread overview]
Message-ID: <1397a5af1ab577c4a04c14a2ccb779b34fa21de3.1522162837.git.kshcherbatov@tarantool.org> (raw)
In-Reply-To: <b9c53caf-7c00-6bef-3e90-c71f519553fe@tarantool.org>
Fixes #3280
---
src/box/lua/tuple.c | 24 +++++++++++++++++++--
test/engine/tuple.result | 53 ++++++++++++++++++++++++++++++++++++++++++++++
test/engine/tuple.test.lua | 16 ++++++++++++++
3 files changed, 91 insertions(+), 2 deletions(-)
diff --git a/src/box/lua/tuple.c b/src/box/lua/tuple.c
index d5ed7c4..b52072c 100644
--- a/src/box/lua/tuple.c
+++ b/src/box/lua/tuple.c
@@ -280,8 +280,21 @@ luamp_encode_extension_box(struct lua_State *L, int idx,
static int
lbox_tuple_to_map(struct lua_State *L)
{
- if (lua_gettop(L) < 1)
- luaL_error(L, "Usage: tuple:tomap()");
+ int argc = lua_gettop(L);
+ if (argc < 1 || argc > 2)
+ goto error;
+ int names_only = 0;
+ if (argc == 2) {
+ if (!lua_istable(L, 2))
+ goto error;
+ lua_getfield(L, 2, "names_only");
+ if (!lua_isboolean(L, -1) && !lua_isnil(L, -1)) {
+ goto error;
+ }
+ names_only = lua_toboolean(L, -1);
+ lua_pop(L, 1);
+ }
+
const struct tuple *tuple = lua_checktuple(L, 1);
const struct tuple_format *format = tuple_format(tuple);
const struct tuple_field *field = &format->fields[0];
@@ -294,6 +307,8 @@ lbox_tuple_to_map(struct lua_State *L)
lua_pushstring(L, field->name);
luamp_decode(L, luaL_msgpack_default, &pos);
lua_rawset(L, -3);
+ if (names_only)
+ continue;
/*
* Access the same field by an index. There is no
* copy for tables - lua optimizes it and uses
@@ -303,12 +318,17 @@ lbox_tuple_to_map(struct lua_State *L)
lua_rawget(L, -2);
lua_rawseti(L, -2, i + TUPLE_INDEX_BASE);
}
+ if (names_only)
+ return 1;
/* Access for not named fields by index. */
for (int i = n_named; i < field_count; ++i) {
luamp_decode(L, luaL_msgpack_default, &pos);
lua_rawseti(L, -2, i + TUPLE_INDEX_BASE);
}
return 1;
+error:
+ luaL_error(L, "Usage: tuple:tomap(params)");
+ return 1;
}
/**
diff --git a/test/engine/tuple.result b/test/engine/tuple.result
index b3b23b2..f9805b0 100644
--- a/test/engine/tuple.result
+++ b/test/engine/tuple.result
@@ -590,6 +590,59 @@ maplen(t1map), t1map[1], t1map[2], t1map[3]
s:drop()
---
...
+--
+-- gh-2821: tuple:tomap() names_only feature.
+--
+format = {}
+---
+...
+format[1] = {name = 'field1', type = 'unsigned' }
+---
+...
+format[2] = {name = 'field2', type = 'unsigned' }
+---
+...
+s = box.schema.create_space('test', {format = format})
+---
+...
+pk = s:create_index('pk')
+---
+...
+t = s:replace{100, 200, 300 }
+---
+...
+t:tomap({names_only = false})
+---
+- 1: 100
+ 2: 200
+ 3: 300
+ field1: 100
+ field2: 200
+...
+t:tomap({names_only = true})
+---
+- field1: 100
+ field2: 200
+...
+t:tomap({names_only = 'text'})
+---
+- error: 'Usage: tuple:tomap() or tuple:tomap({names_only = true})'
+...
+t:tomap({names_only = true}, {dummy = true})
+---
+- error: 'Usage: tuple:tomap() or tuple:tomap({names_only = true})'
+...
+t:tomap({})
+---
+- 1: 100
+ 2: 200
+ 3: 300
+ field1: 100
+ field2: 200
+...
+s:drop()
+---
+...
engine = nil
---
...
diff --git a/test/engine/tuple.test.lua b/test/engine/tuple.test.lua
index 6d7d254..3411947 100644
--- a/test/engine/tuple.test.lua
+++ b/test/engine/tuple.test.lua
@@ -200,5 +200,21 @@ t1map = t1:tomap()
maplen(t1map), t1map[1], t1map[2], t1map[3]
s:drop()
+--
+-- gh-2821: tuple:tomap() names_only feature.
+--
+format = {}
+format[1] = {name = 'field1', type = 'unsigned' }
+format[2] = {name = 'field2', type = 'unsigned' }
+s = box.schema.create_space('test', {format = format})
+pk = s:create_index('pk')
+t = s:replace{100, 200, 300 }
+t:tomap({names_only = false})
+t:tomap({names_only = true})
+t:tomap({names_only = 'text'})
+t:tomap({names_only = true}, {dummy = true})
+t:tomap({})
+s:drop()
+
engine = nil
test_run = nil
--
2.7.4
next parent reply other threads:[~2018-03-27 15:00 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <b9c53caf-7c00-6bef-3e90-c71f519553fe@tarantool.org>
2018-03-27 15:00 ` Kirill Shcherbatov [this message]
2018-03-27 15:34 ` [tarantool-patches] " v.shpilevoy
2018-03-28 8:01 ` Kirill Shcherbatov
2018-03-28 8:05 ` Kirill Shcherbatov
2018-03-28 8:16 ` v.shpilevoy
2018-03-28 10:20 ` Vladimir Davydov
2018-03-27 10:06 [tarantool-patches] " Kirill Shcherbatov
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=1397a5af1ab577c4a04c14a2ccb779b34fa21de3.1522162837.git.kshcherbatov@tarantool.org \
--to=kshcherbatov@tarantool.org \
--cc=tarantool-patches@freelists.org \
--subject='Re: [tarantool-patches] [PATCH v2 1/1] tuple:tomap: only_names option' \
/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