/usr/include/yaz/json.h is in libyaz4-dev 4.2.30-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | /* This file is part of the YAZ toolkit.
* Copyright (C) 1995-2012 Index Data.
* 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 Index Data 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 THE REGENTS 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 AND 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.h
\brief Header for JSON functions
*/
#ifndef YAZ_JSON_H
#define YAZ_JSON_H
#include <yaz/wrbuf.h>
YAZ_BEGIN_CDECL
/** \brief JSON node type for json_node */
enum json_node_type {
json_node_object, /**< JSON object, u.link[0] is object content */
json_node_array, /**< JSON array, u.link[0] is array content */
json_node_list, /**< JSON elements or JSON members,
u.link[0] is value, u.link[1] is next elemen in list */
json_node_pair, /**< JSON pair, u.link[0] is name, u.link[1] is value */
json_node_string, /**< JSON string, u.string is content */
json_node_number, /**< JSON number (floating point), u.number is content */
json_node_true, /**< JSON true */
json_node_false, /**< JSON false */
json_node_null /**< JSON null */
};
/** \brief JSON node */
struct json_node {
enum json_node_type type;
union {
char *string;
double number;
struct json_node *link[2];
} u;
};
/** \brief JSON parser (opaque) */
typedef struct json_parser_s *json_parser_t;
/** \brief create JSON parser
\returns JSON parser handle
*/
YAZ_EXPORT
json_parser_t json_parser_create(void);
/** \brief destroys JSON parser
\param p JSON parser handle
*/
YAZ_EXPORT
void json_parser_destroy(json_parser_t p);
/** \brief parses JSON string
\param p JSON parser handle
\param json_str JSON string
\returns JSON tree or NULL if parse error occurred.
The resulting tree should be removed with a call to json_remove_node.
*/
YAZ_EXPORT
struct json_node *json_parser_parse(json_parser_t p, const char *json_str);
/** \brief returns parser error
\param p JSON parser handle
\returns parse error msg
This function should be called if json_parser_parse returns NULL .
*/
YAZ_EXPORT
const char *json_parser_get_errmsg(json_parser_t p);
/** \brief returns parser position
\param p JSON parser handle
\returns number of bytes read from parser
This function should be called if json_parser_parse returns NULL .
*/
YAZ_EXPORT
size_t json_parser_get_position(json_parser_t p);
/** \brief parses JSON string
\param json_str JSON string
\param errmsg pointer to error message string
\returns JSON tree or NULL if parse error occurred.
The resulting tree should be removed with a call to json_remove_node.
The errmsg may be NULL in which case the error message is not returned.
*/
YAZ_EXPORT
struct json_node *json_parse(const char *json_str, const char **errmsg);
/** \brief parses JSON string
\param json_str JSON string
\param errmsg pointer to error message string
\param pos position of parser stop (probably error)
\returns JSON tree or NULL if parse error occurred.
The resulting tree should be removed with a call to json_remove_node.
The errmsg may be NULL in which case the error message is not returned.
*/
YAZ_EXPORT
struct json_node *json_parse2(const char *json_str, const char **errmsg,
size_t *pos);
/** \brief destroys JSON tree node and its children
\param n JSON node
*/
YAZ_EXPORT
void json_remove_node(struct json_node *n);
/** \brief gets object pair value for some name
\param n JSON node (presumably object node)
\param name name to match
\returns node or NULL if not found
*/
YAZ_EXPORT
struct json_node *json_get_object(struct json_node *n, const char *name);
/** \brief gets object value and detaches from existing tree
\param n JSON node (presumably object node)
\param name name to match
\returns node or NULL if not found
*/
YAZ_EXPORT
struct json_node *json_detach_object(struct json_node *n, const char *name);
/** \brief gets array element
\param n JSON node (presumably array node)
\param idx (0=first, 1=second, ..)
\returns node or NULL if not found
*/
YAZ_EXPORT
struct json_node *json_get_elem(struct json_node *n, int idx);
/** \brief returns number of children (array or object)
\param n JSON node (presumably array node or object node)
\returns number of children
*/
YAZ_EXPORT
int json_count_children(struct json_node *n);
/** \brief appends array to another
\param dst original array and resulting array
\param src array to be appended to dst
\retval -1 not arrays
\retval 0 array appended OK
*/
YAZ_EXPORT
int json_append_array(struct json_node *dst, struct json_node *src);
/** \brief configure subst rule
\param p JSON parser
\param idx (%id)
\param n node to be substituted for idx (%idx)
*/
YAZ_EXPORT
void json_parser_subst(json_parser_t p, int idx, struct json_node *n);
/** \brief converts JSON tree to JSON string
\param node JSON tree
\param result resulting JSON string buffer
*/
YAZ_EXPORT
void json_write_wrbuf(struct json_node *node, WRBUF result);
/** \brief writes JSON text to WRBUF with escaping
\param b result
\param str input string to be encoded
*/
YAZ_EXPORT
void wrbuf_json_puts(WRBUF b, const char *str);
YAZ_END_CDECL
#endif
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|