2014-05-05 13:44:58 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY TIMOTHY STACK AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @file json_ptr.hh
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __json_ptr_hh
|
|
|
|
#define __json_ptr_hh
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "yajlpp.hh"
|
2015-12-09 07:10:48 +00:00
|
|
|
#include "yajl/api/yajl_tree.h"
|
2014-05-05 13:44:58 +00:00
|
|
|
#include "lnav_log.hh"
|
|
|
|
|
|
|
|
class json_ptr_walk {
|
|
|
|
public:
|
|
|
|
const static yajl_callbacks callbacks;
|
|
|
|
|
2015-12-03 13:30:01 +00:00
|
|
|
json_ptr_walk() : jpw_handle(yajl_free), jpw_max_ptr_len(0) {
|
2014-05-05 13:44:58 +00:00
|
|
|
this->jpw_handle = yajl_alloc(&callbacks, NULL, this);
|
|
|
|
};
|
|
|
|
|
|
|
|
yajl_status parse(const char *buffer, ssize_t len) {
|
|
|
|
yajl_status retval;
|
|
|
|
|
|
|
|
retval = yajl_parse(this->jpw_handle, (const unsigned char *)buffer, len);
|
|
|
|
this->update_error_msg(retval, buffer, len);
|
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
yajl_status complete_parse() {
|
|
|
|
yajl_status retval;
|
|
|
|
|
|
|
|
retval = yajl_complete_parse(this->jpw_handle);
|
|
|
|
this->update_error_msg(retval, NULL, -1);
|
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
void update_error_msg(yajl_status status, const char *buffer, ssize_t len) {
|
|
|
|
switch (status) {
|
|
|
|
case yajl_status_ok:
|
|
|
|
break;
|
|
|
|
case yajl_status_client_canceled:
|
|
|
|
this->jpw_error_msg = "internal error";
|
|
|
|
break;
|
|
|
|
case yajl_status_error:
|
|
|
|
this->jpw_error_msg = std::string((const char *)yajl_get_error(
|
|
|
|
this->jpw_handle, 1, (const unsigned char *)buffer, len));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
this->jpw_values.clear();
|
|
|
|
};
|
|
|
|
|
|
|
|
void inc_array_index() {
|
|
|
|
if (!this->jpw_array_indexes.empty() &&
|
|
|
|
this->jpw_array_indexes.back() != -1) {
|
|
|
|
this->jpw_array_indexes.back() += 1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string current_ptr() {
|
|
|
|
std::string retval;
|
|
|
|
|
2015-04-02 04:09:49 +00:00
|
|
|
for (size_t lpc = 0; lpc < this->jpw_array_indexes.size(); lpc++) {
|
2014-05-05 13:44:58 +00:00
|
|
|
retval.append("/");
|
|
|
|
if (this->jpw_array_indexes[lpc] == -1) {
|
|
|
|
retval.append(this->jpw_keys[lpc]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
char num[64];
|
|
|
|
|
|
|
|
snprintf(num, sizeof(num), "%d", this->jpw_array_indexes[lpc]);
|
|
|
|
retval.append(num);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 13:30:01 +00:00
|
|
|
this->jpw_max_ptr_len = std::max(this->jpw_max_ptr_len, retval.size());
|
|
|
|
|
2014-05-05 13:44:58 +00:00
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
2015-12-09 07:10:48 +00:00
|
|
|
struct walk_triple {
|
|
|
|
walk_triple(std::string ptr, yajl_type type, std::string value)
|
|
|
|
: wt_ptr(ptr), wt_type(type), wt_value(value) {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string wt_ptr;
|
|
|
|
yajl_type wt_type;
|
|
|
|
std::string wt_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<walk_triple> walk_list_t;
|
2014-05-05 13:44:58 +00:00
|
|
|
|
|
|
|
auto_mem<yajl_handle_t> jpw_handle;
|
|
|
|
std::string jpw_error_msg;
|
2015-12-09 07:10:48 +00:00
|
|
|
walk_list_t jpw_values;
|
2014-05-05 13:44:58 +00:00
|
|
|
std::vector<std::string> jpw_keys;
|
|
|
|
std::vector<int32_t> jpw_array_indexes;
|
2015-12-03 13:30:01 +00:00
|
|
|
size_t jpw_max_ptr_len;
|
2014-05-05 13:44:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class json_ptr {
|
|
|
|
public:
|
|
|
|
enum match_state_t {
|
|
|
|
MS_DONE,
|
|
|
|
MS_VALUE,
|
|
|
|
MS_ERR_INVALID_TYPE,
|
|
|
|
MS_ERR_NO_SLASH,
|
|
|
|
MS_ERR_INVALID_ESCAPE,
|
|
|
|
MS_ERR_INVALID_INDEX,
|
|
|
|
};
|
|
|
|
|
|
|
|
static size_t encode(char *dst, size_t dst_len, const char *src, size_t src_len = -1) {
|
|
|
|
size_t retval = 0;
|
|
|
|
|
2015-04-02 04:09:49 +00:00
|
|
|
if (src_len == (size_t)-1) {
|
2014-05-05 13:44:58 +00:00
|
|
|
src_len = strlen(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t lpc = 0; lpc < src_len; lpc++) {
|
|
|
|
switch (src[lpc]) {
|
|
|
|
case '/':
|
|
|
|
case '~':
|
|
|
|
if (retval < dst_len) {
|
|
|
|
dst[retval] = '~';
|
|
|
|
retval += 1;
|
|
|
|
if (src[lpc] == '~') {
|
|
|
|
dst[retval] = '0';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dst[retval] = '1';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
retval += 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (retval < dst_len) {
|
|
|
|
dst[retval] = src[lpc];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
retval += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
json_ptr(const char *value)
|
|
|
|
: jp_value(value), jp_pos(value), jp_depth(0), jp_array_index(-1),
|
|
|
|
jp_state(MS_VALUE) {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
bool expect_map(int32_t &depth) {
|
|
|
|
bool retval;
|
|
|
|
|
|
|
|
if (this->jp_state == MS_DONE) {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
else if (depth != this->jp_depth) {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
else if (this->reached_end()) {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
else if (this->jp_state == MS_VALUE) {
|
2015-12-01 05:07:18 +00:00
|
|
|
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;
|
2014-05-05 13:44:58 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
depth += 1;
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool at_key(int32_t depth, const char *component, ssize_t len = -1) {
|
|
|
|
const char *component_end;
|
|
|
|
int lpc;
|
|
|
|
|
|
|
|
if (this->jp_state == MS_DONE || depth != this->jp_depth) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len == -1) {
|
|
|
|
len = strlen(component);
|
|
|
|
}
|
|
|
|
component_end = component + len;
|
|
|
|
|
|
|
|
for (lpc = 0; component < component_end; lpc++, component++) {
|
|
|
|
char ch = this->jp_pos[lpc];
|
|
|
|
|
|
|
|
if (this->jp_pos[lpc] == '~') {
|
|
|
|
switch (this->jp_pos[lpc + 1]) {
|
|
|
|
case '0':
|
|
|
|
ch = '~';
|
|
|
|
break;
|
|
|
|
case '1':
|
|
|
|
ch = '/';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
this->jp_state = MS_ERR_INVALID_ESCAPE;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
lpc += 1;
|
|
|
|
}
|
|
|
|
else if (this->jp_pos[lpc] == '/') {
|
|
|
|
ch = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch != *component) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this->jp_pos += lpc;
|
|
|
|
this->jp_state = MS_VALUE;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
void exit_container(int32_t &depth, int32_t &index) {
|
|
|
|
depth -= 1;
|
2015-12-01 05:07:18 +00:00
|
|
|
if (this->jp_state == MS_VALUE &&
|
|
|
|
depth == this->jp_depth &&
|
|
|
|
(index == -1 || (index - 1 == this->jp_array_index)) &&
|
|
|
|
this->reached_end()) {
|
2014-05-05 13:44:58 +00:00
|
|
|
this->jp_state = MS_DONE;
|
|
|
|
index = -1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool expect_array(int32_t &depth, int32_t &index) {
|
|
|
|
bool retval;
|
|
|
|
|
|
|
|
if (this->jp_state == MS_DONE) {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
else if (depth != this->jp_depth) {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
else if (this->reached_end()) {
|
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
else if (this->jp_pos[0] == '/') {
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
this->jp_depth += 1;
|
|
|
|
|
|
|
|
if (sscanf(this->jp_pos, "/%d%n", &this->jp_array_index, &offset) != 1) {
|
|
|
|
this->jp_state = MS_ERR_INVALID_INDEX;
|
2016-03-11 06:11:53 +00:00
|
|
|
retval = true;
|
2014-05-05 13:44:58 +00:00
|
|
|
}
|
|
|
|
else if (this->jp_pos[offset] != '\0' && this->jp_pos[offset] != '/') {
|
|
|
|
this->jp_state = MS_ERR_INVALID_INDEX;
|
2016-03-11 06:11:53 +00:00
|
|
|
retval = true;
|
2014-05-05 13:44:58 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
index = 0;
|
|
|
|
this->jp_pos += offset;
|
2015-12-01 05:07:18 +00:00
|
|
|
this->jp_state = MS_VALUE;
|
2014-05-05 13:44:58 +00:00
|
|
|
retval = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this->jp_state = MS_ERR_NO_SLASH;
|
2016-03-11 06:11:53 +00:00
|
|
|
retval = true;
|
2014-05-05 13:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
depth += 1;
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool at_index(int32_t &depth, int32_t &index, bool primitive = true) {
|
|
|
|
bool retval;
|
|
|
|
|
|
|
|
if (this->jp_state == MS_DONE) {
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
else if (depth < this->jp_depth) {
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
else if (depth == this->jp_depth) {
|
|
|
|
if (index == -1) {
|
|
|
|
if (this->jp_array_index == -1) {
|
|
|
|
retval = this->reached_end();
|
|
|
|
if (primitive && retval) {
|
|
|
|
this->jp_state = MS_DONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (index == this->jp_array_index) {
|
|
|
|
retval = this->reached_end();
|
|
|
|
index = -1;
|
|
|
|
if (primitive && retval) {
|
|
|
|
this->jp_state = MS_DONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
index += 1;
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (index == -1) {
|
|
|
|
retval = this->reached_end();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool reached_end() {
|
|
|
|
return this->jp_pos[0] == '\0';
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string error_msg() const {
|
|
|
|
std::string retval;
|
|
|
|
|
|
|
|
switch (this->jp_state) {
|
|
|
|
case MS_ERR_INVALID_ESCAPE:
|
|
|
|
retval = ("invalid escape sequence near -- " + std::string(this->jp_pos));
|
|
|
|
break;
|
|
|
|
case MS_ERR_INVALID_INDEX:
|
|
|
|
retval = ("expecting array index at -- " + std::string(this->jp_pos));
|
|
|
|
break;
|
|
|
|
case MS_ERR_INVALID_TYPE:
|
|
|
|
retval = ("expecting container at -- " + std::string(
|
|
|
|
this->jp_value, this->jp_pos - this->jp_value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *jp_value;
|
|
|
|
const char *jp_pos;
|
|
|
|
int32_t jp_depth;
|
|
|
|
int32_t jp_array_index;
|
|
|
|
match_state_t jp_state;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|