exchange/src/exchangedb/plugin_exchangedb_common.c

126 lines
3.9 KiB
C
Raw Normal View History

2015-03-22 14:24:52 +01:00
/*
This file is part of TALER
2020-01-19 19:21:58 +01:00
Copyright (C) 2015, 2016 Taler Systems SA
2015-03-22 14:24:52 +01:00
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
2016-07-07 17:55:25 +02:00
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
2015-03-22 14:24:52 +01:00
*/
/**
2016-03-01 15:35:04 +01:00
* @file exchangedb/plugin_exchangedb_common.c
2015-03-22 14:24:52 +01:00
* @brief Functions shared across plugins, this file is meant to be
2015-03-28 15:42:07 +01:00
* included in each plugin.
2015-03-22 14:24:52 +01:00
* @author Christian Grothoff
*/
/**
* Free memory associated with the given reserve history.
*
* @param cls the @e cls of this struct with the plugin-specific state (unused)
* @param rh history to free.
*/
static void
common_free_reserve_history (void *cls,
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_ReserveHistory *rh)
2015-03-22 14:24:52 +01:00
{
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_BankTransfer *bt;
struct TALER_EXCHANGEDB_CollectableBlindcoin *cbc;
2020-01-18 23:49:37 +01:00
struct TALER_EXCHANGEDB_Recoup *recoup;
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_ReserveHistory *backref;
2017-04-20 09:04:20 +02:00
struct TALER_EXCHANGEDB_ClosingTransfer *closing;
2019-10-29 18:04:04 +01:00
(void) cls;
2015-03-22 14:24:52 +01:00
while (NULL != rh)
{
2019-08-25 16:18:24 +02:00
switch (rh->type)
2015-03-22 14:24:52 +01:00
{
2016-03-01 15:35:04 +01:00
case TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE:
2015-03-22 14:24:52 +01:00
bt = rh->details.bank;
GNUNET_free_non_null (bt->sender_account_details);
GNUNET_free_non_null (bt->wire_reference);
2015-03-22 14:24:52 +01:00
GNUNET_free (bt);
break;
2016-03-01 15:35:04 +01:00
case TALER_EXCHANGEDB_RO_WITHDRAW_COIN:
2015-03-22 14:24:52 +01:00
cbc = rh->details.withdraw;
2015-03-22 22:14:30 +01:00
GNUNET_CRYPTO_rsa_signature_free (cbc->sig.rsa_signature);
2015-03-22 14:24:52 +01:00
GNUNET_free (cbc);
break;
2020-01-18 23:49:37 +01:00
case TALER_EXCHANGEDB_RO_RECOUP_COIN:
recoup = rh->details.recoup;
GNUNET_CRYPTO_rsa_signature_free (recoup->coin.denom_sig.rsa_signature);
GNUNET_free (recoup);
break;
2017-04-20 09:04:20 +02:00
case TALER_EXCHANGEDB_RO_EXCHANGE_TO_BANK:
closing = rh->details.closing;
GNUNET_free_non_null (closing->receiver_account_details);
2017-04-20 09:04:20 +02:00
GNUNET_free (closing);
break;
2015-03-22 14:24:52 +01:00
}
backref = rh;
rh = rh->next;
GNUNET_free (backref);
}
}
/**
* Free linked list of transactions.
*
* @param cls the @e cls of this struct with the plugin-specific state (unused)
* @param list list to free
*/
static void
common_free_coin_transaction_list (void *cls,
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_TransactionList *list)
2015-03-22 14:24:52 +01:00
{
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_TransactionList *next;
2015-03-24 12:00:40 +01:00
2019-10-29 18:04:04 +01:00
(void) cls;
2015-03-24 12:00:40 +01:00
while (NULL != list)
{
next = list->next;
switch (list->type)
{
2016-03-01 15:35:04 +01:00
case TALER_EXCHANGEDB_TT_DEPOSIT:
2018-11-25 15:38:58 +01:00
if (NULL != list->details.deposit->receiver_wire_account)
json_decref (list->details.deposit->receiver_wire_account);
2015-03-24 12:00:40 +01:00
GNUNET_free (list->details.deposit);
break;
2016-03-01 15:35:04 +01:00
case TALER_EXCHANGEDB_TT_REFRESH_MELT:
2015-03-24 12:00:40 +01:00
GNUNET_free (list->details.melt);
break;
2020-01-18 23:49:37 +01:00
case TALER_EXCHANGEDB_TT_OLD_COIN_RECOUP:
if (NULL != list->details.recoup_refresh->coin.denom_sig.rsa_signature)
2019-08-25 16:18:24 +02:00
GNUNET_CRYPTO_rsa_signature_free (
2020-01-18 23:49:37 +01:00
list->details.recoup_refresh->coin.denom_sig.rsa_signature);
GNUNET_free (list->details.old_coin_recoup);
break;
case TALER_EXCHANGEDB_TT_REFUND:
GNUNET_free (list->details.refund);
break;
2020-01-18 23:49:37 +01:00
case TALER_EXCHANGEDB_TT_RECOUP:
GNUNET_free (list->details.recoup);
break;
2020-01-18 23:49:37 +01:00
case TALER_EXCHANGEDB_TT_RECOUP_REFRESH:
if (NULL != list->details.recoup_refresh->coin.denom_sig.rsa_signature)
2019-08-25 16:18:24 +02:00
GNUNET_CRYPTO_rsa_signature_free (
2020-01-18 23:49:37 +01:00
list->details.recoup_refresh->coin.denom_sig.rsa_signature);
GNUNET_free (list->details.recoup_refresh);
break;
2015-03-24 12:00:40 +01:00
}
GNUNET_free (list);
list = next;
}
2015-03-22 14:24:52 +01:00
}
2015-04-11 21:29:15 +02:00
2016-03-01 15:35:04 +01:00
/* end of plugin_exchangedb_common.c */