2016-11-30 03:08:23 +08:00
|
|
|
/*
|
|
|
|
* contrib/btree_gist/btree_uuid.c
|
|
|
|
*/
|
|
|
|
#include "postgres.h"
|
|
|
|
|
|
|
|
#include "btree_gist.h"
|
|
|
|
#include "btree_utils_num.h"
|
|
|
|
#include "port/pg_bswap.h"
|
|
|
|
#include "utils/uuid.h"
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
pg_uuid_t lower,
|
|
|
|
upper;
|
|
|
|
} uuidKEY;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* UUID ops
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_uuid_compress);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_uuid_fetch);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_uuid_union);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_uuid_picksplit);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_uuid_consistent);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_uuid_penalty);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_uuid_same);
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
uuid_internal_cmp(const pg_uuid_t *arg1, const pg_uuid_t *arg2)
|
|
|
|
{
|
|
|
|
return memcmp(arg1->data, arg2->data, UUID_LEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_uuidgt(const void *a, const void *b, FmgrInfo *flinfo)
|
2016-11-30 03:08:23 +08:00
|
|
|
{
|
|
|
|
return uuid_internal_cmp((const pg_uuid_t *) a, (const pg_uuid_t *) b) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_uuidge(const void *a, const void *b, FmgrInfo *flinfo)
|
2016-11-30 03:08:23 +08:00
|
|
|
{
|
|
|
|
return uuid_internal_cmp((const pg_uuid_t *) a, (const pg_uuid_t *) b) >= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_uuideq(const void *a, const void *b, FmgrInfo *flinfo)
|
2016-11-30 03:08:23 +08:00
|
|
|
{
|
|
|
|
return uuid_internal_cmp((const pg_uuid_t *) a, (const pg_uuid_t *) b) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_uuidle(const void *a, const void *b, FmgrInfo *flinfo)
|
2016-11-30 03:08:23 +08:00
|
|
|
{
|
|
|
|
return uuid_internal_cmp((const pg_uuid_t *) a, (const pg_uuid_t *) b) <= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_uuidlt(const void *a, const void *b, FmgrInfo *flinfo)
|
2016-11-30 03:08:23 +08:00
|
|
|
{
|
|
|
|
return uuid_internal_cmp((const pg_uuid_t *) a, (const pg_uuid_t *) b) < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_uuidkey_cmp(const void *a, const void *b, FmgrInfo *flinfo)
|
2016-11-30 03:08:23 +08:00
|
|
|
{
|
|
|
|
uuidKEY *ia = (uuidKEY *) (((const Nsrt *) a)->t);
|
|
|
|
uuidKEY *ib = (uuidKEY *) (((const Nsrt *) b)->t);
|
|
|
|
int res;
|
|
|
|
|
|
|
|
res = uuid_internal_cmp(&ia->lower, &ib->lower);
|
|
|
|
if (res == 0)
|
|
|
|
res = uuid_internal_cmp(&ia->upper, &ib->upper);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const gbtree_ninfo tinfo =
|
|
|
|
{
|
|
|
|
gbt_t_uuid,
|
|
|
|
UUID_LEN,
|
|
|
|
32, /* sizeof(gbtreekey32) */
|
|
|
|
gbt_uuidgt,
|
|
|
|
gbt_uuidge,
|
|
|
|
gbt_uuideq,
|
|
|
|
gbt_uuidle,
|
|
|
|
gbt_uuidlt,
|
|
|
|
gbt_uuidkey_cmp,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************
|
|
|
|
* uuid ops
|
|
|
|
**************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_uuid_compress(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
GISTENTRY *retval;
|
|
|
|
|
|
|
|
if (entry->leafkey)
|
|
|
|
{
|
|
|
|
char *r = (char *) palloc(2 * UUID_LEN);
|
|
|
|
pg_uuid_t *key = DatumGetUUIDP(entry->key);
|
|
|
|
|
|
|
|
retval = palloc(sizeof(GISTENTRY));
|
|
|
|
|
|
|
|
memcpy((void *) r, (void *) key, UUID_LEN);
|
|
|
|
memcpy((void *) (r + UUID_LEN), (void *) key, UUID_LEN);
|
|
|
|
gistentryinit(*retval, PointerGetDatum(r),
|
|
|
|
entry->rel, entry->page,
|
2017-08-16 12:22:32 +08:00
|
|
|
entry->offset, false);
|
2016-11-30 03:08:23 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
retval = entry;
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_uuid_fetch(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_uuid_consistent(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
pg_uuid_t *query = PG_GETARG_UUID_P(1);
|
|
|
|
StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
|
|
|
|
|
|
|
|
/* Oid subtype = PG_GETARG_OID(3); */
|
|
|
|
bool *recheck = (bool *) PG_GETARG_POINTER(4);
|
|
|
|
uuidKEY *kkk = (uuidKEY *) DatumGetPointer(entry->key);
|
|
|
|
GBT_NUMKEY_R key;
|
|
|
|
|
|
|
|
/* All cases served by this function are exact */
|
|
|
|
*recheck = false;
|
|
|
|
|
|
|
|
key.lower = (GBT_NUMKEY *) &kkk->lower;
|
|
|
|
key.upper = (GBT_NUMKEY *) &kkk->upper;
|
|
|
|
|
2020-01-31 00:42:14 +08:00
|
|
|
PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) query, &strategy,
|
|
|
|
GIST_LEAF(entry), &tinfo,
|
|
|
|
fcinfo->flinfo));
|
2016-11-30 03:08:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_uuid_union(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
|
|
|
|
void *out = palloc(sizeof(uuidKEY));
|
|
|
|
|
|
|
|
*(int *) PG_GETARG_POINTER(1) = sizeof(uuidKEY);
|
2017-03-21 21:12:46 +08:00
|
|
|
PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
|
2016-11-30 03:08:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert a uuid to a "double" value for estimating sizes of ranges.
|
|
|
|
*/
|
|
|
|
static double
|
|
|
|
uuid_2_double(const pg_uuid_t *u)
|
|
|
|
{
|
|
|
|
uint64 uu[2];
|
Phase 2 of pgindent updates.
Change pg_bsd_indent to follow upstream rules for placement of comments
to the right of code, and remove pgindent hack that caused comments
following #endif to not obey the general rule.
Commit e3860ffa4dd0dad0dd9eea4be9cc1412373a8c89 wasn't actually using
the published version of pg_bsd_indent, but a hacked-up version that
tried to minimize the amount of movement of comments to the right of
code. The situation of interest is where such a comment has to be
moved to the right of its default placement at column 33 because there's
code there. BSD indent has always moved right in units of tab stops
in such cases --- but in the previous incarnation, indent was working
in 8-space tab stops, while now it knows we use 4-space tabs. So the
net result is that in about half the cases, such comments are placed
one tab stop left of before. This is better all around: it leaves
more room on the line for comment text, and it means that in such
cases the comment uniformly starts at the next 4-space tab stop after
the code, rather than sometimes one and sometimes two tabs after.
Also, ensure that comments following #endif are indented the same
as comments following other preprocessor commands such as #else.
That inconsistency turns out to have been self-inflicted damage
from a poorly-thought-through post-indent "fixup" in pgindent.
This patch is much less interesting than the first round of indent
changes, but also bulkier, so I thought it best to separate the effects.
Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
2017-06-22 03:18:54 +08:00
|
|
|
const double two64 = 18446744073709551616.0; /* 2^64 */
|
2016-11-30 03:08:23 +08:00
|
|
|
|
|
|
|
/* Source data may not be suitably aligned, so copy */
|
|
|
|
memcpy(uu, u->data, UUID_LEN);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uuid values should be considered as big-endian numbers, since that
|
|
|
|
* corresponds to how memcmp will compare them. On a little-endian
|
|
|
|
* machine, byte-swap each half so we can use native uint64 arithmetic.
|
|
|
|
*/
|
|
|
|
#ifndef WORDS_BIGENDIAN
|
2017-09-30 06:52:55 +08:00
|
|
|
uu[0] = pg_bswap64(uu[0]);
|
|
|
|
uu[1] = pg_bswap64(uu[1]);
|
2016-11-30 03:08:23 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 2^128 is about 3.4e38, which in theory could exceed the range of
|
|
|
|
* "double" (POSIX only requires 1e37). To avoid any risk of overflow,
|
|
|
|
* put the decimal point between the two halves rather than treating the
|
|
|
|
* uuid value as a 128-bit integer.
|
|
|
|
*/
|
|
|
|
return (double) uu[0] + (double) uu[1] / two64;
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_uuid_penalty(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
uuidKEY *origentry = (uuidKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
|
|
|
|
uuidKEY *newentry = (uuidKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
|
|
|
|
float *result = (float *) PG_GETARG_POINTER(2);
|
|
|
|
double olower,
|
|
|
|
oupper,
|
|
|
|
nlower,
|
|
|
|
nupper;
|
|
|
|
|
|
|
|
olower = uuid_2_double(&origentry->lower);
|
|
|
|
oupper = uuid_2_double(&origentry->upper);
|
|
|
|
nlower = uuid_2_double(&newentry->lower);
|
|
|
|
nupper = uuid_2_double(&newentry->upper);
|
|
|
|
|
|
|
|
penalty_num(result, olower, oupper, nlower, nupper);
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_uuid_picksplit(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2020-01-31 00:42:14 +08:00
|
|
|
PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector *) PG_GETARG_POINTER(0),
|
Phase 3 of pgindent updates.
Don't move parenthesized lines to the left, even if that means they
flow past the right margin.
By default, BSD indent lines up statement continuation lines that are
within parentheses so that they start just to the right of the preceding
left parenthesis. However, traditionally, if that resulted in the
continuation line extending to the right of the desired right margin,
then indent would push it left just far enough to not overrun the margin,
if it could do so without making the continuation line start to the left of
the current statement indent. That makes for a weird mix of indentations
unless one has been completely rigid about never violating the 80-column
limit.
This behavior has been pretty universally panned by Postgres developers.
Hence, disable it with indent's new -lpl switch, so that parenthesized
lines are always lined up with the preceding left paren.
This patch is much less interesting than the first round of indent
changes, but also bulkier, so I thought it best to separate the effects.
Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
2017-06-22 03:35:54 +08:00
|
|
|
(GIST_SPLITVEC *) PG_GETARG_POINTER(1),
|
2020-01-31 00:42:14 +08:00
|
|
|
&tinfo, fcinfo->flinfo));
|
2016-11-30 03:08:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_uuid_same(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
uuidKEY *b1 = (uuidKEY *) PG_GETARG_POINTER(0);
|
|
|
|
uuidKEY *b2 = (uuidKEY *) PG_GETARG_POINTER(1);
|
|
|
|
bool *result = (bool *) PG_GETARG_POINTER(2);
|
|
|
|
|
2017-03-21 21:12:46 +08:00
|
|
|
*result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
|
2016-11-30 03:08:23 +08:00
|
|
|
PG_RETURN_POINTER(result);
|
|
|
|
}
|