-
Notifications
You must be signed in to change notification settings - Fork 0
/
plv8.cc
1889 lines (1620 loc) · 48.1 KB
/
plv8.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
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
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*-------------------------------------------------------------------------
*
* plv8.cc : PL/v8 handler routines.
*
* Copyright (c) 2009-2012, the PLV8JS Development Group.
*-------------------------------------------------------------------------
*/
#include "plv8.h"
#include "libplatform/libplatform.h"
#include <new>
extern "C" {
#if PG_VERSION_NUM >= 90300
#include "access/htup_details.h"
#endif
#include "access/xact.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "commands/trigger.h"
#include "executor/spi.h"
#include "funcapi.h"
#include "miscadmin.h"
#include "utils/builtins.h"
#include "utils/guc.h"
#include "utils/memutils.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
#include "utils/syscache.h"
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(plv8_call_handler);
PG_FUNCTION_INFO_V1(plv8_call_validator);
PG_FUNCTION_INFO_V1(plcoffee_call_handler);
PG_FUNCTION_INFO_V1(plcoffee_call_validator);
PG_FUNCTION_INFO_V1(plls_call_handler);
PG_FUNCTION_INFO_V1(plls_call_validator);
Datum plv8_call_handler(PG_FUNCTION_ARGS);
Datum plv8_call_validator(PG_FUNCTION_ARGS);
Datum plcoffee_call_handler(PG_FUNCTION_ARGS);
Datum plcoffee_call_validator(PG_FUNCTION_ARGS);
Datum plls_call_handler(PG_FUNCTION_ARGS);
Datum plls_call_validator(PG_FUNCTION_ARGS);
void _PG_init(void);
#if PG_VERSION_NUM >= 90000
PG_FUNCTION_INFO_V1(plv8_inline_handler);
PG_FUNCTION_INFO_V1(plcoffee_inline_handler);
PG_FUNCTION_INFO_V1(plls_inline_handler);
Datum plv8_inline_handler(PG_FUNCTION_ARGS);
Datum plcoffee_inline_handler(PG_FUNCTION_ARGS);
Datum plls_inline_handler(PG_FUNCTION_ARGS);
#endif
} // extern "C"
using namespace v8;
typedef struct plv8_proc_cache
{
Oid fn_oid;
Persistent<Function> function;
char proname[NAMEDATALEN];
char *prosrc;
TransactionId fn_xmin;
ItemPointerData fn_tid;
Oid user_id;
int nargs;
bool retset; /* true if SRF */
Oid rettype;
Oid argtypes[FUNC_MAX_ARGS];
} plv8_proc_cache;
Isolate* plv8_isolate = NULL;
/*
* The function and context are created at the first invocation. Their
* lifetime is same as plv8_proc, but they are not palloc'ed memory,
* so we need to clear them at the end of transaction.
*/
typedef struct plv8_exec_env
{
Persistent<Object> recv;
Persistent<Context> context;
Local<Context> localContext() { return Local<Context>::New(plv8_isolate, context) ; }
struct plv8_exec_env *next;
} plv8_exec_env;
/*
* We cannot cache plv8_type inter executions because it has FmgrInfo fields.
* So, we cache rettype and argtype in fn_extra only during one execution.
*/
typedef struct plv8_proc
{
plv8_proc_cache *cache;
plv8_exec_env *xenv;
TypeFuncClass functypclass; /* For SRF */
plv8_type rettype;
plv8_type argtypes[FUNC_MAX_ARGS];
} plv8_proc;
/*
* For the security reasons, the global context is separated
* between users and it's associated with user id.
*/
typedef struct plv8_context
{
Persistent<Context> context;
Local<Context> localContext() { return Local<Context>::New(plv8_isolate, context) ; }
Oid user_id;
} plv8_context;
static HTAB *plv8_proc_cache_hash = NULL;
static plv8_exec_env *exec_env_head = NULL;
extern const unsigned char coffee_script_binary_data[];
extern const unsigned char livescript_binary_data[];
class Plv8ArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
public:
virtual void* Allocate(size_t length) {
void* data = AllocateUninitialized(length);
return data == NULL ? data : memset(data, 0, length);
}
virtual void* AllocateUninitialized(size_t length) {
void *data = NULL;
MemoryContext oldcontext = MemoryContextSwitchTo(TopMemoryContext);
PG_TRY();
{
data = palloc(length);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
MemoryContextSwitchTo(oldcontext);
return data;
}
virtual void Free(void* data, size_t) {
MemoryContext oldcontext = MemoryContextSwitchTo(TopMemoryContext);
PG_TRY();
{
pfree(data);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
MemoryContextSwitchTo(oldcontext);
}
};
/*
* lower_case_functions are postgres-like C functions.
* They could raise errors with elog/ereport(ERROR).
*/
static plv8_proc *plv8_get_proc(Oid fn_oid, FunctionCallInfo fcinfo,
bool validate, char ***argnames) throw();
static void plv8_xact_cb(XactEvent event, void *arg);
/*
* CamelCaseFunctions are C++ functions.
* They could raise errors with C++ throw statements, or never throw exceptions.
*/
static plv8_exec_env *CreateExecEnv(Handle<Function> script);
static plv8_exec_env *CreateExecEnv(Persistent<Function>& script);
static plv8_proc *Compile(Oid fn_oid, FunctionCallInfo fcinfo,
bool validate, bool is_trigger, Dialect dialect);
static Local<Function> CompileFunction(Persistent<Context>& global_context,
const char *proname, int proarglen,
const char *proargs[], const char *prosrc,
bool is_trigger, bool retset, Dialect dialect);
static Datum CallFunction(PG_FUNCTION_ARGS, plv8_exec_env *xenv,
int nargs, plv8_type argtypes[], plv8_type *rettype);
static Datum CallSRFunction(PG_FUNCTION_ARGS, plv8_exec_env *xenv,
int nargs, plv8_type argtypes[], plv8_type *rettype);
static Datum CallTrigger(PG_FUNCTION_ARGS, plv8_exec_env *xenv);
static void GetGlobalContext(Persistent<Context>& global_context);
static Local<ObjectTemplate> GetGlobalObjectTemplate();
/* A GUC to specify a custom start up function to call */
static char *plv8_start_proc = NULL;
/* A GUC to specify V8 flags (e.g. --es_staging) */
static char *plv8_v8_flags = NULL;
/* A GUC to specify the ICU data directory */
static char *plv8_icu_data = NULL;
/* A GUC to specify the remote debugger port */
static int plv8_debugger_port;
/*
* We use vector instead of hash since the size of this array
* is expected to be short in most cases.
*/
static std::vector<plv8_context *> ContextVector;
#ifdef ENABLE_DEBUGGER_SUPPORT
v8::Persistent<v8::Context> debug_message_context;
void DispatchDebugMessages() {
// We are in some random thread. We should already have v8::Locker acquired
// (we requested this when registered this callback). We was called
// because new debug messages arrived; they may have already been processed,
// but we shouldn't worry about this.
//
// All we have to do is to set context and call ProcessDebugMessages.
//
// We should decide which V8 context to use here. This is important for
// "evaluate" command, because it must be executed some context.
// In our sample we have only one context, so there is nothing really to
// think about.
v8::Context::Scope scope(debug_message_context);
v8::Debug::ProcessDebugMessages();
}
#endif // ENABLE_DEBUGGER_SUPPORT
void
_PG_init(void)
{
HASHCTL hash_ctl = { 0 };
hash_ctl.keysize = sizeof(Oid);
hash_ctl.entrysize = sizeof(plv8_proc_cache);
hash_ctl.hash = oid_hash;
plv8_proc_cache_hash = hash_create("PLv8 Procedures", 32,
&hash_ctl, HASH_ELEM | HASH_FUNCTION);
DefineCustomStringVariable("plv8.start_proc",
gettext_noop("PLV8 function to run once when PLV8 is first used."),
NULL,
&plv8_start_proc,
NULL,
PGC_USERSET, 0,
#if PG_VERSION_NUM >= 90100
NULL,
#endif
NULL,
NULL);
DefineCustomStringVariable("plv8.icu_data",
gettext_noop("ICU data file directory."),
NULL,
&plv8_icu_data,
NULL,
PGC_USERSET, 0,
#if PG_VERSION_NUM >= 90100
NULL,
#endif
NULL,
NULL);
DefineCustomStringVariable("plv8.v8_flags",
gettext_noop("V8 engine initialization flags (e.g. --es_staging for additional ES6 features)."),
NULL,
&plv8_v8_flags,
NULL,
PGC_USERSET, 0,
#if PG_VERSION_NUM >= 90100
NULL,
#endif
NULL,
NULL);
DefineCustomIntVariable("plv8.debugger_port",
gettext_noop("V8 remote debug port."),
gettext_noop("The default value is 35432. "
"This is effective only if PLV8 is built with ENABLE_DEBUGGER_SUPPORT."),
&plv8_debugger_port,
35432, 0, 65536,
PGC_USERSET, 0,
#if PG_VERSION_NUM >= 90100
NULL,
#endif
NULL,
NULL);
RegisterXactCallback(plv8_xact_cb, NULL);
EmitWarningsOnPlaceholders("plv8");
if (plv8_icu_data == NULL) {
elog(DEBUG1, "no icu dir");
V8::InitializeICU();
} else {
elog(DEBUG1, "init icu data %s", plv8_icu_data);
V8::InitializeICU(plv8_icu_data);
}
#if V8_MAJOR_VERSION == 4 && V8_MINOR_VERSION >= 6
V8::InitializeExternalStartupData("plv8");
#endif
Platform* platform = platform::CreateDefaultPlatform();
V8::InitializePlatform(platform);
V8::Initialize();
if (plv8_v8_flags != NULL) {
V8::SetFlagsFromString(plv8_v8_flags, strlen(plv8_v8_flags));
}
Isolate::CreateParams params;
params.array_buffer_allocator = new Plv8ArrayBufferAllocator();
plv8_isolate = Isolate::New(params);
plv8_isolate->Enter();
}
static void
plv8_xact_cb(XactEvent event, void *arg)
{
plv8_exec_env *env = exec_env_head;
while (env)
{
if (!env->recv.IsEmpty())
{
env->recv.Reset();
}
env = env->next;
/*
* Each item was allocated in TopTransactionContext, so
* it will be freed eventually.
*/
}
exec_env_head = NULL;
}
static inline plv8_exec_env *
plv8_new_exec_env()
{
plv8_exec_env *xenv = (plv8_exec_env *)
MemoryContextAllocZero(TopTransactionContext, sizeof(plv8_exec_env));
new(&xenv->context) Persistent<Context>();
new(&xenv->recv) Persistent<Object>();
/*
* Add it to the list, which will be freed in the end of top transaction.
*/
xenv->next = exec_env_head;
exec_env_head = xenv;
return xenv;
}
static Datum
common_pl_call_handler(PG_FUNCTION_ARGS, Dialect dialect) throw()
{
Oid fn_oid = fcinfo->flinfo->fn_oid;
bool is_trigger = CALLED_AS_TRIGGER(fcinfo);
try
{
#ifdef ENABLE_DEBUGGER_SUPPORT
Locker lock;
#endif // ENABLE_DEBUGGER_SUPPORT
HandleScope handle_scope(plv8_isolate);
if (!fcinfo->flinfo->fn_extra)
{
plv8_proc *proc = Compile(fn_oid, fcinfo,
false, is_trigger, dialect);
proc->xenv = CreateExecEnv(proc->cache->function);
fcinfo->flinfo->fn_extra = proc;
}
plv8_proc *proc = (plv8_proc *) fcinfo->flinfo->fn_extra;
plv8_proc_cache *cache = proc->cache;
if (is_trigger)
return CallTrigger(fcinfo, proc->xenv);
else if (cache->retset)
return CallSRFunction(fcinfo, proc->xenv,
cache->nargs, proc->argtypes, &proc->rettype);
else
return CallFunction(fcinfo, proc->xenv,
cache->nargs, proc->argtypes, &proc->rettype);
}
catch (js_error& e) { e.rethrow(); }
catch (pg_error& e) { e.rethrow(); }
return (Datum) 0; // keep compiler quiet
}
Datum
plv8_call_handler(PG_FUNCTION_ARGS)
{
return common_pl_call_handler(fcinfo, PLV8_DIALECT_NONE);
}
Datum
plcoffee_call_handler(PG_FUNCTION_ARGS)
{
return common_pl_call_handler(fcinfo, PLV8_DIALECT_COFFEE);
}
Datum
plls_call_handler(PG_FUNCTION_ARGS)
{
return common_pl_call_handler(fcinfo, PLV8_DIALECT_LIVESCRIPT);
}
#if PG_VERSION_NUM >= 90000
static Datum
common_pl_inline_handler(PG_FUNCTION_ARGS, Dialect dialect) throw()
{
InlineCodeBlock *codeblock = (InlineCodeBlock *) DatumGetPointer(PG_GETARG_DATUM(0));
Assert(IsA(codeblock, InlineCodeBlock));
try
{
#ifdef ENABLE_DEBUGGER_SUPPORT
Locker lock;
#endif // ENABLE_DEBUGGER_SUPPORT
HandleScope handle_scope(plv8_isolate);
char *source_text = codeblock->source_text;
Persistent<Context> global_context;
GetGlobalContext(global_context);
Local<Function> function = CompileFunction(global_context,
NULL, 0, NULL,
source_text, false, false, dialect);
plv8_exec_env *xenv = CreateExecEnv(function);
return CallFunction(fcinfo, xenv, 0, NULL, NULL);
}
catch (js_error& e) { e.rethrow(); }
catch (pg_error& e) { e.rethrow(); }
return (Datum) 0; // keep compiler quiet
}
Datum
plv8_inline_handler(PG_FUNCTION_ARGS)
{
return common_pl_inline_handler(fcinfo, PLV8_DIALECT_NONE);
}
Datum
plcoffee_inline_handler(PG_FUNCTION_ARGS)
{
return common_pl_inline_handler(fcinfo, PLV8_DIALECT_COFFEE);
}
Datum
plls_inline_handler(PG_FUNCTION_ARGS)
{
return common_pl_inline_handler(fcinfo, PLV8_DIALECT_LIVESCRIPT);
}
#endif
/*
* DoCall -- Call a JS function with SPI support.
*
* This function could throw C++ exceptions, but must not throw PG exceptions.
*/
static Local<v8::Value>
DoCall(Handle<Function> fn, Handle<Object> receiver,
int nargs, Handle<v8::Value> args[])
{
TryCatch try_catch;
if (SPI_connect() != SPI_OK_CONNECT)
throw js_error("could not connect to SPI manager");
Local<v8::Value> result = fn->Call(receiver, nargs, args);
int status = SPI_finish();
if (result.IsEmpty())
throw js_error(try_catch);
if (status < 0)
throw js_error(FormatSPIStatus(status));
return result;
}
static Datum
CallFunction(PG_FUNCTION_ARGS, plv8_exec_env *xenv,
int nargs, plv8_type argtypes[], plv8_type *rettype)
{
Local<Context> context = xenv->localContext();
Context::Scope context_scope(context);
Handle<v8::Value> args[FUNC_MAX_ARGS];
Handle<Object> plv8obj;
WindowFunctionSupport support(context, fcinfo);
/*
* In window function case, we cannot see the argument datum
* in fcinfo. Instead, get them by WinGetFuncArgCurrent().
*/
if (support.IsWindowCall())
{
WindowObject winobj = support.GetWindowObject();
for (int i = 0; i < nargs; i++)
{
bool isnull;
Datum arg = WinGetFuncArgCurrent(winobj, i, &isnull);
args[i] = ToValue(arg, isnull, &argtypes[i]);
}
}
else
{
for (int i = 0; i < nargs; i++)
args[i] = ToValue(fcinfo->arg[i], fcinfo->argnull[i], &argtypes[i]);
}
Local<Object> recv = Local<Object>::New(plv8_isolate, xenv->recv);
Local<Function> fn =
Local<Function>::Cast(recv->GetInternalField(0));
Local<v8::Value> result =
DoCall(fn, recv, nargs, args);
if (rettype)
return ToDatum(result, &fcinfo->isnull, rettype);
else
PG_RETURN_VOID();
}
static Tuplestorestate *
CreateTupleStore(PG_FUNCTION_ARGS, TupleDesc *tupdesc)
{
Tuplestorestate *tupstore;
PG_TRY();
{
ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
MemoryContext per_query_ctx;
MemoryContext oldcontext;
plv8_proc *proc = (plv8_proc *) fcinfo->flinfo->fn_extra;
/* check to see if caller supports us returning a tuplestore */
if (rsinfo == NULL || !IsA(rsinfo, ReturnSetInfo))
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("set-valued function called in context that cannot accept a set")));
if (!(rsinfo->allowedModes & SFRM_Materialize))
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("materialize mode required, but it is not " \
"allowed in this context")));
if (!proc->functypclass)
proc->functypclass = get_call_result_type(fcinfo, NULL, NULL);
per_query_ctx = rsinfo->econtext->ecxt_per_query_memory;
oldcontext = MemoryContextSwitchTo(per_query_ctx);
tupstore = tuplestore_begin_heap(true, false, work_mem);
rsinfo->returnMode = SFRM_Materialize;
rsinfo->setResult = tupstore;
/* Build a tuple descriptor for our result type */
if (proc->rettype.typid == RECORDOID)
{
if (proc->functypclass != TYPEFUNC_COMPOSITE)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("function returning record called in context "
"that cannot accept type record")));
}
if (!rsinfo->setDesc)
{
*tupdesc = CreateTupleDescCopy(rsinfo->expectedDesc);
rsinfo->setDesc = *tupdesc;
}
else
*tupdesc = rsinfo->setDesc;
MemoryContextSwitchTo(oldcontext);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
return tupstore;
}
static Datum
CallSRFunction(PG_FUNCTION_ARGS, plv8_exec_env *xenv,
int nargs, plv8_type argtypes[], plv8_type *rettype)
{
plv8_proc *proc = (plv8_proc *) fcinfo->flinfo->fn_extra;
TupleDesc tupdesc;
Tuplestorestate *tupstore;
tupstore = CreateTupleStore(fcinfo, &tupdesc);
Handle<Context> context = xenv->localContext();
Context::Scope context_scope(context);
Converter conv(tupdesc, proc->functypclass == TYPEFUNC_SCALAR);
Handle<v8::Value> args[FUNC_MAX_ARGS + 1];
/*
* In case this is nested via SPI, stash pre-registered converters
* for the previous SRF.
*/
SRFSupport support(context, &conv, tupstore);
for (int i = 0; i < nargs; i++)
args[i] = ToValue(fcinfo->arg[i], fcinfo->argnull[i], &argtypes[i]);
Local<Object> recv = Local<Object>::New(plv8_isolate, xenv->recv);
Local<Function> fn =
Local<Function>::Cast(recv->GetInternalField(0));
Handle<v8::Value> result = DoCall(fn, recv, nargs, args);
if (result->IsUndefined())
{
// no additional values
}
else if (result->IsArray())
{
Handle<Array> array = Handle<Array>::Cast(result);
// return an array of records.
int length = array->Length();
for (int i = 0; i < length; i++)
conv.ToDatum(array->Get(i), tupstore);
}
else
{
// return a record or a scalar
conv.ToDatum(result, tupstore);
}
/* clean up and return the tuplestore */
tuplestore_donestoring(tupstore);
return (Datum) 0;
}
static Datum
CallTrigger(PG_FUNCTION_ARGS, plv8_exec_env *xenv)
{
// trigger arguments are:
// 0: NEW
// 1: OLD
// 2: TG_NAME
// 3: TG_WHEN
// 4: TG_LEVEL
// 5: TG_OP
// 6: TG_RELID
// 7: TG_TABLE_NAME
// 8: TG_TABLE_SCHEMA
// 9: TG_ARGV
TriggerData *trig = (TriggerData *) fcinfo->context;
Relation rel = trig->tg_relation;
TriggerEvent event = trig->tg_event;
Handle<v8::Value> args[10];
Datum result = (Datum) 0;
Handle<Context> context = xenv->localContext();
Context::Scope context_scope(context);
if (TRIGGER_FIRED_FOR_ROW(event))
{
TupleDesc tupdesc = RelationGetDescr(rel);
Converter conv(tupdesc);
if (TRIGGER_FIRED_BY_INSERT(event))
{
result = PointerGetDatum(trig->tg_trigtuple);
// NEW
args[0] = conv.ToValue(trig->tg_trigtuple);
// OLD
args[1] = Undefined(plv8_isolate);
}
else if (TRIGGER_FIRED_BY_DELETE(event))
{
result = PointerGetDatum(trig->tg_trigtuple);
// NEW
args[0] = Undefined(plv8_isolate);
// OLD
args[1] = conv.ToValue(trig->tg_trigtuple);
}
else if (TRIGGER_FIRED_BY_UPDATE(event))
{
result = PointerGetDatum(trig->tg_newtuple);
// NEW
args[0] = conv.ToValue(trig->tg_newtuple);
// OLD
args[1] = conv.ToValue(trig->tg_trigtuple);
}
}
else
{
args[0] = args[1] = Undefined(plv8_isolate);
}
// 2: TG_NAME
args[2] = ToString(trig->tg_trigger->tgname);
// 3: TG_WHEN
if (TRIGGER_FIRED_BEFORE(event))
args[3] = String::NewFromUtf8(plv8_isolate, "BEFORE");
else
args[3] = String::NewFromUtf8(plv8_isolate, "AFTER");
// 4: TG_LEVEL
if (TRIGGER_FIRED_FOR_ROW(event))
args[4] = String::NewFromUtf8(plv8_isolate, "ROW");
else
args[4] = String::NewFromUtf8(plv8_isolate, "STATEMENT");
// 5: TG_OP
if (TRIGGER_FIRED_BY_INSERT(event))
args[5] = String::NewFromUtf8(plv8_isolate, "INSERT");
else if (TRIGGER_FIRED_BY_DELETE(event))
args[5] = String::NewFromUtf8(plv8_isolate, "DELETE");
else if (TRIGGER_FIRED_BY_UPDATE(event))
args[5] = String::NewFromUtf8(plv8_isolate, "UPDATE");
#ifdef TRIGGER_FIRED_BY_TRUNCATE
else if (TRIGGER_FIRED_BY_TRUNCATE(event))
args[5] = String::NewFromUtf8(plv8_isolate, "TRUNCATE");
#endif
else
args[5] = String::NewFromUtf8(plv8_isolate, "?");
// 6: TG_RELID
args[6] = Uint32::New(plv8_isolate, RelationGetRelid(rel));
// 7: TG_TABLE_NAME
args[7] = ToString(RelationGetRelationName(rel));
// 8: TG_TABLE_SCHEMA
args[8] = ToString(get_namespace_name(RelationGetNamespace(rel)));
// 9: TG_ARGV
Handle<Array> tgargs = Array::New(plv8_isolate, trig->tg_trigger->tgnargs);
for (int i = 0; i < trig->tg_trigger->tgnargs; i++)
tgargs->Set(i, ToString(trig->tg_trigger->tgargs[i]));
args[9] = tgargs;
TryCatch try_catch;
Local<Object> recv = Local<Object>::New(plv8_isolate, xenv->recv);
Local<Function> fn =
Local<Function>::Cast(recv->GetInternalField(0));
Handle<v8::Value> newtup =
DoCall(fn, recv, lengthof(args), args);
if (newtup.IsEmpty())
throw js_error(try_catch);
/*
* If the function specifically returned null, return NULL to
* tell executor to skip the operation. Otherwise, the function
* result is the tuple to be returned.
*/
if (newtup->IsNull() || !TRIGGER_FIRED_FOR_ROW(event))
{
result = PointerGetDatum(NULL);
}
else if (!newtup->IsUndefined())
{
TupleDesc tupdesc = RelationGetDescr(rel);
Converter conv(tupdesc);
HeapTupleHeader header;
header = DatumGetHeapTupleHeader(conv.ToDatum(newtup));
/* We know it's there; heap_form_tuple stores with this layout. */
result = PointerGetDatum((char *) header - HEAPTUPLESIZE);
}
return result;
}
static Datum
common_pl_call_validator(PG_FUNCTION_ARGS, Dialect dialect) throw()
{
Oid fn_oid = PG_GETARG_OID(0);
HeapTuple tuple;
Form_pg_proc proc;
char functyptype;
bool is_trigger = false;
if (!CheckFunctionValidatorAccess(fcinfo->flinfo->fn_oid, fn_oid))
PG_RETURN_VOID();
/* Get the new function's pg_proc entry */
tuple = SearchSysCache(PROCOID, ObjectIdGetDatum(fn_oid), 0, 0, 0);
if (!HeapTupleIsValid(tuple))
elog(ERROR, "cache lookup failed for function %u", fn_oid);
proc = (Form_pg_proc) GETSTRUCT(tuple);
functyptype = get_typtype(proc->prorettype);
/* Disallow pseudotype result */
/* except for TRIGGER, RECORD, INTERNAL, VOID or polymorphic types */
if (functyptype == TYPTYPE_PSEUDO)
{
/* we assume OPAQUE with no arguments means a trigger */
if (proc->prorettype == TRIGGEROID ||
(proc->prorettype == OPAQUEOID && proc->pronargs == 0))
is_trigger = true;
else if (proc->prorettype != RECORDOID &&
proc->prorettype != VOIDOID &&
proc->prorettype != INTERNALOID &&
!IsPolymorphicType(proc->prorettype))
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("PL/v8 functions cannot return type %s",
format_type_be(proc->prorettype))));
}
ReleaseSysCache(tuple);
try
{
#ifdef ENABLE_DEBUGGER_SUPPORT
Locker lock;
#endif // ENABLE_DEBUGGER_SUPPORT
/* Don't use validator's fcinfo */
plv8_proc *proc = Compile(fn_oid, NULL,
true, is_trigger, dialect);
(void) CreateExecEnv(proc->cache->function);
/* the result of a validator is ignored */
PG_RETURN_VOID();
}
catch (js_error& e) { e.rethrow(); }
catch (pg_error& e) { e.rethrow(); }
return (Datum) 0; // keep compiler quiet
}
Datum
plv8_call_validator(PG_FUNCTION_ARGS)
{
return common_pl_call_validator(fcinfo, PLV8_DIALECT_NONE);
}
Datum
plcoffee_call_validator(PG_FUNCTION_ARGS)
{
return common_pl_call_validator(fcinfo, PLV8_DIALECT_COFFEE);
}
Datum
plls_call_validator(PG_FUNCTION_ARGS)
{
return common_pl_call_validator(fcinfo, PLV8_DIALECT_LIVESCRIPT);
}
static plv8_proc *
plv8_get_proc(Oid fn_oid, FunctionCallInfo fcinfo, bool validate, char ***argnames) throw()
{
HeapTuple procTup;
plv8_proc_cache *cache;
bool found;
bool isnull;
Datum prosrc;
Oid *argtypes;
char *argmodes;
MemoryContext oldcontext;
procTup = SearchSysCache(PROCOID, ObjectIdGetDatum(fn_oid), 0, 0, 0);
if (!HeapTupleIsValid(procTup))
elog(ERROR, "cache lookup failed for function %u", fn_oid);
cache = (plv8_proc_cache *)
hash_search(plv8_proc_cache_hash,&fn_oid, HASH_ENTER, &found);
if (found)
{
bool uptodate;
/*
* We need to check user id and dispose it if it's different from
* the previous cache user id, as the V8 function is associated
* with the context where it was generated. In most cases,
* we can expect this doesn't affect runtime performance.
*/
uptodate = (!cache->function.IsEmpty() &&
cache->fn_xmin == HeapTupleHeaderGetXmin(procTup->t_data) &&
ItemPointerEquals(&cache->fn_tid, &procTup->t_self) &&
cache->user_id == GetUserId());
if (!uptodate)
{
if (cache->prosrc)
{
pfree(cache->prosrc);
cache->prosrc = NULL;
}
cache->function.Reset();
}
else
{
ReleaseSysCache(procTup);
}
}
else
{
new(&cache->function) Persistent<Function>();
cache->prosrc = NULL;
}
if (cache->function.IsEmpty())
{
Form_pg_proc procStruct;
procStruct = (Form_pg_proc) GETSTRUCT(procTup);
prosrc = SysCacheGetAttr(PROCOID, procTup, Anum_pg_proc_prosrc, &isnull);
if (isnull)
elog(ERROR, "null prosrc");
cache->retset = procStruct->proretset;
cache->rettype = procStruct->prorettype;
strlcpy(cache->proname, NameStr(procStruct->proname), NAMEDATALEN);
cache->fn_xmin = HeapTupleHeaderGetXmin(procTup->t_data);
cache->fn_tid = procTup->t_self;
cache->user_id = GetUserId();
int nargs = get_func_arg_info(procTup, &argtypes, argnames, &argmodes);
if (validate)
{
/*
* Disallow non-polymorphic pseudotypes in arguments
* (either IN or OUT). Internal type is used to declare
* js functions for find_function().
*/
for (int i = 0; i < nargs; i++)
{
if (get_typtype(argtypes[i]) == TYPTYPE_PSEUDO &&
argtypes[i] != INTERNALOID &&
!IsPolymorphicType(argtypes[i]))
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("PL/v8 functions cannot accept type %s",
format_type_be(argtypes[i]))));
}
}
oldcontext = MemoryContextSwitchTo(TopMemoryContext);
cache->prosrc = TextDatumGetCString(prosrc);
MemoryContextSwitchTo(oldcontext);
ReleaseSysCache(procTup);
int inargs = 0;
for (int i = 0; i < nargs; i++)
{
Oid argtype = argtypes[i];
char argmode = argmodes ? argmodes[i] : PROARGMODE_IN;
switch (argmode)
{
case PROARGMODE_IN:
case PROARGMODE_INOUT:
case PROARGMODE_VARIADIC:
break;
default:
continue;
}
if (*argnames)
(*argnames)[inargs] = (*argnames)[i];
cache->argtypes[inargs] = argtype;
inargs++;
}
cache->nargs = inargs;
}
MemoryContext mcxt = CurrentMemoryContext;
if (fcinfo)
mcxt = fcinfo->flinfo->fn_mcxt;
plv8_proc *proc = (plv8_proc *) MemoryContextAllocZero(mcxt,
offsetof(plv8_proc, argtypes) + sizeof(plv8_type) * cache->nargs);
proc->cache = cache;
for (int i = 0; i < cache->nargs; i++)
{
Oid argtype = cache->argtypes[i];
/* Resolve polymorphic types, if this is an actual call context. */
if (fcinfo && IsPolymorphicType(argtype))
argtype = get_fn_expr_argtype(fcinfo->flinfo, i);
plv8_fill_type(&proc->argtypes[i], argtype, mcxt);
}
Oid rettype = cache->rettype;
/* Resolve polymorphic return type if this is an actual call context. */