GNUnet 0.28.0-dev.1-1-gd5f66caac
 
Loading...
Searching...
No Matches
pq_prepare.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet
3 Copyright (C) 2017, 2019 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
25#include "platform.h"
26#include "pq.h"
27
28
31 const char *sql)
32{
34 .name = name,
35 .sql = sql
36 };
37
38 return ps;
39}
40
41
44 const struct GNUNET_PQ_PreparedStatement *ps)
45{
46 for (unsigned int i = 0; NULL != ps[i].name; i++)
47 {
48 PGresult *ret;
49
51 "pq",
52 "Preparing SQL statement `%s' as `%s' on %p\n",
53 ps[i].sql,
54 ps[i].name,
55 db);
56 ret = PQprepare (db->conn,
57 ps[i].name,
58 ps[i].sql,
59 0,
60 NULL);
61 if (PGRES_COMMAND_OK != PQresultStatus (ret))
62 {
64 "pq",
65 "PQprepare (`%s' as `%s') failed with error: %s\n",
66 ps[i].sql,
67 ps[i].name,
68 PQerrorMessage (db->conn));
69 PQclear (ret);
70 ret = PQdescribePrepared (db->conn,
71 ps[i].name);
72 if (PGRES_COMMAND_OK != PQresultStatus (ret))
73 {
74 PQclear (ret);
75 return GNUNET_SYSERR;
76 }
78 "pq",
79 "Statement `%s' already known. Ignoring the issue in the hope that you are using connection pooling...\n",
80 ps[i].name);
81 }
82 PQclear (ret);
83 }
84 return GNUNET_OK;
85}
86
87
90 const char *sql)
91{
92 PGresult *ret;
93
95 "pq",
96 "Preparing SQL: %s\n",
97 sql);
98 ret = PQprepare (pg->conn,
99 "",
100 sql,
101 0,
102 NULL);
103 if (PGRES_COMMAND_OK != PQresultStatus (ret))
104 {
106 "pq",
107 "PQprepare (`%s') failed with error: %s\n",
108 sql,
109 PQerrorMessage (pg->conn));
110 PQclear (ret);
111 return GNUNET_SYSERR;
112 }
113 PQclear (ret);
114 return GNUNET_OK;
115}
116
117
120 const struct GNUNET_PQ_PreparedStatement *ps)
121{
122 if (db->ps != ps)
123 {
124 /* add 'ps' to list db->ps of prepared statements to run on reconnect! */
125 unsigned int nlen = 0; /* length of 'ps' array */
126 unsigned int xlen;
127 struct GNUNET_PQ_PreparedStatement *rps; /* combined array */
128
129 while (NULL != ps[nlen].name)
130 nlen++;
131 xlen = nlen + db->ps_off;
132 if (xlen > db->ps_len)
133 {
134 xlen = 2 * xlen + 1;
135 rps = GNUNET_new_array (xlen,
137 if (NULL != db->ps)
138 memcpy (rps,
139 db->ps,
140 db->ps_off * sizeof (struct GNUNET_PQ_PreparedStatement));
141 GNUNET_free (db->ps);
142 db->ps_len = xlen;
143 db->ps = rps;
144 }
145 memcpy (&db->ps[db->ps_off],
146 ps,
147 nlen * sizeof (struct GNUNET_PQ_PreparedStatement));
148 db->ps_off += nlen;
149 }
150
152 ps);
153}
154
155
156/* end of pq/pq_prepare.c */
static int ret
Final status code.
Definition gnunet-arm.c:93
static struct GNUNET_PEERSTORE_Handle * ps
Handle to the PEERSTORE service.
static char * name
Name (label) of the records to list.
static struct GNUNET_FS_DirectoryBuilder * db
#define GNUNET_log_from(kind, comp,...)
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_OK
@ GNUNET_SYSERR
@ GNUNET_ERROR_TYPE_WARNING
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_INFO
#define GNUNET_new_array(n, type)
Allocate a size n array with structs or unions of the given type.
#define GNUNET_free(ptr)
Wrapper around free.
shared internal data structures of libgnunetpq
enum GNUNET_GenericReturnValue GNUNET_PQ_prepare_once(struct GNUNET_PQ_Context *db, const struct GNUNET_PQ_PreparedStatement *ps)
Request creation of prepared statements ps from Postgres, but do not automatically re-prepare the sta...
Definition pq_prepare.c:43
enum GNUNET_GenericReturnValue GNUNET_PQ_prepare_anon(struct GNUNET_PQ_Context *pg, const char *sql)
Prepares SQL statement sql under no name ("") for connection pg.
Definition pq_prepare.c:89
enum GNUNET_GenericReturnValue GNUNET_PQ_prepare_statements(struct GNUNET_PQ_Context *db, const struct GNUNET_PQ_PreparedStatement *ps)
Request creation of prepared statements ps from Postgres.
Definition pq_prepare.c:119
struct GNUNET_PQ_PreparedStatement GNUNET_PQ_make_prepare(const char *name, const char *sql)
Create a struct GNUNET_PQ_PreparedStatement.
Definition pq_prepare.c:30
Handle to Postgres database.
Definition pq.h:36
PGconn * conn
Actual connection.
Definition pq.h:40
Information needed to prepare a list of SQL statements using GNUNET_PQ_prepare_statements().
const char * sql
Actual SQL statement.