Age Owner Branch data TLA Line data Source code
1 : : /*
2 : : * contrib/btree_gist/btree_int4.c
3 : : */
4 : : #include "postgres.h"
5 : :
6 : : #include "btree_gist.h"
7 : : #include "btree_utils_num.h"
8 : : #include "common/int.h"
9 : :
10 : : typedef struct int32key
11 : : {
12 : : int32 lower;
13 : : int32 upper;
14 : : } int32KEY;
15 : :
16 : : /*
17 : : ** int32 ops
18 : : */
7261 teodor@sigaev.ru 19 :CBC 5 : PG_FUNCTION_INFO_V1(gbt_int4_compress);
3306 heikki.linnakangas@i 20 : 5 : PG_FUNCTION_INFO_V1(gbt_int4_fetch);
7261 teodor@sigaev.ru 21 : 5 : PG_FUNCTION_INFO_V1(gbt_int4_union);
22 : 5 : PG_FUNCTION_INFO_V1(gbt_int4_picksplit);
23 : 5 : PG_FUNCTION_INFO_V1(gbt_int4_consistent);
4792 tgl@sss.pgh.pa.us 24 : 5 : PG_FUNCTION_INFO_V1(gbt_int4_distance);
7261 teodor@sigaev.ru 25 : 5 : PG_FUNCTION_INFO_V1(gbt_int4_penalty);
26 : 5 : PG_FUNCTION_INFO_V1(gbt_int4_same);
27 : :
28 : :
29 : : static bool
2581 andrew@dunslane.net 30 : 1456 : gbt_int4gt(const void *a, const void *b, FmgrInfo *flinfo)
31 : : {
4599 peter_e@gmx.net 32 : 1456 : return (*((const int32 *) a) > *((const int32 *) b));
33 : : }
34 : : static bool
2581 andrew@dunslane.net 35 : 590 : gbt_int4ge(const void *a, const void *b, FmgrInfo *flinfo)
36 : : {
4599 peter_e@gmx.net 37 : 590 : return (*((const int32 *) a) >= *((const int32 *) b));
38 : : }
39 : : static bool
2581 andrew@dunslane.net 40 : 808 : gbt_int4eq(const void *a, const void *b, FmgrInfo *flinfo)
41 : : {
4599 peter_e@gmx.net 42 : 808 : return (*((const int32 *) a) == *((const int32 *) b));
43 : : }
44 : : static bool
2581 andrew@dunslane.net 45 : 584 : gbt_int4le(const void *a, const void *b, FmgrInfo *flinfo)
46 : : {
4599 peter_e@gmx.net 47 : 584 : return (*((const int32 *) a) <= *((const int32 *) b));
48 : : }
49 : : static bool
2581 andrew@dunslane.net 50 : 1197 : gbt_int4lt(const void *a, const void *b, FmgrInfo *flinfo)
51 : : {
4599 peter_e@gmx.net 52 : 1197 : return (*((const int32 *) a) < *((const int32 *) b));
53 : : }
54 : :
55 : : static int
2581 andrew@dunslane.net 56 : 3150 : gbt_int4key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
57 : : {
4599 peter_e@gmx.net 58 : 3150 : int32KEY *ia = (int32KEY *) (((const Nsrt *) a)->t);
59 : 3150 : int32KEY *ib = (int32KEY *) (((const Nsrt *) b)->t);
60 : :
5247 teodor@sigaev.ru 61 [ + + ]: 3150 : if (ia->lower == ib->lower)
62 : : {
63 [ + - ]: 5 : if (ia->upper == ib->upper)
64 : 5 : return 0;
65 : :
5247 teodor@sigaev.ru 66 [ # # ]:UBC 0 : return (ia->upper > ib->upper) ? 1 : -1;
67 : : }
68 : :
5247 teodor@sigaev.ru 69 [ + + ]:CBC 3145 : return (ia->lower > ib->lower) ? 1 : -1;
70 : : }
71 : :
72 : : static float8
2581 andrew@dunslane.net 73 : 288 : gbt_int4_dist(const void *a, const void *b, FmgrInfo *flinfo)
74 : : {
4311 peter_e@gmx.net 75 : 288 : return GET_FLOAT_DISTANCE(int32, a, b);
76 : : }
77 : :
78 : :
79 : : static const gbtree_ninfo tinfo =
80 : : {
81 : : gbt_t_int4,
82 : : sizeof(int32),
83 : : 8, /* sizeof(gbtreekey8) */
84 : : gbt_int4gt,
85 : : gbt_int4ge,
86 : : gbt_int4eq,
87 : : gbt_int4le,
88 : : gbt_int4lt,
89 : : gbt_int4key_cmp,
90 : : gbt_int4_dist
91 : : };
92 : :
93 : :
4792 tgl@sss.pgh.pa.us 94 : 2 : PG_FUNCTION_INFO_V1(int4_dist);
95 : : Datum
96 : 549 : int4_dist(PG_FUNCTION_ARGS)
97 : : {
4311 peter_e@gmx.net 98 : 549 : int32 a = PG_GETARG_INT32(0);
99 : 549 : int32 b = PG_GETARG_INT32(1);
100 : : int32 r;
101 : : int32 ra;
102 : :
2315 andres@anarazel.de 103 [ + - ]: 549 : if (pg_sub_s32_overflow(a, b, &r) ||
104 [ - + ]: 549 : r == PG_INT32_MIN)
4792 tgl@sss.pgh.pa.us 105 [ # # ]:UBC 0 : ereport(ERROR,
106 : : (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
107 : : errmsg("integer out of range")));
108 : :
555 peter@eisentraut.org 109 :CBC 549 : ra = abs(r);
110 : :
4792 tgl@sss.pgh.pa.us 111 : 549 : PG_RETURN_INT32(ra);
112 : : }
113 : :
114 : :
115 : : /**************************************************
116 : : * int32 ops
117 : : **************************************************/
118 : :
119 : :
120 : : Datum
7261 teodor@sigaev.ru 121 : 574 : gbt_int4_compress(PG_FUNCTION_ARGS)
122 : : {
7168 bruce@momjian.us 123 : 574 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
124 : :
3307 heikki.linnakangas@i 125 : 574 : PG_RETURN_POINTER(gbt_num_compress(entry, &tinfo));
126 : : }
127 : :
128 : : Datum
3306 129 : 287 : gbt_int4_fetch(PG_FUNCTION_ARGS)
130 : : {
131 : 287 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
132 : :
133 : 287 : PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
134 : : }
135 : :
136 : : Datum
7261 teodor@sigaev.ru 137 : 2048 : gbt_int4_consistent(PG_FUNCTION_ARGS)
138 : : {
7168 bruce@momjian.us 139 : 2048 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
140 : 2048 : int32 query = PG_GETARG_INT32(1);
5844 tgl@sss.pgh.pa.us 141 : 2048 : StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
142 : :
143 : : /* Oid subtype = PG_GETARG_OID(3); */
144 : 2048 : bool *recheck = (bool *) PG_GETARG_POINTER(4);
7168 bruce@momjian.us 145 : 2048 : int32KEY *kkk = (int32KEY *) DatumGetPointer(entry->key);
146 : : GBT_NUMKEY_R key;
147 : :
148 : : /* All cases served by this function are exact */
5844 tgl@sss.pgh.pa.us 149 : 2048 : *recheck = false;
150 : :
5421 bruce@momjian.us 151 : 2048 : key.lower = (GBT_NUMKEY *) &kkk->lower;
152 : 2048 : key.upper = (GBT_NUMKEY *) &kkk->upper;
153 : :
1536 alvherre@alvh.no-ip. 154 : 2048 : PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) &query, &strategy,
155 : : GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
156 : : }
157 : :
158 : :
159 : : Datum
4792 tgl@sss.pgh.pa.us 160 : 289 : gbt_int4_distance(PG_FUNCTION_ARGS)
161 : : {
162 : 289 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
163 : 289 : int32 query = PG_GETARG_INT32(1);
164 : :
165 : : /* Oid subtype = PG_GETARG_OID(3); */
166 : 289 : int32KEY *kkk = (int32KEY *) DatumGetPointer(entry->key);
167 : : GBT_NUMKEY_R key;
168 : :
169 : 289 : key.lower = (GBT_NUMKEY *) &kkk->lower;
170 : 289 : key.upper = (GBT_NUMKEY *) &kkk->upper;
171 : :
1536 alvherre@alvh.no-ip. 172 : 289 : PG_RETURN_FLOAT8(gbt_num_distance(&key, (void *) &query, GIST_LEAF(entry),
173 : : &tinfo, fcinfo->flinfo));
174 : : }
175 : :
176 : :
177 : : Datum
7261 teodor@sigaev.ru 178 : 219 : gbt_int4_union(PG_FUNCTION_ARGS)
179 : : {
7168 bruce@momjian.us 180 : 219 : GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
181 : 219 : void *out = palloc(sizeof(int32KEY));
182 : :
183 : 219 : *(int *) PG_GETARG_POINTER(1) = sizeof(int32KEY);
2581 andrew@dunslane.net 184 : 219 : PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
185 : : }
186 : :
187 : :
188 : : Datum
7261 teodor@sigaev.ru 189 : 354 : gbt_int4_penalty(PG_FUNCTION_ARGS)
190 : : {
7168 bruce@momjian.us 191 : 354 : int32KEY *origentry = (int32KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
6756 192 : 354 : int32KEY *newentry = (int32KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
193 : 354 : float *result = (float *) PG_GETARG_POINTER(2);
194 : :
195 [ + + + + : 354 : penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
+ + ]
196 : :
7168 197 : 354 : PG_RETURN_POINTER(result);
198 : : }
199 : :
200 : : Datum
7261 teodor@sigaev.ru 201 : 1 : gbt_int4_picksplit(PG_FUNCTION_ARGS)
202 : : {
1536 alvherre@alvh.no-ip. 203 : 1 : PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector *) PG_GETARG_POINTER(0),
204 : : (GIST_SPLITVEC *) PG_GETARG_POINTER(1),
205 : : &tinfo, fcinfo->flinfo));
206 : : }
207 : :
208 : : Datum
7261 teodor@sigaev.ru 209 : 218 : gbt_int4_same(PG_FUNCTION_ARGS)
210 : : {
7168 bruce@momjian.us 211 : 218 : int32KEY *b1 = (int32KEY *) PG_GETARG_POINTER(0);
212 : 218 : int32KEY *b2 = (int32KEY *) PG_GETARG_POINTER(1);
213 : 218 : bool *result = (bool *) PG_GETARG_POINTER(2);
214 : :
2581 andrew@dunslane.net 215 : 218 : *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
7168 bruce@momjian.us 216 : 218 : PG_RETURN_POINTER(result);
217 : : }
|