Thanks to visit codestin.com
Credit goes to doxygen.postgresql.org

PostgreSQL Source Code git master
btree_cash.c
Go to the documentation of this file.
1/*
2 * contrib/btree_gist/btree_cash.c
3 */
4#include "postgres.h"
5
6#include "btree_gist.h"
7#include "btree_utils_num.h"
8#include "common/int.h"
9#include "utils/cash.h"
10#include "utils/rel.h"
11#include "utils/sortsupport.h"
12
13typedef struct
14{
17} cashKEY;
18
19/* GiST support functions */
29
30static bool
31gbt_cashgt(const void *a, const void *b, FmgrInfo *flinfo)
32{
33 return (*((const Cash *) a) > *((const Cash *) b));
34}
35static bool
36gbt_cashge(const void *a, const void *b, FmgrInfo *flinfo)
37{
38 return (*((const Cash *) a) >= *((const Cash *) b));
39}
40static bool
41gbt_casheq(const void *a, const void *b, FmgrInfo *flinfo)
42{
43 return (*((const Cash *) a) == *((const Cash *) b));
44}
45static bool
46gbt_cashle(const void *a, const void *b, FmgrInfo *flinfo)
47{
48 return (*((const Cash *) a) <= *((const Cash *) b));
49}
50static bool
51gbt_cashlt(const void *a, const void *b, FmgrInfo *flinfo)
52{
53 return (*((const Cash *) a) < *((const Cash *) b));
54}
55
56static int
57gbt_cashkey_cmp(const void *a, const void *b, FmgrInfo *flinfo)
58{
59 cashKEY *ia = (cashKEY *) (((const Nsrt *) a)->t);
60 cashKEY *ib = (cashKEY *) (((const Nsrt *) b)->t);
61
62 if (ia->lower == ib->lower)
63 {
64 if (ia->upper == ib->upper)
65 return 0;
66
67 return (ia->upper > ib->upper) ? 1 : -1;
68 }
69
70 return (ia->lower > ib->lower) ? 1 : -1;
71}
72
73static float8
74gbt_cash_dist(const void *a, const void *b, FmgrInfo *flinfo)
75{
76 return GET_FLOAT_DISTANCE(Cash, a, b);
77}
78
79
80static const gbtree_ninfo tinfo =
81{
83 sizeof(Cash),
84 16, /* sizeof(gbtreekey16) */
92};
93
94
98{
100 Cash b = PG_GETARG_CASH(1);
101 Cash r;
102 Cash ra;
103
104 if (pg_sub_s64_overflow(a, b, &r) ||
105 r == PG_INT64_MIN)
107 (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
108 errmsg("money out of range")));
109
110 ra = i64abs(r);
111
112 PG_RETURN_CASH(ra);
113}
114
115
116/**************************************************
117 * GiST support functions
118 **************************************************/
119
120Datum
122{
123 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
124
126}
127
128Datum
130{
131 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
132
134}
135
136Datum
138{
139 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
140 Cash query = PG_GETARG_CASH(1);
142
143 /* Oid subtype = PG_GETARG_OID(3); */
144 bool *recheck = (bool *) PG_GETARG_POINTER(4);
145 cashKEY *kkk = (cashKEY *) 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, &query, &strategy,
155 GIST_LEAF(entry), &tinfo,
156 fcinfo->flinfo));
157}
158
159Datum
161{
162 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
163 Cash query = PG_GETARG_CASH(1);
164
165 /* Oid subtype = PG_GETARG_OID(3); */
166 cashKEY *kkk = (cashKEY *) DatumGetPointer(entry->key);
168
169 key.lower = (GBT_NUMKEY *) &kkk->lower;
170 key.upper = (GBT_NUMKEY *) &kkk->upper;
171
173 &tinfo, fcinfo->flinfo));
174}
175
176Datum
178{
180 void *out = palloc(sizeof(cashKEY));
181
182 *(int *) PG_GETARG_POINTER(1) = sizeof(cashKEY);
183 PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
184}
185
186Datum
188{
189 cashKEY *origentry = (cashKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
191 float *result = (float *) PG_GETARG_POINTER(2);
192
193 penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
194
195 PG_RETURN_POINTER(result);
196}
197
198Datum
200{
203 &tinfo, fcinfo->flinfo));
204}
205
206Datum
208{
209 cashKEY *b1 = (cashKEY *) PG_GETARG_POINTER(0);
210 cashKEY *b2 = (cashKEY *) PG_GETARG_POINTER(1);
211 bool *result = (bool *) PG_GETARG_POINTER(2);
212
213 *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
214 PG_RETURN_POINTER(result);
215}
216
217static int
219{
220 cashKEY *arg1 = (cashKEY *) DatumGetPointer(x);
221 cashKEY *arg2 = (cashKEY *) DatumGetPointer(y);
222
223 /* for leaf items we expect lower == upper, so only compare lower */
224 if (arg1->lower > arg2->lower)
225 return 1;
226 else if (arg1->lower < arg2->lower)
227 return -1;
228 else
229 return 0;
230}
231
232Datum
234{
236
238 ssup->ssup_extra = NULL;
239
241}
Datum gbt_cash_picksplit(PG_FUNCTION_ARGS)
Definition: btree_cash.c:199
static bool gbt_casheq(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_cash.c:41
Datum gbt_cash_fetch(PG_FUNCTION_ARGS)
Definition: btree_cash.c:129
PG_FUNCTION_INFO_V1(gbt_cash_compress)
Datum gbt_cash_consistent(PG_FUNCTION_ARGS)
Definition: btree_cash.c:137
Datum gbt_cash_distance(PG_FUNCTION_ARGS)
Definition: btree_cash.c:160
static bool gbt_cashgt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_cash.c:31
static int gbt_cashkey_cmp(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_cash.c:57
Datum gbt_cash_penalty(PG_FUNCTION_ARGS)
Definition: btree_cash.c:187
static bool gbt_cashlt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_cash.c:51
static float8 gbt_cash_dist(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_cash.c:74
static bool gbt_cashle(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_cash.c:46
static bool gbt_cashge(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_cash.c:36
static const gbtree_ninfo tinfo
Definition: btree_cash.c:80
Datum gbt_cash_union(PG_FUNCTION_ARGS)
Definition: btree_cash.c:177
Datum cash_dist(PG_FUNCTION_ARGS)
Definition: btree_cash.c:97
Datum gbt_cash_same(PG_FUNCTION_ARGS)
Definition: btree_cash.c:207
static int gbt_cash_ssup_cmp(Datum x, Datum y, SortSupport ssup)
Definition: btree_cash.c:218
Datum gbt_cash_sortsupport(PG_FUNCTION_ARGS)
Definition: btree_cash.c:233
Datum gbt_cash_compress(PG_FUNCTION_ARGS)
Definition: btree_cash.c:121
@ gbt_t_cash
Definition: btree_gist.h:24
GISTENTRY * gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo)
float8 gbt_num_distance(const GBT_NUMKEY_R *key, const void *query, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
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_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo)
GIST_SPLITVEC * gbt_num_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
void * gbt_num_union(GBT_NUMKEY *out, const GistEntryVector *entryvec, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
#define penalty_num(result, olower, oupper, nlower, nupper)
#define GET_FLOAT_DISTANCE(t, arg1, arg2)
char GBT_NUMKEY
double float8
Definition: c.h:636
#define PG_INT64_MIN
Definition: c.h:597
int64 Cash
Definition: cash.h:17
#define PG_RETURN_CASH(x)
Definition: cash.h:33
#define PG_GETARG_CASH(n)
Definition: cash.h:32
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:150
#define PG_RETURN_VOID()
Definition: fmgr.h:349
#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_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:171
static bool pg_sub_s64_overflow(int64 a, int64 b, int64 *result)
Definition: int.h:262
int y
Definition: isn.c:76
int b
Definition: isn.c:74
int x
Definition: isn.c:75
int a
Definition: isn.c:73
void * palloc(Size size)
Definition: mcxt.c:1365
uint64_t Datum
Definition: postgres.h:70
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:322
struct SortSupportData * SortSupport
Definition: sortsupport.h:58
uint16 StrategyNumber
Definition: stratnum.h:22
Definition: fmgr.h:57
Datum key
Definition: gist.h:161
int(* comparator)(Datum x, Datum y, SortSupport ssup)
Definition: sortsupport.h:106
void * ssup_extra
Definition: sortsupport.h:87
Cash lower
Definition: btree_cash.c:15
Cash upper
Definition: btree_cash.c:16