-
Notifications
You must be signed in to change notification settings - Fork 79
/
redis_fdw.c
779 lines (646 loc) · 17.7 KB
/
redis_fdw.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
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
/*-------------------------------------------------------------------------
*
* foreign-data wrapper for Redis
*
* Copyright (c) 2011, PostgreSQL Global Development Group
*
* This software is released under the PostgreSQL Licence
*
* Author: Dave Page <[email protected]>
*
* IDENTIFICATION
* redis_fdw/redis_fdw.c
*
*-------------------------------------------------------------------------
*/
/* Debug mode */
/* #define DEBUG */
#include "postgres.h"
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#include <hiredis/hiredis.h>
#include "funcapi.h"
#include "access/reloptions.h"
#include "catalog/pg_foreign_server.h"
#include "catalog/pg_foreign_table.h"
#include "catalog/pg_user_mapping.h"
#include "catalog/pg_type.h"
#include "commands/defrem.h"
#include "commands/explain.h"
#include "foreign/fdwapi.h"
#include "foreign/foreign.h"
#include "miscadmin.h"
#include "mb/pg_wchar.h"
#include "optimizer/cost.h"
#include "storage/fd.h"
#include "utils/array.h"
#include "utils/builtins.h"
PG_MODULE_MAGIC;
#define PROCID_TEXTEQ 67
/*
* Describes the valid options for objects that use this wrapper.
*/
struct RedisFdwOption
{
const char *optname;
Oid optcontext; /* Oid of catalog in which option may appear */
};
/*
* Valid options for redis_fdw.
*
*/
static struct RedisFdwOption valid_options[] =
{
/* Connection options */
{ "address", ForeignServerRelationId },
{ "port", ForeignServerRelationId },
{ "password", UserMappingRelationId },
{ "database", ForeignTableRelationId },
/* Sentinel */
{ NULL, InvalidOid }
};
/*
* FDW-specific information for ForeignScanState.fdw_state.
*/
typedef struct RedisFdwExecutionState
{
AttInMetadata *attinmeta;
redisContext *context;
redisReply *reply;
long long row;
char *address;
int port;
char *password;
int database;
} RedisFdwExecutionState;
/*
* SQL functions
*/
extern Datum redis_fdw_handler(PG_FUNCTION_ARGS);
extern Datum redis_fdw_validator(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(redis_fdw_handler);
PG_FUNCTION_INFO_V1(redis_fdw_validator);
/*
* FDW callback routines
*/
static FdwPlan *redisPlanForeignScan(Oid foreigntableid, PlannerInfo *root, RelOptInfo *baserel);
static void redisExplainForeignScan(ForeignScanState *node, ExplainState *es);
static void redisBeginForeignScan(ForeignScanState *node, int eflags);
static TupleTableSlot *redisIterateForeignScan(ForeignScanState *node);
static void redisReScanForeignScan(ForeignScanState *node);
static void redisEndForeignScan(ForeignScanState *node);
/*
* Helper functions
*/
static bool redisIsValidOption(const char *option, Oid context);
static void redisGetOptions(Oid foreigntableid, char **address, int *port, char **password, int *database);
static void redisGetQual(Node *node, TupleDesc tupdesc, char **key, char **value, bool *pushdown);
/*
* Foreign-data wrapper handler function: return a struct with pointers
* to my callback routines.
*/
Datum
redis_fdw_handler(PG_FUNCTION_ARGS)
{
FdwRoutine *fdwroutine = makeNode(FdwRoutine);
#ifdef DEBUG
elog(NOTICE, "redis_fdw_handler");
#endif
fdwroutine->PlanForeignScan = redisPlanForeignScan;
fdwroutine->ExplainForeignScan = redisExplainForeignScan;
fdwroutine->BeginForeignScan = redisBeginForeignScan;
fdwroutine->IterateForeignScan = redisIterateForeignScan;
fdwroutine->ReScanForeignScan = redisReScanForeignScan;
fdwroutine->EndForeignScan = redisEndForeignScan;
PG_RETURN_POINTER(fdwroutine);
}
/*
* Validate the generic options given to a FOREIGN DATA WRAPPER, SERVER,
* USER MAPPING or FOREIGN TABLE that uses file_fdw.
*
* Raise an ERROR if the option or its value is considered invalid.
*/
Datum
redis_fdw_validator(PG_FUNCTION_ARGS)
{
List *options_list = untransformRelOptions(PG_GETARG_DATUM(0));
Oid catalog = PG_GETARG_OID(1);
char *svr_address = NULL;
int svr_port = 0;
char *svr_password = NULL;
int svr_database = 0;
ListCell *cell;
#ifdef DEBUG
elog(NOTICE, "redis_fdw_validator");
#endif
/*
* Check that only options supported by redis_fdw,
* and allowed for the current object type, are given.
*/
foreach(cell, options_list)
{
DefElem *def = (DefElem *) lfirst(cell);
if (!redisIsValidOption(def->defname, catalog))
{
struct RedisFdwOption *opt;
StringInfoData buf;
/*
* Unknown option specified, complain about it. Provide a hint
* with list of valid options for the object.
*/
initStringInfo(&buf);
for (opt = valid_options; opt->optname; opt++)
{
if (catalog == opt->optcontext)
appendStringInfo(&buf, "%s%s", (buf.len > 0) ? ", " : "",
opt->optname);
}
ereport(ERROR,
(errcode(ERRCODE_FDW_INVALID_OPTION_NAME),
errmsg("invalid option \"%s\"", def->defname),
errhint("Valid options in this context are: %s", buf.len ? buf.data : "<none>")
));
}
if (strcmp(def->defname, "address") == 0)
{
if (svr_address)
ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR),
errmsg("conflicting or redundant options: address (%s)", defGetString(def))
));
svr_address = defGetString(def);
}
else if (strcmp(def->defname, "port") == 0)
{
if (svr_port)
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("conflicting or redundant options: port (%s)", defGetString(def))
));
svr_port = atoi(defGetString(def));
}
if (strcmp(def->defname, "password") == 0)
{
if (svr_password)
ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR),
errmsg("conflicting or redundant options: password")
));
svr_password = defGetString(def);
}
else if (strcmp(def->defname, "database") == 0)
{
if (svr_database)
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("conflicting or redundant options: database (%s)", defGetString(def))
));
svr_database = atoi(defGetString(def));
}
}
PG_RETURN_VOID();
}
/*
* Check if the provided option is one of the valid options.
* context is the Oid of the catalog holding the object the option is for.
*/
static bool
redisIsValidOption(const char *option, Oid context)
{
struct RedisFdwOption *opt;
#ifdef DEBUG
elog(NOTICE, "redisIsValidOption");
#endif
for (opt = valid_options; opt->optname; opt++)
{
if (context == opt->optcontext && strcmp(opt->optname, option) == 0)
return true;
}
return false;
}
/*
* Fetch the options for a redis_fdw foreign table.
*/
static void
redisGetOptions(Oid foreigntableid, char **address, int *port, char **password, int *database)
{
ForeignTable *table;
ForeignServer *server;
UserMapping *mapping;
List *options;
ListCell *lc;
#ifdef DEBUG
elog(NOTICE, "redisGetOptions");
#endif
/*
* Extract options from FDW objects.
* We only need to worry about server options for Redis
*
*/
table = GetForeignTable(foreigntableid);
server = GetForeignServer(table->serverid);
mapping = GetUserMapping(GetUserId(), table->serverid);
options = NIL;
options = list_concat(options, table->options);
options = list_concat(options, server->options);
options = list_concat(options, mapping->options);
/* Loop through the options, and get the server/port */
foreach(lc, options)
{
DefElem *def = (DefElem *) lfirst(lc);
if (strcmp(def->defname, "address") == 0)
*address = defGetString(def);
if (strcmp(def->defname, "port") == 0)
*port = atoi(defGetString(def));
if (strcmp(def->defname, "password") == 0)
*password = defGetString(def);
if (strcmp(def->defname, "database") == 0)
*database = atoi(defGetString(def));
}
/* Default values, if required */
if (!*address)
*address = "127.0.0.1";
if (!*port)
*port = 6379;
if (!*database)
*database = 0;
}
/*
* redisPlanForeignScan
* Create a FdwPlan for a scan on the foreign table
*/
static FdwPlan *
redisPlanForeignScan(Oid foreigntableid, PlannerInfo *root, RelOptInfo *baserel)
{
FdwPlan *fdwplan;
char *svr_address = NULL;
int svr_port = 0;
char *svr_password = NULL;
int svr_database = 0;
redisContext *context;
redisReply *reply;
struct timeval timeout = {1, 500000};
#ifdef DEBUG
elog(NOTICE, "redisPlanForeignScan");
#endif
/* Fetch options */
redisGetOptions(foreigntableid, &svr_address, &svr_port, &svr_password, &svr_database);
/* Connect to the database */
context = redisConnectWithTimeout(svr_address, svr_port, timeout);
if (context->err)
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to connect to Redis: %d", context->err)
));
/* Authenticate */
if (svr_password)
{
reply = redisCommand(context, "AUTH %s", svr_password);
if (!reply)
{
redisFree(context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to authenticate to redis: %d", context->err)
));
}
freeReplyObject(reply);
}
/* Select the appropriate database */
reply = redisCommand(context, "SELECT %d", svr_database);
if (!reply)
{
redisFree(context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to select database %d: %d", svr_database, context->err)
));
}
/* Execute a query to get the database size */
reply = redisCommand(context, "DBSIZE");
if (!reply)
{
redisFree(context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to get the database size: %d", context->err)
));
}
/*
* Construct FdwPlan with cost estimates.
*/
fdwplan = makeNode(FdwPlan);
/* Local databases are probably faster */
if (strcmp(svr_address, "127.0.0.1") == 0 || strcmp(svr_address, "localhost") == 0)
fdwplan->startup_cost = 10;
else
fdwplan->startup_cost = 25;
baserel->rows = reply->integer;
fdwplan->total_cost = reply->integer + fdwplan->startup_cost;
fdwplan->fdw_private = NIL; /* not used */
freeReplyObject(reply);
redisFree(context);
return fdwplan;
}
/*
* fileExplainForeignScan
* Produce extra output for EXPLAIN
*/
static void
redisExplainForeignScan(ForeignScanState *node, ExplainState *es)
{
redisReply *reply;
RedisFdwExecutionState *festate = (RedisFdwExecutionState *) node->fdw_state;
#ifdef DEBUG
elog(NOTICE, "redisExplainForeignScan");
#endif
/* Execute a query to get the database size */
reply = redisCommand(festate->context, "DBSIZE");
if (!reply)
{
redisFree(festate->context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to get the database size: %d", festate->context->err)
));
}
if (reply->type == REDIS_REPLY_ERROR)
{
char *err = pstrdup(reply->str);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to get the database size: %s", err)
));
}
/* Suppress file size if we're not showing cost details */
if (es->costs)
{
ExplainPropertyLong("Foreign Redis Database Size", reply->integer, es);
}
freeReplyObject(reply);
}
/*
* redisBeginForeignScan
* Initiate access to the database
*/
static void
redisBeginForeignScan(ForeignScanState *node, int eflags)
{
char *svr_address = NULL;
int svr_port = 0;
char *svr_password = NULL;
int svr_database = 0;
redisContext *context;
redisReply *reply;
char *qual_key = NULL;
char *qual_value = NULL;
bool pushdown = false;
RedisFdwExecutionState *festate;
struct timeval timeout = {1, 500000};
#ifdef DEBUG
elog(NOTICE, "BeginForeignScan");
#endif
/* Fetch options */
redisGetOptions(RelationGetRelid(node->ss.ss_currentRelation), &svr_address, &svr_port, &svr_password, &svr_database);
/* Connect to the server */
context = redisConnectWithTimeout(svr_address, svr_port, timeout);
if (context->err)
{
redisFree(context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to connect to Redis: %s", context->errstr)
));
}
/* Authenticate */
if (svr_password)
{
reply = redisCommand(context, "AUTH %s", svr_password);
if (!reply)
{
redisFree(context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to authenticate to redis: %s", context->errstr)
));
}
freeReplyObject(reply);
}
/* Select the appropriate database */
reply = redisCommand(context, "SELECT %d", svr_database);
if (!reply)
{
redisFree(context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to select database %d: %s", svr_database, context->errstr)
));
}
if (reply->type == REDIS_REPLY_ERROR)
{
char *err = pstrdup(reply->str);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION),
errmsg("failed to select database %d: %s", svr_database, err)
));
}
freeReplyObject(reply);
/* See if we've got a qual we can push down */
if (node->ss.ps.plan->qual)
{
ListCell *lc;
foreach (lc, node->ss.ps.qual)
{
/* Only the first qual can be pushed down to Redis */
ExprState *state = lfirst(lc);
redisGetQual((Node *) state->expr, node->ss.ss_currentRelation->rd_att, &qual_key, &qual_value, &pushdown);
if (pushdown)
break;
}
}
/* Stash away the state info we have already */
festate = (RedisFdwExecutionState *) palloc(sizeof(RedisFdwExecutionState));
node->fdw_state = (void *) festate;
festate->context = context;
festate->row = 0;
festate->address = svr_address;
festate->port = svr_port;
/* OK, we connected. If this is an EXPLAIN, bail out now */
if (eflags & EXEC_FLAG_EXPLAIN_ONLY)
return;
/* Execute the query */
if (qual_value && pushdown)
{
reply = redisCommand(context, "KEYS %s", qual_value);
elog(NOTICE, "Executed: KEYS %s", qual_value);
}
else
reply = redisCommand(context, "KEYS *");
if (!reply)
{
redisFree(festate->context);
ereport(ERROR,
(errcode(ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION),
errmsg("failed to list keys: %s", context->errstr)
));
}
/* Store the additional state info */
festate->attinmeta = TupleDescGetAttInMetadata(node->ss.ss_currentRelation->rd_att);
festate->reply = reply;
}
/*
* redisIterateForeignScan
* Read next record from the data file and store it into the
* ScanTupleSlot as a virtual tuple
*/
static TupleTableSlot *
redisIterateForeignScan(ForeignScanState *node)
{
bool found;
redisReply *reply = 0;
char *key;
char *data = 0;
char **values;
HeapTuple tuple;
RedisFdwExecutionState *festate = (RedisFdwExecutionState *) node->fdw_state;
TupleTableSlot *slot = node->ss.ss_ScanTupleSlot;
#ifdef DEBUG
elog(NOTICE, "redisIterateForeignScan");
#endif
/* Cleanup */
ExecClearTuple(slot);
/* Get the next record, and set found */
found = false;
if (festate->row < festate->reply->elements)
{
/*
* Get the row, check the result type, and handle accordingly.
* If it's nil, we go ahead and get the next row.
*/
do
{
key = festate->reply->element[festate->row]->str;
reply = redisCommand(festate->context, "GET %s", key);
if (!reply)
{
freeReplyObject(festate->reply);
redisFree(festate->context);
ereport(ERROR, (errcode(ERRCODE_FDW_UNABLE_TO_CREATE_REPLY),
errmsg("failed to get the value for key \"%s\": %s", key, festate->context->errstr)
));
}
festate->row++;
} while ((reply->type == REDIS_REPLY_NIL ||
reply->type == REDIS_REPLY_STATUS ||
reply->type == REDIS_REPLY_ERROR) &&
festate->row < festate->reply->elements);
if (festate->row <= festate->reply->elements)
{
/*
* Now, deal with the different data types we might
* have got from Redis.
*/
switch (reply->type)
{
case REDIS_REPLY_INTEGER:
data = (char *) palloc(sizeof(char) * 64);
snprintf(data, 64, "%lld", reply->integer);
found = true;
break;
case REDIS_REPLY_STRING:
data = reply->str;
found = true;
break;
case REDIS_REPLY_ARRAY:
data = "<array>";
found = true;
break;
}
}
}
/* Build the tuple */
values = (char **) palloc(sizeof(char *) * 2);
if (found)
{
values[0] = key;
values[1] = data;
tuple = BuildTupleFromCStrings(festate->attinmeta, values);
ExecStoreTuple(tuple, slot, InvalidBuffer, false);
}
/* Cleanup */
if (reply)
freeReplyObject(reply);
return slot;
}
/*
* redisEndForeignScan
* Finish scanning foreign table and dispose objects used for this scan
*/
static void
redisEndForeignScan(ForeignScanState *node)
{
RedisFdwExecutionState *festate = (RedisFdwExecutionState *) node->fdw_state;
#ifdef DEBUG
elog(NOTICE, "redisEndForeignScan");
#endif
/* if festate is NULL, we are in EXPLAIN; nothing to do */
if (festate)
{
if (festate->reply)
freeReplyObject(festate->reply);
if (festate->context)
redisFree(festate->context);
}
}
/*
* redisReScanForeignScan
* Rescan table, possibly with new parameters
*/
static void
redisReScanForeignScan(ForeignScanState *node)
{
RedisFdwExecutionState *festate = (RedisFdwExecutionState *) node->fdw_state;
#ifdef DEBUG
elog(NOTICE, "redisReScanForeignScan");
#endif
festate->row = 0;
}
static void
redisGetQual(Node *node, TupleDesc tupdesc, char **key, char **value, bool *pushdown)
{
*key = NULL;
*value = NULL;
*pushdown = false;
if (!node)
return;
if (IsA(node, OpExpr))
{
OpExpr *op = (OpExpr *) node;
Node *left, *right;
Index varattno;
if (list_length(op->args) != 2)
return;
left = list_nth(op->args, 0);
if (!IsA(left, Var))
return;
varattno = ((Var *) left)->varattno;
right = list_nth(op->args, 1);
if (IsA(right, Const))
{
StringInfoData buf;
initStringInfo(&buf);
/* And get the column and value... */
*key = NameStr(tupdesc->attrs[varattno - 1]->attname);
*value = TextDatumGetCString(((Const *) right)->constvalue);
/*
* We can push down this qual if:
* - The operatory is TEXTEQ
* - The qual is on the key column
*/
if (op->opfuncid == PROCID_TEXTEQ && strcmp(*key, "key") == 0)
*pushdown = true;
elog(NOTICE, "Got qual %s = %s", *key, *value);
return;
}
}
return;
}