-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuint.c
2234 lines (1972 loc) · 59.7 KB
/
uint.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
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
#include "postgres.h"
#include "access/hash.h"
#include "fmgr.h"
#include "libpq/pqformat.h"
#include "catalog/pg_statistic.h"
#include "utils/lsyscache.h"
#include "utils/selfuncs.h"
#include "utils/syscache.h"
#if PG_VERSION_NUM >= 90300
#include "access/htup_details.h"
#endif
#include <limits.h>
#include <math.h>
#include <stdlib.h>
#define PG_GETARG_UINT8(n) DatumGetUInt8(PG_GETARG_DATUM(n))
#define PG_RETURN_UINT8(x) return UInt8GetDatum(x)
#define PG_RETURN_UINT16(x) return UInt16GetDatum(x)
#if !defined(likely) && !defined(unlikely)
#if defined(__GNUC__) && \
(__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95))
#define likely(x) __builtin_expect((x), 1)
#define unlikely(x) __builtin_expect((x), 0)
#else
#define likely(x) (x)
#define unlikely(x) (x)
#endif
#endif
#ifdef PG_MODULE_MAGIC
PG_MODULE_MAGIC;
#endif
/*
* ==================
* UINT1 DECLARATIONS
* ==================
*/
Datum uint1in(PG_FUNCTION_ARGS);
Datum uint1out(PG_FUNCTION_ARGS);
Datum uint1recv(PG_FUNCTION_ARGS);
Datum uint1send(PG_FUNCTION_ARGS);
Datum btuint1cmp(PG_FUNCTION_ARGS);
Datum uint1eq(PG_FUNCTION_ARGS);
Datum uint1ne(PG_FUNCTION_ARGS);
Datum uint1lt(PG_FUNCTION_ARGS);
Datum uint1le(PG_FUNCTION_ARGS);
Datum uint1gt(PG_FUNCTION_ARGS);
Datum uint1ge(PG_FUNCTION_ARGS);
Datum int4uint1eq(PG_FUNCTION_ARGS);
Datum uint1and(PG_FUNCTION_ARGS);
Datum uint1or(PG_FUNCTION_ARGS);
Datum uint1xor(PG_FUNCTION_ARGS);
Datum uint1not(PG_FUNCTION_ARGS);
Datum uint1shl(PG_FUNCTION_ARGS);
Datum uint1shr(PG_FUNCTION_ARGS);
Datum hashuint1(PG_FUNCTION_ARGS);
Datum int4touint1(PG_FUNCTION_ARGS);
Datum uint1toint4(PG_FUNCTION_ARGS);
/*
* =====================
* UINT1 PUBLIC ROUTINES
* =====================
*/
PG_FUNCTION_INFO_V1(uint1in);
PG_FUNCTION_INFO_V1(uint1out);
PG_FUNCTION_INFO_V1(uint1recv);
PG_FUNCTION_INFO_V1(uint1send);
/**
* Convert a c-string into a value suitable for the uint1 datatype.
*
* @param s The c-string representation.
* @return The Datum containing the converted uint1 value.
*/
Datum uint1in(PG_FUNCTION_ARGS) {
char *badp;
unsigned long ul;
char *s = PG_GETARG_CSTRING(0);
/* Check for NULL pointer. */
if (unlikely(s == NULL)) {
elog(ERROR, "NULL pointer");
}
/*
* Some versions of strtoul treat the empty string as an error, but some
* seem not to. Make an explicit test to be sure we catch it.
*/
if (unlikely(*s == 0)) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("invalid input syntax for unsigned integer: \"%s\"", s)));
}
errno = 0;
ul = strtoul(s, &badp, 10);
/* We made no progress parsing the string, so bail out */
if (unlikely(s == badp)) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("invalid input syntax for unsigned integer: \"%s\"", s)));
}
/* Verify value is valid in the uint1 datatype range. */
if (unlikely(errno == ERANGE || ul < 0 || ul > UCHAR_MAX)) {
ereport(
ERROR,
(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
errmsg("value \"%s\" is out of range for unsigned 8-bit integer", s)));
}
/*
* Skip any trailing whitespace; if anything but whitespace remains before
* the terminating character, bail out
*/
while (*badp && isspace((unsigned char)*badp)) {
badp++;
}
/* Verify the c-string is empty. */
if (unlikely(*badp)) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("invalid input syntax for unsigned integer: \"%s\"", s)));
}
PG_RETURN_UINT8((unsigned char)ul);
}
/**
* Convert the uint1 value into a c-string.
*
* @param num The uint1 value.
* @return The Datum containing the converted uint1 value.
*/
Datum uint1out(PG_FUNCTION_ARGS) {
uint8 num = PG_GETARG_UINT8(0);
char *str = (char *)palloc(5);
snprintf(str, 5, "%u", num);
PG_RETURN_CSTRING(str);
}
/**
* Convert the binary represented value into a value suitable for
* the uint1 datatype.
*
* @param buf The uint1 value.
* @return The Datum containing the converted uint1 value.
*/
Datum uint1recv(PG_FUNCTION_ARGS) {
StringInfo buf = (StringInfo)PG_GETARG_POINTER(0);
PG_RETURN_UINT8((uint8)pq_getmsgint(buf, sizeof(uint8)));
}
/**
* Convert the uint1 datatype into its binary representation.
*
* @param num The uint1 value.
* @return The Datum containing the converted uint1 value.
*/
Datum uint1send(PG_FUNCTION_ARGS) {
uint8 num = PG_GETARG_UINT8(0);
StringInfoData buf;
pq_begintypsend(&buf);
pq_sendint(&buf, num, sizeof(uint8));
PG_RETURN_BYTEA_P(pq_endtypsend(&buf));
}
/*
* ==================================
* UINT1 COMPARISON OPERATOR ROUTINES
* ==================================
*/
PG_FUNCTION_INFO_V1(btuint1cmp);
/**
* Comparison function used by the B-tree index for sorting purposes.
*
* It is safe to directly subtract the values in this function because
* the return value can not overflow a signed 32-bit integer.
*
* @param a The first uint1 value.
* @param b The second uint1 value.
* @return The Datum containing the comparison value.
* The comparison value is:
* < 0 if a < b
* 0 if a == b
* > 0 if a > b
*/
Datum btuint1cmp(PG_FUNCTION_ARGS) {
uint8 a = PG_GETARG_UINT8(0);
uint8 b = PG_GETARG_UINT8(1);
PG_RETURN_INT32((int32)a - (int32)b);
}
PG_FUNCTION_INFO_V1(uint1eq);
PG_FUNCTION_INFO_V1(uint1ne);
PG_FUNCTION_INFO_V1(uint1lt);
PG_FUNCTION_INFO_V1(uint1le);
PG_FUNCTION_INFO_V1(uint1gt);
PG_FUNCTION_INFO_V1(uint1ge);
PG_FUNCTION_INFO_V1(uint1int4eq);
PG_FUNCTION_INFO_V1(int4uint1eq);
/**
* This function implements the "equal" (=) operator for the uint1 datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 == arg2
* false if arg1 != arg2
*/
Datum uint1eq(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_BOOL(arg1 == arg2);
}
/**
* This function implements the "not equal" (<>) operator for the uint1
* datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 != arg2
* false if arg1 == arg2
*/
Datum uint1ne(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_BOOL(arg1 != arg2);
}
/**
* This function implements the "less than" (<) operator for the uint1 datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 < arg2
* false if arg1 >= arg2
*/
Datum uint1lt(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_BOOL(arg1 < arg2);
}
/**
* This function implements the "less than or equal" (<=) operator for the uint1
* datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 <= arg2
* false if arg1 > arg2
*/
Datum uint1le(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_BOOL(arg1 <= arg2);
}
/**
* This function implements the "greater than" (>) operator for the uint1
* datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 > arg2
* false if arg1 <= arg2
*/
Datum uint1gt(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_BOOL(arg1 > arg2);
}
/**
* This function implements the "greater than or equal" (>=) operator for the
* uint1 datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 >= arg2
* false if arg1 < arg2
*/
Datum uint1ge(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_BOOL(arg1 >= arg2);
}
/**
* This function implements the "equal" (=) operator between the int4
* and uint1 data types.
*
* This function is required to support hash joins for the uint1 data
* type when the one argument is an int4 data type.
*
* Example query:
* SELECT t.u1 FROM test t, generate_series(1, 10) gs WHERE t.u1 = gs;
*
* XXX
* RBRAD TODO: test and make sure this works.
* XXX
*
* @param arg1 The int32 value.
* @param arg2 The uint1 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 == arg2
* false if arg1 != arg2
*/
Datum int4uint1eq(PG_FUNCTION_ARGS) {
int32 arg1 = PG_GETARG_INT32(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_BOOL(arg1 == (int32)arg2);
}
/*
* ============================
* UINT1 BIT OPERATION ROUTINES
* ============================
*/
PG_FUNCTION_INFO_V1(uint1and);
PG_FUNCTION_INFO_V1(uint1or);
PG_FUNCTION_INFO_V1(uint1xor);
PG_FUNCTION_INFO_V1(uint1not);
PG_FUNCTION_INFO_V1(uint1shl);
PG_FUNCTION_INFO_V1(uint1shr);
/**
* This function implements the bit-wise AND (&) operator for the uint1
* datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the new value.
*/
Datum uint1and(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_UINT8(arg1 & arg2);
}
/**
* This function implements the bit-wise OR (|) operator for the uint1 datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the new value.
*/
Datum uint1or(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_UINT8(arg1 | arg2);
}
/**
* This function implements the bit-wise XOR (#) operator for the uint1
* datatype.
*
* This function only supports the operator function when both arguments
* are uint1 datatypes.
*
* @param arg1 The first uint1 value.
* @param arg2 The second uint1 value.
* @return The Datum containing the new value.
*/
Datum uint1xor(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
uint8 arg2 = PG_GETARG_UINT8(1);
PG_RETURN_UINT8(arg1 ^ arg2);
}
/**
* This function implements the compliment (~) operator for the uint1 datatype.
*
* @param arg1 The uint1 value.
* @return The Datum containing the new value.
*/
Datum uint1not(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
PG_RETURN_UINT8(~arg1);
}
/**
* This function implements the "shift left" (<<) operator for the uint1
* datatype.
*
* @param arg1 The uint1 value.
* @param arg2 The number of bits to shift.
* @return The Datum containing the new value.
*/
Datum uint1shl(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
int32 arg2 = PG_GETARG_INT32(1);
PG_RETURN_UINT8(arg1 << arg2);
}
/**
* This function implements the "shift right" (>>) operator for the uint1
* datatype.
*
* @param arg1 The uint1 value.
* @param arg2 The number of bits to shift.
* @return The Datum containing the new value.
*/
Datum uint1shr(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
int32 arg2 = PG_GETARG_INT32(1);
PG_RETURN_UINT8(arg1 >> arg2);
}
/*
* ============================
* UINT1 HASH OPERATOR ROUTINES
* ============================
*/
PG_FUNCTION_INFO_V1(hashuint1);
/**
* This function returns a hash value suitable for the hash index.
*
* @param arg1 The uint1 value.
* @return The Datum containing the hash value.
*/
Datum hashuint1(PG_FUNCTION_ARGS) {
uint8 arg1 = PG_GETARG_UINT8(0);
return hash_uint32((uint32)arg1);
}
/*
* =========================
* UINT1 CONVERSION ROUTINES
* =========================
*/
PG_FUNCTION_INFO_V1(int4touint1);
PG_FUNCTION_INFO_V1(uint1toint4);
/**
* Cast an int4 value into a uint1 value.
* This function throws an error if the int4 value is out-of-range
* for the uint1 value.
*
* @param num The int4 value.
* @return The Datum containing the uint1 value.
*/
Datum int4touint1(PG_FUNCTION_ARGS) {
int32 num = PG_GETARG_INT32(0);
if (unlikely(num < 0 || num > UCHAR_MAX)) {
ereport(ERROR, (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
errmsg("uint1 out of range")));
}
PG_RETURN_UINT8((uint8)num);
}
/**
* Cast a uint1 value into an int4 value.
*
* @param num The uint1 value.
* @return The Datum containing the int4 value.
*/
Datum uint1toint4(PG_FUNCTION_ARGS) {
uint8 num = PG_GETARG_UINT8(0);
PG_RETURN_INT32((int32)num);
}
/*
* ==================
* UINT2 DECLARATIONS
* ==================
*/
Datum uint2in(PG_FUNCTION_ARGS);
Datum uint2out(PG_FUNCTION_ARGS);
Datum uint2recv(PG_FUNCTION_ARGS);
Datum uint2send(PG_FUNCTION_ARGS);
Datum btuint2cmp(PG_FUNCTION_ARGS);
Datum uint2eq(PG_FUNCTION_ARGS);
Datum uint2ne(PG_FUNCTION_ARGS);
Datum uint2lt(PG_FUNCTION_ARGS);
Datum uint2le(PG_FUNCTION_ARGS);
Datum uint2gt(PG_FUNCTION_ARGS);
Datum uint2ge(PG_FUNCTION_ARGS);
Datum int4uint2eq(PG_FUNCTION_ARGS);
Datum uint2and(PG_FUNCTION_ARGS);
Datum uint2or(PG_FUNCTION_ARGS);
Datum uint2xor(PG_FUNCTION_ARGS);
Datum uint2not(PG_FUNCTION_ARGS);
Datum uint2shl(PG_FUNCTION_ARGS);
Datum uint2shr(PG_FUNCTION_ARGS);
Datum hashuint2(PG_FUNCTION_ARGS);
Datum int4touint2(PG_FUNCTION_ARGS);
Datum uint2toint4(PG_FUNCTION_ARGS);
/*
* =====================
* UINT2 PUBLIC ROUTINES
* =====================
*/
PG_FUNCTION_INFO_V1(uint2in);
PG_FUNCTION_INFO_V1(uint2out);
PG_FUNCTION_INFO_V1(uint2recv);
PG_FUNCTION_INFO_V1(uint2send);
/**
* Convert a c-string into a value suitable for the uint2 datatype.
*
* @param s The c-string representation.
* @return The Datum containing the converted uint2 value.
*/
Datum uint2in(PG_FUNCTION_ARGS) {
char *badp;
unsigned long ul;
char *s = PG_GETARG_CSTRING(0);
/* Check for NULL pointer. */
if (unlikely(s == NULL)) {
elog(ERROR, "NULL pointer");
}
/*
* Some versions of strtoul treat the empty string as an error, but some
* seem not to. Make an explicit test to be sure we catch it.
*/
if (unlikely(*s == 0)) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("invalid input syntax for unsigned integer: \"%s\"", s)));
}
errno = 0;
ul = strtoul(s, &badp, 10);
/* We made no progress parsing the string, so bail out */
if (unlikely(s == badp)) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("invalid input syntax for unsigned integer: \"%s\"", s)));
}
/* Verify value is valid in the uint2 datatype range. */
if (unlikely(errno == ERANGE || ul < 0 || ul > USHRT_MAX)) {
ereport(
ERROR,
(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
errmsg("value \"%s\" is out of range for type unsigned smallint", s)));
}
/*
* Skip any trailing whitespace; if anything but whitespace remains before
* the terminating character, bail out
*/
while (*badp && isspace((unsigned char)*badp)) {
badp++;
}
/* Verify the c-string is empty. */
if (unlikely(*badp)) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
errmsg("invalid input syntax for unsigned integer: \"%s\"", s)));
}
PG_RETURN_UINT16((uint16)ul);
}
/**
* Convert the uint2 value into a c-string.
*
* @param num The uint2 value.
* @return The Datum containing the converted uint2 value.
*/
Datum uint2out(PG_FUNCTION_ARGS) {
uint16 num = PG_GETARG_UINT16(0);
char *str = (char *)palloc(7);
snprintf(str, 7, "%u", num);
PG_RETURN_CSTRING(str);
}
/**
* Convert the binary represented value into a value suitable for
* the uint2 datatype.
*
* @param buf The uint2 value.
* @return The Datum containing the converted uint2 value.
*/
Datum uint2recv(PG_FUNCTION_ARGS) {
StringInfo buf = (StringInfo)PG_GETARG_POINTER(0);
PG_RETURN_UINT16((uint16)pq_getmsgint(buf, sizeof(uint16)));
}
/**
* Convert the uint2 datatype into its binary representation.
*
* @param num The uint2 value.
* @return The Datum containing the converted uint2 value.
*/
Datum uint2send(PG_FUNCTION_ARGS) {
uint16 num = PG_GETARG_UINT16(0);
StringInfoData buf;
pq_begintypsend(&buf);
pq_sendint(&buf, num, sizeof(uint16));
PG_RETURN_BYTEA_P(pq_endtypsend(&buf));
}
/*
* ==================================
* UINT2 COMPARISON OPERATOR ROUTINES
* ==================================
*/
PG_FUNCTION_INFO_V1(btuint2cmp);
/**
* Comparison function used by the B-tree index for sorting purposes.
*
* It is safe to directly subtract the values in this function because
* the return value can not overflow a signed 32-bit integer.
*
* @param a The first uint2 value.
* @param b The second uint2 value.
* @return The Datum containing the comparison value.
* The comparison value is:
* < 0 if a < b
* 0 if a == b
* > 0 if a > b
*/
Datum btuint2cmp(PG_FUNCTION_ARGS) {
uint16 a = PG_GETARG_UINT16(0);
uint16 b = PG_GETARG_UINT16(1);
PG_RETURN_INT32((int32)a - (int32)b);
}
PG_FUNCTION_INFO_V1(uint2eq);
PG_FUNCTION_INFO_V1(uint2ne);
PG_FUNCTION_INFO_V1(uint2lt);
PG_FUNCTION_INFO_V1(uint2le);
PG_FUNCTION_INFO_V1(uint2gt);
PG_FUNCTION_INFO_V1(uint2ge);
PG_FUNCTION_INFO_V1(uint2int4eq);
PG_FUNCTION_INFO_V1(int4uint2eq);
/**
* This function implements the "equal" (=) operator for the uint2 datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 == arg2
* false if arg1 != arg2
*/
Datum uint2eq(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_BOOL(arg1 == arg2);
}
/**
* This function implements the "not equal" (<>) operator for the uint2
* datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 != arg2
* false if arg1 == arg2
*/
Datum uint2ne(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_BOOL(arg1 != arg2);
}
/**
* This function implements the "less than" (<) operator for the uint2 datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 < arg2
* false if arg1 >= arg2
*/
Datum uint2lt(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_BOOL(arg1 < arg2);
}
/**
* This function implements the "less than or equal" (<=) operator for the uint2
* datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 <= arg2
* false if arg1 > arg2
*/
Datum uint2le(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_BOOL(arg1 <= arg2);
}
/**
* This function implements the "greater than" (>) operator for the uint2
* datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 > arg2
* false if arg1 <= arg2
*/
Datum uint2gt(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_BOOL(arg1 > arg2);
}
/**
* This function implements the "greater than or equal" (>=) operator for the
* uint2 datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 >= arg2
* false if arg1 < arg2
*/
Datum uint2ge(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_BOOL(arg1 >= arg2);
}
/**
* This function implements the "equal" (=) operator between the int4
* and uint2 data types.
*
* This function is required to support hash joins for the uint2 data
* type when the one argument is an int2 data type.
*
* Example query:
* SELECT t.u2 FROM test t, generate_series(1, 10) gs WHERE t.u2 = gs;
*
* XXX
* RBRAD TODO: test and make sure this works.
* XXX
*
* @param arg1 The int32 value.
* @param arg2 The uint2 value.
* @return The Datum containing the boolean operator value.
* The operator value is:
* true if arg1 == arg2
* false if arg1 != arg2
*/
Datum int4uint2eq(PG_FUNCTION_ARGS) {
int32 arg1 = PG_GETARG_INT32(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_BOOL(arg1 == (int32)arg2);
}
/*
* ============================
* UINT2 BIT OPERATION ROUTINES
* ============================
*/
PG_FUNCTION_INFO_V1(uint2and);
PG_FUNCTION_INFO_V1(uint2or);
PG_FUNCTION_INFO_V1(uint2xor);
PG_FUNCTION_INFO_V1(uint2not);
PG_FUNCTION_INFO_V1(uint2shl);
PG_FUNCTION_INFO_V1(uint2shr);
/**
* This function implements the bit-wise AND (&) operator for the uint2
* datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the new value.
*/
Datum uint2and(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_UINT16(arg1 & arg2);
}
/**
* This function implements the bit-wise OR (|) operator for the uint2 datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the new value.
*/
Datum uint2or(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_UINT16(arg1 | arg2);
}
/**
* This function implements the bit-wise XOR (#) operator for the uint2
* datatype.
*
* This function only supports the operator function when both arguments
* are uint2 datatypes.
*
* @param arg1 The first uint2 value.
* @param arg2 The second uint2 value.
* @return The Datum containing the new value.
*/
Datum uint2xor(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
uint16 arg2 = PG_GETARG_UINT16(1);
PG_RETURN_UINT16(arg1 ^ arg2);
}
/**
* This function implements the compliment (~) operator for the uint2 datatype.
*
* @param arg1 The uint2 value.
* @return The Datum containing the new value.
*/
Datum uint2not(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
PG_RETURN_UINT16(~arg1);
}
/**
* This function implements the "shift left" (<<) operator for the uint2
* datatype.
*
* @param arg1 The uint2 value.
* @param arg2 The number of bits to shift.
* @return The Datum containing the new value.
*/
Datum uint2shl(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
int32 arg2 = PG_GETARG_UINT32(1);
PG_RETURN_UINT16(arg1 << arg2);
}
/**
* This function implements the "shift right" (>>) operator for the uint2
* datatype.
*
* @param arg1 The uint2 value.
* @param arg2 The number of bits to shift.
* @return The Datum containing the new value.
*/
Datum uint2shr(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
int32 arg2 = PG_GETARG_INT32(1);
PG_RETURN_UINT16(arg1 >> arg2);
}
/*
* ============================
* UINT2 HASH OPERATOR ROUTINES
* ============================
*/
PG_FUNCTION_INFO_V1(hashuint2);
/**
* This function returns a hash value suitable for the hash index.
*
* @param arg1 The uint2 value.
* @return The Datum containing the hash value.
*/
Datum hashuint2(PG_FUNCTION_ARGS) {
uint16 arg1 = PG_GETARG_UINT16(0);
return hash_uint32((uint32)arg1);
}
/*
* =========================
* UINT2 CONVERSION ROUTINES
* =========================
*/
PG_FUNCTION_INFO_V1(int4touint2);
PG_FUNCTION_INFO_V1(uint2toint4);
/**
* Cast an int4 value into a uint2 value.
* This function throws an error if the int4 value is out-of-range
* for the uint2 value.