reduce loop counters to more practical levels
[oweals/gnunet.git] / src / sq / sq_exec.c
1 /*
2   This file is part of GNUnet
3   Copyright (C) 2018 GNUnet e.V.
4
5   GNUnet is free software; you can redistribute it and/or modify it under the
6   terms of the GNU General Public License as published by the Free Software
7   Foundation; either version 3, or (at your option) any later version.
8
9   GNUnet is distributed in the hope that it will be useful, but WITHOUT ANY
10   WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11   A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12
13   You should have received a copy of the GNU General Public License along with
14   GNUnet; see the file COPYING.  If not, If not, see <http://www.gnu.org/licenses/>
15 */
16 /**
17  * @file sq/sq_exec.c
18  * @brief helper functions for executing SQL statements
19  * @author Christian Grothoff
20  */
21 #include "platform.h"
22 #include "gnunet_sq_lib.h"
23
24
25 /**
26  * Create a `struct GNUNET_SQ_ExecuteStatement` where errors are fatal.
27  *
28  * @param sql actual SQL statement
29  * @return initialized struct
30  */
31 struct GNUNET_SQ_ExecuteStatement
32 GNUNET_SQ_make_execute (const char *sql)
33   {
34   struct GNUNET_SQ_ExecuteStatement es = {
35     .sql = sql,
36     .ignore_errors = GNUNET_NO
37   };
38
39   return es;
40 }
41
42
43
44 /**
45  * Create a `struct GNUNET_SQ_ExecuteStatement` where errors should
46  * be tolerated.
47  *
48  * @param sql actual SQL statement
49  * @return initialized struct
50  */
51 struct GNUNET_SQ_ExecuteStatement
52 GNUNET_SQ_make_try_execute (const char *sql)
53 {
54   struct GNUNET_SQ_ExecuteStatement es = {
55     .sql = sql,
56     .ignore_errors = GNUNET_YES
57   };
58
59   return es;
60 }
61
62
63 /**
64  * Request execution of an array of statements @a es from Postgres.
65  *
66  * @param dbh database to execute the statements over
67  * @param es #GNUNET_PQ_PREPARED_STATEMENT_END-terminated array of prepared
68  *            statements.
69  * @return #GNUNET_OK on success (modulo statements where errors can be ignored)
70  *         #GNUNET_SYSERR on error
71  */
72 int
73 GNUNET_SQ_exec_statements (sqlite3 *dbh,
74                            const struct GNUNET_SQ_ExecuteStatement *es)
75 {
76   for (unsigned int i=0;NULL != es[i].sql;i++)
77   {
78     char *emsg = NULL;
79
80     if (SQLITE_OK !=
81         sqlite3_exec (dbh,
82                       es[i].sql,
83                       NULL,
84                       NULL,
85                       &emsg))
86     {
87       if (es[i].ignore_errors)
88       {
89         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
90                     "Failed to run SQL `%s': %s\n",
91                     es[i].sql,
92                     emsg);
93       }
94       else
95       {
96         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
97                     "Failed to run SQL `%s': %s\n",
98                     es[i].sql,
99                     emsg);
100         sqlite3_free (emsg);
101         return GNUNET_SYSERR;
102       }
103       sqlite3_free (emsg);
104     }
105   }
106   return GNUNET_OK;
107 }
108
109 /* end of sq_exec */