2015-03-22 14:24:52 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-03-04 11:47:22 +01:00
|
|
|
Copyright (C) 2015, 2016, 2020 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
|
|
|
{
|
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:
|
2020-03-04 11:47:22 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_BankTransfer *bt;
|
|
|
|
|
|
|
|
bt = rh->details.bank;
|
2020-07-05 16:56:41 +02:00
|
|
|
GNUNET_free (bt->sender_account_details);
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (bt);
|
|
|
|
break;
|
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
case TALER_EXCHANGEDB_RO_WITHDRAW_COIN:
|
2020-03-04 11:47:22 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_CollectableBlindcoin *cbc;
|
|
|
|
|
|
|
|
cbc = rh->details.withdraw;
|
2021-10-31 17:56:56 +01:00
|
|
|
TALER_blinded_denom_sig_free (&cbc->sig);
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (cbc);
|
|
|
|
break;
|
|
|
|
}
|
2020-01-18 23:49:37 +01:00
|
|
|
case TALER_EXCHANGEDB_RO_RECOUP_COIN:
|
2020-03-04 11:47:22 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_Recoup *recoup;
|
|
|
|
|
|
|
|
recoup = rh->details.recoup;
|
2021-10-23 07:11:23 +02:00
|
|
|
TALER_denom_sig_free (&recoup->coin.denom_sig);
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (recoup);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-20 09:04:20 +02:00
|
|
|
case TALER_EXCHANGEDB_RO_EXCHANGE_TO_BANK:
|
2020-03-04 11:47:22 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_ClosingTransfer *closing;
|
|
|
|
|
|
|
|
closing = rh->details.closing;
|
2020-07-05 16:56:41 +02:00
|
|
|
GNUNET_free (closing->receiver_account_details);
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (closing);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *next;
|
|
|
|
|
|
|
|
next = rh->next;
|
|
|
|
GNUNET_free (rh);
|
|
|
|
rh = next;
|
2015-03-22 14:24:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free linked list of transactions.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state (unused)
|
2020-03-04 11:47:22 +01:00
|
|
|
* @param tl list to free
|
2015-03-22 14:24:52 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
common_free_coin_transaction_list (void *cls,
|
2020-03-04 11:47:22 +01:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl)
|
2015-03-22 14:24:52 +01:00
|
|
|
{
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2020-03-04 11:47:22 +01:00
|
|
|
while (NULL != tl)
|
2015-03-24 12:00:40 +01:00
|
|
|
{
|
2020-03-04 11:47:22 +01:00
|
|
|
switch (tl->type)
|
2015-03-24 12:00:40 +01:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
case TALER_EXCHANGEDB_TT_DEPOSIT:
|
2020-03-04 11:47:22 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_DepositListEntry *deposit;
|
|
|
|
|
|
|
|
deposit = tl->details.deposit;
|
2021-10-30 19:28:11 +02:00
|
|
|
GNUNET_free (deposit->receiver_wire_account);
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (deposit);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TALER_EXCHANGEDB_TT_MELT:
|
|
|
|
GNUNET_free (tl->details.melt);
|
2015-03-24 12:00:40 +01:00
|
|
|
break;
|
2020-01-18 23:49:37 +01:00
|
|
|
case TALER_EXCHANGEDB_TT_OLD_COIN_RECOUP:
|
2020-03-04 11:47:22 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_RecoupRefreshListEntry *rr;
|
|
|
|
|
|
|
|
rr = tl->details.old_coin_recoup;
|
2021-10-23 07:11:23 +02:00
|
|
|
TALER_denom_sig_free (&rr->coin.denom_sig);
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (rr);
|
|
|
|
break;
|
|
|
|
}
|
2016-05-05 22:57:55 +02:00
|
|
|
case TALER_EXCHANGEDB_TT_REFUND:
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (tl->details.refund);
|
2016-05-05 22:57:55 +02:00
|
|
|
break;
|
2020-01-18 23:49:37 +01:00
|
|
|
case TALER_EXCHANGEDB_TT_RECOUP:
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (tl->details.recoup);
|
2017-04-01 23:43:55 +02:00
|
|
|
break;
|
2020-01-18 23:49:37 +01:00
|
|
|
case TALER_EXCHANGEDB_TT_RECOUP_REFRESH:
|
2020-03-04 11:47:22 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_RecoupRefreshListEntry *rr;
|
|
|
|
|
2020-03-04 11:51:00 +01:00
|
|
|
rr = tl->details.recoup_refresh;
|
2021-10-23 07:11:23 +02:00
|
|
|
TALER_denom_sig_free (&rr->coin.denom_sig);
|
2020-03-04 11:47:22 +01:00
|
|
|
GNUNET_free (rr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_TransactionList *next;
|
|
|
|
|
|
|
|
next = tl->next;
|
2020-03-04 11:51:00 +01:00
|
|
|
GNUNET_free (tl);
|
2020-03-04 11:47:22 +01:00
|
|
|
tl = next;
|
2015-03-24 12:00:40 +01:00
|
|
|
}
|
|
|
|
}
|
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 */
|