PostgreSQL Source Code git master
hstore_plperl.c
Go to the documentation of this file.
1#include "postgres.h"
2
3#include "fmgr.h"
4#include "hstore/hstore.h"
5#include "plperl.h"
6
8 .name = "hstore_plperl",
9 .version = PG_VERSION
10);
11
12/* Linkage to functions in hstore module */
13typedef HStore *(*hstoreUpgrade_t) (Datum orig);
15typedef int (*hstoreUniquePairs_t) (Pairs *a, int32 l, int32 *buflen);
17typedef HStore *(*hstorePairs_t) (Pairs *pairs, int32 pcount, int32 buflen);
19typedef size_t (*hstoreCheckKeyLen_t) (size_t len);
21typedef size_t (*hstoreCheckValLen_t) (size_t len);
23
24
25/*
26 * Module initialize function: fetch function pointers for cross-module calls.
27 */
28void
30{
31 /* Asserts verify that typedefs above match original declarations */
34 load_external_function("$libdir/hstore", "hstoreUpgrade",
35 true, NULL);
38 load_external_function("$libdir/hstore", "hstoreUniquePairs",
39 true, NULL);
42 load_external_function("$libdir/hstore", "hstorePairs",
43 true, NULL);
46 load_external_function("$libdir/hstore", "hstoreCheckKeyLen",
47 true, NULL);
50 load_external_function("$libdir/hstore", "hstoreCheckValLen",
51 true, NULL);
52}
53
54
55/* These defines must be after the module init function */
56#define hstoreUpgrade hstoreUpgrade_p
57#define hstoreUniquePairs hstoreUniquePairs_p
58#define hstorePairs hstorePairs_p
59#define hstoreCheckKeyLen hstoreCheckKeyLen_p
60#define hstoreCheckValLen hstoreCheckValLen_p
61
62
64
67{
68 dTHX;
70 int i;
71 int count = HS_COUNT(in);
72 char *base = STRPTR(in);
73 HEntry *entries = ARRPTR(in);
74 HV *hv;
75
76 hv = newHV();
77
78 for (i = 0; i < count; i++)
79 {
80 const char *key;
81 SV *value;
82
83 key = pnstrdup(HSTORE_KEY(entries, base, i),
84 HSTORE_KEYLEN(entries, i));
85 value = HSTORE_VALISNULL(entries, i) ? newSV(0) :
86 cstr2sv(pnstrdup(HSTORE_VAL(entries, base, i),
87 HSTORE_VALLEN(entries, i)));
88
89 (void) hv_store(hv, key, strlen(key), value, 0);
90 }
91
92 return PointerGetDatum(newRV((SV *) hv));
93}
94
95
97
100{
101 dTHX;
102 SV *in = (SV *) PG_GETARG_POINTER(0);
103 HV *hv;
104 HE *he;
105 int32 buflen;
106 int32 i;
107 int32 pcount;
108 HStore *out;
109 Pairs *pairs;
110
111 /* Dereference references recursively. */
112 while (SvROK(in))
113 in = SvRV(in);
114
115 /* Now we must have a hash. */
116 if (SvTYPE(in) != SVt_PVHV)
118 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
119 errmsg("cannot transform non-hash Perl value to hstore")));
120 hv = (HV *) in;
121
122 pcount = hv_iterinit(hv);
123
124 pairs = palloc(pcount * sizeof(Pairs));
125
126 i = 0;
127 while ((he = hv_iternext(hv)))
128 {
129 char *key = sv2cstr(HeSVKEY_force(he));
130 SV *value = HeVAL(he);
131
132 pairs[i].key = pstrdup(key);
133 pairs[i].keylen = hstoreCheckKeyLen(strlen(pairs[i].key));
134 pairs[i].needfree = true;
135
136 if (!SvOK(value))
137 {
138 pairs[i].val = NULL;
139 pairs[i].vallen = 0;
140 pairs[i].isnull = true;
141 }
142 else
143 {
144 pairs[i].val = pstrdup(sv2cstr(value));
145 pairs[i].vallen = hstoreCheckValLen(strlen(pairs[i].val));
146 pairs[i].isnull = false;
147 }
148
149 i++;
150 }
151
152 pcount = hstoreUniquePairs(pairs, pcount, &buflen);
153 out = hstorePairs(pairs, pcount, buflen);
155}
#define AssertVariableIsOfType(varname, typename)
Definition: c.h:952
int32_t int32
Definition: c.h:498
#define ARRPTR(x)
Definition: cube.c:28
void * load_external_function(const char *filename, const char *funcname, bool signalNotFound, void **filehandle)
Definition: dfmgr.c:95
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:149
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#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
#define hstoreUpgrade
Definition: hstore_plperl.c:56
int(* hstoreUniquePairs_t)(Pairs *a, int32 l, int32 *buflen)
Definition: hstore_plperl.c:15
static hstoreUpgrade_t hstoreUpgrade_p
Definition: hstore_plperl.c:14
void _PG_init(void)
Definition: hstore_plperl.c:29
Datum hstore_to_plperl(PG_FUNCTION_ARGS)
Definition: hstore_plperl.c:66
static hstoreCheckKeyLen_t hstoreCheckKeyLen_p
Definition: hstore_plperl.c:20
HStore *(* hstoreUpgrade_t)(Datum orig)
Definition: hstore_plperl.c:13
#define hstoreCheckKeyLen
Definition: hstore_plperl.c:59
#define hstoreUniquePairs
Definition: hstore_plperl.c:57
PG_FUNCTION_INFO_V1(hstore_to_plperl)
static hstorePairs_t hstorePairs_p
Definition: hstore_plperl.c:18
#define hstorePairs
Definition: hstore_plperl.c:58
static hstoreCheckValLen_t hstoreCheckValLen_p
Definition: hstore_plperl.c:22
static hstoreUniquePairs_t hstoreUniquePairs_p
Definition: hstore_plperl.c:16
size_t(* hstoreCheckValLen_t)(size_t len)
Definition: hstore_plperl.c:21
#define hstoreCheckValLen
Definition: hstore_plperl.c:60
HStore *(* hstorePairs_t)(Pairs *pairs, int32 pcount, int32 buflen)
Definition: hstore_plperl.c:17
size_t(* hstoreCheckKeyLen_t)(size_t len)
Definition: hstore_plperl.c:19
PG_MODULE_MAGIC_EXT(.name="hstore_plperl",.version=PG_VERSION)
Datum plperl_to_hstore(PG_FUNCTION_ARGS)
Definition: hstore_plperl.c:99
long val
Definition: informix.c:689
static struct @165 value
int a
Definition: isn.c:73
int i
Definition: isn.c:77
char * pstrdup(const char *in)
Definition: mcxt.c:2325
void * palloc(Size size)
Definition: mcxt.c:1943
char * pnstrdup(const char *in, Size len)
Definition: mcxt.c:2336
const void size_t len
static char * sv2cstr(SV *sv)
Definition: plperl.h:89
static SV * cstr2sv(const char *str)
Definition: plperl.h:147
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:327
uintptr_t Datum
Definition: postgres.h:69
#define dTHX
Definition: ppport.h:11306
Definition: hstore.h:19
Definition: hstore.h:45
Definition: hstore.h:162
char * val
Definition: hstore.h:164
bool isnull
Definition: hstore.h:167
size_t keylen
Definition: hstore.h:165
char * key
Definition: hstore.h:163
bool needfree
Definition: hstore.h:168
size_t vallen
Definition: hstore.h:166
const char * name