From f3ca72f42dc0d0e54525cdd39c6d47e890e87103 Mon Sep 17 00:00:00 2001 From: Timothy Stack Date: Mon, 30 Nov 2015 21:07:18 -0800 Subject: [PATCH] [jget] fix the jget function --- src/json_ptr.hh | 25 ++++++++++++------------- test/test_json_op.sh | 8 ++++++++ test/test_sql_json_func.sh | 10 ++++++++++ 3 files changed, 30 insertions(+), 13 deletions(-) diff --git a/src/json_ptr.hh b/src/json_ptr.hh index 7f373cca..914b79c8 100644 --- a/src/json_ptr.hh +++ b/src/json_ptr.hh @@ -125,7 +125,6 @@ public: enum match_state_t { MS_DONE, MS_VALUE, - MS_ELEMENT, MS_ERR_INVALID_TYPE, MS_ERR_NO_SLASH, MS_ERR_INVALID_ESCAPE, @@ -188,16 +187,13 @@ public: retval = true; } else if (this->jp_state == MS_VALUE) { - if (this->jp_pos[0] == '/') { - this->jp_pos += 1; - this->jp_depth += 1; - this->jp_state = MS_ELEMENT; - retval = true; - } - else { - this->jp_state = MS_ERR_NO_SLASH; - retval = false; - } + if (this->jp_pos[0] == '/') { + this->jp_pos += 1; + this->jp_depth += 1; + this->jp_state = MS_VALUE; + this->jp_array_index = -1; + } + retval = true; } else { retval = true; @@ -254,7 +250,10 @@ public: void exit_container(int32_t &depth, int32_t &index) { depth -= 1; - if (this->jp_state == MS_VALUE && depth == this->jp_depth) { + if (this->jp_state == MS_VALUE && + depth == this->jp_depth && + (index == -1 || (index - 1 == this->jp_array_index)) && + this->reached_end()) { this->jp_state = MS_DONE; index = -1; } @@ -288,7 +287,7 @@ public: else { index = 0; this->jp_pos += offset; - this->jp_state = MS_ELEMENT; + this->jp_state = MS_VALUE; retval = true; } } diff --git a/test/test_json_op.sh b/test/test_json_op.sh index 6bc136da..9058c249 100644 --- a/test/test_json_op.sh +++ b/test/test_json_op.sh @@ -69,6 +69,14 @@ check_output "cannot read map" <