exchange/src/exchangedb/plugin_exchangedb_common.c

163 lines
4.4 KiB
C
Raw Normal View History

2015-03-22 14:24:52 +01:00
/*
This file is part of TALER
2016-01-19 14:39:00 +01:00
Copyright (C) 2015 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
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
*/
/**
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_ReserveHistory *backref;
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;
if (NULL != bt->wire)
2015-03-24 00:01:33 +01:00
json_decref (bt->wire);
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;
}
backref = rh;
rh = rh->next;
GNUNET_free (backref);
}
}
/**
* Free memory of the link data list.
*
* @param cls the @e cls of this struct with the plugin-specific state (unused)
* @param ldl link data list to release
*/
static void
common_free_link_data_list (void *cls,
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_LinkDataList *ldl)
2015-03-22 14:24:52 +01:00
{
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_LinkDataList *next;
2015-03-24 12:00:40 +01:00
while (NULL != ldl)
{
next = ldl->next;
GNUNET_free (ldl->link_data_enc);
GNUNET_free (ldl);
ldl = 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)
* @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:
2015-03-24 12:00:40 +01:00
json_decref (list->details.deposit->wire);
GNUNET_CRYPTO_rsa_public_key_free (list->details.deposit->coin.denom_pub.rsa_public_key);
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:
2015-03-24 12:00:40 +01:00
GNUNET_free (list->details.melt);
break;
}
GNUNET_free (list);
list = next;
}
2015-03-22 14:24:52 +01:00
}
2015-04-11 21:29:15 +02:00
/**
* Free melt commitment data.
*
* @param cls the @e cls of this struct with the plugin-specific state (unused)
* @param mc data structure to free
*/
static void
common_free_melt_commitment (void *cls,
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_MeltCommitment *mc)
2015-04-11 21:29:15 +02:00
{
unsigned int i;
unsigned int k;
2015-09-22 10:16:01 +02:00
if (NULL != mc->melts)
{
for (i=0;i<mc->num_oldcoins;i++)
{
GNUNET_CRYPTO_rsa_signature_free (mc->melts[i].coin.denom_sig.rsa_signature);
GNUNET_CRYPTO_rsa_public_key_free (mc->melts[i].coin.denom_pub.rsa_public_key);
}
GNUNET_free (mc->melts);
}
if (NULL != mc->denom_pubs)
2015-04-11 21:29:15 +02:00
{
for (i=0;i<mc->num_newcoins;i++)
2015-09-22 10:16:01 +02:00
if (NULL != mc->denom_pubs[i].rsa_public_key)
GNUNET_CRYPTO_rsa_public_key_free (mc->denom_pubs[i].rsa_public_key);
GNUNET_free (mc->denom_pubs);
}
for (k=0;k<TALER_CNC_KAPPA;k++)
{
if (NULL != mc->commit_coins[k])
2015-04-11 21:29:15 +02:00
{
2015-09-22 10:16:01 +02:00
for (i=0;i<mc->num_newcoins;i++)
{
GNUNET_free (mc->commit_coins[k][i].refresh_link);
GNUNET_free (mc->commit_coins[k][i].coin_ev);
}
GNUNET_free (mc->commit_coins[k]);
2015-04-11 21:29:15 +02:00
}
2015-09-22 10:16:01 +02:00
GNUNET_free_non_null (mc->commit_links[k]);
2015-04-11 21:29:15 +02:00
}
GNUNET_free (mc);
}
2016-03-01 15:35:04 +01:00
/* end of plugin_exchangedb_common.c */