summaryrefslogtreecommitdiff
path: root/json_object_private.h
blob: 0f6a4f8a933ffb85ac98d421777419dcfce0678a (plain)
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
/*
 * $Id: json_object_private.h,v 1.4 2006/01/26 02:16:28 mclark Exp $
 *
 * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
 * Michael Clark <michael@metaparadigm.com>
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of the MIT license. See COPYING for details.
 *
 */

/**
 * @file
 * @brief Do not use, json-c internal, may be changed or removed at any time.
 */
#ifndef _json_object_private_h_
#define _json_object_private_h_

#ifdef __cplusplus
extern "C" {
#endif

/**< how many bytes are directly stored in json_object for strings? */
#define LEN_DIRECT_STRING_DATA 32

struct json_object;
#include "json_inttypes.h"
#include "json_types.h"

typedef void(json_object_private_delete_fn)(struct json_object *o);

/* json object int type, support extension*/
typedef enum json_object_int_type
{
	json_object_int_type_int64,
	json_object_int_type_uint64
} json_object_int_type;

struct json_object_base // XAX rename to json_object after conversion
{
	int newold;  // XAX temporary, remove after code conversion
	enum json_type o_type;
	uint32_t _ref_count;
	json_object_private_delete_fn *_delete;
	json_object_to_json_string_fn *_to_json_string;
	struct printbuf *_pb;
	json_object_delete_fn *_user_delete;
	void *_userdata;
	char data[1]; // Actually a struct json_object_${o_type}
};

struct json_object_object
{
	struct json_object_base base;
	struct lh_table *c_object;
};
struct json_object_array
{
	struct json_object_base base;
	struct array_list *c_array;
};

struct json_object_boolean
{
	struct json_object_base base;
	json_bool c_boolean;
};
struct json_object_double
{
	struct json_object_base base;
	json_bool c_double;
};
struct json_object_int
{
	struct json_object_base base;
	enum json_object_int_type cint_type;
	union
	{
		int64_t c_int64;
		uint64_t c_uint64;
	} cint;
};
struct json_object_string
{
	struct json_object_base base;
	size_t len;
	char data[1]; // Actually longer
};

struct json_object
{
	int newold;
	enum json_type o_type;
	uint32_t _ref_count;
	json_object_private_delete_fn *_delete;
	json_object_to_json_string_fn *_to_json_string;
	struct printbuf *_pb;
	union data
	{
		double c_double;
		struct
		{
			union
			{
				int64_t c_int64;
				uint64_t c_uint64;
			} cint;
			enum json_object_int_type cint_type;
		} c_int;
		struct
		{
			union
			{
				/* optimize: if we have small strings, we can store them
				 * directly. This saves considerable CPU cycles AND memory.
				 */
				char *ptr;
				char data[LEN_DIRECT_STRING_DATA];
			} str;
			int len;
		} c_string;
	} o;
	json_object_delete_fn *_user_delete;
	void *_userdata;
};

void _json_c_set_last_err(const char *err_fmt, ...);

extern const char *json_number_chars;
extern const char *json_hex_chars;

#ifdef __cplusplus
}
#endif

#endif