Line data Source code
1 : /*
2 : This file is part of TALER
3 : Copyright (C) 2026 Taler Systems SA
4 :
5 : TALER 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 : TALER 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 : TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
15 : */
16 : /**
17 : * @file src/auditordb/start.c
18 : * @brief Implementation of the start, commit and rollback functions for Postgres
19 : * @author Christian Grothoff
20 : */
21 : #include "taler/taler_pq_lib.h"
22 : #include "auditor-database/start.h"
23 : #include "auditor-database/preflight.h"
24 : #include "pg_helper.h"
25 :
26 :
27 : enum GNUNET_GenericReturnValue
28 22 : TALER_AUDITORDB_start (struct TALER_AUDITORDB_PostgresContext *pg)
29 : {
30 22 : struct GNUNET_PQ_ExecuteStatement es[] = {
31 22 : GNUNET_PQ_make_execute ("START TRANSACTION ISOLATION LEVEL SERIALIZABLE"),
32 : GNUNET_PQ_EXECUTE_STATEMENT_END
33 : };
34 :
35 22 : TALER_AUDITORDB_preflight (pg);
36 22 : if (GNUNET_OK !=
37 22 : GNUNET_PQ_exec_statements (pg->conn,
38 : es))
39 : {
40 0 : TALER_LOG_ERROR ("Failed to start transaction\n");
41 0 : GNUNET_break (0);
42 0 : return GNUNET_SYSERR;
43 : }
44 22 : return GNUNET_OK;
45 : }
46 :
47 :
48 : void
49 9 : TALER_AUDITORDB_rollback (struct TALER_AUDITORDB_PostgresContext *pg)
50 : {
51 9 : struct GNUNET_PQ_ExecuteStatement es[] = {
52 9 : GNUNET_PQ_make_execute ("ROLLBACK"),
53 : GNUNET_PQ_EXECUTE_STATEMENT_END
54 : };
55 :
56 9 : GNUNET_break (GNUNET_OK ==
57 : GNUNET_PQ_exec_statements (pg->conn,
58 : es));
59 9 : }
60 :
61 :
62 : enum GNUNET_DB_QueryStatus
63 14 : TALER_AUDITORDB_commit (struct TALER_AUDITORDB_PostgresContext *pg)
64 : {
65 14 : struct GNUNET_PQ_QueryParam params[] = {
66 : GNUNET_PQ_query_param_end
67 : };
68 :
69 14 : PREPARE (pg,
70 : "do_commit",
71 : "COMMIT");
72 14 : return GNUNET_PQ_eval_prepared_non_select (pg->conn,
73 : "do_commit",
74 : params);
75 : }
|