/* ** Zabbix ** Copyright (C) 2001-2023 Zabbix SIA ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **/ #ifndef ZABBIX_JSONOBJ_H #define ZABBIX_JSONOBJ_H #include "zbxjson.h" typedef struct { char *name; zbx_jsonobj_t *value; unsigned char external; /* 1 - the reference is to an external object. */ /* 0 - the reference is to a local object which must be freed */ /* when reference is destroyed */ } zbx_jsonobj_ref_t; ZBX_VECTOR_DECL(jsonobj_ref, zbx_jsonobj_ref_t) typedef struct { char *value; /* the value found at indexed path */ zbx_vector_jsonobj_ref_t objects; /* the objects matching value at indexed path */ } zbx_jsonobj_index_el_t; void jsonobj_init(zbx_jsonobj_t *obj, zbx_json_type_t type); void jsonobj_el_init(zbx_jsonobj_el_t *el); void jsonobj_init_index(zbx_jsonobj_t *obj, const char *path); void jsonobj_el_clear(zbx_jsonobj_el_t *el); void jsonobj_set_string(zbx_jsonobj_t *obj, char *str); void jsonobj_set_number(zbx_jsonobj_t *obj, double number); void jsonobj_set_true(zbx_jsonobj_t *obj); void jsonobj_set_false(zbx_jsonobj_t *obj); void jsonobj_set_null(zbx_jsonobj_t *obj); #endif