1 /*
2  * contrib/btree_gist/btree_macaddr8.c
3  */
4 #include "postgres.h"
5 
6 #include "btree_gist.h"
7 #include "btree_utils_num.h"
8 #include "utils/builtins.h"
9 #include "utils/inet.h"
10 
11 typedef struct
12 {
13 	macaddr8	lower;
14 	macaddr8	upper;
15 	/* make struct size = sizeof(gbtreekey16) */
16 } mac8KEY;
17 
18 /*
19 ** OID ops
20 */
21 PG_FUNCTION_INFO_V1(gbt_macad8_compress);
22 PG_FUNCTION_INFO_V1(gbt_macad8_fetch);
23 PG_FUNCTION_INFO_V1(gbt_macad8_union);
24 PG_FUNCTION_INFO_V1(gbt_macad8_picksplit);
25 PG_FUNCTION_INFO_V1(gbt_macad8_consistent);
26 PG_FUNCTION_INFO_V1(gbt_macad8_penalty);
27 PG_FUNCTION_INFO_V1(gbt_macad8_same);
28 
29 
30 static bool
gbt_macad8gt(const void * a,const void * b,FmgrInfo * flinfo)31 gbt_macad8gt(const void *a, const void *b, FmgrInfo *flinfo)
32 {
33 	return DatumGetBool(DirectFunctionCall2(macaddr8_gt, PointerGetDatum(a), PointerGetDatum(b)));
34 }
35 static bool
gbt_macad8ge(const void * a,const void * b,FmgrInfo * flinfo)36 gbt_macad8ge(const void *a, const void *b, FmgrInfo *flinfo)
37 {
38 	return DatumGetBool(DirectFunctionCall2(macaddr8_ge, PointerGetDatum(a), PointerGetDatum(b)));
39 }
40 
41 static bool
gbt_macad8eq(const void * a,const void * b,FmgrInfo * flinfo)42 gbt_macad8eq(const void *a, const void *b, FmgrInfo *flinfo)
43 {
44 	return DatumGetBool(DirectFunctionCall2(macaddr8_eq, PointerGetDatum(a), PointerGetDatum(b)));
45 }
46 
47 static bool
gbt_macad8le(const void * a,const void * b,FmgrInfo * flinfo)48 gbt_macad8le(const void *a, const void *b, FmgrInfo *flinfo)
49 {
50 	return DatumGetBool(DirectFunctionCall2(macaddr8_le, PointerGetDatum(a), PointerGetDatum(b)));
51 }
52 
53 static bool
gbt_macad8lt(const void * a,const void * b,FmgrInfo * flinfo)54 gbt_macad8lt(const void *a, const void *b, FmgrInfo *flinfo)
55 {
56 	return DatumGetBool(DirectFunctionCall2(macaddr8_lt, PointerGetDatum(a), PointerGetDatum(b)));
57 }
58 
59 
60 static int
gbt_macad8key_cmp(const void * a,const void * b,FmgrInfo * flinfo)61 gbt_macad8key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
62 {
63 	mac8KEY    *ia = (mac8KEY *) (((const Nsrt *) a)->t);
64 	mac8KEY    *ib = (mac8KEY *) (((const Nsrt *) b)->t);
65 	int			res;
66 
67 	res = DatumGetInt32(DirectFunctionCall2(macaddr8_cmp, Macaddr8PGetDatum(&ia->lower), Macaddr8PGetDatum(&ib->lower)));
68 	if (res == 0)
69 		return DatumGetInt32(DirectFunctionCall2(macaddr8_cmp, Macaddr8PGetDatum(&ia->upper), Macaddr8PGetDatum(&ib->upper)));
70 
71 	return res;
72 }
73 
74 
75 static const gbtree_ninfo tinfo =
76 {
77 	gbt_t_macad8,
78 	sizeof(macaddr8),
79 	16,							/* sizeof(gbtreekey16) */
80 	gbt_macad8gt,
81 	gbt_macad8ge,
82 	gbt_macad8eq,
83 	gbt_macad8le,
84 	gbt_macad8lt,
85 	gbt_macad8key_cmp,
86 	NULL
87 };
88 
89 
90 /**************************************************
91  * macaddr ops
92  **************************************************/
93 
94 
95 
96 static uint64
mac8_2_uint64(macaddr8 * m)97 mac8_2_uint64(macaddr8 *m)
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 }
107 
108 
109 
110 Datum
gbt_macad8_compress(PG_FUNCTION_ARGS)111 gbt_macad8_compress(PG_FUNCTION_ARGS)
112 {
113 	GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
114 
115 	PG_RETURN_POINTER(gbt_num_compress(entry, &tinfo));
116 }
117 
118 Datum
gbt_macad8_fetch(PG_FUNCTION_ARGS)119 gbt_macad8_fetch(PG_FUNCTION_ARGS)
120 {
121 	GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
122 
123 	PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
124 }
125 
126 Datum
gbt_macad8_consistent(PG_FUNCTION_ARGS)127 gbt_macad8_consistent(PG_FUNCTION_ARGS)
128 {
129 	GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
130 	macaddr8   *query = (macaddr8 *) PG_GETARG_POINTER(1);
131 	StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
132 
133 	/* Oid		subtype = PG_GETARG_OID(3); */
134 	bool	   *recheck = (bool *) PG_GETARG_POINTER(4);
135 	mac8KEY    *kkk = (mac8KEY *) DatumGetPointer(entry->key);
136 	GBT_NUMKEY_R 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(
145 				   gbt_num_consistent(&key, (void *) query, &strategy, GIST_LEAF(entry), &tinfo, fcinfo->flinfo)
146 		);
147 }
148 
149 
150 Datum
gbt_macad8_union(PG_FUNCTION_ARGS)151 gbt_macad8_union(PG_FUNCTION_ARGS)
152 {
153 	GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
154 	void	   *out = palloc0(sizeof(mac8KEY));
155 
156 	*(int *) PG_GETARG_POINTER(1) = sizeof(mac8KEY);
157 	PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
158 }
159 
160 
161 Datum
gbt_macad8_penalty(PG_FUNCTION_ARGS)162 gbt_macad8_penalty(PG_FUNCTION_ARGS)
163 {
164 	mac8KEY    *origentry = (mac8KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
165 	mac8KEY    *newentry = (mac8KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
166 	float	   *result = (float *) PG_GETARG_POINTER(2);
167 	uint64		iorg[2],
168 				inew[2];
169 
170 	iorg[0] = mac8_2_uint64(&origentry->lower);
171 	iorg[1] = mac8_2_uint64(&origentry->upper);
172 	inew[0] = mac8_2_uint64(&newentry->lower);
173 	inew[1] = mac8_2_uint64(&newentry->upper);
174 
175 	penalty_num(result, iorg[0], iorg[1], inew[0], inew[1]);
176 
177 	PG_RETURN_POINTER(result);
178 
179 }
180 
181 Datum
gbt_macad8_picksplit(PG_FUNCTION_ARGS)182 gbt_macad8_picksplit(PG_FUNCTION_ARGS)
183 {
184 	PG_RETURN_POINTER(gbt_num_picksplit(
185 										(GistEntryVector *) PG_GETARG_POINTER(0),
186 										(GIST_SPLITVEC *) PG_GETARG_POINTER(1),
187 										&tinfo, fcinfo->flinfo
188 										));
189 }
190 
191 Datum
gbt_macad8_same(PG_FUNCTION_ARGS)192 gbt_macad8_same(PG_FUNCTION_ARGS)
193 {
194 	mac8KEY    *b1 = (mac8KEY *) PG_GETARG_POINTER(0);
195 	mac8KEY    *b2 = (mac8KEY *) PG_GETARG_POINTER(1);
196 	bool	   *result = (bool *) PG_GETARG_POINTER(2);
197 
198 	*result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
199 	PG_RETURN_POINTER(result);
200 }
201