1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
/*
This file is part of TALER
Copyright (C) 2016 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
* @file include/taler_auditordb_lib.h
* @brief high-level interface for the auditor's database
* @author Florian Dold
* @author Benedikt Mueller
* @author Christian Grothoff
*/
#ifndef TALER_AUDITORDB_LIB_H
#define TALER_AUDITORDB_LIB_H
enum TALER_AUDITORDB_DeletableSuppressableTables
{
/**
* For auditor_amount_arithmetic_inconsistency table.
*/
TALER_AUDITORDB_AMOUNT_ARITHMETIC_INCONSISTENCY,
/**
* For auditor_closure_lags table.
*/
TALER_AUDITORDB_CLOSURE_LAGS,
/**
* For auditor_progress table.
*/
TALER_AUDITORDB_PROGRESS,
/**
* For auditor_bad_sig_losses table.
*/
TALER_AUDITORDB_BAD_SIG_LOSSES,
/**
* For auditor_coin_inconsistency table.
*/
TALER_AUDITORDB_COIN_INCONSISTENCY,
/**
* For auditor_denomination_key_validity_withdraw_inconsistency table.
*/
TALER_AUDITORDB_DENOMINATION_KEY_VALIDITY_WITHDRAW_INCONSISTENCY,
/**
* For auditor_denomination_pending table.
*/
TALER_AUDITORDB_DENOMINATION_PENDING,
/**
* For auditor_denominations_without_sig table.
*/
TALER_AUDITORDB_DENOMINATIONS_WITHOUT_SIG,
/**
* For auditor_deposit_confirmation table.
*/
TALER_AUDITORDB_DEPOSIT_CONFIRMATION,
/**
* For auditor_emergency table.
*/
TALER_AUDITORDB_EMERGENCY,
/**
* For auditor_emergency_by_count table.
*/
TALER_AUDITORDB_EMERGENCY_BY_COUNT,
/**
* For auditor_fee_time_inconsistency table.
*/
TALER_AUDITORDB_FEE_TIME_INCONSISTENCY,
/**
* For auditor_misattribution_in_inconsistency table.
*/
TALER_AUDITORDB_MISATTRIBUTION_IN_INCONSISTENCY,
/**
* For auditor_purse_not_closed_inconsistency table.
*/
TALER_AUDITORDB_PURSE_NOT_CLOSED_INCONSISTENCY,
/**
* For auditor_refreshes_hanging table.
*/
TALER_AUDITORDB_REFRESHES_HANGING,
/**
* For auditor_reserve_balance_insufficient_inconsistency table.
*/
TALER_AUDITORDB_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY,
/**
* For auditor_reserve_balance_summary_wrong_inconsistency table.
*/
TALER_AUDITORDB_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY,
/**
* For auditor_reserve_in_inconsistency table.
*/
TALER_AUDITORDB_RESERVE_IN_INCONSISTENCY,
/**
* For auditor_reserve_not_closed_inconsistency table.
*/
TALER_AUDITORDB_RESERVE_NOT_CLOSED_INCONSISTENCY,
/**
* For auditor_row_inconsistency table.
*/
TALER_AUDITORDB_ROW_INCONSISTENCY,
/**
* For auditor_row_minor_inconsistency table.
*/
TALER_AUDITORDB_ROW_MINOR_INCONSISTENCY,
/**
* For auditor_wire_format_inconsistency table.
*/
TALER_AUDITORDB_WIRE_FORMAT_INCONSISTENCY,
/**
* For auditor_wire_out_inconsistency table.
*/
TALER_AUDITORDB_WIRE_OUT_INCONSISTENCY,
/**
* Terminal.
*/
TALER_AUDITORDB_DELETABLESUPPRESSABLE_TABLES_MAX
};
/**
* Initialize the plugin.
*
* @param cfg configuration to use
* @return NULL on failure
*/
struct TALER_AUDITORDB_Plugin *
TALER_AUDITORDB_plugin_load (const struct GNUNET_CONFIGURATION_Handle *cfg);
/**
* Shutdown the plugin.
*
* @param plugin plugin to unload
*/
void
TALER_AUDITORDB_plugin_unload (struct TALER_AUDITORDB_Plugin *plugin);
#endif
|