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
|
/**
* sjson - fast string based JSON parser/generator library
* Copyright (C) 2013 Ondřej Jirman <megi@xff.cz>
*
* WWW: https://github.com/megous/sjson
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef __S_JSON_H__
#define __S_JSON_H__
#include <glib.h>
// json value types
typedef enum
{
S_JSON_TYPE_NONE = 0,
S_JSON_TYPE_OBJECT,
S_JSON_TYPE_ARRAY,
S_JSON_TYPE_STRING,
S_JSON_TYPE_NUMBER,
S_JSON_TYPE_BOOL,
S_JSON_TYPE_NULL,
S_JSON_TYPE_INVALID
} SJsonType;
typedef struct _SJsonGen SJsonGen;
// parser
gboolean s_json_is_valid (const gchar* json);
gchar* s_json_get (const gchar* json);
SJsonType s_json_get_type (const gchar* json);
const gchar* s_json_get_element_first (const gchar* json);
const gchar* s_json_get_element_next (const gchar* iter);
const gchar* s_json_get_element (const gchar* json, guint index);
gchar** s_json_get_elements (const gchar* json);
const gchar* s_json_get_member_first (const gchar* json, const gchar** value);
const gchar* s_json_get_member_next (const gchar** value);
const gchar* s_json_get_member (const gchar* json, const gchar* name);
gchar* s_json_get_string (const gchar* json);
gint64 s_json_get_int (const gchar* json, gint64 fallback);
gdouble s_json_get_double (const gchar* json, gdouble fallback);
gboolean s_json_get_bool (const gchar* json);
gboolean s_json_is_null (const gchar* json);
gchar* s_json_get_member_string (const gchar* json, const gchar* name);
gint64 s_json_get_member_int (const gchar* json, const gchar* name, gint64 fallback);
gdouble s_json_get_member_double (const gchar* json, const gchar* name, gdouble fallback);
gboolean s_json_get_member_bool (const gchar* json, const gchar* name);
gboolean s_json_member_is_null (const gchar* json, const gchar* name);
// helper utils
gboolean s_json_string_match (const gchar* json_str, const gchar* c_str);
// json path
const gchar* s_json_path (const gchar* json, const gchar* path);
// generator
SJsonGen* s_json_gen_new (void);
void s_json_gen_start_object (SJsonGen* json);
void s_json_gen_end_object (SJsonGen* json);
void s_json_gen_start_array (SJsonGen* json);
void s_json_gen_end_array (SJsonGen* json);
void s_json_gen_json (SJsonGen* json, const gchar* v);
void s_json_gen_build (SJsonGen* json, const gchar* fmt, ...);
void s_json_gen_string (SJsonGen* json, const gchar* v);
void s_json_gen_int (SJsonGen* json, gint64 v);
void s_json_gen_double (SJsonGen* json, gdouble v);
void s_json_gen_bool (SJsonGen* json, gboolean v);
void s_json_gen_null (SJsonGen* json);
void s_json_gen_member_json (SJsonGen* json, const gchar* name, const gchar* v);
void s_json_gen_member_build (SJsonGen* json, const gchar* name, const gchar* fmt, ...);
void s_json_gen_member_string (SJsonGen* json, const gchar* name, const gchar* v);
void s_json_gen_member_int (SJsonGen* json, const gchar* name, gint64 v);
void s_json_gen_member_double (SJsonGen* json, const gchar* name, gdouble v);
void s_json_gen_member_bool (SJsonGen* json, const gchar* name, gboolean v);
void s_json_gen_member_null (SJsonGen* json, const gchar* name);
void s_json_gen_member_array (SJsonGen* json, const gchar* name);
void s_json_gen_member_object (SJsonGen* json, const gchar* name);
gchar* s_json_gen_done (SJsonGen* json);
// builder
gchar* s_json_buildv (const gchar* format, va_list args);
gchar* s_json_build (const gchar* format, ...);
// formatters
gchar* s_json_pretty (const gchar* json);
gchar* s_json_compact (const gchar* json);
// iterator macros
#define S_JSON_FOREACH_ELEMENT(json, iter) \
G_STMT_START { \
const gchar* iter; \
for (iter = s_json_get_element_first(json); iter; iter = s_json_get_element_next(iter)) {
#define S_JSON_FOREACH_MEMBER(json, key, value) \
G_STMT_START { \
const gchar *key, *value; \
for (key = s_json_get_member_first(json, &value); key; key = s_json_get_member_next(&value)) {
#define S_JSON_FOREACH_END() \
}} G_STMT_END;
#endif
|