-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathts_json.c
238 lines (197 loc) · 4.94 KB
/
ts_json.c
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*-------------------------------------------------------------------------
*
* ts_json.c
* Functions to full text search with json[b]
*
* Copyright (c) 2015-2017, Postgres Professional
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "fmgr.h"
#include "utils/builtins.h"
#include "utils/jsonapi.h"
#include "utils/jsonb.h"
#include "utils/numeric.h"
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(json_values);
PG_FUNCTION_INFO_V1(jsonb_values);
/* Used in json_values to parse json values */
typedef struct JsonValuesState
{
text *res;
int length;
int allocated;
char *delim;
int delim_length;
} JsonValuesState;
static void append_jsonb_value(JsonValuesState *state,
const char *str, int len);
static void json_values_scalar(void *pstate, char *token,
JsonTokenType tokentype);
/*
* Extract all values from json.
*/
Datum
json_values(PG_FUNCTION_ARGS)
{
text *json;
text *delim;
JsonLexContext *lex;
JsonValuesState state;
JsonSemAction sem;
if (PG_ARGISNULL(0))
PG_RETURN_NULL();
json = PG_GETARG_TEXT_P(0);
lex = makeJsonLexContext(json, true);
memset(&state, 0, sizeof(state));
memset(&sem, 0, sizeof(sem));
if (!PG_ARGISNULL(1))
{
delim = PG_GETARG_TEXT_P(1);
state.delim = VARDATA(delim);
state.delim_length = VARSIZE(delim) - VARHDRSZ;
}
sem.semstate = (void *) &state;
sem.scalar = json_values_scalar;
pg_parse_json(lex, &sem);
if (state.length == 0)
PG_RETURN_NULL();
else
{
SET_VARSIZE(state.res, state.length + VARHDRSZ);
PG_RETURN_TEXT_P(state.res);
}
}
/*
* Extract all values from jsonb.
*/
Datum
jsonb_values(PG_FUNCTION_ARGS)
{
Jsonb *jsonb;
JsonValuesState state;
JsonbIterator *it;
JsonbValue v;
JsonbIteratorToken r;
if (PG_ARGISNULL(0))
PG_RETURN_NULL();
jsonb = PG_GETARG_JSONB(0);
memset(&state, 0, sizeof(state));
if (!PG_ARGISNULL(1))
{
text *delim_t = PG_GETARG_TEXT_P(1);
state.delim = VARDATA(delim_t);
state.delim_length = VARSIZE(delim_t) - VARHDRSZ;
}
it = JsonbIteratorInit(&jsonb->root);
while ((r = JsonbIteratorNext(&it, &v, false)) != WJB_DONE)
{
if ((r == WJB_ELEM || r == WJB_VALUE) &&
(v.type == jbvString || v.type == jbvNull || v.type == jbvNumeric ||
v.type == jbvBool))
{
switch (v.type)
{
case jbvNull:
append_jsonb_value(&state, "null", 4);
break;
case jbvBool:
append_jsonb_value(&state,
v.val.boolean ? "true" : "false",
v.val.boolean ? 4 : 5);
break;
case jbvNumeric:
{
char *num = numeric_normalize(v.val.numeric);
append_jsonb_value(&state, num, strlen(num));
pfree(num);
break;
}
case jbvString:
append_jsonb_value(&state,
v.val.string.val, v.val.string.len);
break;
default:
/* Make compiler quite */
break;
}
}
}
if (state.length == 0)
PG_RETURN_NULL();
{
SET_VARSIZE(state.res, state.length + VARHDRSZ);
PG_RETURN_TEXT_P(state.res);
}
}
static void
append_jsonb_value(JsonValuesState *state, const char *str, int len)
{
if (state->allocated == 0)
{
/* Use Max() for long texts */
state->allocated = Max(1024, len * 2);
state->res = (text *) palloc(state->allocated + VARHDRSZ);
memcpy(VARDATA(state->res), str, len);
}
else
{
if (state->length + len + state->delim_length > state->allocated)
{
/* Use Max() for long texts */
state->allocated = Max(state->allocated * 2,
state->allocated + len * 2);
state->res = (text *) repalloc(state->res,
state->allocated + VARHDRSZ);
}
if (state->delim_length)
{
memcpy(VARDATA(state->res) + state->length,
state->delim, state->delim_length);
state->length += state->delim_length;
}
memcpy(VARDATA(state->res) + state->length, str, len);
}
state->length += len;
}
static void
json_values_scalar(void *pstate, char *token, JsonTokenType tokentype)
{
JsonValuesState *state = (JsonValuesState *) pstate;
int len;
/* We extract only string values */
if (tokentype != JSON_TOKEN_STRING &&
tokentype != JSON_TOKEN_TRUE &&
tokentype != JSON_TOKEN_FALSE &&
tokentype != JSON_TOKEN_NULL &&
tokentype != JSON_TOKEN_NUMBER)
return;
len = strlen(token);
if (state->allocated == 0)
{
/* Use Max() for long texts */
state->allocated = Max(1024, len * 2);
state->res = (text *) palloc(state->allocated + VARHDRSZ);
memcpy(VARDATA(state->res), token, len);
}
else
{
if (state->length + len + state->delim_length > state->allocated)
{
/* Use Max() for long texts */
state->allocated = Max(state->allocated * 2,
state->allocated + len * 2);
state->res = (text *) repalloc(state->res, state->allocated +
VARHDRSZ);
}
if (state->delim_length)
{
memcpy(VARDATA(state->res) + state->length,
state->delim, state->delim_length);
state->length += state->delim_length;
}
memcpy(VARDATA(state->res) + state->length, token, len);
}
state->length += len;
}