-
Notifications
You must be signed in to change notification settings - Fork 0
/
plv8_type.cc
822 lines (717 loc) · 18.7 KB
/
plv8_type.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
/*-------------------------------------------------------------------------
*
* plv8_type.cc : Postgres from/to v8 data converters.
*
* Copyright (c) 2009-2012, the PLV8JS Development Group.
*-------------------------------------------------------------------------
*/
#include "plv8.h"
extern "C" {
#if PG_VERSION_NUM >= 90300
#include "access/htup_details.h"
#endif
#include "catalog/pg_type.h"
#include "parser/parse_coerce.h"
#include "utils/array.h"
#include "utils/date.h"
#include "utils/datetime.h"
#include "utils/builtins.h"
#if PG_VERSION_NUM >= 90400
#include "utils/jsonb.h"
#endif
#include "utils/lsyscache.h"
#include "utils/syscache.h"
#include "utils/typcache.h"
#if PG_VERSION_NUM >= 90400
#include "utils/jsonb.h"
#endif
} // extern "C"
//#define CHECK_INTEGER_OVERFLOW
using namespace v8;
static Datum ToScalarDatum(Handle<v8::Value> value, bool *isnull, plv8_type *type);
static Datum ToArrayDatum(Handle<v8::Value> value, bool *isnull, plv8_type *type);
static Datum ToRecordDatum(Handle<v8::Value> value, bool *isnull, plv8_type *type);
static Local<v8::Value> ToScalarValue(Datum datum, bool isnull, plv8_type *type);
static Local<v8::Value> ToArrayValue(Datum datum, bool isnull, plv8_type *type);
static Local<v8::Value> ToRecordValue(Datum datum, bool isnull, plv8_type *type);
static double TimestampTzToEpoch(TimestampTz tm);
static Datum EpochToTimestampTz(double epoch);
static double DateToEpoch(DateADT date);
static Datum EpochToDate(double epoch);
void
plv8_fill_type(plv8_type *type, Oid typid, MemoryContext mcxt)
{
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);
type->is_composite = (type->category == TYPCATEGORY_COMPOSITE);
get_typlenbyvalalign(typid, &type->len, &type->byval, &type->align);
if (get_typtype(typid) == TYPTYPE_DOMAIN)
{
HeapTuple tp;
Form_pg_type typtup;
#if PG_VERSION_NUM < 90100
tp = SearchSysCache(TYPEOID, ObjectIdGetDatum(typid), 0, 0, 0);
#else
tp = SearchSysCache1(TYPEOID, ObjectIdGetDatum(typid));
#endif
if (HeapTupleIsValid(tp))
{
/*
* Check if the type is the external array types.
*/
typtup = (Form_pg_type) GETSTRUCT(tp);
if (strcmp(NameStr(typtup->typname),
"plv8_int2array") == 0)
{
type->ext_array = kExternalShortArray;
}
else if (strcmp(NameStr(typtup->typname),
"plv8_int4array") == 0)
{
type->ext_array = kExternalIntArray;
}
else if (strcmp(NameStr(typtup->typname),
"plv8_float4array") == 0)
{
type->ext_array = kExternalFloatArray;
}
else if (strcmp(NameStr(typtup->typname),
"plv8_float8array") == 0)
{
type->ext_array = kExternalDoubleArray;
}
ReleaseSysCache(tp);
}
else
elog(ERROR, "cache lookup failed for type %d", typid);
if (type->ext_array)
return;
/* If not, do as usual. */
}
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;
type->is_composite = (TypeCategory(elemid) == TYPCATEGORY_COMPOSITE);
get_typlenbyvalalign(type->typid, &type->len, &type->byval, &type->align);
}
}
/*
* Return the database type inferred by the JS value type.
* If none looks appropriate, InvalidOid is returned (currently,
* objects and arrays are in this case).
*/
Oid
inferred_datum_type(Handle<v8::Value> value)
{
if (value->IsUndefined() || value->IsNull())
return TEXTOID;
if (value->IsBoolean())
return BOOLOID;
else if (value->IsInt32())
return INT4OID;
else if (value->IsUint32())
return INT8OID;
else if (value->IsNumber())
return FLOAT8OID;
else if (value->IsString())
return TEXTOID;
else if (value->IsDate())
return TIMESTAMPOID;
/*
else if (value->IsObject())
else if (value->IsArray())
*/
return InvalidOid;
}
static Local<Object>
CreateExternalArray(void *data, plv8_external_array_type array_type,
int byte_size, Datum datum)
{
Local<v8::ArrayBuffer> buffer;
Local<v8::TypedArray> array;
buffer = v8::ArrayBuffer::New(plv8_isolate, byte_size);
if (buffer.IsEmpty())
{
return Local<Object>();
}
switch (array_type)
{
case kExternalByteArray:
array = v8::Int8Array::New(buffer, 0, byte_size);
break;
case kExternalUnsignedByteArray:
array = v8::Uint8Array::New(buffer, 0, byte_size);
break;
case kExternalShortArray:
array = v8::Int16Array::New(buffer, 0, byte_size / sizeof(int16));
break;
case kExternalUnsignedShortArray:
array = v8::Uint16Array::New(buffer, 0, byte_size / sizeof(int16));
break;
case kExternalIntArray:
array = v8::Int32Array::New(buffer, 0, byte_size / sizeof(int32));
break;
case kExternalUnsignedIntArray:
array = v8::Uint32Array::New(buffer, 0, byte_size / sizeof(int32));
break;
case kExternalFloatArray:
array = v8::Float32Array::New(buffer, 0, byte_size / sizeof(float4));
break;
case kExternalDoubleArray:
array = v8::Float64Array::New(buffer, 0, byte_size / sizeof(float8));
break;
default:
throw js_error("unexpected array type");
}
array->SetInternalField(0, External::New(plv8_isolate, DatumGetPointer(datum)));
// FIXME(bnoordhuis) Could create an ArrayBuffer directly from |data|
// but as it's unclear who owns that memory and what its life span is,
// let's just copy it over.
memcpy(buffer->GetContents().Data(), data, byte_size);
return array;
}
static void *
ExtractExternalArrayDatum(Handle<v8::Value> value)
{
if (value->IsUndefined() || value->IsNull())
return NULL;
if (value->IsTypedArray())
{
Handle<Object> object = Handle<Object>::Cast(value);
return Handle<External>::Cast(object->GetInternalField(0))->Value();
}
return NULL;
}
Datum
ToDatum(Handle<v8::Value> value, bool *isnull, plv8_type *type)
{
if (type->category == TYPCATEGORY_ARRAY)
return ToArrayDatum(value, isnull, type);
else
return ToScalarDatum(value, isnull, type);
}
static Datum
ToScalarDatum(Handle<v8::Value> value, bool *isnull, plv8_type *type)
{
if (type->category == TYPCATEGORY_COMPOSITE)
return ToRecordDatum(value, isnull, type);
if (value->IsUndefined() || value->IsNull())
{
*isnull = true;
return (Datum) 0;
}
*isnull = false;
switch (type->typid)
{
case OIDOID:
if (value->IsNumber())
return ObjectIdGetDatum(value->Uint32Value());
break;
case BOOLOID:
if (value->IsBoolean())
return BoolGetDatum(value->BooleanValue());
break;
case INT2OID:
if (value->IsNumber())
#ifdef CHECK_INTEGER_OVERFLOW
return DirectFunctionCall1(int82,
Int64GetDatum(value->IntegerValue()));
#else
return Int16GetDatum((int16) value->Int32Value());
#endif
break;
case INT4OID:
if (value->IsNumber())
#ifdef CHECK_INTEGER_OVERFLOW
return DirectFunctionCall1(int84,
Int64GetDatum(value->IntegerValue()));
#else
return Int32GetDatum((int32) value->Int32Value());
#endif
break;
case INT8OID:
if (value->IsNumber())
return Int64GetDatum((int64) value->IntegerValue());
break;
case FLOAT4OID:
if (value->IsNumber())
return Float4GetDatum((float4) value->NumberValue());
break;
case FLOAT8OID:
if (value->IsNumber())
return Float8GetDatum((float8) value->NumberValue());
break;
case NUMERICOID:
if (value->IsNumber())
return DirectFunctionCall1(float8_numeric,
Float8GetDatum((float8) value->NumberValue()));
break;
case DATEOID:
if (value->IsDate())
return EpochToDate(value->NumberValue());
break;
case TIMESTAMPOID:
case TIMESTAMPTZOID:
if (value->IsDate())
return EpochToTimestampTz(value->NumberValue());
break;
case BYTEAOID:
{
void *datum_p = ExtractExternalArrayDatum(value);
if (datum_p)
{
return PointerGetDatum(datum_p);
}
}
#if PG_VERSION_NUM >= 90400
case JSONBOID:
if (value->IsObject() || value->IsArray())
{
JSONObject JSON;
Handle<v8::Value> result = JSON.Stringify(value);
CString str(result);
// lots of casting, but it ends up working - there is no CStringGetJsonb exposed
return (Datum) DatumGetJsonb(DirectFunctionCall1(jsonb_in, (Datum) (char *) str));
}
break;
#endif
#if PG_VERSION_NUM >= 90200
case JSONOID:
if (value->IsObject() || value->IsArray())
{
JSONObject JSON;
Handle<v8::Value> result = JSON.Stringify(value);
CString str(result);
return CStringGetTextDatum(str);
}
break;
#endif
}
/* Use lexical cast for non-numeric types. */
CString str(value);
Datum result;
PG_TRY();
{
if (type->fn_input.fn_addr == NULL)
{
Oid input_func;
getTypeInputInfo(type->typid, &input_func, &type->ioparam);
fmgr_info_cxt(input_func, &type->fn_input, type->fn_input.fn_mcxt);
}
result = InputFunctionCall(&type->fn_input, str, type->ioparam, -1);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
return result;
}
static Datum
ToArrayDatum(Handle<v8::Value> value, bool *isnull, plv8_type *type)
{
int length;
Datum *values;
bool *nulls;
int ndims[1];
int lbs[] = {1};
ArrayType *result;
if (value->IsUndefined() || value->IsNull())
{
*isnull = true;
return (Datum) 0;
}
void *datum_p = ExtractExternalArrayDatum(value);
if (datum_p)
{
*isnull = false;
return PointerGetDatum(datum_p);
}
Handle<Array> array(Handle<Array>::Cast(value));
if (array.IsEmpty() || !array->IsArray())
throw js_error("value is not an Array");
length = array->Length();
values = (Datum *) palloc(sizeof(Datum) * length);
nulls = (bool *) palloc(sizeof(bool) * length);
ndims[0] = length;
for (int i = 0; i < length; i++) {
if (type->is_composite)
{
values[i] = ToRecordDatum(array->Get(i), &nulls[i], type);
} else {
values[i] = ToScalarDatum(array->Get(i), &nulls[i], type);
}
}
result = construct_md_array(values, nulls, 1, ndims, lbs,
type->typid, type->len, type->byval, type->align);
pfree(values);
pfree(nulls);
*isnull = false;
return PointerGetDatum(result);
}
static Datum
ToRecordDatum(Handle<v8::Value> value, bool *isnull, plv8_type *type)
{
Datum result;
TupleDesc tupdesc;
if (value->IsUndefined() || value->IsNull())
{
*isnull = true;
return (Datum) 0;
}
PG_TRY();
{
tupdesc = lookup_rowtype_tupdesc(type->typid, -1);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
Converter conv(tupdesc);
result = conv.ToDatum(value);
ReleaseTupleDesc(tupdesc);
*isnull = false;
return result;
}
Local<v8::Value>
ToValue(Datum datum, bool isnull, plv8_type *type)
{
if (isnull)
return Local<v8::Value>::New(plv8_isolate, Null(plv8_isolate));
else if (type->category == TYPCATEGORY_ARRAY || type->typid == RECORDARRAYOID)
return ToArrayValue(datum, isnull, type);
else if (type->category == TYPCATEGORY_COMPOSITE || type->typid == RECORDOID)
return ToRecordValue(datum, isnull, type);
else
return ToScalarValue(datum, isnull, type);
}
static Local<v8::Value>
ToScalarValue(Datum datum, bool isnull, plv8_type *type)
{
switch (type->typid)
{
case OIDOID:
return Uint32::New(plv8_isolate, DatumGetObjectId(datum));
case BOOLOID:
return Boolean::New(plv8_isolate, DatumGetBool(datum));
case INT2OID:
return Int32::New(plv8_isolate, DatumGetInt16(datum));
case INT4OID:
return Int32::New(plv8_isolate, DatumGetInt32(datum));
case INT8OID:
return Number::New(plv8_isolate, DatumGetInt64(datum));
case FLOAT4OID:
return Number::New(plv8_isolate, DatumGetFloat4(datum));
case FLOAT8OID:
return Number::New(plv8_isolate, DatumGetFloat8(datum));
case NUMERICOID:
return Number::New(plv8_isolate, DatumGetFloat8(
DirectFunctionCall1(numeric_float8, datum)));
case DATEOID:
return Date::New(plv8_isolate, DateToEpoch(DatumGetDateADT(datum)));
case TIMESTAMPOID:
case TIMESTAMPTZOID:
return Date::New(plv8_isolate, TimestampTzToEpoch(DatumGetTimestampTz(datum)));
case TEXTOID:
case VARCHAROID:
case BPCHAROID:
case XMLOID:
{
void *p = PG_DETOAST_DATUM_PACKED(datum);
const char *str = VARDATA_ANY(p);
int len = VARSIZE_ANY_EXHDR(p);
Local<String> result = ToString(str, len);
if (p != DatumGetPointer(datum))
pfree(p); // free if detoasted
return result;
}
case BYTEAOID:
{
void *p = PG_DETOAST_DATUM_COPY(datum);
return CreateExternalArray(VARDATA_ANY(p),
kExternalUnsignedByteArray,
VARSIZE_ANY_EXHDR(p),
PointerGetDatum(p));
}
#if PG_VERSION_NUM >= 90200
case JSONOID:
{
void *p = PG_DETOAST_DATUM_PACKED(datum);
const char *str = VARDATA_ANY(p);
int len = VARSIZE_ANY_EXHDR(p);
Local<v8::Value> jsonString = ToString(str, len);
JSONObject JSON;
Local<v8::Value> result = Local<v8::Value>::New(plv8_isolate, JSON.Parse(jsonString));
if (p != DatumGetPointer(datum))
pfree(p); // free if detoasted
return result;
}
#endif
#if PG_VERSION_NUM >= 90400
case JSONBOID:
{
Local<v8::Value> jsonString = ToString(datum, type);
JSONObject JSON;
Local<v8::Value> result = Local<v8::Value>::New(plv8_isolate, JSON.Parse(jsonString));
return result;
}
#endif
default:
return ToString(datum, type);
}
}
static Local<v8::Value>
ToArrayValue(Datum datum, bool isnull, plv8_type *type)
{
Datum *values;
bool *nulls;
int nelems;
/*
* If we can use an external array, do it instead.
*/
if (type->ext_array)
{
ArrayType *array = DatumGetArrayTypePCopy(datum);
/*
* We allow only non-NULL, 1-dim array.
*/
if (!ARR_HASNULL(array) && ARR_NDIM(array) <= 1)
{
int data_bytes = ARR_SIZE(array) -
ARR_OVERHEAD_NONULLS(1);
return CreateExternalArray(ARR_DATA_PTR(array),
type->ext_array,
data_bytes,
PointerGetDatum(array));
}
throw js_error("NULL element, or multi-dimension array not allowed"
" in external array type");
}
deconstruct_array(DatumGetArrayTypeP(datum),
type->typid, type->len, type->byval, type->align,
&values, &nulls, &nelems);
Local<Array> result = Array::New(plv8_isolate, nelems);
plv8_type base = { 0 };
bool ispreferred;
base.typid = type->typid;
if (base.typid == RECORDARRAYOID)
base.typid = RECORDOID;
base.fn_input.fn_mcxt = base.fn_output.fn_mcxt = type->fn_input.fn_mcxt;
get_type_category_preferred(base.typid, &(base.category), &ispreferred);
get_typlenbyvalalign(base.typid, &(base.len), &(base.byval), &(base.align));
for (int i = 0; i < nelems; i++)
result->Set(i, ToValue(values[i], nulls[i], &base));
pfree(values);
pfree(nulls);
return result;
}
static Local<v8::Value>
ToRecordValue(Datum datum, bool isnull, plv8_type *type)
{
HeapTupleHeader rec = DatumGetHeapTupleHeader(datum);
Oid tupType;
int32 tupTypmod;
TupleDesc tupdesc;
HeapTupleData tuple;
PG_TRY();
{
/* Extract type info from the tuple itself */
tupType = HeapTupleHeaderGetTypeId(rec);
tupTypmod = HeapTupleHeaderGetTypMod(rec);
tupdesc = lookup_rowtype_tupdesc(tupType, tupTypmod);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
Converter conv(tupdesc);
/* Build a temporary HeapTuple control structure */
tuple.t_len = HeapTupleHeaderGetDatumLength(rec);
ItemPointerSetInvalid(&(tuple.t_self));
tuple.t_tableOid = InvalidOid;
tuple.t_data = rec;
Local<v8::Value> result = conv.ToValue(&tuple);
ReleaseTupleDesc(tupdesc);
return result;
}
Local<String>
ToString(Datum value, plv8_type *type)
{
int encoding = GetDatabaseEncoding();
char *str;
PG_TRY();
{
if (type->fn_output.fn_addr == NULL)
{
Oid output_func;
bool isvarlen;
getTypeOutputInfo(type->typid, &output_func, &isvarlen);
fmgr_info_cxt(output_func, &type->fn_output, type->fn_output.fn_mcxt);
}
str = OutputFunctionCall(&type->fn_output, value);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
Local<String> result =
encoding == PG_UTF8
? String::NewFromUtf8(plv8_isolate, str)
: ToString(str, strlen(str), encoding);
pfree(str);
return result;
}
Local<String>
ToString(const char *str, int len, int encoding)
{
char *utf8;
if (len < 0)
len = strlen(str);
PG_TRY();
{
utf8 = (char *) pg_do_encoding_conversion(
(unsigned char *) str, len, encoding, PG_UTF8);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
if (utf8 != str)
len = strlen(utf8);
Local<String> result = String::NewFromUtf8(plv8_isolate, utf8, String::kNormalString, len);
if (utf8 != str)
pfree(utf8);
return result;
}
/*
* Convert utf8 text to database encoded text.
* The result could be same as utf8 input, or palloc'ed one.
*/
char *
ToCString(const String::Utf8Value &value)
{
char *str = const_cast<char *>(*value);
if (str == NULL)
return NULL;
int encoding = GetDatabaseEncoding();
if (encoding == PG_UTF8)
return str;
PG_TRY();
{
str = (char *) pg_do_encoding_conversion(
(unsigned char *) str, strlen(str), PG_UTF8, encoding);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
return str;
}
/*
* Convert utf8 text to database encoded text.
* The result is always palloc'ed one.
*/
char *
ToCStringCopy(const String::Utf8Value &value)
{
char *str;
const char *utf8 = *value;
if (utf8 == NULL)
return NULL;
PG_TRY();
{
int encoding = GetDatabaseEncoding();
str = (char *) pg_do_encoding_conversion(
(unsigned char *) utf8, strlen(utf8), PG_UTF8, encoding);
if (str == utf8)
str = pstrdup(utf8);
}
PG_CATCH();
{
throw pg_error();
}
PG_END_TRY();
return str;
}
/*
* Since v8 represents a Date object using a double value in msec from unix epoch,
* we need to shift the epoch and adjust the time unit.
*/
static double
TimestampTzToEpoch(TimestampTz tm)
{
double epoch;
// TODO: check if TIMESTAMP_NOBEGIN or NOEND
#ifdef HAVE_INT64_TIMESTAMP
epoch = (double) tm / 1000.0;
#else
epoch = (double) tm * 1000.0;
#endif
return epoch + (POSTGRES_EPOCH_JDATE - UNIX_EPOCH_JDATE) * 86400000.0;
}
static Datum
EpochToTimestampTz(double epoch)
{
epoch -= (POSTGRES_EPOCH_JDATE - UNIX_EPOCH_JDATE) * 86400000.0;
#ifdef HAVE_INT64_TIMESTAMP
return Int64GetDatum((int64) epoch * 1000);
#else
return Float8GetDatum(epoch / 1000.0);
#endif
}
static double
DateToEpoch(DateADT date)
{
double epoch;
// TODO: check if DATE_NOBEGIN or NOEND
#ifdef HAVE_INT64_TIMESTAMP
epoch = (double) date * USECS_PER_DAY / 1000.0;
#else
epoch = (double) date * SECS_PER_DAY * 1000.0;
#endif
return epoch + (POSTGRES_EPOCH_JDATE - UNIX_EPOCH_JDATE) * 86400000.0;
}
static Datum
EpochToDate(double epoch)
{
epoch -= (POSTGRES_EPOCH_JDATE - UNIX_EPOCH_JDATE) * 86400000.0;
#ifdef HAVE_INT64_TIMESTAMP
epoch = (epoch * 1000) / USECS_PER_DAY;
#else
epoch = (epoch / 1000) / SECS_PER_DAY;
#endif
PG_RETURN_DATEADT((DateADT) epoch);
}
CString::CString(Handle<v8::Value> value) : m_utf8(value)
{
m_str = ToCString(m_utf8);
}
CString::~CString()
{
if (m_str != *m_utf8)
pfree(m_str);
}
bool CString::toStdString(v8::Handle<v8::Value> value, std::string &out)
{
if(value.IsEmpty()) return false;
auto obj = value->ToString();
String::Utf8Value utf8(obj);
if(*utf8) {
out = *utf8;
return true;
}
return false;
}