2018-01-03 14:42:06 +01:00
|
|
|
/*
|
2019-12-19 20:42:49 +01:00
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2019 Taler Systems S.A.
|
2018-01-03 14:42:06 +01:00
|
|
|
|
2019-12-19 20:42:49 +01:00
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
2018-01-03 14:42:06 +01:00
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
2019-12-19 20:42:49 +01:00
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
2018-01-03 14:42:06 +01:00
|
|
|
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
|
2019-12-19 20:42:49 +01:00
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2018-01-03 14:42:06 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Types and helper functions for dealing with Taler amounts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2019-12-19 20:42:49 +01:00
|
|
|
import {
|
2020-08-12 12:32:58 +02:00
|
|
|
buildCodecForObject,
|
2019-12-19 20:42:49 +01:00
|
|
|
codecForString,
|
|
|
|
codecForNumber,
|
2020-04-06 20:02:01 +02:00
|
|
|
Codec,
|
2019-12-19 20:42:49 +01:00
|
|
|
} from "./codec";
|
2020-08-12 12:18:02 +02:00
|
|
|
import { AmountString } from "../types/talerTypes";
|
2018-04-09 00:41:14 +02:00
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Number of fractional units that one value unit represents.
|
|
|
|
*/
|
|
|
|
export const fractionalBase = 1e8;
|
|
|
|
|
2018-07-05 02:09:07 +02:00
|
|
|
/**
|
|
|
|
* How many digits behind the comma are required to represent the
|
|
|
|
* fractional value in human readable decimal format? Must match
|
|
|
|
* lg(fractionalBase)
|
|
|
|
*/
|
|
|
|
export const fractionalLength = 8;
|
|
|
|
|
2018-07-05 03:14:44 +02:00
|
|
|
/**
|
|
|
|
* Maximum allowed value field of an amount.
|
|
|
|
*/
|
|
|
|
export const maxAmountValue = 2 ** 52;
|
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Non-negative financial amount. Fractional values are expressed as multiples
|
|
|
|
* of 1e-8.
|
|
|
|
*/
|
2019-12-19 20:42:49 +01:00
|
|
|
export interface AmountJson {
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Value, must be an integer.
|
|
|
|
*/
|
|
|
|
readonly value: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fraction, must be an integer. Represent 1/1e8 of a unit.
|
|
|
|
*/
|
|
|
|
readonly fraction: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Currency of the amount.
|
|
|
|
*/
|
|
|
|
readonly currency: string;
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
export const codecForAmountJson = (): Codec<AmountJson> =>
|
2020-08-12 12:32:58 +02:00
|
|
|
buildCodecForObject<AmountJson>()
|
|
|
|
.property("currency", codecForString())
|
|
|
|
.property("value", codecForNumber())
|
|
|
|
.property("fraction", codecForNumber())
|
2020-04-07 10:07:32 +02:00
|
|
|
.build("AmountJson");
|
2019-12-19 20:42:49 +01:00
|
|
|
|
2020-08-12 12:32:58 +02:00
|
|
|
export const codecForAmountString = (): Codec<AmountString> => codecForString();
|
2020-08-12 12:18:02 +02:00
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Result of a possibly overflowing operation.
|
|
|
|
*/
|
|
|
|
export interface Result {
|
|
|
|
/**
|
|
|
|
* Resulting, possibly saturated amount.
|
|
|
|
*/
|
|
|
|
amount: AmountJson;
|
|
|
|
/**
|
|
|
|
* Was there an over-/underflow?
|
|
|
|
*/
|
|
|
|
saturated: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an amount that represents zero units of a currency.
|
|
|
|
*/
|
|
|
|
export function getZero(currency: string): AmountJson {
|
|
|
|
return {
|
|
|
|
currency,
|
|
|
|
fraction: 0,
|
|
|
|
value: 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-09-01 17:07:50 +02:00
|
|
|
export type AmountLike = AmountString | AmountJson;
|
|
|
|
|
|
|
|
export function jsonifyAmount(amt: AmountLike): AmountJson {
|
|
|
|
if (typeof amt === "string") {
|
|
|
|
return parseOrThrow(amt);
|
|
|
|
}
|
|
|
|
return amt;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function sum(amounts: AmountLike[]): Result {
|
2019-08-31 13:27:12 +02:00
|
|
|
if (amounts.length <= 0) {
|
|
|
|
throw Error("can't sum zero amounts");
|
|
|
|
}
|
2020-09-01 17:07:50 +02:00
|
|
|
const jsonAmounts = amounts.map((x) => jsonifyAmount(x));
|
|
|
|
return add(jsonAmounts[0], ...jsonAmounts.slice(1));
|
2019-08-31 13:27:12 +02:00
|
|
|
}
|
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Add two amounts. Return the result and whether
|
|
|
|
* the addition overflowed. The overflow is always handled
|
|
|
|
* by saturating and never by wrapping.
|
|
|
|
*
|
|
|
|
* Throws when currencies don't match.
|
|
|
|
*/
|
|
|
|
export function add(first: AmountJson, ...rest: AmountJson[]): Result {
|
|
|
|
const currency = first.currency;
|
|
|
|
let value = first.value + Math.floor(first.fraction / fractionalBase);
|
2018-07-05 03:14:44 +02:00
|
|
|
if (value > maxAmountValue) {
|
|
|
|
return {
|
|
|
|
amount: { currency, value: maxAmountValue, fraction: fractionalBase - 1 },
|
2019-12-14 18:46:42 +01:00
|
|
|
saturated: true,
|
2018-07-05 03:14:44 +02:00
|
|
|
};
|
2018-01-03 14:42:06 +01:00
|
|
|
}
|
|
|
|
let fraction = first.fraction % fractionalBase;
|
|
|
|
for (const x of rest) {
|
|
|
|
if (x.currency !== currency) {
|
|
|
|
throw Error(`Mismatched currency: ${x.currency} and ${currency}`);
|
|
|
|
}
|
|
|
|
|
2019-12-14 18:46:42 +01:00
|
|
|
value =
|
|
|
|
value + x.value + Math.floor((fraction + x.fraction) / fractionalBase);
|
2018-01-03 14:42:06 +01:00
|
|
|
fraction = Math.floor((fraction + x.fraction) % fractionalBase);
|
2018-07-05 03:14:44 +02:00
|
|
|
if (value > maxAmountValue) {
|
|
|
|
return {
|
2019-12-14 18:46:42 +01:00
|
|
|
amount: {
|
|
|
|
currency,
|
|
|
|
value: maxAmountValue,
|
|
|
|
fraction: fractionalBase - 1,
|
|
|
|
},
|
|
|
|
saturated: true,
|
2018-07-05 03:14:44 +02:00
|
|
|
};
|
2018-01-03 14:42:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return { amount: { currency, value, fraction }, saturated: false };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subtract two amounts. Return the result and whether
|
|
|
|
* the subtraction overflowed. The overflow is always handled
|
|
|
|
* by saturating and never by wrapping.
|
|
|
|
*
|
|
|
|
* Throws when currencies don't match.
|
|
|
|
*/
|
|
|
|
export function sub(a: AmountJson, ...rest: AmountJson[]): Result {
|
|
|
|
const currency = a.currency;
|
|
|
|
let value = a.value;
|
|
|
|
let fraction = a.fraction;
|
|
|
|
|
|
|
|
for (const b of rest) {
|
|
|
|
if (b.currency !== currency) {
|
|
|
|
throw Error(`Mismatched currency: ${b.currency} and ${currency}`);
|
|
|
|
}
|
|
|
|
if (fraction < b.fraction) {
|
|
|
|
if (value < 1) {
|
|
|
|
return { amount: { currency, value: 0, fraction: 0 }, saturated: true };
|
|
|
|
}
|
|
|
|
value--;
|
|
|
|
fraction += fractionalBase;
|
|
|
|
}
|
|
|
|
console.assert(fraction >= b.fraction);
|
|
|
|
fraction -= b.fraction;
|
|
|
|
if (value < b.value) {
|
|
|
|
return { amount: { currency, value: 0, fraction: 0 }, saturated: true };
|
|
|
|
}
|
|
|
|
value -= b.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return { amount: { currency, value, fraction }, saturated: false };
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compare two amounts. Returns 0 when equal, -1 when a < b
|
|
|
|
* and +1 when a > b. Throws when currencies don't match.
|
|
|
|
*/
|
2020-09-01 19:31:44 +02:00
|
|
|
export function cmp(a: AmountLike, b: AmountLike): -1 | 0 | 1 {
|
|
|
|
a = jsonifyAmount(a);
|
|
|
|
b = jsonifyAmount(b);
|
2018-01-03 14:42:06 +01:00
|
|
|
if (a.currency !== b.currency) {
|
|
|
|
throw Error(`Mismatched currency: ${a.currency} and ${b.currency}`);
|
|
|
|
}
|
|
|
|
const av = a.value + Math.floor(a.fraction / fractionalBase);
|
|
|
|
const af = a.fraction % fractionalBase;
|
|
|
|
const bv = b.value + Math.floor(b.fraction / fractionalBase);
|
|
|
|
const bf = b.fraction % fractionalBase;
|
|
|
|
switch (true) {
|
|
|
|
case av < bv:
|
|
|
|
return -1;
|
|
|
|
case av > bv:
|
|
|
|
return 1;
|
|
|
|
case af < bf:
|
|
|
|
return -1;
|
|
|
|
case af > bf:
|
|
|
|
return 1;
|
|
|
|
case af === bf:
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
throw Error("assertion failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a copy of an amount.
|
|
|
|
*/
|
|
|
|
export function copy(a: AmountJson): AmountJson {
|
|
|
|
return {
|
|
|
|
currency: a.currency,
|
|
|
|
fraction: a.fraction,
|
|
|
|
value: a.value,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Divide an amount. Throws on division by zero.
|
|
|
|
*/
|
|
|
|
export function divide(a: AmountJson, n: number): AmountJson {
|
|
|
|
if (n === 0) {
|
|
|
|
throw Error(`Division by 0`);
|
|
|
|
}
|
|
|
|
if (n === 1) {
|
2019-12-14 18:46:42 +01:00
|
|
|
return { value: a.value, fraction: a.fraction, currency: a.currency };
|
2018-01-03 14:42:06 +01:00
|
|
|
}
|
|
|
|
const r = a.value % n;
|
|
|
|
return {
|
|
|
|
currency: a.currency,
|
2019-12-14 18:46:42 +01:00
|
|
|
fraction: Math.floor((r * fractionalBase + a.fraction) / n),
|
2018-01-03 14:42:06 +01:00
|
|
|
value: Math.floor(a.value / n),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if an amount is non-zero.
|
|
|
|
*/
|
|
|
|
export function isNonZero(a: AmountJson): boolean {
|
|
|
|
return a.value > 0 || a.fraction > 0;
|
|
|
|
}
|
|
|
|
|
2019-12-25 19:11:20 +01:00
|
|
|
export function isZero(a: AmountJson): boolean {
|
|
|
|
return a.value === 0 && a.fraction === 0;
|
|
|
|
}
|
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Parse an amount like 'EUR:20.5' for 20 Euros and 50 ct.
|
|
|
|
*/
|
2019-12-14 18:46:42 +01:00
|
|
|
export function parse(s: string): AmountJson | undefined {
|
2018-07-05 03:14:44 +02:00
|
|
|
const res = s.match(/^([a-zA-Z0-9_*-]+):([0-9]+)([.][0-9]+)?$/);
|
2018-01-03 14:42:06 +01:00
|
|
|
if (!res) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2018-07-05 03:14:44 +02:00
|
|
|
const tail = res[3] || ".0";
|
|
|
|
if (tail.length > fractionalLength + 1) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2020-04-06 17:45:41 +02:00
|
|
|
const value = Number.parseInt(res[2]);
|
2018-07-05 03:14:44 +02:00
|
|
|
if (value > maxAmountValue) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2018-01-03 14:42:06 +01:00
|
|
|
return {
|
|
|
|
currency: res[1],
|
2018-07-05 03:14:44 +02:00
|
|
|
fraction: Math.round(fractionalBase * Number.parseFloat(tail)),
|
|
|
|
value,
|
2018-01-03 14:42:06 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-09 00:41:14 +02:00
|
|
|
/**
|
|
|
|
* Parse amount in standard string form (like 'EUR:20.5'),
|
|
|
|
* throw if the input is not a valid amount.
|
|
|
|
*/
|
2018-01-29 22:58:47 +01:00
|
|
|
export function parseOrThrow(s: string): AmountJson {
|
|
|
|
const res = parse(s);
|
|
|
|
if (!res) {
|
|
|
|
throw Error(`Can't parse amount: "${s}"`);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Convert a float to a Taler amount.
|
|
|
|
* Loss of precision possible.
|
|
|
|
*/
|
2020-04-06 20:02:01 +02:00
|
|
|
export function fromFloat(floatVal: number, currency: string): AmountJson {
|
2018-01-03 14:42:06 +01:00
|
|
|
return {
|
|
|
|
currency,
|
|
|
|
fraction: Math.floor((floatVal - Math.floor(floatVal)) * fractionalBase),
|
|
|
|
value: Math.floor(floatVal),
|
|
|
|
};
|
|
|
|
}
|
2018-01-29 22:58:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert to standard human-readable string representation that's
|
|
|
|
* also used in JSON formats.
|
|
|
|
*/
|
2020-09-01 19:31:44 +02:00
|
|
|
export function stringify(a: AmountLike): string {
|
|
|
|
a = jsonifyAmount(a);
|
2018-07-05 03:14:44 +02:00
|
|
|
const av = a.value + Math.floor(a.fraction / fractionalBase);
|
|
|
|
const af = a.fraction % fractionalBase;
|
2019-12-14 18:46:42 +01:00
|
|
|
let s = av.toString();
|
2018-07-05 02:09:07 +02:00
|
|
|
|
2018-07-05 03:14:44 +02:00
|
|
|
if (af) {
|
2018-07-05 02:09:07 +02:00
|
|
|
s = s + ".";
|
2018-07-05 03:14:44 +02:00
|
|
|
let n = af;
|
2018-07-05 02:09:07 +02:00
|
|
|
for (let i = 0; i < fractionalLength; i++) {
|
|
|
|
if (!n) {
|
|
|
|
break;
|
|
|
|
}
|
2019-12-14 18:46:42 +01:00
|
|
|
s = s + Math.floor((n / fractionalBase) * 10).toString();
|
2018-07-05 02:09:07 +02:00
|
|
|
n = (n * 10) % fractionalBase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return `${a.currency}:${s}`;
|
2018-01-29 22:58:47 +01:00
|
|
|
}
|
|
|
|
|
2018-04-09 00:41:14 +02:00
|
|
|
/**
|
|
|
|
* Check if the argument is a valid amount in string form.
|
|
|
|
*/
|
2020-04-02 17:03:01 +02:00
|
|
|
function check(a: any): boolean {
|
2018-01-29 22:58:47 +01:00
|
|
|
if (typeof a !== "string") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
const parsedAmount = parse(a);
|
|
|
|
return !!parsedAmount;
|
|
|
|
} catch {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2020-04-02 17:03:01 +02:00
|
|
|
|
2020-05-11 14:33:25 +02:00
|
|
|
function mult(a: AmountJson, n: number): Result {
|
|
|
|
if (!Number.isInteger(n)) {
|
|
|
|
throw Error("amount can only be multipied by an integer");
|
|
|
|
}
|
|
|
|
if (n < 0) {
|
|
|
|
throw Error("amount can only be multiplied by a positive integer");
|
|
|
|
}
|
|
|
|
if (n == 0) {
|
|
|
|
return { amount: getZero(a.currency), saturated: false };
|
|
|
|
}
|
2020-07-16 13:51:12 +02:00
|
|
|
let x = a;
|
|
|
|
let acc = getZero(a.currency);
|
2020-05-11 14:33:25 +02:00
|
|
|
while (n > 1) {
|
|
|
|
if (n % 2 == 0) {
|
|
|
|
n = n / 2;
|
|
|
|
} else {
|
2020-07-16 13:51:12 +02:00
|
|
|
n = (n - 1) / 2;
|
2020-07-22 10:52:03 +02:00
|
|
|
const r2 = add(acc, x);
|
2020-07-16 13:51:12 +02:00
|
|
|
if (r2.saturated) {
|
|
|
|
return r2;
|
|
|
|
}
|
|
|
|
acc = r2.amount;
|
2020-05-11 14:33:25 +02:00
|
|
|
}
|
2020-07-16 13:51:12 +02:00
|
|
|
const r2 = add(x, x);
|
|
|
|
if (r2.saturated) {
|
|
|
|
return r2;
|
2020-05-11 14:33:25 +02:00
|
|
|
}
|
2020-07-16 13:51:12 +02:00
|
|
|
x = r2.amount;
|
2020-05-11 14:33:25 +02:00
|
|
|
}
|
2020-07-16 13:51:12 +02:00
|
|
|
return add(acc, x);
|
2020-05-11 14:33:25 +02:00
|
|
|
}
|
|
|
|
|
2020-04-02 17:03:01 +02:00
|
|
|
// Export all amount-related functions here for better IDE experience.
|
|
|
|
export const Amounts = {
|
|
|
|
stringify: stringify,
|
|
|
|
parse: parse,
|
|
|
|
parseOrThrow: parseOrThrow,
|
|
|
|
cmp: cmp,
|
|
|
|
add: add,
|
|
|
|
sum: sum,
|
|
|
|
sub: sub,
|
2020-05-11 14:33:25 +02:00
|
|
|
mult: mult,
|
2020-04-02 17:03:01 +02:00
|
|
|
check: check,
|
|
|
|
getZero: getZero,
|
|
|
|
isZero: isZero,
|
|
|
|
maxAmountValue: maxAmountValue,
|
|
|
|
fromFloat: fromFloat,
|
2020-05-11 14:33:25 +02:00
|
|
|
copy: copy,
|
2020-08-03 09:30:48 +02:00
|
|
|
fractionalBase: fractionalBase,
|
2020-04-02 17:14:12 +02:00
|
|
|
};
|