This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plv8.cc
892 lines (748 loc) · 21.4 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
/*
* plv8.cc : PL/v8 handler routines.
*/
#include "plv8.h"
#include <new>
extern "C" {
#define delete delete_
#define namespace namespace_
#define typeid typeid_
#define typename typename_
#define using using_
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "commands/trigger.h"
#include "funcapi.h"
#include "miscadmin.h"
#include "utils/memutils.h"
#include "utils/builtins.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
#include "utils/syscache.h"
#undef delete
#undef namespace
#undef typeid
#undef typename
#undef using
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(plv8_call_handler);
PG_FUNCTION_INFO_V1(plv8_call_validator);
Datum plv8_call_handler(PG_FUNCTION_ARGS) throw();
Datum plv8_call_validator(PG_FUNCTION_ARGS) throw();
#if PG_VERSION_NUM >= 90000
PG_FUNCTION_INFO_V1(plv8_inline_handler);
Datum plv8_inline_handler(PG_FUNCTION_ARGS) throw();
#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;
int nargs;
bool retset; /* true if SRF */
Oid rettype;
Oid argtypes[FUNC_MAX_ARGS];
} plv8_proc_cache;
/*
* 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_type rettype;
plv8_type argtypes[FUNC_MAX_ARGS];
} plv8_proc;
static HTAB *plv8_proc_cache_hash = NULL;
/*
* loser_case_functions are postgres-like C functions.
* They could raise errors with elog/ereport(ERROR).
*/
static plv8_proc *plv8_get_proc(Oid fn_oid, MemoryContext fn_mcxt, bool validate, char ***argnames) throw();
static void plv8_fill_type(plv8_type *type, Oid typid, MemoryContext mcxt) throw();
/*
* CamelCaseFunctions are C++ functions.
* They could raise errors with C++ throw statements, or never throw exceptions.
*/
static plv8_proc *Compile(Oid fn_oid, MemoryContext fn_mcxt, bool validate, bool is_trigger);
static Handle<Function> CreateFunction(const char *proname, int proarglen,
const char *proargs[], const char *prosrc,
bool is_trigger, bool retset);
static Datum CallFunction(PG_FUNCTION_ARGS, Handle<Function> fn,
int nargs, plv8_type argtypes[], plv8_type *rettype);
static Datum CallSRFunction(PG_FUNCTION_ARGS, Handle<Function> fn,
int nargs, plv8_type argtypes[], plv8_type *rettype);
static Datum CallTrigger(PG_FUNCTION_ARGS, Handle<Function> fn);
static Handle<Context> GetGlobalContext() throw();
Datum
plv8_call_handler(PG_FUNCTION_ARGS) throw()
{
Oid fn_oid = fcinfo->flinfo->fn_oid;
bool is_trigger = CALLED_AS_TRIGGER(fcinfo);
try
{
HandleScope handle_scope;
if (!fcinfo->flinfo->fn_extra)
fcinfo->flinfo->fn_extra = Compile(fn_oid, fcinfo->flinfo->fn_mcxt, false, is_trigger);
plv8_proc *proc = (plv8_proc *) fcinfo->flinfo->fn_extra;
plv8_proc_cache *cache = proc->cache;
if (is_trigger)
return CallTrigger(fcinfo, cache->function);
else if (cache->retset)
return CallSRFunction(fcinfo, cache->function,
cache->nargs, proc->argtypes, &proc->rettype);
else
return CallFunction(fcinfo, cache->function,
cache->nargs, proc->argtypes, &proc->rettype);
}
catch (js_error& e) { e.rethrow(); }
catch (pg_error& e) { e.rethrow(); }
return (Datum) 0; // keep compiler quiet
}
#if PG_VERSION_NUM >= 90000
Datum
plv8_inline_handler(PG_FUNCTION_ARGS) throw()
{
InlineCodeBlock *codeblock = (InlineCodeBlock *) DatumGetPointer(PG_GETARG_DATUM(0));
Assert(IsA(codeblock, InlineCodeBlock));
try
{
HandleScope handle_scope;
Handle<Function> fn = CreateFunction(NULL, 0, NULL,
codeblock->source_text, false, false);
return CallFunction(fcinfo, fn, 0, NULL, NULL);
}
catch (js_error& e) { e.rethrow(); }
catch (pg_error& e) { e.rethrow(); }
return (Datum) 0; // keep compiler quiet
}
#endif
static Datum
CallFunction(PG_FUNCTION_ARGS, Handle<Function> fn,
int nargs, plv8_type argtypes[], plv8_type *rettype)
{
Handle<Context> global_context = GetGlobalContext();
Context::Scope context_scope(global_context);
Handle<v8::Value> args[FUNC_MAX_ARGS];
TryCatch try_catch;
for (int i = 0; i < nargs; i++)
args[i] = ToValue(fcinfo->arg[i], fcinfo->argnull[i], &argtypes[i]);
Handle<v8::Value> result =
fn->Call(global_context->Global(), nargs, args);
if (result.IsEmpty())
throw js_error(try_catch);
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;
/* 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")));
/* Build a tuple descriptor for our result type */
if (get_call_result_type(fcinfo, NULL, tupdesc) != TYPEFUNC_COMPOSITE)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("SETOF a scalar type is not implemented yet")));
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;
rsinfo->setDesc = *tupdesc;
MemoryContextSwitchTo(oldcontext);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
return tupstore;
}
static Datum
CallSRFunction(PG_FUNCTION_ARGS, Handle<Function> fn,
int nargs, plv8_type argtypes[], plv8_type *rettype)
{
TupleDesc tupdesc;
Tuplestorestate *tupstore;
tupstore = CreateTupleStore(fcinfo, &tupdesc);
Handle<Context> global_context = GetGlobalContext();
Context::Scope context_scope(global_context);
Converter conv(tupdesc);
Handle<v8::Value> args[FUNC_MAX_ARGS + 1];
TryCatch try_catch;
for (int i = 0; i < nargs; i++)
args[i] = ToValue(fcinfo->arg[i], fcinfo->argnull[i], &argtypes[i]);
// Add "yield" function as a hidden argument.
// TODO: yield should be passed as a global variable.
args[nargs] = CreateYieldFunction(&conv, tupstore);
Handle<v8::Value> result =
fn->Call(global_context->Global(), nargs + 1, args);
if (result.IsEmpty())
throw js_error(try_catch);
if (result->IsUndefined())
{
// no additinal 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 if (result->IsObject())
{
// return a record
conv.ToDatum(result, tupstore);
}
else
{
throw js_error("SETOF function cannot return scalar value");
}
/* clean up and return the tuplestore */
tuplestore_donestoring(tupstore);
return (Datum) 0;
}
static Datum
CallTrigger(PG_FUNCTION_ARGS, Handle<Function> fn)
{
// 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> global_context = GetGlobalContext();
Context::Scope context_scope(global_context);
TryCatch try_catch;
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();
}
else if (TRIGGER_FIRED_BY_DELETE(event))
{
result = PointerGetDatum(trig->tg_trigtuple);
// NEW
args[0] = Undefined();
// 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();
}
// 2: TG_NAME
args[2] = ToString(trig->tg_trigger->tgname);
// 3: TG_WHEN
if (TRIGGER_FIRED_BEFORE(event))
args[3] = String::New("BEFORE");
else
args[3] = String::New("AFTER");
// 4: TG_LEVEL
if (TRIGGER_FIRED_FOR_ROW(event))
args[4] = String::New("ROW");
else
args[4] = String::New("STATEMENT");
// 5: TG_OP
if (TRIGGER_FIRED_BY_INSERT(event))
args[5] = String::New("INSERT");
else if (TRIGGER_FIRED_BY_DELETE(event))
args[5] = String::New("DELETE");
else if (TRIGGER_FIRED_BY_UPDATE(event))
args[5] = String::New("UPDATE");
#ifdef TRIGGER_FIRED_BY_TRUNCATE
else if (TRIGGER_FIRED_BY_TRUNCATE(event))
args[5] = String::New("TRUNCATE");
#endif
else
args[5] = String::New("?");
// 6: TG_RELID
args[6] = Uint32::New(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(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;
Handle<v8::Value> newtup =
fn->Call(global_context->Global(), lengthof(args), args);
if (newtup.IsEmpty())
throw js_error(try_catch);
// TODO: replace NEW tuple if modified.
return result;
}
Datum
plv8_call_validator(PG_FUNCTION_ARGS) throw()
{
Oid fn_oid = PG_GETARG_OID(0);
HeapTuple tuple;
Form_pg_proc proc;
char functyptype;
bool is_trigger = false;
/* 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, or VOID */
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)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("PL/v8 functions cannot return type %s",
format_type_be(proc->prorettype))));
}
ReleaseSysCache(tuple);
try
{
(void) Compile(fn_oid, fcinfo->flinfo->fn_mcxt, true, is_trigger);
/* 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
}
static plv8_proc *
plv8_get_proc(Oid fn_oid, MemoryContext fn_mcxt, bool validate, char ***argnames) throw()
{
HeapTuple procTup;
plv8_proc_cache *cache;
bool found;
bool isnull;
Datum prosrc;
Oid *argtypes;
char *argmodes;
Oid rettype;
MemoryContext oldcontext;
if (plv8_proc_cache_hash == NULL)
{
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);
}
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;
uptodate = (!cache->function.IsEmpty() &&
cache->fn_xmin == HeapTupleHeaderGetXmin(procTup->t_data) &&
ItemPointerEquals(&cache->fn_tid, &procTup->t_self));
if (!uptodate)
{
if (cache->prosrc)
{
pfree(cache->prosrc);
cache->prosrc = NULL;
}
cache->function.Dispose();
cache->function.Clear();
}
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;
int nargs = get_func_arg_info(procTup, &argtypes, argnames, &argmodes);
if (validate)
{
/* Disallow pseudotypes in arguments (either IN or OUT) */
for (int i = 0; i < nargs; i++)
{
if (get_typtype(argtypes[i]) == TYPTYPE_PSEUDO)
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;
}
plv8_proc *proc = (plv8_proc *) MemoryContextAllocZero(fn_mcxt,
offsetof(plv8_proc, argtypes) + sizeof(plv8_type) * cache->nargs);
proc->cache = cache;
for (int i = 0; i < cache->nargs; i++)
plv8_fill_type(&proc->argtypes[i], cache->argtypes[i], fn_mcxt);
plv8_fill_type(&proc->rettype, cache->rettype, fn_mcxt);
return proc;
}
static plv8_proc *
Compile(Oid fn_oid, MemoryContext fn_mcxt, bool validate, bool is_trigger)
{
plv8_proc *proc;
char **argnames;
PG_TRY();
{
proc = plv8_get_proc(fn_oid, fn_mcxt, validate, &argnames);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
plv8_proc_cache *cache = proc->cache;
if (cache->function.IsEmpty())
cache->function = Persistent<Function>::New(CreateFunction(
cache->proname,
cache->nargs,
(const char **) argnames,
cache->prosrc,
is_trigger,
cache->retset));
return proc;
}
static Handle<Function>
CreateFunction(
const char *proname,
int proarglen,
const char *proargs[],
const char *prosrc,
bool is_trigger,
bool retset)
{
HandleScope handle_scope;
StringInfoData src;
Handle<Context> global_context = GetGlobalContext();
initStringInfo(&src);
/*
* function _(<arg1, ...>){
* <prosrc>
* }
* _
*/
appendStringInfo(&src, "function _(");
if (is_trigger)
{
if (proarglen != 0)
throw js_error("trigger function cannot have arguments");
// trigger function has special arguments.
appendStringInfo(&src,
"NEW, OLD, TG_NAME, TG_WHEN, TG_LEVEL, TG_OP, "
"TG_RELID, TG_TABLE_NAME, TG_TABLE_SCHEMA, TG_ARGV");
}
else
{
for (int i = 0; i < proarglen; i++)
{
if (i > 0)
appendStringInfoChar(&src, ',');
if (proargs && proargs[i])
appendStringInfoString(&src, proargs[i]);
else
appendStringInfo(&src, "$%d", i + 1); // unnamed argument to $N
}
// Add "yield" function as a hidden argument.
if (retset)
{
if (proarglen > 0)
appendStringInfoChar(&src, ',');
appendStringInfoString(&src, "yield");
}
}
appendStringInfo(&src, "){\n%s\n};\n_", prosrc);
Handle<v8::Value> name;
if (proname)
name = ToString(proname);
else
name = Undefined();
Handle<String> source = ToString(src.data, src.len);
pfree(src.data);
Context::Scope context_scope(global_context);
TryCatch try_catch;
Handle<Script> script = Script::Compile(source, name);
if (script.IsEmpty())
throw js_error(try_catch);
Handle<v8::Value> result = script->Run();
if (result.IsEmpty())
throw js_error(try_catch);
Handle<Function> fn = Handle<Function>::Cast(result);
if (fn.IsEmpty())
throw js_error(try_catch);
return fn;
}
static void
plv8_fill_type(plv8_type *type, Oid typid, MemoryContext mcxt) throw()
{
bool ispreferred;
if (!mcxt)
mcxt = CurrentMemoryContext;
type->typid = typid;
type->fn_input.fn_mcxt = type->fn_output.fn_mcxt = mcxt;
get_type_category_preferred(typid, &type->category, &ispreferred);
get_typlenbyvalalign(typid, &type->len, &type->byval, &type->align);
if (type->category == TYPCATEGORY_ARRAY)
{
Oid elemid = get_element_type(typid);
if (elemid == InvalidOid)
ereport(ERROR,
(errmsg("cannot determine element type of array: %u", typid)));
type->typid = elemid;
get_typlenbyvalalign(type->typid, &type->len, &type->byval, &type->align);
}
}
Handle<v8::Value>
ThrowError(const char *message) throw()
{
return ThrowException(Exception::Error(String::New(message)));
}
static Handle<Context>
GetGlobalContext() throw()
{
static Persistent<Context> global_context;
if (global_context.IsEmpty())
{
HandleScope handle_scope;
Handle<ObjectTemplate> global = ObjectTemplate::New();
// built-in function print(elevel, ...)
global->Set(String::NewSymbol("print"),
FunctionTemplate::New(Print));
global->Set(String::NewSymbol("DEBUG5"), Int32::New(DEBUG5));
global->Set(String::NewSymbol("DEBUG4"), Int32::New(DEBUG4));
global->Set(String::NewSymbol("DEBUG3"), Int32::New(DEBUG3));
global->Set(String::NewSymbol("DEBUG2"), Int32::New(DEBUG2));
global->Set(String::NewSymbol("DEBUG1"), Int32::New(DEBUG1));
global->Set(String::NewSymbol("DEBUG"), Int32::New(DEBUG5));
global->Set(String::NewSymbol("LOG"), Int32::New(LOG));
global->Set(String::NewSymbol("INFO"), Int32::New(INFO));
global->Set(String::NewSymbol("NOTICE"), Int32::New(NOTICE));
global->Set(String::NewSymbol("WARNING"), Int32::New(WARNING));
// ERROR or higher severity levels are not allowed. Use "throw" instead.
// built-in function executeSql(sql)
global->Set(String::NewSymbol("executeSql"),
FunctionTemplate::New(ExecuteSql));
global_context = Context::New(NULL, global);
}
return global_context;
}
Converter::Converter(TupleDesc tupdesc) :
m_tupdesc(tupdesc),
m_colnames(tupdesc->natts),
m_coltypes(tupdesc->natts)
{
for (int c = 0; c < tupdesc->natts; c++)
{
m_colnames[c] = ToString(NameStr(tupdesc->attrs[c]->attname));
PG_TRY();
{
plv8_fill_type(&m_coltypes[c], m_tupdesc->attrs[c]->atttypid, NULL);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
}
}
// TODO: use prototype instead of per tuple fields to reduce
// memory consumption.
Handle<Object>
Converter::ToValue(HeapTuple tuple)
{
Handle<Object> obj = Object::New();
for (int c = 0; c < m_tupdesc->natts; c++)
{
Datum datum;
bool isnull;
datum = heap_getattr(tuple, c + 1, m_tupdesc, &isnull);
obj->Set(m_colnames[c], ::ToValue(datum, isnull, &m_coltypes[c]));
}
return obj;
}
Datum
Converter::ToDatum(Handle<v8::Value> value, Tuplestorestate *tupstore)
{
Datum result;
TryCatch try_catch;
Handle<Object> obj = Handle<Object>::Cast(value);
if (obj.IsEmpty())
throw js_error(try_catch);
/*
* Use vector<char> instead of vector<bool> because <bool> version is
* s specialized and different from bool[].
*/
Datum *values = (Datum *) palloc(sizeof(Datum) * m_tupdesc->natts);
bool *nulls = (bool *) palloc(sizeof(bool) * m_tupdesc->natts);
for (int c = 0; c < m_tupdesc->natts; c++)
{
Handle<v8::Value> attr = obj->Get(m_colnames[c]);
if (attr.IsEmpty() || attr->IsUndefined() || attr->IsNull())
nulls[c] = true;
else
values[c] = ::ToDatum(attr, &nulls[c], &m_coltypes[c]);
}
if (tupstore)
{
tuplestore_putvalues(tupstore, m_tupdesc, values, nulls);
result = (Datum) 0;
}
else
{
result = HeapTupleGetDatum(heap_form_tuple(m_tupdesc, values, nulls));
}
pfree(values);
pfree(nulls);
return result;
}
js_error::js_error() throw()
: m_msg(NULL), m_detail(NULL)
{
}
js_error::js_error(const char *msg) throw()
{
m_msg = pstrdup(msg);
m_detail = NULL;
}
js_error::js_error(TryCatch &try_catch) throw()
{
HandleScope handle_scope;
String::Utf8Value exception(try_catch.Exception());
Handle<Message> message = try_catch.Message();
m_msg = NULL;
m_detail = NULL;
try
{
m_msg = ToCStringCopy(exception);
if (!message.IsEmpty())
{
StringInfoData str;
CString script(message->GetScriptResourceName());
int lineno = message->GetLineNumber();
CString source(message->GetSourceLine());
/*
* Report lineno - 1 because "function _(...){" was added
* at the first line to the javascript code.
*/
initStringInfo(&str);
appendStringInfo(&str, "%s() LINE %d: %s",
script.str("?"), lineno - 1, source.str("?"));
m_detail = str.data;
}
}
catch (...)
{
// nested error, keep quiet.
}
}
__attribute__((noreturn))
void
js_error::rethrow() throw()
{
ereport(ERROR,
(m_msg ? errmsg("%s", m_msg) : 0,
m_detail ? errdetail("%s", m_detail) : 0));
exit(0); // keep compiler quiet
}
__attribute__((noreturn))
void
pg_error::rethrow() throw()
{
PG_RE_THROW();
exit(0); // keep compiler quiet
}