forked from EnterpriseDB/mongo_fdw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongo_wrapper_meta.c
669 lines (561 loc) · 14.7 KB
/
mongo_wrapper_meta.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
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
/*-------------------------------------------------------------------------
*
* mongo_wrapper_meta.c
* Foreign-data wrapper for remote MongoDB servers
*
* Portions Copyright (c) 2012-2014, PostgreSQL Global Development Group
*
* Portions Copyright (c) 2004-2014, EnterpriseDB Corporation.
*
* Portions Copyright (c) 2012–2014 Citus Data, Inc.
*
* IDENTIFICATION
* mongo_wrapper_meta.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include <mongoc.h>
#include "mongo_wrapper.h"
/*
* Connect to MongoDB server using Host/ip and Port number.
*/
MONGO_CONN*
MongoConnect(const char* host, const unsigned short port, char* databaseName, char *user, char *password,
char *authenticationDatabase, char *replicaSet, char *readPreference, bool ssl, char *pem_file,
char *pem_pwd, char *ca_file, char *ca_dir, char *crl_file, bool weak_cert_validation)
{
MONGO_CONN *client = NULL;
char* uri = NULL;
if (user && password)
if (authenticationDatabase)
if (replicaSet)
if (readPreference)
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?readPreference=%s&ssl=%s&authSource=%s&replicaSet=%s", user, password, host, port, databaseName, readPreference, ssl ? "true" : "false",authenticationDatabase,replicaSet);
else
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?ssl=%s&authSource=%s&replicaSet=%s", user, password, host, port, databaseName, ssl ? "true" : "false",authenticationDatabase,replicaSet);
else
if (readPreference)
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?readPreference=%s&ssl=%s&authSource=%s", user, password, host, port, databaseName, readPreference, ssl ? "true" : "false",authenticationDatabase);
else
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?ssl=%s&authSource=%s", user, password, host, port, databaseName, ssl ? "true" : "false",authenticationDatabase);
else
if (replicaSet)
if (readPreference)
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?readPreference=%s&ssl=%s&replicaSet=%s", user, password, host, port, databaseName, readPreference, ssl ? "true" : "false",replicaSet);
else
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?ssl=%s&replicaSet=%s", user, password, host, port, databaseName, ssl ? "true" : "false",replicaSet);
else
if (readPreference)
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?readPreference=%s&ssl=%s", user, password, host, port, databaseName, readPreference, ssl ? "true" : "false");
else
uri = bson_strdup_printf ("mongodb://%s:%s@%s:%hu/%s?ssl=%s", user, password, host, port, databaseName, ssl ? "true" : "false");
else
if (replicaSet)
if (readPreference)
uri = bson_strdup_printf ("mongodb://%s:%hu/%s?readPreference=%s&ssl=%s&replicaSet=%s", host, port, databaseName, readPreference, ssl ? "true" : "false",replicaSet);
else
uri = bson_strdup_printf ("mongodb://%s:%hu/%s?ssl=%s&replicaSet=%s", host, port, databaseName, ssl ? "true" : "false",replicaSet);
else
if (readPreference)
uri = bson_strdup_printf ("mongodb://%s:%hu/%s?readPreference=%s&ssl=%s", host, port, databaseName, readPreference, ssl ? "true" : "false");
else
uri = bson_strdup_printf ("mongodb://%s:%hu/%s?ssl=%s", host, port, databaseName, ssl ? "true" : "false");
client = mongoc_client_new(uri);
if (ssl) {
mongoc_ssl_opt_t *ssl_opts = (mongoc_ssl_opt_t*) malloc(sizeof(mongoc_ssl_opt_t));
ssl_opts->pem_file = pem_file;
ssl_opts->pem_pwd = pem_pwd;
ssl_opts->ca_file = ca_file;
ssl_opts->ca_dir = ca_dir;
ssl_opts->crl_file = crl_file;
ssl_opts->weak_cert_validation = weak_cert_validation;
mongoc_client_set_ssl_opts (client, ssl_opts);
free(ssl_opts);
}
bson_free(uri);
if (client == NULL)
ereport(ERROR, (errmsg("could not connect to %s:%d", host, port),
errhint("Mongo driver connection error")));
return client;
}
/*
* Disconnect from MongoDB server.
*/
void
MongoDisconnect(MONGO_CONN* conn)
{
if (conn)
mongoc_client_destroy(conn);
}
/*
* Insert a document 'b' into MongoDB.
*/
bool
MongoInsert(MONGO_CONN* conn, char *database, char* collection, BSON* b)
{
mongoc_collection_t *c = NULL;
bson_error_t error;
bool r = false;
c = mongoc_client_get_collection(conn, database, collection);
r = mongoc_collection_insert(c, MONGOC_INSERT_NONE, b, NULL, &error);
mongoc_collection_destroy(c);
if (!r)
ereport(ERROR, (errmsg("failed to insert row"),
errhint("Mongo error: \"%s\"", error.message)));
return true;
}
/*
* Update a document 'b' into MongoDB.
*/
bool
MongoUpdate(MONGO_CONN* conn, char* database, char *collection, BSON* b, BSON* op)
{
mongoc_collection_t *c = NULL;
bson_error_t error;
bool r = false;
c = mongoc_client_get_collection (conn, database, collection);
r = mongoc_collection_update(c, MONGOC_UPDATE_NONE, b, op, NULL, &error);
mongoc_collection_destroy(c);
if (!r)
ereport(ERROR, (errmsg("failed to update row"),
errhint("Mongo error: \"%s\"", error.message)));
return true;
}
/*
* Delete MongoDB's document.
*/
bool
MongoDelete(MONGO_CONN* conn, char* database, char *collection, BSON* b)
{
mongoc_collection_t *c = NULL;
bson_error_t error;
bool r = false;
c = mongoc_client_get_collection (conn, database, collection);
r = mongoc_collection_remove(c, MONGOC_DELETE_SINGLE_REMOVE, b, NULL, &error);
mongoc_collection_destroy(c);
if (!r)
ereport(ERROR, (errmsg("failed to delete row"),
errhint("Mongo error: \"%s\"", error.message)));
return true;
}
/*
* Performs a query against the configured MongoDB server and return
* cursor which can be destroyed by calling mongoc_cursor_current.
*/
MONGO_CURSOR*
MongoCursorCreate(MONGO_CONN* conn, char* database, char *collection, BSON* q)
{
mongoc_collection_t *c = NULL;
MONGO_CURSOR *cur = NULL;
bson_error_t error;
c = mongoc_client_get_collection (conn, database, collection);
cur = mongoc_collection_find(c, MONGOC_QUERY_SLAVE_OK, 0, 0, 0, q, NULL, NULL);
mongoc_cursor_error(cur, &error);
if (!cur)
ereport(ERROR, (errmsg("failed to create cursor"),
errhint("Mongo error: \"%s\"", error.message)));
mongoc_collection_destroy(c);
return cur;
}
/*
* Destroy cursor created by calling MongoCursorCreate function.
*/
void
MongoCursorDestroy(MONGO_CURSOR* c)
{
mongoc_cursor_destroy(c);
}
/*
* Get the current document from cursor.
*/
const BSON*
MongoCursorBson(MONGO_CURSOR* c)
{
return mongoc_cursor_current(c);
}
/*
* Get the next document from the cursor.
*/
bool
MongoCursorNext(MONGO_CURSOR* c, BSON *b)
{
return mongoc_cursor_next(c, (const BSON**) &b);
}
/*
* Allocates a new bson_t structure, and also initialize the bson
* object. After that point objects can be appended to that bson
* object and can be iterated. A newly allocated bson_t that should
* be freed with bson_destroy().
*/
BSON*
BsonCreate(void)
{
BSON *b = NULL;
b = bson_new();
bson_init(b);
return b;
}
/*
* Destroy Bson objected created by BsonCreate function.
*/
void
BsonDestroy(BSON *b)
{
bson_destroy(b);
}
/*
* Initialize the bson Iterator.
*/
bool
BsonIterInit(BSON_ITERATOR *it, BSON *b)
{
return bson_iter_init(it, b);
}
bool
BsonIterSubObject(BSON_ITERATOR *it, BSON *b)
{
const uint8_t *buffer;
uint32_t len;
bson_iter_document(it, &len, &buffer);
bson_init_static(b, buffer, len);
return true;
}
int32_t
BsonIterInt32(BSON_ITERATOR *it)
{
return bson_iter_int32(it);
}
int64_t
BsonIterInt64(BSON_ITERATOR *it)
{
return bson_iter_int64(it);
}
double
BsonIterDouble(BSON_ITERATOR *it)
{
return bson_iter_double(it);
}
bool
BsonIterBool(BSON_ITERATOR *it)
{
return bson_iter_bool(it);
}
const char*
BsonIterString(BSON_ITERATOR *it)
{
uint32_t len = 0;
return bson_iter_utf8(it, &len);
}
const char*
BsonIterBinData(BSON_ITERATOR *it, uint32_t *len)
{
const uint8_t *binary = NULL;
bson_subtype_t subtype = BSON_SUBTYPE_BINARY;
bson_iter_binary (it, &subtype, len, &binary);
return (char*)binary;
}
bson_oid_t *
BsonIterOid(BSON_ITERATOR *it)
{
return bson_iter_oid(it);
}
time_t
BsonIterDate(BSON_ITERATOR *it)
{
return bson_iter_date_time(it);
}
const char*
BsonIterKey(BSON_ITERATOR *it)
{
return bson_iter_key(it);
}
int
BsonIterType(BSON_ITERATOR *it)
{
return bson_iter_type(it);
}
int
BsonIterNext(BSON_ITERATOR *it)
{
return bson_iter_next(it);
}
bool
BsonIterSubIter(BSON_ITERATOR *it, BSON_ITERATOR* sub)
{
return bson_iter_recurse(it, sub);
}
void
BsonOidFromString(bson_oid_t *o, char* str)
{
bson_oid_init_from_string(o, str);
}
bool
BsonAppendOid(BSON *b, const char* key, bson_oid_t *v)
{
return bson_append_oid(b, key, strlen(key), v);
}
bool
BsonAppendBool(BSON *b, const char* key, bool v)
{
return bson_append_bool(b, key, -1, v);
}
bool
BsonAppendStartObject(BSON* b, char *key, BSON* r)
{
return bson_append_document_begin(b, key, strlen(key), r);
}
bool
BsonAppendFinishObject(BSON* b, BSON* r)
{
return bson_append_document_end(b, r);
}
bool
BsonAppendNull(BSON *b, const char* key)
{
return bson_append_null(b, key, strlen(key));
}
bool
BsonAppendInt32(BSON *b, const char* key, int v)
{
return bson_append_int32(b, key, strlen(key), v);
}
bool
BsonAppendInt64(BSON *b, const char* key, int64_t v)
{
return bson_append_int64(b, key, strlen(key), v);
}
bool
BsonAppendDouble(BSON *b, const char* key, double v)
{
return bson_append_double(b, key, strlen(key), v);
}
bool
BsonAppendUTF8(BSON *b, const char* key, char *v)
{
return bson_append_utf8(b, key, strlen(key), v, strlen(v));
}
bool
BsonAppendBinary(BSON *b, const char* key, char *v, size_t len)
{
return bson_append_binary(b, key, (int)strlen(key), BSON_SUBTYPE_BINARY, (const uint8_t *)v, len);
}
bool
BsonAppendDate(BSON *b, const char* key, time_t v)
{
return bson_append_date_time(b, key, strlen(key), v);
}
bool
BsonAppendBson(BSON* b, char *key, BSON* c)
{
return bson_append_document(b, key, strlen(key), c);
}
bool BsonAppendStartArray(BSON *b, const char* key, BSON* c)
{
return bson_append_array_begin(b, key, -1, c);
}
bool BsonAppendFinishArray(BSON *b, BSON* c)
{
return bson_append_array_end(b, c);
}
bool
BsonFinish(BSON* b)
{
/*
* There is no need for bson_finish in Meta Driver.
* We are doing nothing, just because of compatiblity with legacy
* driver.
*/
return true;
}
bool JsonToBsonAppendElement(BSON *bb , const char *k , struct json_object *v )
{
bool status;
status = true;
if (!v)
{
BsonAppendNull(bb, k);
return status;
}
switch (json_object_get_type(v))
{
case json_type_int:
BsonAppendInt32(bb, k, json_object_get_int(v));
break;
case json_type_boolean:
BsonAppendBool(bb , k, json_object_get_boolean(v));
break;
case json_type_double:
BsonAppendDouble(bb, k, json_object_get_double(v));
break;
case json_type_string:
BsonAppendUTF8(bb, k, (char*)json_object_get_string(v));
break;
case json_type_object:
{
BSON t;
struct json_object *joj = NULL;
joj = json_object_object_get(v, "$oid");
if (joj != NULL)
{
bson_oid_t bsonObjectId;
memset(bsonObjectId.bytes, 0, sizeof(bsonObjectId.bytes));
BsonOidFromString(&bsonObjectId, (char*)json_object_get_string(joj));
status = BsonAppendOid(bb, k , &bsonObjectId);
break;
}
joj = json_object_object_get( v, "$date" );
if (joj != NULL)
{
status = BsonAppendDate(bb, k, json_object_get_int64(joj));
break;
}
BsonAppendStartObject(bb , (char*)k, &t);
json_object_object_foreach(v, kk, vv)
{
JsonToBsonAppendElement(&t, kk, vv);
}
BsonAppendFinishObject(bb, &t);
break;
}
case json_type_array:
{
int i;
char buf[10];
BSON t;
BsonAppendStartArray(bb ,k, &t);
for (i = 0; i<json_object_array_length(v); i++)
{
sprintf(buf , "%d" , i);
JsonToBsonAppendElement(&t ,buf ,json_object_array_get_idx(v, i));
}
BsonAppendFinishObject( bb, &t );
break;
}
default:
ereport(ERROR, (errcode(ERRCODE_FDW_INVALID_DATA_TYPE),
errmsg("can't handle type for : %s", json_object_to_json_string(v))));
}
return status;
}
json_object*
JsonTokenerPrase(char * s)
{
return json_tokener_parse(s);
}
/*
* Count the number of documents.
*/
double
MongoAggregateCount(MONGO_CONN* conn, const char* database, const char* collection, const BSON* b)
{
BSON *command = NULL;
BSON *reply = NULL;
BSON *doc = NULL;
double count = 0;
mongoc_cursor_t *cursor = NULL;
bool ret = false;
command = BsonCreate();
reply = BsonCreate();
BsonAppendUTF8(command, "count", (char*)collection);
if (b) /* not empty */
BsonAppendBson(command, "query", (BSON*)b);
BsonFinish(command);
cursor = mongoc_client_command(conn, database, MONGOC_QUERY_SLAVE_OK, 0, 1, 0, command, NULL, NULL);
if (cursor)
{
ret = mongoc_cursor_next(cursor, (const BSON**)&doc);
if (ret)
{
bson_iter_t it;
bson_copy_to(doc, reply);
if (bson_iter_init_find(&it, reply, "n"))
count = BsonIterDouble(&it);
BsonDestroy(doc);
}
mongoc_cursor_destroy(cursor);
}
BsonDestroy(reply);
BsonDestroy(command);
return count;
}
void
BsonIteratorFromBuffer(BSON_ITERATOR *i, const char * buffer)
{
}
void
BsonOidToString(bson_oid_t *o, char* str[25])
{
bson_oid_to_string (o, str);
}
const char*
BsonIterCode(BSON_ITERATOR *i)
{
return bson_iter_code (i, NULL);
}
const char*
BsonIterRegex(BSON_ITERATOR *i)
{
return bson_iter_regex(i, NULL);
}
const char*
BsonIterValue(BSON_ITERATOR *i)
{
return bson_iter_value(i);
}
void
BsonToJsonStringValue(StringInfo output, BSON_ITERATOR *iter, bool isArray)
{
if (isArray)
DumpJsonArray(output, iter);
else
DumpJsonObject(output, iter);
}
/*
* DumpJson converts BSON document to a JSON string.
* isArray signifies if bsonData is contents of array or object.
* [Some of] special BSON datatypes are converted to JSON using
* "Strict MongoDB Extended JSON" [1].
*
* [1] http://docs.mongodb.org/manual/reference/mongodb-extended-json/
*/
void
DumpJsonObject(StringInfo output, BSON_ITERATOR *iter)
{
char *json;
uint32_t len;
const uint8_t *data = NULL;
BSON bson;
bson_iter_document(iter, &len, &data);
if (bson_init_static(&bson, data, len))
{
json = bson_as_json (&bson, NULL);
if (json != NULL)
{
appendStringInfoString(output, json);
bson_free(json);
}
}
}
void
DumpJsonArray(StringInfo output, BSON_ITERATOR *iter)
{
char *json;
uint32_t len;
const uint8_t *data;
BSON bson;
bson_iter_array(iter, &len, &data);
if (bson_init_static(&bson, data, len))
{
if((json = bson_array_as_json (&bson, NULL)))
{
appendStringInfoString(output, json);
bson_free(json);
}
}
}
char*
BsonAsJson(const BSON* bsonDocument)
{
return bson_as_json(bsonDocument, NULL);
}