PostgreSQL Source Code  git master
btree_macaddr8.c File Reference
#include "postgres.h"
#include "btree_gist.h"
#include "btree_utils_num.h"
#include "utils/builtins.h"
#include "utils/inet.h"
Include dependency graph for btree_macaddr8.c:

Go to the source code of this file.

Data Structures

struct  mac8KEY
 

Functions

 PG_FUNCTION_INFO_V1 (gbt_macad8_compress)
 
 PG_FUNCTION_INFO_V1 (gbt_macad8_fetch)
 
 PG_FUNCTION_INFO_V1 (gbt_macad8_union)
 
 PG_FUNCTION_INFO_V1 (gbt_macad8_picksplit)
 
 PG_FUNCTION_INFO_V1 (gbt_macad8_consistent)
 
 PG_FUNCTION_INFO_V1 (gbt_macad8_penalty)
 
 PG_FUNCTION_INFO_V1 (gbt_macad8_same)
 
static bool gbt_macad8gt (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_macad8ge (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_macad8eq (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_macad8le (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_macad8lt (const void *a, const void *b, FmgrInfo *flinfo)
 
static int gbt_macad8key_cmp (const void *a, const void *b, FmgrInfo *flinfo)
 
static uint64 mac8_2_uint64 (macaddr8 *m)
 
Datum gbt_macad8_compress (PG_FUNCTION_ARGS)
 
Datum gbt_macad8_fetch (PG_FUNCTION_ARGS)
 
Datum gbt_macad8_consistent (PG_FUNCTION_ARGS)
 
Datum gbt_macad8_union (PG_FUNCTION_ARGS)
 
Datum gbt_macad8_penalty (PG_FUNCTION_ARGS)
 
Datum gbt_macad8_picksplit (PG_FUNCTION_ARGS)
 
Datum gbt_macad8_same (PG_FUNCTION_ARGS)
 

Variables

static const gbtree_ninfo tinfo
 

Function Documentation

◆ gbt_macad8_compress()

Datum gbt_macad8_compress ( PG_FUNCTION_ARGS  )

Definition at line 111 of file btree_macaddr8.c.

112 {
113  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
114 
116 }
static const gbtree_ninfo tinfo
GISTENTRY * gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo)
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361

References gbt_num_compress(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_macad8_consistent()

Datum gbt_macad8_consistent ( PG_FUNCTION_ARGS  )

Definition at line 127 of file btree_macaddr8.c.

128 {
129  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
130  macaddr8 *query = (macaddr8 *) PG_GETARG_POINTER(1);
132 
133  /* Oid subtype = PG_GETARG_OID(3); */
134  bool *recheck = (bool *) PG_GETARG_POINTER(4);
135  mac8KEY *kkk = (mac8KEY *) DatumGetPointer(entry->key);
137 
138  /* All cases served by this function are exact */
139  *recheck = false;
140 
141  key.lower = (GBT_NUMKEY *) &kkk->lower;
142  key.upper = (GBT_NUMKEY *) &kkk->upper;
143 
144  PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) query, &strategy,
145  GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
146 }
bool gbt_num_consistent(const GBT_NUMKEY_R *key, const void *query, const StrategyNumber *strategy, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
char GBT_NUMKEY
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define GIST_LEAF(entry)
Definition: gist.h:170
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
uint16 StrategyNumber
Definition: stratnum.h:22
Datum key
Definition: gist.h:160
macaddr8 upper
macaddr8 lower
Definition: inet.h:108

References DatumGetPointer(), gbt_num_consistent(), GIST_LEAF, GISTENTRY::key, sort-test::key, mac8KEY::lower, PG_GETARG_POINTER, PG_GETARG_UINT16, PG_RETURN_BOOL, tinfo, and mac8KEY::upper.

◆ gbt_macad8_fetch()

Datum gbt_macad8_fetch ( PG_FUNCTION_ARGS  )

Definition at line 119 of file btree_macaddr8.c.

120 {
121  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
122 
124 }
GISTENTRY * gbt_num_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo)

References gbt_num_fetch(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_macad8_penalty()

Datum gbt_macad8_penalty ( PG_FUNCTION_ARGS  )

Definition at line 161 of file btree_macaddr8.c.

162 {
163  mac8KEY *origentry = (mac8KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
164  mac8KEY *newentry = (mac8KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
165  float *result = (float *) PG_GETARG_POINTER(2);
166  uint64 iorg[2],
167  inew[2];
168 
169  iorg[0] = mac8_2_uint64(&origentry->lower);
170  iorg[1] = mac8_2_uint64(&origentry->upper);
171  inew[0] = mac8_2_uint64(&newentry->lower);
172  inew[1] = mac8_2_uint64(&newentry->upper);
173 
174  penalty_num(result, iorg[0], iorg[1], inew[0], inew[1]);
175 
176  PG_RETURN_POINTER(result);
177 }
static uint64 mac8_2_uint64(macaddr8 *m)
#define penalty_num(result, olower, oupper, nlower, nupper)

References DatumGetPointer(), sort-test::key, mac8KEY::lower, mac8_2_uint64(), penalty_num, PG_GETARG_POINTER, PG_RETURN_POINTER, and mac8KEY::upper.

◆ gbt_macad8_picksplit()

Datum gbt_macad8_picksplit ( PG_FUNCTION_ARGS  )

Definition at line 180 of file btree_macaddr8.c.

181 {
184  &tinfo, fcinfo->flinfo));
185 }
GIST_SPLITVEC * gbt_num_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)

References gbt_num_picksplit(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_macad8_same()

Datum gbt_macad8_same ( PG_FUNCTION_ARGS  )

Definition at line 188 of file btree_macaddr8.c.

189 {
190  mac8KEY *b1 = (mac8KEY *) PG_GETARG_POINTER(0);
191  mac8KEY *b2 = (mac8KEY *) PG_GETARG_POINTER(1);
192  bool *result = (bool *) PG_GETARG_POINTER(2);
193 
194  *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
195  PG_RETURN_POINTER(result);
196 }
bool gbt_num_same(const GBT_NUMKEY *a, const GBT_NUMKEY *b, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)

References gbt_num_same(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_macad8_union()

Datum gbt_macad8_union ( PG_FUNCTION_ARGS  )

Definition at line 150 of file btree_macaddr8.c.

151 {
153  void *out = palloc0(sizeof(mac8KEY));
154 
155  *(int *) PG_GETARG_POINTER(1) = sizeof(mac8KEY);
156  PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
157 }
void * gbt_num_union(GBT_NUMKEY *out, const GistEntryVector *entryvec, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
void * palloc0(Size size)
Definition: mcxt.c:1346

References gbt_num_union(), palloc0(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_macad8eq()

static bool gbt_macad8eq ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 42 of file btree_macaddr8.c.

43 {
45 }
#define DirectFunctionCall2(func, arg1, arg2)
Definition: fmgr.h:644
int b
Definition: isn.c:70
int a
Definition: isn.c:69
Datum macaddr8_eq(PG_FUNCTION_ARGS)
Definition: mac8.c:356
static bool DatumGetBool(Datum X)
Definition: postgres.h:90
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322

References a, b, DatumGetBool(), DirectFunctionCall2, macaddr8_eq(), and PointerGetDatum().

◆ gbt_macad8ge()

static bool gbt_macad8ge ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 36 of file btree_macaddr8.c.

37 {
39 }
Datum macaddr8_ge(PG_FUNCTION_ARGS)
Definition: mac8.c:365

References a, b, DatumGetBool(), DirectFunctionCall2, macaddr8_ge(), and PointerGetDatum().

◆ gbt_macad8gt()

static bool gbt_macad8gt ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 31 of file btree_macaddr8.c.

32 {
34 }
Datum macaddr8_gt(PG_FUNCTION_ARGS)
Definition: mac8.c:374

References a, b, DatumGetBool(), DirectFunctionCall2, macaddr8_gt(), and PointerGetDatum().

◆ gbt_macad8key_cmp()

static int gbt_macad8key_cmp ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 61 of file btree_macaddr8.c.

62 {
63  mac8KEY *ia = (mac8KEY *) (((const Nsrt *) a)->t);
64  mac8KEY *ib = (mac8KEY *) (((const Nsrt *) b)->t);
65  int res;
66 
68  if (res == 0)
70 
71  return res;
72 }
Datum macaddr8_cmp(PG_FUNCTION_ARGS)
Definition: mac8.c:325
static int32 DatumGetInt32(Datum X)
Definition: postgres.h:202
static Datum Macaddr8PGetDatum(const macaddr8 *X)
Definition: inet.h:169

References a, b, DatumGetInt32(), DirectFunctionCall2, mac8KEY::lower, macaddr8_cmp(), Macaddr8PGetDatum(), res, and mac8KEY::upper.

◆ gbt_macad8le()

static bool gbt_macad8le ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 48 of file btree_macaddr8.c.

49 {
51 }
Datum macaddr8_le(PG_FUNCTION_ARGS)
Definition: mac8.c:347

References a, b, DatumGetBool(), DirectFunctionCall2, macaddr8_le(), and PointerGetDatum().

◆ gbt_macad8lt()

static bool gbt_macad8lt ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 54 of file btree_macaddr8.c.

55 {
57 }
Datum macaddr8_lt(PG_FUNCTION_ARGS)
Definition: mac8.c:338

References a, b, DatumGetBool(), DirectFunctionCall2, macaddr8_lt(), and PointerGetDatum().

◆ mac8_2_uint64()

static uint64 mac8_2_uint64 ( macaddr8 m)
static

Definition at line 97 of file btree_macaddr8.c.

98 {
99  unsigned char *mi = (unsigned char *) m;
100  uint64 res = 0;
101  int i;
102 
103  for (i = 0; i < 8; i++)
104  res += (((uint64) mi[i]) << ((uint64) ((7 - i) * 8)));
105  return res;
106 }
int i
Definition: isn.c:73

References i, and res.

Referenced by gbt_macad8_penalty().

◆ PG_FUNCTION_INFO_V1() [1/7]

PG_FUNCTION_INFO_V1 ( gbt_macad8_compress  )

◆ PG_FUNCTION_INFO_V1() [2/7]

PG_FUNCTION_INFO_V1 ( gbt_macad8_consistent  )

◆ PG_FUNCTION_INFO_V1() [3/7]

PG_FUNCTION_INFO_V1 ( gbt_macad8_fetch  )

◆ PG_FUNCTION_INFO_V1() [4/7]

PG_FUNCTION_INFO_V1 ( gbt_macad8_penalty  )

◆ PG_FUNCTION_INFO_V1() [5/7]

PG_FUNCTION_INFO_V1 ( gbt_macad8_picksplit  )

◆ PG_FUNCTION_INFO_V1() [6/7]

PG_FUNCTION_INFO_V1 ( gbt_macad8_same  )

◆ PG_FUNCTION_INFO_V1() [7/7]

PG_FUNCTION_INFO_V1 ( gbt_macad8_union  )

Variable Documentation

◆ tinfo

const gbtree_ninfo tinfo
static
Initial value:
=
{
sizeof(macaddr8),
16,
NULL
}
@ gbt_t_macad8
Definition: btree_gist.h:30
static int gbt_macad8key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
static bool gbt_macad8lt(const void *a, const void *b, FmgrInfo *flinfo)
static bool gbt_macad8eq(const void *a, const void *b, FmgrInfo *flinfo)
static bool gbt_macad8le(const void *a, const void *b, FmgrInfo *flinfo)
static bool gbt_macad8gt(const void *a, const void *b, FmgrInfo *flinfo)
static bool gbt_macad8ge(const void *a, const void *b, FmgrInfo *flinfo)
struct macaddr8 macaddr8

Definition at line 75 of file btree_macaddr8.c.

Referenced by gbt_macad8_compress(), gbt_macad8_consistent(), gbt_macad8_fetch(), gbt_macad8_picksplit(), gbt_macad8_same(), and gbt_macad8_union().