exchange/src/exchangedb/plugin_exchangedb_common.c

129 lines
4.7 KiB
C
Raw Normal View History

2015-03-22 14:24:52 +01:00
/*
This file is part of TALER
Copyright (C) 2015, 2016 Inria & GNUnet e.V.
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;
struct TALER_EXCHANGEDB_Payback *payback;
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;
2015-03-22 14:24:52 +01:00
while (NULL != rh)
{
switch(rh->type)
{
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);
GNUNET_CRYPTO_rsa_public_key_free (cbc->denom_pub.rsa_public_key);
2015-03-22 14:24:52 +01:00
GNUNET_free (cbc);
break;
case TALER_EXCHANGEDB_RO_PAYBACK_COIN:
payback = rh->details.payback;
GNUNET_CRYPTO_rsa_signature_free (payback->coin.denom_sig.rsa_signature);
GNUNET_CRYPTO_rsa_public_key_free (payback->coin.denom_pub.rsa_public_key);
GNUNET_free (payback);
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
while (NULL != list)
{
next = list->next;
switch (list->type)
{
2016-03-01 15:35:04 +01:00
case TALER_EXCHANGEDB_TT_DEPOSIT:
GNUNET_free_non_null (list->details.deposit->receiver_wire_account);
if (NULL != list->details.deposit->coin.denom_pub.rsa_public_key)
GNUNET_CRYPTO_rsa_public_key_free (list->details.deposit->coin.denom_pub.rsa_public_key);
if (NULL != list->details.deposit->coin.denom_sig.rsa_signature)
GNUNET_CRYPTO_rsa_signature_free (list->details.deposit->coin.denom_sig.rsa_signature);
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:
2017-11-27 23:42:17 +01:00
if (NULL != list->details.melt->session.coin.denom_pub.rsa_public_key)
GNUNET_CRYPTO_rsa_public_key_free (list->details.melt->session.coin.denom_pub.rsa_public_key);
if (NULL != list->details.melt->session.coin.denom_sig.rsa_signature)
GNUNET_CRYPTO_rsa_signature_free (list->details.melt->session.coin.denom_sig.rsa_signature);
2015-03-24 12:00:40 +01:00
GNUNET_free (list->details.melt);
break;
case TALER_EXCHANGEDB_TT_REFUND:
2016-06-11 18:22:33 +02:00
if (NULL != list->details.refund->coin.denom_pub.rsa_public_key)
GNUNET_CRYPTO_rsa_public_key_free (list->details.refund->coin.denom_pub.rsa_public_key);
if (NULL != list->details.refund->coin.denom_sig.rsa_signature)
GNUNET_CRYPTO_rsa_signature_free (list->details.refund->coin.denom_sig.rsa_signature);
GNUNET_free (list->details.refund);
break;
case TALER_EXCHANGEDB_TT_PAYBACK:
if (NULL != list->details.payback->coin.denom_pub.rsa_public_key)
GNUNET_CRYPTO_rsa_public_key_free (list->details.payback->coin.denom_pub.rsa_public_key);
if (NULL != list->details.payback->coin.denom_sig.rsa_signature)
GNUNET_CRYPTO_rsa_signature_free (list->details.payback->coin.denom_sig.rsa_signature);
GNUNET_free (list->details.payback);
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 */