hcl/lib/json.c

761 lines
17 KiB
C
Raw Normal View History

2018-04-21 02:13:53 +00:00
/*
* $Id$
*
Copyright (c) 2016-2018 Chung, Hyung-Hwan. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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.
*/
#include "hcl-json.h"
#include "hcl-prv.h"
#include <string.h>
#include <errno.h>
#define HCL_JSON_TOKEN_NAME_ALIGN 64
struct dummy_hcl_xtn_t
{
2018-04-21 05:36:06 +00:00
hcl_jsoner_t* json;
2018-04-21 02:13:53 +00:00
};
typedef struct dummy_hcl_xtn_t dummy_hcl_xtn_t;
2018-04-21 05:36:06 +00:00
enum hcl_jsoner_reply_attr_type_t
2018-04-21 02:13:53 +00:00
{
HCL_JSON_REPLY_ATTR_TYPE_UNKNOWN,
HCL_JSON_REPLY_ATTR_TYPE_DATA
};
2018-04-21 05:36:06 +00:00
typedef enum hcl_jsoner_reply_attr_type_t hcl_jsoner_reply_attr_type_t;
2018-04-21 02:13:53 +00:00
2018-04-22 18:18:45 +00:00
typedef struct hcl_jsoner_state_node_t hcl_jsoner_state_node_t;
struct hcl_jsoner_state_node_t
{
hcl_jsoner_state_t state;
union
{
struct
{
int escaped;
int digit_count;
hcl_ooch_t acc;
} qv;
} u;
hcl_jsoner_state_node_t* next;
};
2018-04-21 05:36:06 +00:00
struct hcl_jsoner_t
2018-04-21 02:13:53 +00:00
{
hcl_mmgr_t* mmgr;
hcl_cmgr_t* cmgr;
2018-04-21 05:36:06 +00:00
hcl_jsoner_prim_t prim;
2018-04-21 02:13:53 +00:00
hcl_t* dummy_hcl;
hcl_errnum_t errnum;
struct
{
hcl_ooch_t buf[HCL_ERRMSG_CAPA];
hcl_oow_t len;
} errmsg;
struct
{
unsigned int trait;
unsigned int logmask;
} cfg;
2018-04-22 18:18:45 +00:00
hcl_jsoner_state_node_t state_top;
hcl_jsoner_state_node_t* state_stack;
2018-04-21 02:13:53 +00:00
struct
{
2018-04-22 18:18:45 +00:00
hcl_ooch_t* ptr;
2018-04-21 02:13:53 +00:00
hcl_oow_t len;
hcl_oow_t capa;
2018-04-22 18:18:45 +00:00
} tok;
2018-04-21 02:13:53 +00:00
};
/* ========================================================================= */
static void log_write_for_dummy (hcl_t* hcl, unsigned int mask, const hcl_ooch_t* msg, hcl_oow_t len)
{
dummy_hcl_xtn_t* xtn = (dummy_hcl_xtn_t*)hcl_getxtn(hcl);
2018-04-21 05:36:06 +00:00
hcl_jsoner_t* json;
2018-04-21 02:13:53 +00:00
json = xtn->json;
json->prim.log_write (json, mask, msg, len);
}
static void syserrstrb (hcl_t* hcl, int syserr, hcl_bch_t* buf, hcl_oow_t len)
{
#if defined(HAVE_STRERROR_R)
strerror_r (syserr, buf, len);
#else
/* this may not be thread safe */
hcl_copy_bcstr (buf, len, strerror(syserr));
#endif
}
/* ========================================================================= */
static HCL_INLINE int is_spacechar (hcl_bch_t c)
{
/* TODO: handle other space unicode characters */
switch (c)
{
case ' ':
case '\f': /* formfeed */
case '\r': /* carriage return */
case '\t': /* horizon tab */
case '\v': /* vertical tab */
return 1;
default:
return 0;
}
}
static HCL_INLINE int is_alphachar (hcl_ooci_t c)
{
/* TODO: support full unicode */
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
}
static HCL_INLINE int is_digitchar (hcl_ooci_t c)
{
/* TODO: support full unicode */
return (c >= '0' && c <= '9');
}
2018-04-22 18:18:45 +00:00
static void clear_token (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
json->tok.len = 0;
2018-04-21 02:13:53 +00:00
}
2018-04-22 18:18:45 +00:00
static int add_char_to_token (hcl_jsoner_t* json, hcl_ooch_t ch)
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
if (json->tok.len >= json->tok.capa)
2018-04-21 02:13:53 +00:00
{
hcl_ooch_t* tmp;
hcl_oow_t newcapa;
2018-04-22 18:18:45 +00:00
newcapa = HCL_ALIGN_POW2(json->tok.len + 1, HCL_JSON_TOKEN_NAME_ALIGN);
tmp = hcl_jsoner_reallocmem(json, json->tok.ptr, newcapa * HCL_SIZEOF(*tmp));
2018-04-21 02:13:53 +00:00
if (!tmp) return -1;
2018-04-22 18:18:45 +00:00
json->tok.capa = newcapa;
json->tok.ptr = tmp;
2018-04-21 02:13:53 +00:00
}
2018-04-22 18:18:45 +00:00
json->tok.ptr[json->tok.len++] = ch;
2018-04-21 02:13:53 +00:00
return 0;
}
2018-04-21 05:36:06 +00:00
static HCL_INLINE int is_token (hcl_jsoner_t* json, const hcl_bch_t* str)
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
return hcl_comp_oochars_bcstr(json->tok.ptr, json->tok.len, str) == 0;
2018-04-21 02:13:53 +00:00
}
2018-04-21 05:36:06 +00:00
static HCL_INLINE int is_token_integer (hcl_jsoner_t* json, hcl_oow_t* value)
2018-04-21 02:13:53 +00:00
{
hcl_oow_t i;
hcl_oow_t v = 0;
2018-04-22 18:18:45 +00:00
if (json->tok.len <= 0) return 0;
2018-04-21 02:13:53 +00:00
2018-04-22 18:18:45 +00:00
for (i = 0; i < json->tok.len; i++)
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
if (!is_digitchar(json->tok.ptr[i])) return 0;
v = v * 10 + (json->tok.ptr[i] - '0');
2018-04-21 02:13:53 +00:00
}
*value = v;
return 1;
}
static HCL_INLINE hcl_ooch_t unescape (hcl_ooch_t c)
{
switch (c)
{
2018-04-22 18:18:45 +00:00
case 'a': return '\a';
case 'b': return '\b';
case 'f': return '\f';
2018-04-21 02:13:53 +00:00
case 'n': return '\n';
case 'r': return '\r';
case 't': return '\t';
case 'v': return '\v';
default: return c;
}
2018-04-22 18:18:45 +00:00
}
static int push_state (hcl_jsoner_t* json, hcl_jsoner_state_t state)
{
hcl_jsoner_state_node_t* ss;
ss = hcl_jsoner_callocmem(json, HCL_SIZEOF(*ss));
if (!ss) return -1;
ss->state = state;
ss->next = json->state_stack;
json->state_stack = ss;
return 0;
}
static void pop_state (hcl_jsoner_t* json)
{
hcl_jsoner_state_node_t* ss;
ss = json->state_stack;
HCL_ASSERT (json->dummy_hcl, ss != HCL_NULL && ss != &json->state_top);
json->state_stack = ss->next;
/* TODO: don't free this. move it to the free list? */
hcl_jsoner_freemem (json, ss);
}
static void pop_all_states (hcl_jsoner_t* json)
{
while (json->state_stack != &json->state_top) pop_state (json);
}
static int handle_quoted_value_char (hcl_jsoner_t* json, hcl_ooci_t c)
{
if (json->state_stack->u.qv.escaped >= 2)
{
if (c >= '0' && c <= '9')
{
json->state_stack->u.qv.acc = json->state_stack->u.qv.acc * 16 + c - '0';
json->state_stack->u.qv.digit_count++;
if (json->state_stack->u.qv.digit_count >= json->state_stack->u.qv.escaped) goto add_qv_acc;
}
else if (c >= 'a' && c <= 'f')
{
json->state_stack->u.qv.acc = json->state_stack->u.qv.acc * 16 + c - 'a' + 10;
json->state_stack->u.qv.digit_count++;
if (json->state_stack->u.qv.digit_count >= json->state_stack->u.qv.escaped) goto add_qv_acc;
}
else if (c >= 'A' && c <= 'F')
{
json->state_stack->u.qv.acc = json->state_stack->u.qv.acc * 16 + c - 'A' + 10;
json->state_stack->u.qv.digit_count++;
if (json->state_stack->u.qv.digit_count >= json->state_stack->u.qv.escaped) goto add_qv_acc;
}
else
{
add_qv_acc:
if (add_char_to_token(json, json->state_stack->u.qv.acc) <= -1) return -1;
json->state_stack->u.qv.escaped = 0;
}
}
else if (json->state_stack->u.qv.escaped == 1)
{
if (c == 'x')
{
json->state_stack->u.qv.escaped = 2;
json->state_stack->u.qv.digit_count = 0;
json->state_stack->u.qv.acc = 0;
}
else if (c == 'u')
{
json->state_stack->u.qv.escaped = 4;
json->state_stack->u.qv.digit_count = 0;
json->state_stack->u.qv.acc = 0;
}
else if (c == 'U')
{
json->state_stack->u.qv.escaped = 8;
json->state_stack->u.qv.digit_count = 0;
json->state_stack->u.qv.acc = 0;
}
else
{
json->state_stack->u.qv.escaped = 0;
if (add_char_to_token(json, unescape(c)) <= -1) return -1;
}
}
else if (c == '\\')
{
json->state_stack->u.qv.escaped = 1;
}
else if (c == '\"')
{
pop_state (json);
HCL_LOG2 (json->dummy_hcl, HCL_LOG_APP | HCL_LOG_FATAL, "[%.*js]\n", json->tok.len, json->tok.ptr);
/* TODO: call callback ARRAY_VALUE*/
}
else
{
if (add_char_to_token(json, c) <= -1) return -1;
}
return 0;
}
static int handle_numeric_value_char (hcl_jsoner_t* json, hcl_ooci_t c)
{
/* TODO: */
return -1;
2018-04-21 02:13:53 +00:00
}
2018-04-21 05:36:06 +00:00
static int handle_char (hcl_jsoner_t* json, hcl_ooci_t c, hcl_oow_t nbytes)
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
if (c == HCL_OOCI_EOF)
{
if (json->state_stack->state == HCL_JSON_STATE_START)
{
/* no input data */
return 0;
}
else
{
hcl_jsoner_seterrbfmt (json, HCL_EFINIS, "unexpected end of data");
return -1;
}
}
printf ("handling [%c] %d\n", c, (int)nbytes);
switch (json->state_stack->state)
2018-04-21 02:13:53 +00:00
{
case HCL_JSON_STATE_START:
2018-04-22 18:18:45 +00:00
if (c == '[')
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
if (push_state(json, HCL_JSON_STATE_IN_ARRAY) <= -1) return -1;
2018-04-21 02:13:53 +00:00
break;
}
else if (c == '{')
{
2018-04-22 18:18:45 +00:00
if (push_state(json, HCL_JSON_STATE_IN_DIC) <= -1) return -1;
2018-04-21 02:13:53 +00:00
break;
}
else if (is_spacechar(c))
{
/* skip whitespaces at the beginning of the start line before the reply name */
break;
}
else
{
2018-04-21 05:36:06 +00:00
hcl_jsoner_seterrbfmt (json, HCL_EINVAL, "not starting with [ or { - %jc", (hcl_ooch_t)c);
2018-04-21 02:13:53 +00:00
goto oops;
}
break;
2018-04-22 18:18:45 +00:00
case HCL_JSON_STATE_IN_ARRAY:
if (c == ']')
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
pop_state (json);
2018-04-21 02:13:53 +00:00
break;
}
2018-04-22 18:18:45 +00:00
else if (c == ',')
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
/* TODO: handle this */
2018-04-21 02:13:53 +00:00
}
else if (is_spacechar(c))
{
break;
}
else if (c == '\"')
{
2018-04-22 18:18:45 +00:00
if (push_state(json, HCL_JSON_STATE_IN_QUOTED_VALUE) <= -1) return -1;
clear_token (json);
2018-04-21 02:13:53 +00:00
break;
}
else if (is_alphachar(c) || is_digitchar(c))
{
break;
}
else
{
2018-04-22 18:18:45 +00:00
hcl_jsoner_seterrbfmt (json, HCL_EINVAL, "wrong character inside array - %jc", (hcl_ooch_t)c);
2018-04-21 02:13:53 +00:00
goto oops;
}
break;
2018-04-22 18:18:45 +00:00
case HCL_JSON_STATE_IN_DIC:
if (c == '}')
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
pop_state (json);
2018-04-21 02:13:53 +00:00
break;
}
else if (is_spacechar(c))
{
break;
}
else if (c == '\"')
{
break;
}
else if (is_alphachar(c) || is_digitchar(c))
{
break;
}
else
{
2018-04-22 18:18:45 +00:00
hcl_jsoner_seterrbfmt (json, HCL_EINVAL, "wrong character inside dictionary - %jc", (hcl_ooch_t)c);
2018-04-21 02:13:53 +00:00
goto oops;
}
break;
case HCL_JSON_STATE_IN_WORD_VALUE:
break;
case HCL_JSON_STATE_IN_QUOTED_VALUE:
2018-04-22 18:18:45 +00:00
if (handle_quoted_value_char(json, c) <= -1) goto oops;
2018-04-21 02:13:53 +00:00
break;
case HCL_JSON_STATE_IN_NUMERIC_VALUE:
2018-04-22 18:18:45 +00:00
if (handle_numeric_value_char(json, c) <= -1) goto oops;
2018-04-21 02:13:53 +00:00
break;
default:
2018-04-22 18:18:45 +00:00
hcl_jsoner_seterrbfmt (json, HCL_EINTERN, "internal error - must not be called for state %d", (int)json->state_stack->state);
2018-04-21 02:13:53 +00:00
goto oops;
}
return 0;
oops:
return -1;
}
2018-04-21 05:36:06 +00:00
static int feed_json_data (hcl_jsoner_t* json, const hcl_bch_t* data, hcl_oow_t len, hcl_oow_t* xlen)
2018-04-21 02:13:53 +00:00
{
const hcl_bch_t* ptr;
const hcl_bch_t* end;
ptr = data;
end = ptr + len;
while (ptr < end)
{
hcl_ooci_t c;
hcl_oow_t bcslen;
#if defined(HCL_OOCH_IS_UCH)
hcl_oow_t ucslen;
hcl_ooch_t uc;
int n;
bcslen = end - ptr;
ucslen = 1;
n = hcl_conv_bchars_to_uchars_with_cmgr(ptr, &bcslen, &uc, &ucslen, json->cmgr, 0);
if (n <= -1)
{
if (n == -3)
{
/* incomplete sequence */
*xlen = ptr - data;
return 0; /* feed more for incomplete sequence */
}
2018-04-22 18:18:45 +00:00
/* advance 1 byte without proper conversion */
uc = *ptr;
bcslen = 1;
2018-04-21 02:13:53 +00:00
}
ptr += bcslen;
c = uc;
#else
bcslen = 1;
c = *ptr++;
#endif
2018-04-22 18:18:45 +00:00
/* handle a signle character */
2018-04-21 02:13:53 +00:00
if (handle_char(json, c, bcslen) <= -1) goto oops;
}
*xlen = ptr - data;
return 1;
oops:
/* TODO: compute the number of processed bytes so far and return it via a parameter??? */
/*printf ("feed oops....\n");*/
return -1;
}
/* ========================================================================= */
2018-04-21 05:36:06 +00:00
hcl_jsoner_t* hcl_jsoner_open (hcl_mmgr_t* mmgr, hcl_oow_t xtnsize, hcl_jsoner_prim_t* prim, hcl_errnum_t* errnum)
2018-04-21 02:13:53 +00:00
{
2018-04-21 05:36:06 +00:00
hcl_jsoner_t* json;
2018-04-21 02:13:53 +00:00
hcl_t* hcl;
hcl_vmprim_t vmprim;
dummy_hcl_xtn_t* xtn;
2018-04-21 05:36:06 +00:00
json = (hcl_jsoner_t*)HCL_MMGR_ALLOC(mmgr, HCL_SIZEOF(*json) + xtnsize);
2018-04-21 02:13:53 +00:00
if (!json)
{
if (errnum) *errnum = HCL_ESYSMEM;
return HCL_NULL;
}
HCL_MEMSET (&vmprim, 0, HCL_SIZEOF(vmprim));
vmprim.log_write = log_write_for_dummy;
vmprim.syserrstrb = syserrstrb;
hcl = hcl_open(mmgr, HCL_SIZEOF(*xtn), 2048, &vmprim, errnum);
if (!hcl)
{
HCL_MMGR_FREE (mmgr, json);
return HCL_NULL;
}
xtn = (dummy_hcl_xtn_t*)hcl_getxtn(hcl);
xtn->json = json;
HCL_MEMSET (json, 0, HCL_SIZEOF(*json) + xtnsize);
json->mmgr = mmgr;
json->cmgr = hcl_get_utf8_cmgr();
json->prim = *prim;
json->dummy_hcl = hcl;
json->cfg.logmask = ~0u;
/* the dummy hcl is used for this json to perform primitive operations
* such as getting system time or logging. so the heap size doesn't
* need to be changed from the tiny value set above. */
hcl_setoption (json->dummy_hcl, HCL_LOG_MASK, &json->cfg.logmask);
hcl_setcmgr (json->dummy_hcl, json->cmgr);
2018-04-22 18:18:45 +00:00
json->state_top.state = HCL_JSON_STATE_START;
json->state_top.next = HCL_NULL;
json->state_stack = &json->state_top;
2018-04-21 02:13:53 +00:00
return json;
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_close (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
pop_all_states (json);
if (json->tok.ptr) hcl_jsoner_freemem (json, json->tok.ptr);
2018-04-21 02:13:53 +00:00
hcl_close (json->dummy_hcl);
HCL_MMGR_FREE (json->mmgr, json);
}
2018-04-21 05:36:06 +00:00
int hcl_jsoner_setoption (hcl_jsoner_t* json, hcl_jsoner_option_t id, const void* value)
2018-04-21 02:13:53 +00:00
{
switch (id)
{
case HCL_JSON_TRAIT:
json->cfg.trait = *(const unsigned int*)value;
return 0;
case HCL_JSON_LOG_MASK:
json->cfg.logmask = *(const unsigned int*)value;
if (json->dummy_hcl)
{
/* setting this affects the dummy hcl immediately.
* existing hcl instances inside worker threads won't get
* affected. new hcl instances to be created later
* is supposed to use the new value */
hcl_setoption (json->dummy_hcl, HCL_LOG_MASK, value);
}
return 0;
}
2018-04-21 05:36:06 +00:00
hcl_jsoner_seterrnum (json, HCL_EINVAL);
2018-04-21 02:13:53 +00:00
return -1;
}
2018-04-21 05:36:06 +00:00
int hcl_jsoner_getoption (hcl_jsoner_t* json, hcl_jsoner_option_t id, void* value)
2018-04-21 02:13:53 +00:00
{
switch (id)
{
case HCL_JSON_TRAIT:
*(unsigned int*)value = json->cfg.trait;
return 0;
case HCL_JSON_LOG_MASK:
*(unsigned int*)value = json->cfg.logmask;
return 0;
};
2018-04-21 05:36:06 +00:00
hcl_jsoner_seterrnum (json, HCL_EINVAL);
2018-04-21 02:13:53 +00:00
return -1;
}
2018-04-21 05:36:06 +00:00
void* hcl_jsoner_getxtn (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
return (void*)(json + 1);
}
2018-04-21 05:36:06 +00:00
hcl_mmgr_t* hcl_jsoner_getmmgr (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
return json->mmgr;
}
2018-04-21 05:36:06 +00:00
hcl_cmgr_t* hcl_jsoner_getcmgr (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
return json->cmgr;
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_setcmgr (hcl_jsoner_t* json, hcl_cmgr_t* cmgr)
2018-04-21 02:13:53 +00:00
{
json->cmgr = cmgr;
}
2018-04-21 05:36:06 +00:00
hcl_errnum_t hcl_jsoner_geterrnum (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
return json->errnum;
}
2018-04-21 05:36:06 +00:00
const hcl_ooch_t* hcl_jsoner_geterrstr (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
return hcl_errnum_to_errstr(json->errnum);
}
2018-04-21 05:36:06 +00:00
const hcl_ooch_t* hcl_jsoner_geterrmsg (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
if (json->errmsg.len <= 0) return hcl_errnum_to_errstr(json->errnum);
return json->errmsg.buf;
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_seterrnum (hcl_jsoner_t* json, hcl_errnum_t errnum)
2018-04-21 02:13:53 +00:00
{
/*if (json->shuterr) return; */
json->errnum = errnum;
json->errmsg.len = 0;
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_seterrbfmt (hcl_jsoner_t* json, hcl_errnum_t errnum, const hcl_bch_t* fmt, ...)
2018-04-21 02:13:53 +00:00
{
va_list ap;
va_start (ap, fmt);
hcl_seterrbfmtv (json->dummy_hcl, errnum, fmt, ap);
va_end (ap);
HCL_ASSERT (json->dummy_hcl, HCL_COUNTOF(json->errmsg.buf) == HCL_COUNTOF(json->dummy_hcl->errmsg.buf));
json->errnum = errnum;
hcl_copy_oochars (json->errmsg.buf, json->dummy_hcl->errmsg.buf, HCL_COUNTOF(json->errmsg.buf));
json->errmsg.len = json->dummy_hcl->errmsg.len;
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_seterrufmt (hcl_jsoner_t* json, hcl_errnum_t errnum, const hcl_uch_t* fmt, ...)
2018-04-21 02:13:53 +00:00
{
va_list ap;
va_start (ap, fmt);
hcl_seterrufmtv (json->dummy_hcl, errnum, fmt, ap);
va_end (ap);
HCL_ASSERT (json->dummy_hcl, HCL_COUNTOF(json->errmsg.buf) == HCL_COUNTOF(json->dummy_hcl->errmsg.buf));
json->errnum = errnum;
hcl_copy_oochars (json->errmsg.buf, json->dummy_hcl->errmsg.buf, HCL_COUNTOF(json->errmsg.buf));
json->errmsg.len = json->dummy_hcl->errmsg.len;
}
/* ========================================================================= */
2018-04-21 05:36:06 +00:00
void hcl_jsoner_logbfmt (hcl_jsoner_t* json, unsigned int mask, const hcl_bch_t* fmt, ...)
2018-04-21 02:13:53 +00:00
{
va_list ap;
va_start (ap, fmt);
hcl_logbfmtv (json->dummy_hcl, mask, fmt, ap);
va_end (ap);
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_logufmt (hcl_jsoner_t* json, unsigned int mask, const hcl_uch_t* fmt, ...)
2018-04-21 02:13:53 +00:00
{
va_list ap;
va_start (ap, fmt);
hcl_logufmtv (json->dummy_hcl, mask, fmt, ap);
va_end (ap);
}
/* ========================================================================= */
2018-04-21 05:36:06 +00:00
void* hcl_jsoner_allocmem (hcl_jsoner_t* json, hcl_oow_t size)
2018-04-21 02:13:53 +00:00
{
void* ptr;
ptr = HCL_MMGR_ALLOC(json->mmgr, size);
2018-04-21 05:36:06 +00:00
if (!ptr) hcl_jsoner_seterrnum (json, HCL_ESYSMEM);
2018-04-21 02:13:53 +00:00
return ptr;
}
2018-04-21 05:36:06 +00:00
void* hcl_jsoner_callocmem (hcl_jsoner_t* json, hcl_oow_t size)
2018-04-21 02:13:53 +00:00
{
void* ptr;
ptr = HCL_MMGR_ALLOC(json->mmgr, size);
2018-04-21 05:36:06 +00:00
if (!ptr) hcl_jsoner_seterrnum (json, HCL_ESYSMEM);
2018-04-21 02:13:53 +00:00
else HCL_MEMSET (ptr, 0, size);
return ptr;
}
2018-04-21 05:36:06 +00:00
void* hcl_jsoner_reallocmem (hcl_jsoner_t* json, void* ptr, hcl_oow_t size)
2018-04-21 02:13:53 +00:00
{
ptr = HCL_MMGR_REALLOC(json->mmgr, ptr, size);
2018-04-21 05:36:06 +00:00
if (!ptr) hcl_jsoner_seterrnum (json, HCL_ESYSMEM);
2018-04-21 02:13:53 +00:00
return ptr;
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_freemem (hcl_jsoner_t* json, void* ptr)
2018-04-21 02:13:53 +00:00
{
HCL_MMGR_FREE (json->mmgr, ptr);
}
/* ========================================================================= */
2018-04-21 05:36:06 +00:00
hcl_jsoner_state_t hcl_jsoner_getstate (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
2018-04-22 18:18:45 +00:00
return json->state_stack->state;
2018-04-21 02:13:53 +00:00
}
2018-04-21 05:36:06 +00:00
void hcl_jsoner_reset (hcl_jsoner_t* json)
2018-04-21 02:13:53 +00:00
{
/* TODO: reset XXXXXXXXXXXXXXXXXXXXXXXXXXXxxxxx */
2018-04-22 18:18:45 +00:00
pop_all_states (json);
HCL_ASSERT (json->dummy_hcl, json->state_stack == &json->state_top);
json->state_stack->state = HCL_JSON_STATE_START;
2018-04-21 02:13:53 +00:00
}
2018-04-21 05:36:06 +00:00
int hcl_jsoner_feed (hcl_jsoner_t* json, const void* ptr, hcl_oow_t len, hcl_oow_t* xlen)
2018-04-21 02:13:53 +00:00
{
int x;
hcl_oow_t total, ylen;
const hcl_bch_t* buf;
buf = (const hcl_bch_t*)ptr;
total = 0;
while (total < len)
{
x = feed_json_data(json, &buf[total], len - total, &ylen);
if (x <= -1) return -1;
total += ylen;
if (x == 0) break; /* incomplete sequence encountered */
}
*xlen = total;
return 0;
}