Line data Source code
1 : /*
2 : * contrib/btree_gist/btree_bit.c
3 : */
4 : #include "postgres.h"
5 :
6 : #include "btree_gist.h"
7 : #include "btree_utils_var.h"
8 : #include "utils/fmgrprotos.h"
9 : #include "utils/varbit.h"
10 :
11 :
12 : /*
13 : ** Bit ops
14 : */
15 6 : PG_FUNCTION_INFO_V1(gbt_bit_compress);
16 6 : PG_FUNCTION_INFO_V1(gbt_bit_union);
17 6 : PG_FUNCTION_INFO_V1(gbt_bit_picksplit);
18 6 : PG_FUNCTION_INFO_V1(gbt_bit_consistent);
19 6 : PG_FUNCTION_INFO_V1(gbt_bit_penalty);
20 6 : PG_FUNCTION_INFO_V1(gbt_bit_same);
21 :
22 :
23 : /* define for comparison */
24 :
25 : static bool
26 1760 : gbt_bitgt(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
27 : {
28 1760 : return DatumGetBool(DirectFunctionCall2(bitgt,
29 : PointerGetDatum(a),
30 : PointerGetDatum(b)));
31 : }
32 :
33 : static bool
34 1760 : gbt_bitge(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
35 : {
36 1760 : return DatumGetBool(DirectFunctionCall2(bitge,
37 : PointerGetDatum(a),
38 : PointerGetDatum(b)));
39 : }
40 :
41 : static bool
42 596 : gbt_biteq(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
43 : {
44 596 : return DatumGetBool(DirectFunctionCall2(biteq,
45 : PointerGetDatum(a),
46 : PointerGetDatum(b)));
47 : }
48 :
49 : static bool
50 1236 : gbt_bitle(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
51 : {
52 1236 : return DatumGetBool(DirectFunctionCall2(bitle,
53 : PointerGetDatum(a),
54 : PointerGetDatum(b)));
55 : }
56 :
57 : static bool
58 1236 : gbt_bitlt(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
59 : {
60 1236 : return DatumGetBool(DirectFunctionCall2(bitlt,
61 : PointerGetDatum(a),
62 : PointerGetDatum(b)));
63 : }
64 :
65 : static int32
66 48192 : gbt_bitcmp(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
67 : {
68 48192 : return DatumGetInt32(DirectFunctionCall2(byteacmp,
69 : PointerGetDatum(a),
70 : PointerGetDatum(b)));
71 : }
72 :
73 :
74 : static bytea *
75 10296 : gbt_bit_xfrm(bytea *leaf)
76 : {
77 10296 : bytea *out = leaf;
78 10296 : int sz = VARBITBYTES(leaf) + VARHDRSZ;
79 10296 : int padded_sz = INTALIGN(sz);
80 :
81 10296 : out = (bytea *) palloc(padded_sz);
82 : /* initialize the padding bytes to zero */
83 33072 : while (sz < padded_sz)
84 22776 : ((char *) out)[sz++] = 0;
85 10296 : SET_VARSIZE(out, padded_sz);
86 10296 : memcpy(VARDATA(out), VARBITS(leaf), VARBITBYTES(leaf));
87 10296 : return out;
88 : }
89 :
90 :
91 :
92 :
93 : static GBT_VARKEY *
94 10216 : gbt_bit_l2n(GBT_VARKEY *leaf, FmgrInfo *flinfo)
95 : {
96 10216 : GBT_VARKEY *out = leaf;
97 10216 : GBT_VARKEY_R r = gbt_var_key_readable(leaf);
98 : bytea *o;
99 :
100 10216 : o = gbt_bit_xfrm(r.lower);
101 10216 : r.upper = r.lower = o;
102 10216 : out = gbt_var_key_copy(&r);
103 10216 : pfree(o);
104 :
105 10216 : return out;
106 : }
107 :
108 : static const gbtree_vinfo tinfo =
109 : {
110 : gbt_t_bit,
111 : 0,
112 : true,
113 : gbt_bitgt,
114 : gbt_bitge,
115 : gbt_biteq,
116 : gbt_bitle,
117 : gbt_bitlt,
118 : gbt_bitcmp,
119 : gbt_bit_l2n
120 : };
121 :
122 :
123 : /**************************************************
124 : * Bit ops
125 : **************************************************/
126 :
127 : Datum
128 2440 : gbt_bit_compress(PG_FUNCTION_ARGS)
129 : {
130 2440 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
131 :
132 2440 : PG_RETURN_POINTER(gbt_var_compress(entry, &tinfo));
133 : }
134 :
135 : Datum
136 6668 : gbt_bit_consistent(PG_FUNCTION_ARGS)
137 : {
138 6668 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
139 6668 : void *query = (void *) DatumGetByteaP(PG_GETARG_DATUM(1));
140 6668 : StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
141 :
142 : /* Oid subtype = PG_GETARG_OID(3); */
143 6668 : bool *recheck = (bool *) PG_GETARG_POINTER(4);
144 : bool retval;
145 6668 : GBT_VARKEY *key = (GBT_VARKEY *) DatumGetPointer(entry->key);
146 6668 : GBT_VARKEY_R r = gbt_var_key_readable(key);
147 :
148 : /* All cases served by this function are exact */
149 6668 : *recheck = false;
150 :
151 6668 : if (GIST_LEAF(entry))
152 6588 : retval = gbt_var_consistent(&r, query, strategy, PG_GET_COLLATION(),
153 : true, &tinfo, fcinfo->flinfo);
154 : else
155 : {
156 80 : bytea *q = gbt_bit_xfrm((bytea *) query);
157 :
158 80 : retval = gbt_var_consistent(&r, q, strategy, PG_GET_COLLATION(),
159 : false, &tinfo, fcinfo->flinfo);
160 : }
161 6668 : PG_RETURN_BOOL(retval);
162 : }
163 :
164 :
165 :
166 : Datum
167 1434 : gbt_bit_union(PG_FUNCTION_ARGS)
168 : {
169 1434 : GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
170 1434 : int32 *size = (int *) PG_GETARG_POINTER(1);
171 :
172 1434 : PG_RETURN_POINTER(gbt_var_union(entryvec, size, PG_GET_COLLATION(),
173 : &tinfo, fcinfo->flinfo));
174 : }
175 :
176 :
177 : Datum
178 12 : gbt_bit_picksplit(PG_FUNCTION_ARGS)
179 : {
180 12 : GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
181 12 : GIST_SPLITVEC *v = (GIST_SPLITVEC *) PG_GETARG_POINTER(1);
182 :
183 12 : gbt_var_picksplit(entryvec, v, PG_GET_COLLATION(),
184 : &tinfo, fcinfo->flinfo);
185 12 : PG_RETURN_POINTER(v);
186 : }
187 :
188 : Datum
189 1430 : gbt_bit_same(PG_FUNCTION_ARGS)
190 : {
191 1430 : Datum d1 = PG_GETARG_DATUM(0);
192 1430 : Datum d2 = PG_GETARG_DATUM(1);
193 1430 : bool *result = (bool *) PG_GETARG_POINTER(2);
194 :
195 1430 : *result = gbt_var_same(d1, d2, PG_GET_COLLATION(), &tinfo, fcinfo->flinfo);
196 1430 : PG_RETURN_POINTER(result);
197 : }
198 :
199 :
200 : Datum
201 3132 : gbt_bit_penalty(PG_FUNCTION_ARGS)
202 : {
203 3132 : GISTENTRY *o = (GISTENTRY *) PG_GETARG_POINTER(0);
204 3132 : GISTENTRY *n = (GISTENTRY *) PG_GETARG_POINTER(1);
205 3132 : float *result = (float *) PG_GETARG_POINTER(2);
206 :
207 3132 : PG_RETURN_POINTER(gbt_var_penalty(result, o, n, PG_GET_COLLATION(),
208 : &tinfo, fcinfo->flinfo));
209 : }
|