ethers.js/packages/bignumber/lib.esm/fixednumber.js

306 lines
11 KiB
JavaScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
"use strict";
import { arrayify, hexZeroPad, isBytes } from "@ethersproject/bytes";
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
import { BigNumber, isBigNumberish } from "./bignumber";
const _constructorGuard = {};
const Zero = BigNumber.from(0);
const NegativeOne = BigNumber.from(-1);
2019-05-15 01:48:48 +03:00
function throwFault(message, fault, operation, value) {
let params = { fault: fault, operation: operation };
2019-05-15 01:48:48 +03:00
if (value !== undefined) {
params.value = value;
}
return logger.throwError(message, Logger.errors.NUMERIC_FAULT, params);
2019-05-15 01:48:48 +03:00
}
// Constant to pull zeros from for multipliers
let zeros = "0";
2019-05-15 01:48:48 +03:00
while (zeros.length < 256) {
zeros += zeros;
}
// Returns a string "1" followed by decimal "0"s
function getMultiplier(decimals) {
if (typeof (decimals) !== "number") {
try {
decimals = BigNumber.from(decimals).toNumber();
2019-05-15 01:48:48 +03:00
}
catch (e) { }
}
if (typeof (decimals) === "number" && decimals >= 0 && decimals <= 256 && !(decimals % 1)) {
return ("1" + zeros.substring(0, decimals));
}
2019-08-02 09:10:58 +03:00
return logger.throwArgumentError("invalid decimal size", "decimals", decimals);
2019-05-15 01:48:48 +03:00
}
export function formatFixed(value, decimals) {
2019-05-15 01:48:48 +03:00
if (decimals == null) {
decimals = 0;
}
let multiplier = getMultiplier(decimals);
2019-05-15 01:48:48 +03:00
// Make sure wei is a big number (convert as necessary)
value = BigNumber.from(value);
let negative = value.lt(Zero);
2019-05-15 01:48:48 +03:00
if (negative) {
value = value.mul(NegativeOne);
}
let fraction = value.mod(multiplier).toString();
2019-05-15 01:48:48 +03:00
while (fraction.length < multiplier.length - 1) {
fraction = "0" + fraction;
}
// Strip training 0
fraction = fraction.match(/^([0-9]*[1-9]|0)(0*)/)[1];
let whole = value.div(multiplier).toString();
2019-05-15 01:48:48 +03:00
value = whole + "." + fraction;
if (negative) {
value = "-" + value;
}
return value;
}
export function parseFixed(value, decimals) {
2019-05-15 01:48:48 +03:00
if (decimals == null) {
decimals = 0;
}
let multiplier = getMultiplier(decimals);
2019-05-15 01:48:48 +03:00
if (typeof (value) !== "string" || !value.match(/^-?[0-9.,]+$/)) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("invalid decimal value", "value", value);
2019-05-15 01:48:48 +03:00
}
if (multiplier.length - 1 === 0) {
return BigNumber.from(value);
2019-05-15 01:48:48 +03:00
}
// Is it negative?
let negative = (value.substring(0, 1) === "-");
2019-05-15 01:48:48 +03:00
if (negative) {
value = value.substring(1);
}
if (value === ".") {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("missing value", "value", value);
2019-05-15 01:48:48 +03:00
}
// Split it into a whole and fractional part
let comps = value.split(".");
2019-05-15 01:48:48 +03:00
if (comps.length > 2) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("too many decimal points", "value", value);
2019-05-15 01:48:48 +03:00
}
let whole = comps[0], fraction = comps[1];
2019-05-15 01:48:48 +03:00
if (!whole) {
whole = "0";
}
if (!fraction) {
fraction = "0";
}
// Prevent underflow
if (fraction.length > multiplier.length - 1) {
throwFault("fractional component exceeds decimals", "underflow", "parseFixed");
}
// Fully pad the string with zeros to get to wei
while (fraction.length < multiplier.length - 1) {
fraction += "0";
}
let wholeValue = BigNumber.from(whole);
let fractionValue = BigNumber.from(fraction);
let wei = (wholeValue.mul(multiplier)).add(fractionValue);
2019-05-15 01:48:48 +03:00
if (negative) {
wei = wei.mul(NegativeOne);
}
return wei;
}
export class FixedFormat {
constructor(constructorGuard, signed, width, decimals) {
2019-06-12 00:57:04 +03:00
this.signed = signed;
this.width = width;
this.decimals = decimals;
this.name = (signed ? "" : "u") + "fixed" + String(width) + "x" + String(decimals);
this._multiplier = getMultiplier(decimals);
Object.freeze(this);
2019-05-15 01:48:48 +03:00
}
static from(value) {
2019-05-15 01:48:48 +03:00
if (value instanceof FixedFormat) {
return value;
}
let signed = true;
let width = 128;
let decimals = 18;
2019-05-15 01:48:48 +03:00
if (typeof (value) === "string") {
if (value === "fixed") {
// defaults...
}
else if (value === "ufixed") {
signed = false;
}
else if (value != null) {
let match = value.match(/^(u?)fixed([0-9]+)x([0-9]+)$/);
2019-05-15 01:48:48 +03:00
if (!match) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("invalid fixed format", "format", value);
2019-05-15 01:48:48 +03:00
}
signed = (match[1] !== "u");
width = parseInt(match[2]);
decimals = parseInt(match[3]);
}
}
else if (value) {
let check = (key, type, defaultValue) => {
2019-05-15 01:48:48 +03:00
if (value[key] == null) {
return defaultValue;
}
if (typeof (value[key]) !== type) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("invalid fixed format (" + key + " not " + type + ")", "format." + key, value[key]);
2019-05-15 01:48:48 +03:00
}
return value[key];
};
signed = check("signed", "boolean", signed);
width = check("width", "number", width);
decimals = check("decimals", "number", decimals);
}
if (width % 8) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("invalid fixed format width (not byte aligned)", "format.width", width);
2019-05-15 01:48:48 +03:00
}
if (decimals > 80) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("invalid fixed format (decimals too large)", "format.decimals", decimals);
2019-05-15 01:48:48 +03:00
}
return new FixedFormat(_constructorGuard, signed, width, decimals);
}
}
export class FixedNumber {
constructor(constructorGuard, hex, value, format) {
logger.checkNew(new.target, FixedNumber);
2019-06-12 00:57:04 +03:00
this.format = format;
this._hex = hex;
this._value = value;
this._isFixedNumber = true;
Object.freeze(this);
2019-05-15 01:48:48 +03:00
}
_checkFormat(other) {
2019-05-15 01:48:48 +03:00
if (this.format.name !== other.format.name) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("incompatible format; use fixedNumber.toFormat", "other", other);
2019-05-15 01:48:48 +03:00
}
}
addUnsafe(other) {
2019-05-15 01:48:48 +03:00
this._checkFormat(other);
let a = parseFixed(this._value, this.format.decimals);
let b = parseFixed(other._value, other.format.decimals);
2019-05-15 01:48:48 +03:00
return FixedNumber.fromValue(a.add(b), this.format.decimals, this.format);
}
subUnsafe(other) {
2019-05-15 01:48:48 +03:00
this._checkFormat(other);
let a = parseFixed(this._value, this.format.decimals);
let b = parseFixed(other._value, other.format.decimals);
2019-05-15 01:48:48 +03:00
return FixedNumber.fromValue(a.sub(b), this.format.decimals, this.format);
}
mulUnsafe(other) {
2019-05-15 01:48:48 +03:00
this._checkFormat(other);
let a = parseFixed(this._value, this.format.decimals);
let b = parseFixed(other._value, other.format.decimals);
2019-05-15 01:48:48 +03:00
return FixedNumber.fromValue(a.mul(b).div(this.format._multiplier), this.format.decimals, this.format);
}
divUnsafe(other) {
2019-05-15 01:48:48 +03:00
this._checkFormat(other);
let a = parseFixed(this._value, this.format.decimals);
let b = parseFixed(other._value, other.format.decimals);
2019-05-15 01:48:48 +03:00
return FixedNumber.fromValue(a.mul(this.format._multiplier).div(b), this.format.decimals, this.format);
}
2019-05-15 01:48:48 +03:00
// @TODO: Support other rounding algorithms
round(decimals) {
2019-05-15 01:48:48 +03:00
if (decimals == null) {
decimals = 0;
}
if (decimals < 0 || decimals > 80 || (decimals % 1)) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("invalid decimal cound", "decimals", decimals);
2019-05-15 01:48:48 +03:00
}
// If we are already in range, we're done
let comps = this.toString().split(".");
2019-05-15 01:48:48 +03:00
if (comps[1].length <= decimals) {
return this;
}
// Bump the value up by the 0.00...0005
let bump = "0." + zeros.substring(0, decimals) + "5";
2019-05-15 01:48:48 +03:00
comps = this.addUnsafe(FixedNumber.fromString(bump, this.format))._value.split(".");
// Now it is safe to truncate
return FixedNumber.fromString(comps[0] + "." + comps[1].substring(0, decimals));
}
toString() { return this._value; }
toHexString(width) {
2019-05-15 01:48:48 +03:00
if (width == null) {
return this._hex;
}
if (width % 8) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("invalid byte width", "width", width);
2019-05-15 01:48:48 +03:00
}
let hex = BigNumber.from(this._hex).fromTwos(this.format.width).toTwos(width).toHexString();
return hexZeroPad(hex, width / 8);
}
toUnsafeFloat() { return parseFloat(this.toString()); }
toFormat(format) {
2019-05-15 01:48:48 +03:00
return FixedNumber.fromString(this._value, format);
}
static fromValue(value, decimals, format) {
2019-05-15 01:48:48 +03:00
// If decimals looks more like a format, and there is no format, shift the parameters
if (format == null && decimals != null && !isBigNumberish(decimals)) {
2019-05-15 01:48:48 +03:00
format = decimals;
decimals = null;
}
if (decimals == null) {
decimals = 0;
}
if (format == null) {
format = "fixed";
}
2019-06-12 00:57:04 +03:00
return FixedNumber.fromString(formatFixed(value, decimals), FixedFormat.from(format));
}
static fromString(value, format) {
2019-05-15 01:48:48 +03:00
if (format == null) {
format = "fixed";
}
let fixedFormat = FixedFormat.from(format);
let numeric = parseFixed(value, fixedFormat.decimals);
2019-05-15 01:48:48 +03:00
if (!fixedFormat.signed && numeric.lt(Zero)) {
throwFault("unsigned value cannot be negative", "overflow", "value", value);
}
let hex = null;
2019-05-15 01:48:48 +03:00
if (fixedFormat.signed) {
hex = numeric.toTwos(fixedFormat.width).toHexString();
}
else {
hex = numeric.toHexString();
hex = hexZeroPad(hex, fixedFormat.width / 8);
2019-05-15 01:48:48 +03:00
}
let decimal = formatFixed(numeric, fixedFormat.decimals);
2019-05-15 01:48:48 +03:00
return new FixedNumber(_constructorGuard, hex, decimal, fixedFormat);
}
static fromBytes(value, format) {
2019-05-15 01:48:48 +03:00
if (format == null) {
format = "fixed";
}
let fixedFormat = FixedFormat.from(format);
if (arrayify(value).length > fixedFormat.width / 8) {
2019-05-15 01:48:48 +03:00
throw new Error("overflow");
}
let numeric = BigNumber.from(value);
2019-05-15 01:48:48 +03:00
if (fixedFormat.signed) {
numeric = numeric.fromTwos(fixedFormat.width);
}
let hex = numeric.toTwos((fixedFormat.signed ? 0 : 1) + fixedFormat.width).toHexString();
let decimal = formatFixed(numeric, fixedFormat.decimals);
2019-05-15 01:48:48 +03:00
return new FixedNumber(_constructorGuard, hex, decimal, fixedFormat);
}
static from(value, format) {
2019-05-15 01:48:48 +03:00
if (typeof (value) === "string") {
return FixedNumber.fromString(value, format);
}
if (isBytes(value)) {
2019-05-15 01:48:48 +03:00
return FixedNumber.fromBytes(value, format);
}
try {
return FixedNumber.fromValue(value, 0, format);
}
catch (error) {
// Allow NUMERIC_FAULT to bubble up
if (error.code !== Logger.errors.INVALID_ARGUMENT) {
2019-05-15 01:48:48 +03:00
throw error;
}
}
2019-08-02 09:10:58 +03:00
return logger.throwArgumentError("invalid FixedNumber value", "value", value);
}
static isFixedNumber(value) {
2019-06-12 00:57:04 +03:00
return !!(value && value._isFixedNumber);
}
}