Line data Source code
1 : /*
2 : * contrib/btree_gist/btree_int2.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 int16key
11 : {
12 : int16 lower;
13 : int16 upper;
14 : } int16KEY;
15 :
16 : /*
17 : ** int16 ops
18 : */
19 4 : PG_FUNCTION_INFO_V1(gbt_int2_compress);
20 4 : PG_FUNCTION_INFO_V1(gbt_int2_fetch);
21 4 : PG_FUNCTION_INFO_V1(gbt_int2_union);
22 4 : PG_FUNCTION_INFO_V1(gbt_int2_picksplit);
23 4 : PG_FUNCTION_INFO_V1(gbt_int2_consistent);
24 4 : PG_FUNCTION_INFO_V1(gbt_int2_distance);
25 4 : PG_FUNCTION_INFO_V1(gbt_int2_penalty);
26 4 : PG_FUNCTION_INFO_V1(gbt_int2_same);
27 :
28 : static bool
29 2912 : gbt_int2gt(const void *a, const void *b, FmgrInfo *flinfo)
30 : {
31 2912 : return (*((const int16 *) a) > *((const int16 *) b));
32 : }
33 : static bool
34 1180 : gbt_int2ge(const void *a, const void *b, FmgrInfo *flinfo)
35 : {
36 1180 : return (*((const int16 *) a) >= *((const int16 *) b));
37 : }
38 : static bool
39 1446 : gbt_int2eq(const void *a, const void *b, FmgrInfo *flinfo)
40 : {
41 1446 : return (*((const int16 *) a) == *((const int16 *) b));
42 : }
43 : static bool
44 1168 : gbt_int2le(const void *a, const void *b, FmgrInfo *flinfo)
45 : {
46 1168 : return (*((const int16 *) a) <= *((const int16 *) b));
47 : }
48 : static bool
49 2394 : gbt_int2lt(const void *a, const void *b, FmgrInfo *flinfo)
50 : {
51 2394 : return (*((const int16 *) a) < *((const int16 *) b));
52 : }
53 :
54 : static int
55 6300 : gbt_int2key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
56 : {
57 6300 : int16KEY *ia = (int16KEY *) (((const Nsrt *) a)->t);
58 6300 : int16KEY *ib = (int16KEY *) (((const Nsrt *) b)->t);
59 :
60 6300 : if (ia->lower == ib->lower)
61 : {
62 10 : if (ia->upper == ib->upper)
63 10 : return 0;
64 :
65 0 : return (ia->upper > ib->upper) ? 1 : -1;
66 : }
67 :
68 6290 : return (ia->lower > ib->lower) ? 1 : -1;
69 : }
70 :
71 : static float8
72 576 : gbt_int2_dist(const void *a, const void *b, FmgrInfo *flinfo)
73 : {
74 576 : return GET_FLOAT_DISTANCE(int16, a, b);
75 : }
76 :
77 :
78 : static const gbtree_ninfo tinfo =
79 : {
80 : gbt_t_int2,
81 : sizeof(int16),
82 : 4, /* sizeof(gbtreekey4) */
83 : gbt_int2gt,
84 : gbt_int2ge,
85 : gbt_int2eq,
86 : gbt_int2le,
87 : gbt_int2lt,
88 : gbt_int2key_cmp,
89 : gbt_int2_dist
90 : };
91 :
92 :
93 4 : PG_FUNCTION_INFO_V1(int2_dist);
94 : Datum
95 1098 : int2_dist(PG_FUNCTION_ARGS)
96 : {
97 1098 : int16 a = PG_GETARG_INT16(0);
98 1098 : int16 b = PG_GETARG_INT16(1);
99 : int16 r;
100 : int16 ra;
101 :
102 1098 : if (pg_sub_s16_overflow(a, b, &r) ||
103 1098 : r == PG_INT16_MIN)
104 0 : ereport(ERROR,
105 : (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
106 : errmsg("smallint out of range")));
107 :
108 1098 : ra = abs(r);
109 :
110 1098 : PG_RETURN_INT16(ra);
111 : }
112 :
113 :
114 : /**************************************************
115 : * int16 ops
116 : **************************************************/
117 :
118 :
119 : Datum
120 1104 : gbt_int2_compress(PG_FUNCTION_ARGS)
121 : {
122 1104 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
123 :
124 1104 : PG_RETURN_POINTER(gbt_num_compress(entry, &tinfo));
125 : }
126 :
127 : Datum
128 574 : gbt_int2_fetch(PG_FUNCTION_ARGS)
129 : {
130 574 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
131 :
132 574 : PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
133 : }
134 :
135 : Datum
136 3926 : gbt_int2_consistent(PG_FUNCTION_ARGS)
137 : {
138 3926 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
139 3926 : int16 query = PG_GETARG_INT16(1);
140 3926 : StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
141 :
142 : /* Oid subtype = PG_GETARG_OID(3); */
143 3926 : bool *recheck = (bool *) PG_GETARG_POINTER(4);
144 3926 : int16KEY *kkk = (int16KEY *) DatumGetPointer(entry->key);
145 : GBT_NUMKEY_R key;
146 :
147 : /* All cases served by this function are exact */
148 3926 : *recheck = false;
149 :
150 3926 : key.lower = (GBT_NUMKEY *) &kkk->lower;
151 3926 : key.upper = (GBT_NUMKEY *) &kkk->upper;
152 :
153 3926 : PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) &query, &strategy,
154 : GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
155 : }
156 :
157 :
158 : Datum
159 578 : gbt_int2_distance(PG_FUNCTION_ARGS)
160 : {
161 578 : GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
162 578 : int16 query = PG_GETARG_INT16(1);
163 :
164 : /* Oid subtype = PG_GETARG_OID(3); */
165 578 : int16KEY *kkk = (int16KEY *) DatumGetPointer(entry->key);
166 : GBT_NUMKEY_R key;
167 :
168 578 : key.lower = (GBT_NUMKEY *) &kkk->lower;
169 578 : key.upper = (GBT_NUMKEY *) &kkk->upper;
170 :
171 578 : PG_RETURN_FLOAT8(gbt_num_distance(&key, (void *) &query, GIST_LEAF(entry),
172 : &tinfo, fcinfo->flinfo));
173 : }
174 :
175 :
176 : Datum
177 438 : gbt_int2_union(PG_FUNCTION_ARGS)
178 : {
179 438 : GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
180 438 : void *out = palloc(sizeof(int16KEY));
181 :
182 438 : *(int *) PG_GETARG_POINTER(1) = sizeof(int16KEY);
183 438 : PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
184 : }
185 :
186 :
187 : Datum
188 710 : gbt_int2_penalty(PG_FUNCTION_ARGS)
189 : {
190 710 : int16KEY *origentry = (int16KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
191 710 : int16KEY *newentry = (int16KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
192 710 : float *result = (float *) PG_GETARG_POINTER(2);
193 :
194 710 : penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
195 :
196 710 : PG_RETURN_POINTER(result);
197 : }
198 :
199 : Datum
200 2 : gbt_int2_picksplit(PG_FUNCTION_ARGS)
201 : {
202 2 : PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector *) PG_GETARG_POINTER(0),
203 : (GIST_SPLITVEC *) PG_GETARG_POINTER(1),
204 : &tinfo, fcinfo->flinfo));
205 : }
206 :
207 : Datum
208 436 : gbt_int2_same(PG_FUNCTION_ARGS)
209 : {
210 436 : int16KEY *b1 = (int16KEY *) PG_GETARG_POINTER(0);
211 436 : int16KEY *b2 = (int16KEY *) PG_GETARG_POINTER(1);
212 436 : bool *result = (bool *) PG_GETARG_POINTER(2);
213 :
214 436 : *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
215 436 : PG_RETURN_POINTER(result);
216 : }
|