PostgreSQL Source Code  git master
btree_int4.c
Go to the documentation of this file.
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 {
15 
16 /*
17 ** int32 ops
18 */
27 
28 
29 static bool
30 gbt_int4gt(const void *a, const void *b, FmgrInfo *flinfo)
31 {
32  return (*((const int32 *) a) > *((const int32 *) b));
33 }
34 static bool
35 gbt_int4ge(const void *a, const void *b, FmgrInfo *flinfo)
36 {
37  return (*((const int32 *) a) >= *((const int32 *) b));
38 }
39 static bool
40 gbt_int4eq(const void *a, const void *b, FmgrInfo *flinfo)
41 {
42  return (*((const int32 *) a) == *((const int32 *) b));
43 }
44 static bool
45 gbt_int4le(const void *a, const void *b, FmgrInfo *flinfo)
46 {
47  return (*((const int32 *) a) <= *((const int32 *) b));
48 }
49 static bool
50 gbt_int4lt(const void *a, const void *b, FmgrInfo *flinfo)
51 {
52  return (*((const int32 *) a) < *((const int32 *) b));
53 }
54 
55 static int
56 gbt_int4key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
57 {
58  int32KEY *ia = (int32KEY *) (((const Nsrt *) a)->t);
59  int32KEY *ib = (int32KEY *) (((const Nsrt *) b)->t);
60 
61  if (ia->lower == ib->lower)
62  {
63  if (ia->upper == ib->upper)
64  return 0;
65 
66  return (ia->upper > ib->upper) ? 1 : -1;
67  }
68 
69  return (ia->lower > ib->lower) ? 1 : -1;
70 }
71 
72 static float8
73 gbt_int4_dist(const void *a, const void *b, FmgrInfo *flinfo)
74 {
75  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,
91 };
92 
93 
95 Datum
97 {
98  int32 a = PG_GETARG_INT32(0);
99  int32 b = PG_GETARG_INT32(1);
100  int32 r;
101  int32 ra;
102 
103  if (pg_sub_s32_overflow(a, b, &r) ||
104  r == PG_INT32_MIN)
105  ereport(ERROR,
106  (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
107  errmsg("integer out of range")));
108 
109  ra = abs(r);
110 
111  PG_RETURN_INT32(ra);
112 }
113 
114 
115 /**************************************************
116  * int32 ops
117  **************************************************/
118 
119 
120 Datum
122 {
123  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
124 
126 }
127 
128 Datum
130 {
131  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
132 
134 }
135 
136 Datum
138 {
139  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
140  int32 query = PG_GETARG_INT32(1);
142 
143  /* Oid subtype = PG_GETARG_OID(3); */
144  bool *recheck = (bool *) PG_GETARG_POINTER(4);
145  int32KEY *kkk = (int32KEY *) DatumGetPointer(entry->key);
147 
148  /* All cases served by this function are exact */
149  *recheck = false;
150 
151  key.lower = (GBT_NUMKEY *) &kkk->lower;
152  key.upper = (GBT_NUMKEY *) &kkk->upper;
153 
154  PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) &query, &strategy,
155  GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
156 }
157 
158 
159 Datum
161 {
162  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
163  int32 query = PG_GETARG_INT32(1);
164 
165  /* Oid subtype = PG_GETARG_OID(3); */
166  int32KEY *kkk = (int32KEY *) DatumGetPointer(entry->key);
168 
169  key.lower = (GBT_NUMKEY *) &kkk->lower;
170  key.upper = (GBT_NUMKEY *) &kkk->upper;
171 
172  PG_RETURN_FLOAT8(gbt_num_distance(&key, (void *) &query, GIST_LEAF(entry),
173  &tinfo, fcinfo->flinfo));
174 }
175 
176 
177 Datum
179 {
181  void *out = palloc(sizeof(int32KEY));
182 
183  *(int *) PG_GETARG_POINTER(1) = sizeof(int32KEY);
184  PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
185 }
186 
187 
188 Datum
190 {
191  int32KEY *origentry = (int32KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
192  int32KEY *newentry = (int32KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
193  float *result = (float *) PG_GETARG_POINTER(2);
194 
195  penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
196 
197  PG_RETURN_POINTER(result);
198 }
199 
200 Datum
202 {
205  &tinfo, fcinfo->flinfo));
206 }
207 
208 Datum
210 {
211  int32KEY *b1 = (int32KEY *) PG_GETARG_POINTER(0);
212  int32KEY *b2 = (int32KEY *) PG_GETARG_POINTER(1);
213  bool *result = (bool *) PG_GETARG_POINTER(2);
214 
215  *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
216  PG_RETURN_POINTER(result);
217 }
@ gbt_t_int4
Definition: btree_gist.h:18
static bool gbt_int4lt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:50
PG_FUNCTION_INFO_V1(gbt_int4_compress)
static bool gbt_int4eq(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:40
static int gbt_int4key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:56
Datum gbt_int4_penalty(PG_FUNCTION_ARGS)
Definition: btree_int4.c:189
Datum gbt_int4_consistent(PG_FUNCTION_ARGS)
Definition: btree_int4.c:137
static bool gbt_int4ge(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:35
Datum gbt_int4_same(PG_FUNCTION_ARGS)
Definition: btree_int4.c:209
Datum gbt_int4_distance(PG_FUNCTION_ARGS)
Definition: btree_int4.c:160
Datum gbt_int4_fetch(PG_FUNCTION_ARGS)
Definition: btree_int4.c:129
Datum gbt_int4_union(PG_FUNCTION_ARGS)
Definition: btree_int4.c:178
static bool gbt_int4gt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:30
static bool gbt_int4le(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:45
static float8 gbt_int4_dist(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:73
struct int32key int32KEY
static const gbtree_ninfo tinfo
Definition: btree_int4.c:79
Datum int4_dist(PG_FUNCTION_ARGS)
Definition: btree_int4.c:96
Datum gbt_int4_picksplit(PG_FUNCTION_ARGS)
Definition: btree_int4.c:201
Datum gbt_int4_compress(PG_FUNCTION_ARGS)
Definition: btree_int4.c:121
float8 gbt_num_distance(const GBT_NUMKEY_R *key, const void *query, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
GISTENTRY * gbt_num_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo)
bool gbt_num_consistent(const GBT_NUMKEY_R *key, const void *query, const StrategyNumber *strategy, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
bool gbt_num_same(const GBT_NUMKEY *a, const GBT_NUMKEY *b, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
GISTENTRY * gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo)
void * gbt_num_union(GBT_NUMKEY *out, const GistEntryVector *entryvec, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
GIST_SPLITVEC * gbt_num_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
#define penalty_num(result, olower, oupper, nlower, nupper)
#define GET_FLOAT_DISTANCE(t, arg1, arg2)
char GBT_NUMKEY
signed int int32
Definition: c.h:494
double float8
Definition: c.h:630
#define PG_INT32_MIN
Definition: c.h:588
int errcode(int sqlerrcode)
Definition: elog.c:859
int errmsg(const char *fmt,...)
Definition: elog.c:1072
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
#define PG_RETURN_FLOAT8(x)
Definition: fmgr.h:367
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#define PG_RETURN_INT32(x)
Definition: fmgr.h:354
#define PG_GETARG_INT32(n)
Definition: fmgr.h:269
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define GIST_LEAF(entry)
Definition: gist.h:170
static bool pg_sub_s32_overflow(int32 a, int32 b, int32 *result)
Definition: int.h:122
int b
Definition: isn.c:70
int a
Definition: isn.c:69
void * palloc(Size size)
Definition: mcxt.c:1316
uintptr_t Datum
Definition: postgres.h:64
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
uint16 StrategyNumber
Definition: stratnum.h:22
Definition: fmgr.h:57
Datum key
Definition: gist.h:160
int32 upper
Definition: btree_int4.c:13
int32 lower
Definition: btree_int4.c:12