PostgreSQL Source Code git master
hstore_gin.c File Reference
#include "postgres.h"
#include "access/gin.h"
#include "access/stratnum.h"
#include "catalog/pg_type.h"
#include "hstore.h"
Include dependency graph for hstore_gin.c:

Go to the source code of this file.

Macros

#define KEYFLAG   'K'
 
#define VALFLAG   'V'
 
#define NULLFLAG   'N'
 

Functions

 PG_FUNCTION_INFO_V1 (gin_extract_hstore)
 
static textmakeitem (char *str, int len, char flag)
 
Datum gin_extract_hstore (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (gin_extract_hstore_query)
 
Datum gin_extract_hstore_query (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (gin_consistent_hstore)
 
Datum gin_consistent_hstore (PG_FUNCTION_ARGS)
 

Macro Definition Documentation

◆ KEYFLAG

#define KEYFLAG   'K'

Definition at line 20 of file hstore_gin.c.

◆ NULLFLAG

#define NULLFLAG   'N'

Definition at line 22 of file hstore_gin.c.

◆ VALFLAG

#define VALFLAG   'V'

Definition at line 21 of file hstore_gin.c.

Function Documentation

◆ gin_consistent_hstore()

Datum gin_consistent_hstore ( PG_FUNCTION_ARGS  )

Definition at line 151 of file hstore_gin.c.

152{
153 bool *check = (bool *) PG_GETARG_POINTER(0);
154 StrategyNumber strategy = PG_GETARG_UINT16(1);
155
156 /* HStore *query = PG_GETARG_HSTORE_P(2); */
157 int32 nkeys = PG_GETARG_INT32(3);
158
159 /* Pointer *extra_data = (Pointer *) PG_GETARG_POINTER(4); */
160 bool *recheck = (bool *) PG_GETARG_POINTER(5);
161 bool res = true;
162 int32 i;
163
164 if (strategy == HStoreContainsStrategyNumber)
165 {
166 /*
167 * Index doesn't have information about correspondence of keys and
168 * values, so we need recheck. However, if not all the keys are
169 * present, we can fail at once.
170 */
171 *recheck = true;
172 for (i = 0; i < nkeys; i++)
173 {
174 if (!check[i])
175 {
176 res = false;
177 break;
178 }
179 }
180 }
181 else if (strategy == HStoreExistsStrategyNumber)
182 {
183 /* Existence of key is guaranteed in default search mode */
184 *recheck = false;
185 res = true;
186 }
187 else if (strategy == HStoreExistsAnyStrategyNumber)
188 {
189 /* Existence of key is guaranteed in default search mode */
190 *recheck = false;
191 res = true;
192 }
193 else if (strategy == HStoreExistsAllStrategyNumber)
194 {
195 /* Testing for all the keys being present gives an exact result */
196 *recheck = false;
197 for (i = 0; i < nkeys; i++)
198 {
199 if (!check[i])
200 {
201 res = false;
202 break;
203 }
204 }
205 }
206 else
207 elog(ERROR, "unrecognized strategy number: %d", strategy);
208
210}
int32_t int32
Definition: c.h:484
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:225
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#define PG_GETARG_INT32(n)
Definition: fmgr.h:269
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define HStoreExistsAllStrategyNumber
Definition: hstore.h:183
#define HStoreExistsStrategyNumber
Definition: hstore.h:181
#define HStoreExistsAnyStrategyNumber
Definition: hstore.h:182
#define HStoreContainsStrategyNumber
Definition: hstore.h:180
int i
Definition: isn.c:72
uint16 StrategyNumber
Definition: stratnum.h:22

References elog, ERROR, HStoreContainsStrategyNumber, HStoreExistsAllStrategyNumber, HStoreExistsAnyStrategyNumber, HStoreExistsStrategyNumber, i, PG_GETARG_INT32, PG_GETARG_POINTER, PG_GETARG_UINT16, PG_RETURN_BOOL, and res.

◆ gin_extract_hstore()

Datum gin_extract_hstore ( PG_FUNCTION_ARGS  )

Definition at line 44 of file hstore_gin.c.

45{
47 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
48 Datum *entries = NULL;
49 HEntry *hsent = ARRPTR(hs);
50 char *ptr = STRPTR(hs);
51 int count = HS_COUNT(hs);
52 int i;
53
54 *nentries = 2 * count;
55 if (count)
56 entries = (Datum *) palloc(sizeof(Datum) * 2 * count);
57
58 for (i = 0; i < count; ++i)
59 {
60 text *item;
61
62 item = makeitem(HSTORE_KEY(hsent, ptr, i),
63 HSTORE_KEYLEN(hsent, i),
64 KEYFLAG);
65 entries[2 * i] = PointerGetDatum(item);
66
67 if (HSTORE_VALISNULL(hsent, i))
68 item = makeitem(NULL, 0, NULLFLAG);
69 else
70 item = makeitem(HSTORE_VAL(hsent, ptr, i),
71 HSTORE_VALLEN(hsent, i),
72 VALFLAG);
73 entries[2 * i + 1] = PointerGetDatum(item);
74 }
75
76 PG_RETURN_POINTER(entries);
77}
#define ARRPTR(x)
Definition: cube.c:25
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361
#define HS_COUNT(hsp_)
Definition: hstore.h:61
#define HSTORE_KEY(arr_, str_, i_)
Definition: hstore.h:79
#define PG_GETARG_HSTORE_P(x)
Definition: hstore.h:154
#define HSTORE_VALISNULL(arr_, i_)
Definition: hstore.h:83
#define HSTORE_VALLEN(arr_, i_)
Definition: hstore.h:82
#define HSTORE_KEYLEN(arr_, i_)
Definition: hstore.h:81
#define HSTORE_VAL(arr_, str_, i_)
Definition: hstore.h:80
#define STRPTR(x)
Definition: hstore.h:76
static text * makeitem(char *str, int len, char flag)
Definition: hstore_gin.c:28
#define VALFLAG
Definition: hstore_gin.c:21
#define NULLFLAG
Definition: hstore_gin.c:22
#define KEYFLAG
Definition: hstore_gin.c:20
void * palloc(Size size)
Definition: mcxt.c:1317
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:327
uintptr_t Datum
Definition: postgres.h:69
Definition: hstore.h:19
Definition: hstore.h:45
Definition: c.h:644

References ARRPTR, HS_COUNT, HSTORE_KEY, HSTORE_KEYLEN, HSTORE_VAL, HSTORE_VALISNULL, HSTORE_VALLEN, i, KEYFLAG, makeitem(), NULLFLAG, palloc(), PG_GETARG_HSTORE_P, PG_GETARG_POINTER, PG_RETURN_POINTER, PointerGetDatum(), STRPTR, and VALFLAG.

Referenced by gin_extract_hstore_query().

◆ gin_extract_hstore_query()

Datum gin_extract_hstore_query ( PG_FUNCTION_ARGS  )

Definition at line 82 of file hstore_gin.c.

83{
84 int32 *nentries = (int32 *) PG_GETARG_POINTER(1);
85 StrategyNumber strategy = PG_GETARG_UINT16(2);
86 int32 *searchMode = (int32 *) PG_GETARG_POINTER(6);
87 Datum *entries;
88
89 if (strategy == HStoreContainsStrategyNumber)
90 {
91 /* Query is an hstore, so just apply gin_extract_hstore... */
92 entries = (Datum *)
95 PointerGetDatum(nentries)));
96 /* ... except that "contains {}" requires a full index scan */
97 if (entries == NULL)
98 *searchMode = GIN_SEARCH_MODE_ALL;
99 }
100 else if (strategy == HStoreExistsStrategyNumber)
101 {
102 text *query = PG_GETARG_TEXT_PP(0);
103 text *item;
104
105 *nentries = 1;
106 entries = (Datum *) palloc(sizeof(Datum));
107 item = makeitem(VARDATA_ANY(query), VARSIZE_ANY_EXHDR(query), KEYFLAG);
108 entries[0] = PointerGetDatum(item);
109 }
110 else if (strategy == HStoreExistsAnyStrategyNumber ||
112 {
114 Datum *key_datums;
115 bool *key_nulls;
116 int key_count;
117 int i,
118 j;
119 text *item;
120
121 deconstruct_array_builtin(query, TEXTOID, &key_datums, &key_nulls, &key_count);
122
123 entries = (Datum *) palloc(sizeof(Datum) * key_count);
124
125 for (i = 0, j = 0; i < key_count; ++i)
126 {
127 /* Nulls in the array are ignored, cf hstoreArrayToPairs */
128 if (key_nulls[i])
129 continue;
130 item = makeitem(VARDATA(key_datums[i]), VARSIZE(key_datums[i]) - VARHDRSZ, KEYFLAG);
131 entries[j++] = PointerGetDatum(item);
132 }
133
134 *nentries = j;
135 /* ExistsAll with no keys should match everything */
136 if (j == 0 && strategy == HStoreExistsAllStrategyNumber)
137 *searchMode = GIN_SEARCH_MODE_ALL;
138 }
139 else
140 {
141 elog(ERROR, "unrecognized strategy number: %d", strategy);
142 entries = NULL; /* keep compiler quiet */
143 }
144
145 PG_RETURN_POINTER(entries);
146}
#define PG_GETARG_ARRAYTYPE_P(n)
Definition: array.h:263
void deconstruct_array_builtin(ArrayType *array, Oid elmtype, Datum **elemsp, bool **nullsp, int *nelemsp)
Definition: arrayfuncs.c:3697
#define VARHDRSZ
Definition: c.h:649
#define PG_GETARG_TEXT_PP(n)
Definition: fmgr.h:309
#define DirectFunctionCall2(func, arg1, arg2)
Definition: fmgr.h:643
#define PG_GETARG_DATUM(n)
Definition: fmgr.h:268
#define GIN_SEARCH_MODE_ALL
Definition: gin.h:36
Datum gin_extract_hstore(PG_FUNCTION_ARGS)
Definition: hstore_gin.c:44
int j
Definition: isn.c:73
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:317
#define VARDATA(PTR)
Definition: varatt.h:278
#define VARDATA_ANY(PTR)
Definition: varatt.h:324
#define VARSIZE(PTR)
Definition: varatt.h:279
#define VARSIZE_ANY_EXHDR(PTR)
Definition: varatt.h:317

References DatumGetPointer(), deconstruct_array_builtin(), DirectFunctionCall2, elog, ERROR, gin_extract_hstore(), GIN_SEARCH_MODE_ALL, HStoreContainsStrategyNumber, HStoreExistsAllStrategyNumber, HStoreExistsAnyStrategyNumber, HStoreExistsStrategyNumber, i, j, KEYFLAG, makeitem(), palloc(), PG_GETARG_ARRAYTYPE_P, PG_GETARG_DATUM, PG_GETARG_POINTER, PG_GETARG_TEXT_PP, PG_GETARG_UINT16, PG_RETURN_POINTER, PointerGetDatum(), VARDATA, VARDATA_ANY, VARHDRSZ, VARSIZE, and VARSIZE_ANY_EXHDR.

◆ makeitem()

static text * makeitem ( char *  str,
int  len,
char  flag 
)
static

Definition at line 28 of file hstore_gin.c.

29{
30 text *item;
31
32 item = (text *) palloc(VARHDRSZ + len + 1);
33 SET_VARSIZE(item, VARHDRSZ + len + 1);
34
35 *VARDATA(item) = flag;
36
37 if (str && len > 0)
38 memcpy(VARDATA(item) + 1, str, len);
39
40 return item;
41}
const char * str
const void size_t len
char * flag(int b)
Definition: test-ctype.c:33
#define SET_VARSIZE(PTR, len)
Definition: varatt.h:305

References flag(), len, palloc(), SET_VARSIZE, str, VARDATA, and VARHDRSZ.

Referenced by gin_extract_hstore(), and gin_extract_hstore_query().

◆ PG_FUNCTION_INFO_V1() [1/3]

PG_FUNCTION_INFO_V1 ( gin_consistent_hstore  )

◆ PG_FUNCTION_INFO_V1() [2/3]

PG_FUNCTION_INFO_V1 ( gin_extract_hstore  )

◆ PG_FUNCTION_INFO_V1() [3/3]

PG_FUNCTION_INFO_V1 ( gin_extract_hstore_query  )