forked from zserge/jsmn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsmn_defines.h
159 lines (135 loc) · 4.57 KB
/
jsmn_defines.h
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
#ifndef JSMN_DEFINES_H_
#define JSMN_DEFINES_H_
/*!
* If nothing is defined, the default definitions are JSMN_PARENT_LINKS and *
* JSMN_NEXT_SIBLING with a jsmntok_t field size of 4 bytes (unsigned int). *
* This will parse one json object in a buffer at a time and return after a *
* successful json object parse. To check if there is more data in the *
* buffer that hasn't been parsed, run jsmn_eof. !*/
/*! @def JSMN_PARENT_LINKS
* @brief Adds a parent field to the token
*
* This decreases the initial time required to parse a json buffer and
* simplifies the post-processing of token array by adding a link to the id of
* a token's parent.
* This is enabled by default and highly recommended.
*/
/*! @def JSMN_NEXT_SIBLING
* @brief Adds a next_sibling field to the token
*
* This simplifies the post-processing of token array by adding a link to the id
* of a token's next sibling.
* This is enabled by default and highly recommended.
*/
/*! @def JSMN_UTF8
* @brief Add UTF-8 functionality
*
* This allows for stricter parsing of json strings and also allows for the
* conversion of escaped characters (\uXXXX) to UTF-8 and back.
*/
/*! @def JSMN_LOW_MEMORY
* @brief Enables defintions that reduce jsmn's memory footprint for small
* devices and doesn't enable definitions that increase it's footprint.
*
* This enables definitions that reduce jsmn's memory footprint at the cost of
* CPU usage. This is useful for small devices that don't parse json objects
* often and have restrictive memory requirements.
*/
/*! @def JSMN_SHORT_TOKENS
* @brief Changes the tokens field size from a uint32_t to a uint16_t
*
* This reduces the jsmntok_t size by half by changing jsmntok_t field sizes
* from an unsigned int to an unsigned short. NOTE: This reduces the maximum
* possible json string length from 4,294,967,295 to 65,535 minus the size of
* jsmnerr (JSMN_ERROR_MAX).
*/
/*! @def JSMN_PERMISSIVE
* @brief Enables all PERMISSIVE definitions
*
* Enables JSMN_PERMISSIVE_RULESET, JSMN_PERMISSIVE_KEY,
* JSMN_PERMISSIVE_PRIMITIVE, JSMN_PERMISSIVE_LITERALS,
* JSMN_PERMISSIVE_UTF32, and JSMN_MULTIPLE_JSON
*/
/*! @def JSMN_PERMISSIVE_RULESET
* @brief Enables the PERMISSIVE set of rules
*/
/*! @def JSMN_PERMISSIVE_KEY
* @brief Allows PRIMITIVEs to be OBJECT KEYs
*/
/*! @def JSMN_PERMISSIVE_PRIMITIVE
* @brief Allows PRIMITIVEs to be any contiguous value
*
* This allows PRIMIVITEs to be any contiguous value that does not contain a
* character that has a special meaning to json (`{}[]",:`). NOTE: There is no
* validation of JSMN_PRI_LITERAL, JSMN_PRI_MINUS, JSNM_PRI_DECIMAL, or
* JSMN_PRI_EXPONENT; everything is the base type JSMN_PRIMITIVE.
*/
/*! @def JSMN_PERMISSIVE_LITERALS
* @brief Extends the PRIMITIVE literals to include 'NaN' and 'Infinity'
*/
/*! @def JSMN_PERMISSIVE_UTF32
* @brief Allows escaped characters in the style \Uhhhhhhhh
*/
/*! @def JSMN_MULTIPLE_JSON
* @brief Allows multiple json objects in a complete buffer
*
* This allows jsmn to parse multiple json objects in a single buffer.
* NOTE: If a single json object is malformed jsmn_parse will return with
* an error.
*/
/*! @def JSMN_MULTIPLE_JSON_FAIL
* @brief Fails if there is more than one json object in a buffer.
*/
#if !defined(JSMN_API)
# if defined(JSMN_STATIC)
# define JSMN_API static
# else
# define JSMN_API extern
# endif
#endif
#if !defined(JSMN_LOW_MEMORY)
# if !defined(JSMN_PARENT_LINKS)
# define JSMN_PARENT_LINKS
# endif
# if !defined(JSMN_NEXT_SIBLING)
# define JSMN_NEXT_SIBLING
# endif
#else
# if !defined(JSMN_SHORT_TOKENS)
# define JSMN_SHORT_TOKENS
# endif
#endif
#if defined(JSMN_PERMISSIVE)
# if !defined(JSMN_PERMISSIVE_RULESET)
# define JSMN_PERMISSIVE_RULESET
# endif
# if !defined(JSMN_PERMISSIVE_KEY)
# define JSMN_PERMISSIVE_KEY
# endif
# if !defined(JSMN_PERMISSIVE_PRIMITIVE)
# define JSMN_PERMISSIVE_PRIMITIVE
# endif
# if !defined(JSMN_PERMISSIVE_LITERALS)
# define JSMN_PERMISSIVE_LITERALS
# endif
# if !defined(JSMN_PERMISSIVE_UTF32)
# define JSMN_PERMISSIVE_UTF32
# endif
# if !defined(JSMN_MULTIPLE_JSON)
# define JSMN_MULTIPLE_JSON
# endif
#endif
#if defined(JSMN_MULTIPLE_JSON_FAIL)
# undef JSMN_MULTIPLE_JSON
#endif
#if (defined(__linux__) || defined(__APPLE__) || defined(ARDUINO))
# define JSMN_EXPORT __attribute__((visibility("default")))
# define JSMN_LOCAL __attribute__((visibility("hidden")))
#elif (defined(_WIN32))
# define JSMN_EXPORT __declspec(dllexport)
# define JSMN_LOCAL
#else
# define JSMN_EXPORT
# define JSMN_LOCAL
#endif
#endif /* JSMN_DEFINES_H_ */