- Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathcollection.cc
453 lines (369 loc) · 10 KB
/
collection.cc
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/*
* Copyright (c) 2015, 2024, Oracle and/or its affiliates.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2.0, as
* published by the Free Software Foundation.
*
* This program is designed to work with certain software (including
* but not limited to OpenSSL) that is licensed under separate terms, as
* designated in a particular file or component or in included license
* documentation. The authors of MySQL hereby grant you an additional
* permission to link the program and your derivative works with the
* separately licensed software that they have either included with
* the program or referenced in the documentation.
*
* Without limiting anything contained in the foregoing, this file,
* which is part of Connector/C++, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* https://oss.oracle.com/licenses/universal-foss-exception.
*
* 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, version 2.0, for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include<mysql/cdk.h>
#include<json_parser.h>
#include<mysqlx/common.h>
#include"op_impl.h"
usingnamespace ::mysqlx::impl::common;
/*
A series of converters used to convert DevAPI index specification given
as a JSON document to the form expected by x-protocol. First, cdk::JSON
expression needs to be converted to cdk::Any::Document one. Then some field
name conversions are required, such as "fields" -> "constaint" and
"field" -> "member". Also, converters check the index specification and throw
errors if something is not as expected.
*/
structJSON_val_conv : publiccdk::Converter<JSON_val_conv,
cdk::JSON_processor,
cdk::Value_processor>
{
using string = cdk::string;
voidnull()
{
if (m_proc)
m_proc->null();
}
voidstr(const string& s)
{
if (m_proc)
m_proc->str(s);
}
voidnum(uint64_t v)
{
if (m_proc)
m_proc->num(v);
}
voidnum(int64_t v)
{
if (!m_proc)
return;
/*
Note: xplugin expects positive values to be reported as unsigned integers.
*/
if (v < 0)
m_proc->num(v);
else
m_proc->num(uint64_t(v));
}
voidnum(float v)
{
if (m_proc)
m_proc->num(v);
}
voidnum(double v)
{
if (m_proc)
m_proc->num(v);
}
voidyesno(bool v)
{
if (m_proc)
m_proc->yesno(v);
}
};
structField_conv
: public cdk::Converter<Field_conv,
cdk::JSON::Processor::Any_prc,
cdk::Any::Processor
>
{
using string = cdk::string;
using List_conv = cdk::List_prc_converter<JSON_val_conv>;
using Any_prc = cdk::JSON::Processor::Any_prc;
using Doc_prc = Any_prc::Doc_prc;
Any_prc::Scalar_prc* scalar() override
{
assert(false);
returnnullptr;
}
List_conv m_list_conv;
Any_prc::List_prc* arr() override
{
assert(false);
returnnullptr;
}
structField_doc_conv
: public cdk::Doc_prc_converter<JSON_val_conv>
{
using Doc_conv = cdk::Doc_prc_converter<JSON_val_conv>;
bool m_has_required = false;
bool m_has_options = false;
bool m_geojson = false;
Any_prc* key_val(const string &key) override
{
staticconst std::set<std::string> allowed_keys =
{ "field", "type", "required", "options", "srid", "array" };
std::string field_name = to_lower(key);
if (allowed_keys.find(field_name) == allowed_keys.end())
throw_error("Invalid parameter in index field specification");
// Do a key name replacement on 2nd level
if (field_name == "field")
{
field_name = "member";
}
elseif (field_name == "required")
{
m_has_required = true;
}
elseif (field_name == "options" || field_name == "srid")
{
m_has_options = true;
}
// TODO: enable this when m_geojson is correctly set.
//if (m_has_options && !m_geojson)
// throw_error("Only GEOJSON index component can have \"options\" or \"srid\" parameters");
returnDoc_conv::key_val(field_name);
}
voiddoc_begin() override
{
m_has_required = false;
}
voiddoc_end() override
{
if(m_proc)
{
if (!m_has_required)
{
// No "required" in "field"
m_proc->key_val("required")->scalar()->yesno(m_geojson);
}
m_proc->doc_end();
}
}
}
m_doc_conv;
Doc_prc* doc() override
{
auto *prc = m_proc->doc();
if (!prc)
returnnullptr;
m_doc_conv.reset(*prc);
return &m_doc_conv;
}
};
structField_list_conv
: public cdk::Converter<Field_list_conv,
cdk::JSON::Processor::Any_prc::List_prc,
cdk::Any_list::Processor
>
{
Field_conv m_field_conv;
Element_prc* list_el() override
{
auto *prc = m_proc->list_el();
if (!prc)
returnnullptr;
m_field_conv.reset(*prc);
return &m_field_conv;
}
voidlist_begin() override
{
m_proc->list_begin();
}
voidlist_end() override
{
m_proc->list_end();
}
};
structFields_conv
: public cdk::Converter<Fields_conv,
cdk::JSON::Processor::Any_prc,
cdk::Any::Processor
>
{
Field_list_conv m_arr_conv;
JSON_val_conv m_scalar_conv;
List_prc* arr() override
{
auto *prc = m_proc->arr();
if (!prc)
returnnullptr;
m_arr_conv.reset(*prc);
return &m_arr_conv;
}
Scalar_prc* scalar() override
{
auto *prc = m_proc->scalar();
if (!prc)
returnnullptr;
m_scalar_conv.reset(*prc);
return &m_scalar_conv;
}
Doc_prc* doc() override
{
throw_error("Wrong index specification");
returnnullptr;
}
};
structIndex_def_conv : publiccdk::Converter<Index_def_conv,
cdk::JSON::Processor,
cdk::Any::Document::Processor>
{
Fields_conv m_fields_conv;
Prc_from::Any_prc* key_val(const string &key)
{
staticconst std::set<std::string> allowed_keys = { "fields", "type" };
std::string field_name = to_lower(key);
if (allowed_keys.find(field_name) == allowed_keys.end())
throw_error("Invalid index parameter");
// Do a key name replacement on 1st level
if (field_name == "fields")
{
field_name = "constraint";
}
auto *aprc = m_proc->key_val(field_name);
if (!aprc)
returnnullptr;
m_fields_conv.reset(*aprc);
return &m_fields_conv;
}
};
/*
Index_def class represents index definition given as a JSON document in the
form expected by the protocol. Object of that class acts as a CDK document
expression containing index description. This description is generated by
converting input JSON definition using converters defined above.
*/
structIndex_def
: cdk::Expr_conv_base<Index_def_conv, cdk::JSON, cdk::Any::Document>
{
parser::JSON_parser m_parser;
Index_def(const cdk::string &def)
: m_parser(def)
{
reset(m_parser);
}
};
/*
This method reports parameters for the "create_collection_index" admin
command. It adds index definition to the parameters defined with add_param()
method.
*/
voidOp_idx_create::process(cdk::Any::Document::Processor &prc) const
{
prc.doc_begin();
for (auto it : m_map)
{
Value_scalar val(it.second);
val.process_if(prc.key_val(it.first));
}
// Remove this later
safe_prc(prc)->key_val("unique")->scalar()->yesno(false);
// Report remaining values based on JSON document given by user.
Index_def idx_def(m_def);
idx_def.process(prc);
prc.doc_end();
}
/*
Collection create/modify json options
*/
structCollection_options_converter
: public cdk::Converter< cdk::Doc_prc_converter<JSON_val_conv> >
{
typedef cdk::Converter< cdk::Doc_prc_converter<JSON_val_conv> > Base;
typedeftypename Base::Prc_from Prc_from;
typedeftypename Base::Prc_to Prc_to;
using Base::m_proc;
typedef cdk::Any_prc_converter<JSON_val_conv> Any_conv;
typedeftypename Prc_from::Any_prc Any_prc;
voiddoc_begin() { m_proc->doc_begin(); }
voiddoc_end() { m_proc->doc_end(); }
Any_conv m_any_conv;
Any_prc* key_val(const string &key)
{
typename Prc_to::Any_prc *ap;
if(key == "reuseExisting")
{
ap = m_proc->key_val("reuse_existing");
}
else {
ap = m_proc->key_val(key);
}
if (!ap)
returnNULL;
m_any_conv.reset(*ap);
return &m_any_conv;
}
};
voidOp_create_modify_base::process(cdk::Any::Document::Processor &prc) const
{
prc.doc_begin();
for (auto it : m_map)
{
Value_scalar val(it.second);
val.process_if(prc.key_val(it.first));
}
if(!m_options.empty())
{
const parser::JSON_parser parser(m_options);
Collection_options_converter conv;
auto * options =
m_validation_options ?
prc.key_val("options")->doc()->key_val("validation")->doc()
: prc.key_val("options")->doc();
if(options)
{
conv.reset(*options);
parser.process(conv);
}
prc.doc_end();
return;
}
if(!m_validation_level.empty() || !m_validation_schema.empty())
{
auto options =safe_prc(prc.key_val("options"))->doc();
options->doc_begin();
if (!m_validation_level.empty() || !m_validation_schema.empty())
{
//validation
auto validation = options->key_val("validation")->doc();
validation->doc_begin();
if(!m_validation_level.empty())
{
validation->key_val("level")->scalar()->str(m_validation_level);
}
if(!m_validation_schema.empty())
{
const parser::JSON_parser parser(m_validation_schema);
cdk::Doc_prc_converter<JSON_val_conv> conv;
auto schema = validation->key_val("schema")->doc();
if(schema)
{
conv.reset(*schema);
parser.process(conv);
}
}
validation->doc_end();
}
options->doc_end();
}
prc.doc_end();
return;
}