2015-01-27 16:18:33 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2015-02-08 00:16:22 +01:00
|
|
|
Copyright (C) 2014 Christian Grothoff (and other contributing authors)
|
2015-01-27 16:18:33 +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/>
|
|
|
|
*/
|
|
|
|
/**
|
2015-01-28 20:53:21 +01:00
|
|
|
* @file util/amount.c
|
2015-01-27 16:18:33 +01:00
|
|
|
* @brief Common utility functions to deal with units of currency
|
|
|
|
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
|
|
|
|
* @author Florian Dold
|
|
|
|
* @author Benedikt Mueller
|
2015-04-13 17:20:46 +02:00
|
|
|
* @author Christian Grothoff
|
2015-01-27 16:18:33 +01:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include "taler_util.h"
|
|
|
|
#include <gcrypt.h>
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse money amount description, in the format "A:B.C".
|
|
|
|
*
|
|
|
|
* @param str amount description
|
|
|
|
* @param denom amount to write the result to
|
|
|
|
* @return #GNUNET_OK if the string is a valid amount specification,
|
|
|
|
* #GNUNET_SYSERR if it is invalid.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_string_to_amount (const char *str,
|
|
|
|
struct TALER_Amount *denom)
|
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
size_t i;
|
|
|
|
int n;
|
|
|
|
uint32_t b;
|
|
|
|
const char *colon;
|
|
|
|
const char *value;
|
2015-01-27 16:18:33 +01:00
|
|
|
|
2015-03-17 11:37:21 +01:00
|
|
|
memset (denom,
|
|
|
|
0,
|
|
|
|
sizeof (struct TALER_Amount));
|
2015-03-18 18:55:41 +01:00
|
|
|
/* skip leading whitespace */
|
|
|
|
while (isspace(str[0]))
|
|
|
|
str++;
|
|
|
|
if ('\0' == str[0])
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-17 11:37:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
2015-03-18 18:55:41 +01:00
|
|
|
"Null before currency\n");
|
2015-01-27 16:18:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
/* parse currency */
|
|
|
|
colon = strchr (str, (int) ':');
|
|
|
|
if ( (NULL == colon) ||
|
|
|
|
((colon - str) >= TALER_CURRENCY_LEN) )
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Invalid currency specified before colon: `%s'",
|
|
|
|
str);
|
|
|
|
goto fail;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
memcpy (denom->currency,
|
|
|
|
str,
|
|
|
|
colon - str);
|
|
|
|
/* skip colon */
|
|
|
|
value = colon + 1;
|
|
|
|
if ('\0' == value[0])
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-17 11:37:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
2015-03-18 18:55:41 +01:00
|
|
|
"Null before value\n");
|
|
|
|
goto fail;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
/* parse value */
|
|
|
|
i = 0;
|
|
|
|
while ('.' != value[i])
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
if ('\0' == value[i])
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2015-04-13 17:20:46 +02:00
|
|
|
if ( (value[i] < '0') || (value[i] > '9') )
|
2015-03-18 18:55:41 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Invalid character `%c'\n",
|
2015-04-13 17:20:46 +02:00
|
|
|
value[i]);
|
2015-03-18 18:55:41 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
2015-04-13 17:20:46 +02:00
|
|
|
n = value[i] - '0';
|
2015-03-18 18:55:41 +01:00
|
|
|
if (denom->value * 10 + n < denom->value)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-17 11:37:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
2015-03-18 18:55:41 +01:00
|
|
|
"Value too large\n");
|
|
|
|
goto fail;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
denom->value = (denom->value * 10) + n;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
/* skip the dot */
|
2015-01-27 16:18:33 +01:00
|
|
|
i++;
|
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
/* parse fraction */
|
2015-04-13 17:20:46 +02:00
|
|
|
if ('\0' == value[i])
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-17 11:37:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
2015-04-13 17:20:46 +02:00
|
|
|
"Null after dot\n");
|
2015-03-18 18:55:41 +01:00
|
|
|
goto fail;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
b = TALER_AMOUNT_FRAC_BASE / 10;
|
2015-04-13 17:20:46 +02:00
|
|
|
while ('\0' != value[i])
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
if (0 == b)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-17 11:37:21 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
2015-04-13 17:20:46 +02:00
|
|
|
"Fractional value too small (only %u digits supported)\n",
|
2015-03-18 18:55:41 +01:00
|
|
|
(unsigned int) TALER_AMOUNT_FRAC_LEN);
|
|
|
|
goto fail;
|
|
|
|
}
|
2015-04-13 17:20:46 +02:00
|
|
|
if ( (value[i] < '0') || (value[i] > '9') )
|
2015-03-18 18:55:41 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
2015-04-13 17:20:46 +02:00
|
|
|
"Error after dot\n");
|
2015-03-18 18:55:41 +01:00
|
|
|
goto fail;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-04-13 17:20:46 +02:00
|
|
|
n = value[i] - '0';
|
2015-01-27 16:18:33 +01:00
|
|
|
denom->fraction += n * b;
|
|
|
|
b /= 10;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
2015-03-18 18:55:41 +01:00
|
|
|
|
|
|
|
fail:
|
|
|
|
/* set currency to 'invalid' to prevent accidental use */
|
|
|
|
memset (denom->currency,
|
|
|
|
0,
|
|
|
|
TALER_CURRENCY_LEN);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert amount from host to network representation.
|
|
|
|
*
|
|
|
|
* @param res where to store amount in network representation
|
|
|
|
* @param d amount in host representation
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
TALER_amount_hton (struct TALER_AmountNBO *res,
|
|
|
|
const struct TALER_Amount *d)
|
|
|
|
{
|
|
|
|
res->value = GNUNET_htonll (d->value);
|
|
|
|
res->fraction = htonl (d->fraction);
|
|
|
|
memcpy (res->currency,
|
|
|
|
d->currency,
|
|
|
|
TALER_CURRENCY_LEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert amount from network to host representation.
|
|
|
|
*
|
|
|
|
* @param res where to store amount in host representation
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param dn amount in network representation
|
2015-03-18 18:55:41 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
TALER_amount_ntoh (struct TALER_Amount *res,
|
|
|
|
const struct TALER_AmountNBO *dn)
|
|
|
|
{
|
|
|
|
res->value = GNUNET_ntohll (dn->value);
|
|
|
|
res->fraction = ntohl (dn->fraction);
|
|
|
|
memcpy (res->currency,
|
|
|
|
dn->currency,
|
|
|
|
TALER_CURRENCY_LEN);
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-18 18:55:41 +01:00
|
|
|
* Get the value of "zero" in a particular currency.
|
|
|
|
*
|
|
|
|
* @param cur currency description
|
|
|
|
* @param denom denomination to write the result to
|
|
|
|
* @return #GNUNET_OK if @a cur is a valid currency specification,
|
|
|
|
* #GNUNET_SYSERR if it is invalid.
|
2015-01-27 16:18:33 +01:00
|
|
|
*/
|
2015-03-18 18:55:41 +01:00
|
|
|
int
|
|
|
|
TALER_amount_get_zero (const char *cur,
|
|
|
|
struct TALER_Amount *denom)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
size_t slen;
|
2015-01-27 16:18:33 +01:00
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
slen = strlen (cur);
|
|
|
|
if (slen >= TALER_CURRENCY_LEN)
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
memset (denom,
|
|
|
|
0,
|
|
|
|
sizeof (struct TALER_Amount));
|
|
|
|
memcpy (denom->currency,
|
|
|
|
cur,
|
|
|
|
slen);
|
|
|
|
return GNUNET_OK;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-18 18:55:41 +01:00
|
|
|
* Set @a a to "invalid".
|
|
|
|
*
|
|
|
|
* @param a amount to set to invalid
|
2015-01-27 16:18:33 +01:00
|
|
|
*/
|
2015-03-18 18:55:41 +01:00
|
|
|
static void
|
|
|
|
invalidate (struct TALER_Amount *a)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
memset (a,
|
|
|
|
0,
|
|
|
|
sizeof (struct TALER_Amount));
|
|
|
|
}
|
|
|
|
|
2015-01-27 16:18:33 +01:00
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
/**
|
|
|
|
* Test if @a a is valid
|
|
|
|
*
|
|
|
|
* @param a amount to test
|
|
|
|
* @return #GNUNET_YES if valid,
|
|
|
|
* #GNUNET_NO if invalid
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
test_valid (const struct TALER_Amount *a)
|
|
|
|
{
|
|
|
|
return ('\0' != a->currency[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-03 15:41:09 +02:00
|
|
|
/**
|
|
|
|
* Test if @a a is valid, NBO variant.
|
|
|
|
*
|
|
|
|
* @param a amount to test
|
|
|
|
* @return #GNUNET_YES if valid,
|
|
|
|
* #GNUNET_NO if invalid
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
test_valid_nbo (const struct TALER_AmountNBO *a)
|
|
|
|
{
|
|
|
|
return ('\0' != a->currency[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
/**
|
|
|
|
* Test if @a a1 and @a a2 are the same currency.
|
|
|
|
*
|
|
|
|
* @param a1 amount to test
|
|
|
|
* @param a2 amount to test
|
|
|
|
* @return #GNUNET_YES if @a a1 and @a a2 are the same currency
|
|
|
|
* #GNUNET_NO if the currencies are different,
|
|
|
|
* #GNUNET_SYSERR if either amount is invalid
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_amount_cmp_currency (const struct TALER_Amount *a1,
|
|
|
|
const struct TALER_Amount *a2)
|
|
|
|
{
|
|
|
|
if ( (GNUNET_NO == test_valid (a1)) ||
|
|
|
|
(GNUNET_NO == test_valid (a2)) )
|
|
|
|
return GNUNET_SYSERR;
|
2015-04-13 17:20:46 +02:00
|
|
|
if (0 == strcasecmp (a1->currency,
|
|
|
|
a2->currency))
|
2015-03-18 18:55:41 +01:00
|
|
|
return GNUNET_YES;
|
|
|
|
return GNUNET_NO;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-03 15:41:09 +02:00
|
|
|
/**
|
|
|
|
* Test if @a a1 and @a a2 are the same currency, NBO variant.
|
|
|
|
*
|
|
|
|
* @param a1 amount to test
|
|
|
|
* @param a2 amount to test
|
|
|
|
* @return #GNUNET_YES if @a a1 and @a a2 are the same currency
|
|
|
|
* #GNUNET_NO if the currencies are different,
|
|
|
|
* #GNUNET_SYSERR if either amount is invalid
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_amount_cmp_currency_nbo (const struct TALER_AmountNBO *a1,
|
|
|
|
const struct TALER_AmountNBO *a2)
|
|
|
|
{
|
|
|
|
if ( (GNUNET_NO == test_valid_nbo (a1)) ||
|
|
|
|
(GNUNET_NO == test_valid_nbo (a2)) )
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
if (0 == strcasecmp (a1->currency,
|
|
|
|
a2->currency))
|
|
|
|
return GNUNET_YES;
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-27 16:18:33 +01:00
|
|
|
/**
|
2015-03-18 18:55:41 +01:00
|
|
|
* Compare the value/fraction of two amounts. Does not compare the currency.
|
|
|
|
* Comparing amounts of different currencies will cause the program to abort().
|
|
|
|
* If unsure, check with #TALER_amount_cmp_currency() first to be sure that
|
|
|
|
* the currencies of the two amounts are identical.
|
2015-01-27 16:18:33 +01:00
|
|
|
*
|
|
|
|
* @param a1 first amount
|
|
|
|
* @param a2 second amount
|
|
|
|
* @return result of the comparison
|
|
|
|
*/
|
|
|
|
int
|
2015-03-18 18:55:41 +01:00
|
|
|
TALER_amount_cmp (const struct TALER_Amount *a1,
|
|
|
|
const struct TALER_Amount *a2)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
struct TALER_Amount n1;
|
|
|
|
struct TALER_Amount n2;
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (a1, a2));
|
|
|
|
n1 = *a1;
|
|
|
|
n2 = *a2;
|
2015-04-13 17:20:46 +02:00
|
|
|
GNUNET_assert (GNUNET_SYSERR !=
|
|
|
|
TALER_amount_normalize (&n1));
|
|
|
|
GNUNET_assert (GNUNET_SYSERR !=
|
|
|
|
TALER_amount_normalize (&n2));
|
2015-03-18 18:55:41 +01:00
|
|
|
if (n1.value == n2.value)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
if (n1.fraction < n2.fraction)
|
2015-01-27 16:18:33 +01:00
|
|
|
return -1;
|
2015-03-18 18:55:41 +01:00
|
|
|
if (n1.fraction > n2.fraction)
|
2015-01-27 16:18:33 +01:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
if (n1.value < n2.value)
|
2015-01-27 16:18:33 +01:00
|
|
|
return -1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform saturating subtraction of amounts.
|
|
|
|
*
|
2015-03-18 18:55:41 +01:00
|
|
|
* @param diff where to store (@a a1 - @a a2), or invalid if @a a2 > @a a1
|
2015-01-27 16:18:33 +01:00
|
|
|
* @param a1 amount to subtract from
|
|
|
|
* @param a2 amount to subtract
|
2015-03-18 18:55:41 +01:00
|
|
|
* @return #GNUNET_OK if the subtraction worked,
|
|
|
|
* #GNUNET_NO if @a a1 = @a a2
|
|
|
|
* #GNUNET_SYSERR if @a a2 > @a a1 or currencies are incompatible;
|
|
|
|
* @a diff is set to invalid
|
2015-01-27 16:18:33 +01:00
|
|
|
*/
|
2015-03-18 18:55:41 +01:00
|
|
|
int
|
|
|
|
TALER_amount_subtract (struct TALER_Amount *diff,
|
|
|
|
const struct TALER_Amount *a1,
|
|
|
|
const struct TALER_Amount *a2)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
struct TALER_Amount n1;
|
|
|
|
struct TALER_Amount n2;
|
2015-01-27 16:18:33 +01:00
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_amount_cmp_currency (a1, a2))
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
invalidate (diff);
|
|
|
|
return GNUNET_SYSERR;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
n1 = *a1;
|
|
|
|
n2 = *a2;
|
2015-04-13 17:20:46 +02:00
|
|
|
if ( (GNUNET_SYSERR == TALER_amount_normalize (&n1)) ||
|
|
|
|
(GNUNET_SYSERR == TALER_amount_normalize (&n2)) )
|
|
|
|
{
|
|
|
|
invalidate (diff);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-01-27 16:18:33 +01:00
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
if (n1.fraction < n2.fraction)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
if (0 == n1.value)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
invalidate (diff);
|
|
|
|
return GNUNET_SYSERR;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
n1.fraction += TALER_AMOUNT_FRAC_BASE;
|
|
|
|
n1.value--;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
if (n1.value < n2.value)
|
|
|
|
{
|
|
|
|
invalidate (diff);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-03-26 19:39:16 +01:00
|
|
|
TALER_amount_get_zero (n1.currency,
|
2015-03-18 18:55:41 +01:00
|
|
|
diff));
|
|
|
|
GNUNET_assert (n1.fraction >= n2.fraction);
|
|
|
|
diff->fraction = n1.fraction - n2.fraction;
|
|
|
|
GNUNET_assert (n1.value >= n2.value);
|
|
|
|
diff->value = n1.value - n2.value;
|
|
|
|
if ( (0 == diff->fraction) &&
|
|
|
|
(0 == diff->value) )
|
|
|
|
return GNUNET_NO;
|
|
|
|
return GNUNET_OK;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-18 18:55:41 +01:00
|
|
|
* Perform addition of amounts.
|
2015-01-27 16:18:33 +01:00
|
|
|
*
|
2015-03-18 18:55:41 +01:00
|
|
|
* @param sum where to store @a a1 + @a a2, set to "invalid" on overflow
|
2015-01-27 16:18:33 +01:00
|
|
|
* @param a1 first amount to add
|
|
|
|
* @param a2 second amount to add
|
2015-03-18 18:55:41 +01:00
|
|
|
* @return #GNUNET_OK if the addition worked,
|
|
|
|
* #GNUNET_SYSERR on overflow
|
2015-01-27 16:18:33 +01:00
|
|
|
*/
|
2015-03-18 18:55:41 +01:00
|
|
|
int
|
|
|
|
TALER_amount_add (struct TALER_Amount *sum,
|
|
|
|
const struct TALER_Amount *a1,
|
|
|
|
const struct TALER_Amount *a2)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
struct TALER_Amount n1;
|
|
|
|
struct TALER_Amount n2;
|
2015-04-13 17:20:46 +02:00
|
|
|
struct TALER_Amount res;
|
2015-01-27 16:18:33 +01:00
|
|
|
|
2015-03-18 18:55:41 +01:00
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_amount_cmp_currency (a1, a2))
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
invalidate (sum);
|
|
|
|
return GNUNET_SYSERR;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
n1 = *a1;
|
|
|
|
n2 = *a2;
|
2015-04-13 17:20:46 +02:00
|
|
|
if ( (GNUNET_SYSERR == TALER_amount_normalize (&n1)) ||
|
|
|
|
(GNUNET_SYSERR == TALER_amount_normalize (&n2)) )
|
|
|
|
{
|
|
|
|
invalidate (sum);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (a1->currency,
|
2015-04-13 17:20:46 +02:00
|
|
|
&res));
|
|
|
|
res.value = n1.value + n2.value;
|
|
|
|
if (res.value < n1.value)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
/* integer overflow */
|
|
|
|
invalidate (sum);
|
|
|
|
return GNUNET_SYSERR;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-04-13 17:20:46 +02:00
|
|
|
res.fraction = n1.fraction + n2.fraction;
|
2015-03-18 18:55:41 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
2015-04-13 17:20:46 +02:00
|
|
|
TALER_amount_normalize (&res))
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
/* integer overflow via carry from fraction */
|
|
|
|
invalidate (sum);
|
|
|
|
return GNUNET_SYSERR;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-04-13 17:20:46 +02:00
|
|
|
*sum = res;
|
2015-03-18 18:55:41 +01:00
|
|
|
return GNUNET_OK;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalize the given amount.
|
|
|
|
*
|
2015-03-18 18:55:41 +01:00
|
|
|
* @param amount amount to normalize
|
|
|
|
* @return #GNUNET_OK if normalization worked
|
|
|
|
* #GNUNET_NO if value was already normalized
|
|
|
|
* #GNUNET_SYSERR if value was invalid or could not be normalized
|
2015-01-27 16:18:33 +01:00
|
|
|
*/
|
2015-03-18 18:55:41 +01:00
|
|
|
int
|
|
|
|
TALER_amount_normalize (struct TALER_Amount *amount)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (GNUNET_YES != test_valid (amount))
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
ret = GNUNET_NO;
|
|
|
|
while ( (amount->value != UINT64_MAX) &&
|
|
|
|
(amount->fraction >= TALER_AMOUNT_FRAC_BASE) )
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
amount->fraction -= TALER_AMOUNT_FRAC_BASE;
|
|
|
|
amount->value++;
|
|
|
|
ret = GNUNET_OK;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
if (amount->fraction >= TALER_AMOUNT_FRAC_BASE)
|
|
|
|
{
|
|
|
|
/* failed to normalize, adding up fractions caused
|
|
|
|
main value to overflow! */
|
2015-04-13 17:20:46 +02:00
|
|
|
invalidate (amount);
|
2015-03-18 18:55:41 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return ret;
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert amount to string.
|
|
|
|
*
|
|
|
|
* @param amount amount to convert to string
|
|
|
|
* @return freshly allocated string representation
|
|
|
|
*/
|
|
|
|
char *
|
2015-03-18 18:55:41 +01:00
|
|
|
TALER_amount_to_string (const struct TALER_Amount *amount)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
char *result;
|
|
|
|
uint32_t n;
|
|
|
|
char tail[TALER_AMOUNT_FRAC_LEN + 1];
|
|
|
|
unsigned int i;
|
|
|
|
struct TALER_Amount norm;
|
|
|
|
|
|
|
|
if (GNUNET_YES != test_valid (amount))
|
|
|
|
return NULL;
|
|
|
|
norm = *amount;
|
|
|
|
GNUNET_break (GNUNET_SYSERR !=
|
|
|
|
TALER_amount_normalize (&norm));
|
|
|
|
if (0 != (n = norm.fraction))
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
for (i = 0; (i < TALER_AMOUNT_FRAC_LEN) && (0 != n); i++)
|
2015-01-27 16:18:33 +01:00
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
tail[i] = '0' + (n / (TALER_AMOUNT_FRAC_BASE / 10));
|
|
|
|
n = (n * 10) % (TALER_AMOUNT_FRAC_BASE);
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
tail[i] = '\0';
|
|
|
|
GNUNET_asprintf (&result,
|
|
|
|
"%s:%llu.%s",
|
|
|
|
norm.currency,
|
|
|
|
(unsigned long long) norm.value,
|
|
|
|
tail);
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-18 18:55:41 +01:00
|
|
|
GNUNET_asprintf (&result,
|
|
|
|
"%s:%llu",
|
|
|
|
norm.currency,
|
|
|
|
(unsigned long long) norm.value);
|
2015-01-27 16:18:33 +01:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* end of amount.c */
|