From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 4345B2D9BE for ; Fri, 6 Apr 2018 07:09:02 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id soYzp_9bWVuJ for ; Fri, 6 Apr 2018 07:09:02 -0400 (EDT) Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 0285D2D9BD for ; Fri, 6 Apr 2018 07:09:01 -0400 (EDT) From: Kirill Shcherbatov Subject: [tarantool-patches] [PATCH v2 0/3] JSON Paths support Date: Fri, 6 Apr 2018 14:08:54 +0300 Message-Id: Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org Cc: v.shpilevoy@tarantool.org, Kirill Shcherbatov Branch: http://github.com/tarantool/tarantool/tree/gh-1285-tuple-field-by-json-icu Issue: https://github.com/tarantool/tarantool/issues/1285 Kirill Shcherbatov (2): Introduce json_path_parser with Unicode support. Lua: implement json path access to tuple fields Vladislav Shpilevoy (1): Allow gcov on Mac cmake/profile.cmake | 9 -- src/box/CMakeLists.txt | 4 +- src/box/lua/tuple.c | 63 ++++++++---- src/box/lua/tuple.lua | 52 +++------- src/box/tuple.h | 21 ++++ src/box/tuple_format.c | 164 ++++++++++++++++++++++++++++++ src/box/tuple_format.h | 19 ++++ src/lib/CMakeLists.txt | 1 + src/lib/json/CMakeLists.txt | 6 ++ src/lib/json/path.c | 242 ++++++++++++++++++++++++++++++++++++++++++++ src/lib/json/path.h | 114 +++++++++++++++++++++ test/engine/tuple.result | 225 ++++++++++++++++++++++++++++++++++++++++ test/engine/tuple.test.lua | 66 ++++++++++++ test/unit/CMakeLists.txt | 3 + test/unit/json_path.c | 165 ++++++++++++++++++++++++++++++ test/unit/json_path.result | 84 +++++++++++++++ 16 files changed, 1171 insertions(+), 67 deletions(-) create mode 100644 src/lib/json/CMakeLists.txt create mode 100644 src/lib/json/path.c create mode 100644 src/lib/json/path.h create mode 100644 test/unit/json_path.c create mode 100644 test/unit/json_path.result -- 2.7.4