|
let code = ''
|
let tableList = null
|
let excelMethodList = []
|
let comparisonList = []
|
let currentSample = {}
|
let PROJECT = ''
|
let bushing = ''
|
let result = {
|
method:'',
|
value:null
|
}
|
let param = null
|
let currentTable = ''
|
let getDataTypeId = null
|
self.onmessage = function(event) {
|
const data = JSON.parse(event.data);
|
if(currentTable!=data.currentTable){
|
tableList = data.tableList;
|
}
|
currentTable = data.currentTable;
|
if(data.type&&data.type=='saveData'){
|
tableList = data.tableList;
|
param = data.param;
|
return
|
}
|
if(data.bushing&&(data.bushing!=bushing)&&data.type=='saveData'){
|
tableList = data.tableList;
|
param = data.param;
|
bushing = data.bushing;
|
return
|
}
|
code = data.code;
|
if(data.getDataTypeId){
|
getDataTypeId = data.getDataTypeId
|
}else{
|
getDataTypeId = null
|
}
|
if(tableList){
|
let str = code.split('-')
|
let r = str[1]
|
let c = str[2]
|
tableList[0].arr.forEach((item,index)=>{
|
item.forEach((m,i)=>{
|
if(m.c==c&&m.r==r){
|
tableList[0].arr[index] = data.tableList[0].arr[index]
|
}
|
})
|
})
|
}else{
|
tableList = data.tableList;
|
}
|
if(param){
|
let str = code.split('-')
|
let pId = str[3]
|
param[pId] = data.param[pId]
|
}else{
|
param = data.param;
|
}
|
// tableList = data.tableList;
|
// param = data.param;
|
excelMethodList = JSON.parse(JSON.stringify(data.excelMethodList));
|
comparisonList = JSON.parse(JSON.stringify(data.comparisonList));
|
currentSample = JSON.parse(JSON.stringify(data.currentSample));
|
PROJECT = data.PROJECT
|
changeInput('', code);
|
};
|
|
function changeInput(m, code){
|
let str = code.split('-')
|
let r = str[1]
|
let c = str[2]
|
let id = str[0]
|
let pId = str[3]
|
var list = []
|
for (let a in tableList) {
|
if (tableList[a].templateId == id) {
|
list = tableList[a].arr
|
break
|
}
|
}
|
let isToExponential = ''
|
let list2 = []
|
let isPoint = ''
|
excelMethodList.forEach(item => {
|
if (item.valueList&&item.valueList.length>0&&item.valueList.find(m => m.r == r && m.c == c)) {
|
var comValue = {}
|
item.valueList.forEach(a => {
|
list.forEach(b => {
|
if (b[0].r == a.r) {
|
b.forEach(c => {
|
if (c.c == a.c) {
|
var tableCode = ''
|
for (var d in comparisonList) {
|
if (c.c == comparisonList[d].value) {
|
tableCode = comparisonList[d].label
|
break
|
}
|
}
|
list2.push(c.v.v)
|
if(getInspectionValueType(item.i)==1&&!isNaN(parseFloat(c.v.v))){
|
let n = String(c.v.v)
|
if(n.includes('/')){
|
comValue[(tableCode + (c.r + 1))] = c.v.v
|
}else{
|
comValue[(tableCode + (c.r + 1))] = parseFloat(c.v.v)
|
}
|
}else{
|
comValue[(tableCode + (c.r + 1))] = c.v.v
|
}
|
}
|
})
|
}
|
})
|
})
|
if (item.v.ps != undefined && item.v.ps.value == '结论') {
|
try {
|
if (currentSample.insProduct.find(m => m.id == item.i)) {
|
let ask = currentSample.insProduct.find(m => m.id == item.i).ask?currentSample.insProduct.find(m => m.id == item.i).ask.split('&'):null;
|
let res = Object.values(comValue)[0]
|
let comp = []
|
if(res===''||res===null||res===undefined||res==='Infinity'){
|
item.v.v = null
|
list.forEach(a => {
|
if (a[0].r == item.r) {
|
for (let b=0; b<a.length; b++) {
|
if (a[b].c == item.c) {
|
a[b].v.v = null
|
break
|
}
|
}
|
}
|
})
|
}else{
|
// console.log(ask,res,item.v.f)
|
if(ask){
|
comp = ask.map((m, i) => {
|
// console.log('m----', m)
|
if (m.includes('RTS')) {
|
m = m.replace('RTS*', '')
|
}
|
if (m.includes('=')) {
|
let str = handleFraction(m.split('=')[1])
|
if(typeof res == 'string'&&typeof str == 'string'){
|
if(res.includes('/')){
|
if (m.includes('/')) {
|
return eval(res) == eval(str)
|
} else {
|
return handleMoreParam(res,m.split('=')[1],'=')
|
}
|
}else{
|
// console.log(res.trim().replace(/[.,。、;:'";??“,]/g, ''),' == ',str.trim().replace(/[.,。、;:'";??“,]/g, ''))
|
return res.trim().replace(/[.,。、;:'";??“,]/g, '') == str.trim().replace(/[.,。、;:'";??“,]/g, '')
|
}
|
}else{
|
return eval(res) == eval(str)
|
}
|
} else if (m.includes('≥')) {
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
// console.log('eval(res)----', eval(res))
|
let str = handleFraction(m.split('≥')[1])
|
// console.log('eval(str)----', eval(str))
|
return eval(res) >= eval(str)
|
} else {
|
return handleMoreParam(res,m.split('≥')[1],'≥')
|
}
|
}else{
|
let str = handleFraction(m.split('≥')[1])
|
return eval(res) >= eval(str)
|
}
|
}else if (m.includes('≤')) {
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let str = handleFraction(m.split('≤')[1])
|
return eval(res) <= eval(str)
|
} else {
|
return handleMoreParam(res,m.split('≤')[1],'≤')
|
}
|
}else{
|
let str = handleFraction(m.split('≤')[1])
|
console.log(555555,res,str)
|
return eval(res) <= eval(str)
|
}
|
}else if (m.includes('<')) {
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let str = handleFraction(m.split('<')[1])
|
return eval(res) < eval(str)
|
} else {
|
return handleMoreParam(res,m.split('<')[1],'<')
|
}
|
}else{
|
let str = handleFraction(m.split('<')[1])
|
return eval(res) < eval(str)
|
}
|
}else if (m.includes('>')) {
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let str = handleFraction(m.split('>')[1])
|
return eval(res) > eval(str)
|
} else {
|
return handleMoreParam(res,m.split('>')[1],'>')
|
}
|
}else{
|
let str = handleFraction(m.split('>')[1])
|
return eval(res) > eval(str)
|
}
|
}else if (m.includes('~')) {
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let k = m.split('~')
|
return eval(res) >= eval(handleFraction((k[0]))) && eval(res) <= eval(handleFraction(k[1]))
|
} else {
|
return handleMoreParam(res,m,'~')
|
}
|
}else{
|
let k = m.split('~')
|
return eval(res) >= eval(handleFraction((k[0]))) && eval(res) <= eval(handleFraction(k[1]))
|
}
|
}else if(m.includes('-')){
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let k = m.split('-')
|
return eval(res) >= eval(handleFraction(k[0])) && eval(res) <= eval(handleFraction(k[1]))
|
} else {
|
return handleMoreParam(res,m,'-')
|
}
|
}else{
|
let k = m.split('-')
|
// console.log(k,eval(res),eval(res) >= eval(handleFraction(k[0])) && eval(res) <= eval(handleFraction(k[1])))
|
return eval(res) >= eval(handleFraction(k[0])) && eval(res) <= eval(handleFraction(k[1]))
|
}
|
}else if(m.includes('±')){
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let k = m.split('±')
|
return eval(res) >= eval((handleFraction(k[0]) - handleFraction(k[1]))) && eval(res) <= eval((handleFraction(k[0]) + handleFraction(k[1])))
|
} else {
|
return handleMoreParam(res,m,'±')
|
}
|
}else{
|
let k = m.split('±')
|
return eval(res) >= eval((handleFraction(k[0]) - handleFraction(k[1]))) && eval(res) <= eval((handleFraction(k[0]) + handleFraction(k[1])))
|
}
|
}else if(m.includes('>')){
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let str = handleFraction(m.split('>')[1])
|
return eval(res) > eval(str)
|
} else {
|
return handleMoreParam(res,m.split('>')[1],'>')
|
}
|
}else{
|
let str = handleFraction(m.split('>')[1])
|
return eval(res) > eval(str)
|
}
|
}else if(m.includes('<')){
|
if(typeof res =='string'&&res.includes('/')){
|
if (m.includes('/')) {
|
let str = handleFraction(m.split('<')[1])
|
return eval(res) < eval(str)
|
} else {
|
return handleMoreParam(res,m.split('<')[1],'<')
|
}
|
}else{
|
let str = handleFraction(m.split('<')[1])
|
return eval(res) < eval(str)
|
}
|
}
|
})
|
}
|
if (comp.every(m => m)) {
|
item.v.v = 1
|
list.forEach(a => {
|
if (a[0].r == item.r) {
|
for (let b=0; b<a.length; b++) {
|
if (a[b].c == item.c) {
|
a[b].v.v = 1
|
break
|
}
|
}
|
}
|
})
|
} else {
|
item.v.v = 0
|
list.forEach(a => {
|
if (a[0].r == item.r) {
|
for (let b=0; b<a.length; b++) {
|
if (a[b].c == item.c) {
|
a[b].v.v = 0
|
break
|
}
|
}
|
}
|
})
|
}
|
// console.log(5555,tableList)
|
}
|
// console.log('1234567789', tableList,getParam())
|
// console.log('1234567789', item)
|
let getDataType0 = false
|
if(item.i==getDataTypeId){
|
getDataType0 = true
|
}
|
result = {
|
method:'saveInsContext',
|
value:{
|
tableList,
|
param:getParam(),
|
getDataTypeId:getDataType0?getDataTypeId:''
|
}
|
}
|
self.postMessage(JSON.stringify(result))
|
}
|
} catch (error) {
|
console.log('error---', error)
|
}
|
|
} else {
|
let comResult = ''
|
try {
|
if(getInspectionValueType(item.i)==1){
|
let tell = currentSample.insProduct.find(m => m.id == item.i).tell?currentSample.insProduct.find(m => m.id == item.i).tell.split('&'):null;
|
isPoint = PROJECT=='装备电缆'&&tell&&tell.length>0&&typeof tell[0] =='string'&&tell[0].includes('/') // 判断要求值是否为分数
|
comResult = compute(item.v.f.replace(/=/g, ' '),comValue, isPoint)
|
let list3 = list2.map(item=>item+'')
|
isToExponential = list3.some(val => val.includes('e+')||val.includes('e-'))
|
// 装备项目检验值转化
|
if (PROJECT === '装备电缆' && isToExponential) {
|
let num2 = new Big(comResult)
|
comResult = num2.toExponential(1)
|
}
|
}else{
|
let valueList = [];
|
item.valueList.forEach(a => {
|
valueList.push({
|
name: `${comparisonList.find(e=>e.value==a.c).label}${a.r+1}`,
|
value: 0,
|
})
|
})
|
for (var a in comValue) {
|
valueList.forEach(b => {
|
if (b.name == a) {
|
b.value = comValue[a]
|
}
|
})
|
}
|
let str = item.v.f.replace(/=/g, ' ')
|
valueList.forEach(b => {
|
str = str.replace(b.name, b.value)
|
})
|
comResult = str
|
}
|
} catch (error) {
|
console.log('error---', error)
|
}
|
try {
|
list.forEach(a => {
|
if (a[0].r == item.r && comResult !== '') {
|
for (var b in a) {
|
if (a[b].c == item.c) {
|
try{
|
if(comResult==0){
|
a[b].v.v = 0
|
}else if(a[b].v.ct&&a[b].v.ct.fa&&typeof a[b].v.ct.fa == 'string'&&a[b].v.ct.fa.includes('.')){
|
let num = 0
|
let str = a[b].v.ct.fa.split('.')[1]
|
num = str.length
|
a[b].v.v = comResult?Number(comResult).toFixed(num):comResult
|
}else if(comResult.includes('e+')|| comResult.includes('e-')){
|
a[b].v.v = comResult
|
}else{
|
let val = parseFloat(Number(comResult).toFixed(3))
|
a[b].v.v = isNaN(val) ? comResult : val
|
}
|
// console.log('a[b].v.ct', comResult)
|
// console.log('a[b].v.v', a[b])
|
}catch(error){
|
a[b].v.v = comResult
|
console.log('error---', error)
|
}
|
break
|
}
|
}
|
}
|
})
|
changeInput(comResult, `${id}-${item.r}-${item.c}-${pId}`) //改变最终值
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
}
|
})
|
result = {
|
method:'tableList',
|
value:tableList
|
}
|
self.postMessage(JSON.stringify(result))
|
try {
|
result = {
|
method:'getCurrentInsProduct',
|
value:pId
|
}
|
self.postMessage(JSON.stringify(result))
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
|
function getInspectionValueType(id) {
|
for (var a in currentSample.insProduct) {
|
if (currentSample.insProduct[a].id == id) {
|
return currentSample.insProduct[a].inspectionValueType
|
}
|
}
|
}
|
/**
|
* 处理分数或带有乘法和乘方的字符串
|
*
|
* @param str 字符串类型,表示要处理的分数或乘方表达式
|
* @returns 返回一个数字或原字符串,如果字符串为有效的分数或乘方表达式,则返回计算结果;否则返回原字符串
|
*/
|
function handleFraction(str){
|
if(str&&typeof(str)=='string'&&str.includes('/')){
|
return eval(str.split('/')[0]/str.split('/')[1])
|
} else if (str && typeof(str) == 'string' && str.includes('*') && str.includes('^')) {
|
const num1 = str.split('*')
|
const num2 = num1[1].split('^')
|
let num3 = new Big(num2[0]);
|
let num4 = new Big(num2[1]);
|
let num5 = Math.pow(num3, num4) // 计算次方
|
return num1[0] * num5 // 最后计算乘法
|
} else{
|
return str
|
}
|
}
|
|
/**
|
* 处理带有多个参数的函数
|
*
|
* @param res 字符串,需要被分割并处理的字符串
|
* @param str 字符串,与res中的每一项进行比较的字符串,可能是分数或者带有比较符号的字符串
|
* @param comp 字符串,表示比较类型的字符(如 '>'、'<'、'='、'≥'、'≤'、'±'、'~'、'-')
|
* @returns 返回布尔值,如果res中每一项都满足与str的比较条件,则返回true,否则返回false
|
*/
|
function handleMoreParam(res,str,comp){
|
let arr = res.split('/')
|
let arr0 = arr.every(item=>{
|
switch (comp){
|
case '>':
|
return item > handleFraction(str)
|
case '<':
|
return item < handleFraction(str)
|
case '=':
|
return item == handleFraction(str)
|
case '≥':
|
return item >= handleFraction(str)
|
case '≤':
|
return item <= handleFraction(str)
|
case '±':
|
let k = str.split('±')
|
return item >= eval((handleFraction(k[0]) - handleFraction(k[1]))) && item <= eval((handleFraction(k[0]) + handleFraction(k[1])))
|
case '~':
|
let j = str.split('~')
|
return item >= eval(handleFraction((j[0]))) && item <= eval(handleFraction(j[1]))
|
case '-':
|
let o = str.split('-')
|
return item >= eval(handleFraction(o[0])) && item <= eval(handleFraction(o[1]))
|
}
|
})
|
if(arr0){
|
return true
|
}else{
|
return false
|
}
|
}
|
|
/**
|
* 获取参数
|
*
|
* @returns 返回处理后的参数对象
|
*/
|
function getParam(){
|
tableList[0].arr.forEach(a=>{
|
a.forEach(b=>{
|
if(param[b.i]){
|
param[b.i].insValue = []
|
param[b.i].comValue = []
|
param[b.i].equipValue = []
|
param[b.i].equipName = []
|
param[b.i].resValue = null
|
param[b.i].insResult = null
|
}
|
})
|
})
|
tableList[0].arr.forEach(a => {
|
a.forEach(b=>{
|
if (b.v.ps != undefined &&typeof b.v.ps.value =='string'&& b.v.ps.value.includes('检验值')) {
|
b.i &&b.v.v&& param[b.i].insValue.push(b)
|
}
|
if (b.v.ps != undefined && b.v.ps.value === '计算值') {
|
b.i &&b.v.v&&b.valueList&&b.valueList.length>0&& param[b.i].comValue.push(b)
|
}
|
if (b.v.ps != undefined && b.v.ps.value === '设备编码') {
|
b.i &&b.v&& param[b.i].equipValue.push(b)
|
}
|
if (b.v.ps != undefined && b.v.ps.value === '设备名称') {
|
b.i &&b.v&& param[b.i].equipName.push(b)
|
}
|
if (b.v.ps != undefined && b.v.ps.value === '最终值') {
|
b.i &&b.v&&b.valueList&&b.valueList.length>0&& (param[b.i].resValue = b)
|
}
|
if (b.v.ps != undefined && b.v.ps.value === '结论') {
|
if(b.i &&(b.v.v||b.v.v===0||b.v.v==='0')){
|
if(b.v.v != '合格'&&b.v.v != '不合格'){
|
param[b.i].insResult = b
|
}
|
}
|
}
|
})
|
})
|
return param
|
}
|
|
|
/**
|
* 计算多个数值的和
|
*
|
* @param val 数值型参数,可变长参数列表
|
* @returns 返回所有参数的和,如果参数列表为空或参数类型非数值型,则返回null
|
*/
|
function SUM(...val){
|
try {
|
let num = null;
|
if(val!=null&&val!=undefined&&val!='undefined'&&val!='NaN'&&val.length>0){
|
val.forEach(item=>{
|
num+=item;
|
})
|
}
|
return num;
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
/**
|
* 计算传入参数中的最大值
|
*
|
* @param ...val 可变参数列表,用于计算最大值的数值或可转换为数值的类型
|
* @returns 返回最大值,如果参数列表为空或为null/undefined/'',则返回null
|
*/
|
function MAX(...val){
|
try {
|
let max = null;
|
if(val!=null&&val!=undefined&&val!='undefined'&&val!='NaN'&&val.length>0){
|
val = val.filter(item=>item!=null&&item!=='')
|
if(val.length>0){
|
max = Math.max(...val)
|
}else{
|
max = null;
|
}
|
}
|
return max;
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
/**
|
* 计算传入参数中的最小值
|
*
|
* @param val 可变参数,用于计算最小值的数值数组
|
* @returns 返回传入参数中的最小值,如果传入参数为空或所有值均为null或空字符串,则返回null
|
*/
|
function MIN(...val){
|
try {
|
let min = null;
|
if(val!=null&&val!=undefined&&val!='undefined'&&val!='NaN'&&val.length>0){
|
val = val.filter(item=>item!=null&&item!=='')
|
if(val.length>0){
|
min = Math.min(...val)
|
}
|
}
|
return min;
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
/**
|
* 计算给定数值的平均值
|
*
|
* @param val 数值列表,可包含任意个参数
|
* @returns 返回平均值,如果数值列表为空或包含非数值项,则返回null
|
*/
|
function AVERAGE(...val){
|
try {
|
let num = null;
|
let arr = [];
|
if(val!=null&&val!=undefined&&val!='undefined'&&val!='NaN'&&val.length>0){
|
arr = val.filter(item=>item!==null&&item!==''&&item!=undefined)
|
arr.forEach(item=>{
|
num+=item;
|
})
|
if(arr.length>0){
|
return num/arr.length;
|
}else{
|
return null;
|
}
|
}else{
|
return null;
|
}
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
/**
|
* 计算一个数的绝对值
|
*
|
* @param val 任意数值
|
* @returns 返回该数值的绝对值
|
*/
|
function ABS(val){
|
try {
|
return Math.abs(val);
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
/**
|
* 计算一组数字的中位数
|
*
|
* @param val 任意个参数,需要计算中位数的数字
|
* @returns 如果参数中有有效的数字,则返回计算出的中位数;否则返回null
|
*/
|
function MEDIAN(...val){
|
try {
|
let arr = [];
|
if(val&&val.length>0){
|
arr = val.filter(item=>item!=null&&item!=='')
|
const sortedArr = arr.sort((a, b) => a - b);
|
// 计算中位数
|
const half = Math.floor(sortedArr.length / 2);
|
if(arr.length>0){
|
// 如果数组长度是奇数,直接取中间的元素
|
if (sortedArr.length % 2 === 1) {
|
return sortedArr[half];
|
} else { // 如果数组长度是偶数,取中间两个元素的平均值
|
return (sortedArr[half - 1] + sortedArr[half]) / 2;
|
}
|
}else{
|
return null;
|
}
|
}else{
|
return null;
|
}
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
|
/**
|
* 计算幂
|
*
|
* @param str 字符串形式的幂表达式,例如"2^3"
|
* @returns 返回计算后的幂值,如果表达式无效则返回null
|
*/
|
function CalculatePower(str){
|
try {
|
if(str&&str.includes('^')){
|
let arr = str.split('^');
|
if(arr&&arr.length>1){
|
return Math.pow(arr[0],arr[1]);
|
}else{
|
return null;
|
}
|
}
|
} catch (error) {
|
console.log('error---', error)
|
}
|
}
|
|
/**
|
* 根据坐标获取列名
|
* @param {Object} cellId
|
*/
|
function getColumnNameFromId(cellId){
|
try{
|
if (! Array.isArray(cellId)) {
|
cellId = cellId.split('-');
|
}
|
var i = cellId[0];
|
var letter = '';
|
if (i > 701) {
|
letter += String.fromCharCode(64 + parseInt(i / 676));
|
letter += String.fromCharCode(64 + parseInt((i % 676) / 26));
|
} else if (i > 25) {
|
letter += String.fromCharCode(64 + parseInt(i / 26));
|
}
|
letter += String.fromCharCode(65 + (i % 26));
|
return letter + (parseInt(cellId[1]) + 1);
|
}catch(e){
|
console.log('error',e)
|
}
|
}
|
/**
|
* 根据列名获取坐标
|
* @param {Object} id
|
* @param {Object} arr
|
*/
|
function getIdFromColumnName(id, arr) {
|
try{
|
// Get the letters
|
var t = /^[a-zA-Z]+/.exec(id);
|
if (t) {
|
// Base 26 calculation
|
var code = 0;
|
for (var i = 0; i < t[0].length; i++) {
|
code += parseInt(t[0].charCodeAt(i) - 64) * Math.pow(26, (t[0].length - 1 - i));
|
}
|
code--;
|
// Make sure jexcel starts on zero
|
if (code < 0) {
|
code = 0;
|
}
|
|
// Number
|
var number = parseInt(/[0-9]+$/.exec(id));
|
if (number > 0) {
|
number--;
|
}
|
|
if (arr == true) {
|
id = [ code, number ];
|
} else {
|
// id = code + '-' + number;
|
id = {
|
c:code,
|
r:number
|
}
|
}
|
}
|
return id;
|
}catch(e){
|
console.log('error',e)
|
}
|
}
|
|
/**
|
* 更改参数
|
*
|
* @param f 参数列表
|
* @returns 返回一个包含坐标信息的数组
|
*/
|
function changeParameter(f){
|
try {
|
let arr = getABCList(f)
|
let arr2 = []
|
arr.forEach(item=>{
|
if(item.includes(':')){
|
let r0 = getIdFromColumnName(item.split(':')[0]).r;
|
let c0 = getIdFromColumnName(item.split(':')[0]).c;
|
let r1 = getIdFromColumnName(item.split(':')[1]).r;
|
let c1 = getIdFromColumnName(item.split(':')[1]).c;
|
for (let i = Number(r0); i <= Number(r1); i++) {
|
for (let u = Number(c0); u <= Number(c1); u++) {
|
arr2.push({
|
r: i,
|
c: u
|
})
|
}
|
}
|
}else{
|
arr2.push(getIdFromColumnName(item))
|
}
|
})
|
return arr2;
|
} catch (error) {
|
console.log('error',error)
|
}
|
}
|
/**
|
* 获取包含 ABC 字符的列表
|
*
|
* @param f 字符串,包含需要解析的公式或表达式
|
* @returns 包含 ABC 字符的数组列表
|
*/
|
function getABCList(f){
|
try {
|
let regex = /[=\+\-\*\%\(\)\/\^\s]/g;
|
let fouList = [
|
"SUM",
|
'MAX',
|
'MIN',
|
'AVERAGE',
|
'ABS',
|
]
|
f = f.replace(regex, ',').replace(new RegExp('"&', 'g'),'').replace(new RegExp('&"', 'g'),'')
|
fouList.forEach(item=>{
|
f = f.replace(new RegExp(item, 'g'),',')
|
})
|
let arr = f.split(',').filter(item=>{
|
return item&& /[a-zA-Z]/.test(item)&&item!='undefined'&&item!='null'
|
});
|
return arr;
|
} catch (error) {
|
console.log('error',error)
|
}
|
}
|
/**
|
* 获取所有单元格
|
*
|
* @param f 表格数据或相关参数
|
* @returns 返回一个对象,其键为单元格的唯一标识符(由列和行ID拼接而成),值为null
|
*/
|
function getAllCell(f){
|
try {
|
let arr = changeParameter(f)
|
let arr0 = {}
|
arr.forEach(item=>{
|
arr0[getColumnNameFromId(`${item.c}`+'-'+`${item.r}`)] = null
|
})
|
return arr0;
|
} catch (error) {
|
console.log('error',error)
|
}
|
}
|
|
|
/**
|
* 计算函数
|
*
|
* @param f 字符串类型,表示待计算的公式
|
* @param comValue 对象类型,表示要替换的单元格值,键为单元格名称,值为替换后的值
|
* @returns 返回计算后的结果,如果计算失败则返回0
|
*/
|
function compute(f,comValue, isPoint){
|
try {
|
let str = f
|
// 获取单元格对应值
|
let arr = getAllCell(f)
|
for (var a in comValue) {
|
if(comValue[a]!=='undefined'&&comValue[a]!=='null'&&comValue[a]!==undefined){
|
if(typeof(comValue[a])=='string'&&comValue[a].includes('^')){
|
// 计算幂次
|
arr[a] = CalculatePower(comValue[a])
|
} else{
|
arr[a] = comValue[a]
|
}
|
}
|
}
|
// 解析公式参数,特别是带:的
|
let arr0 = getABCList(f)
|
let obj = {}
|
arr0.forEach(item=>{
|
if(item.includes(':')){
|
let arr1 = []
|
let r0 = getIdFromColumnName(item.split(':')[0]).r;
|
let c0 = getIdFromColumnName(item.split(':')[0]).c;
|
let r1 = getIdFromColumnName(item.split(':')[1]).r;
|
let c1 = getIdFromColumnName(item.split(':')[1]).c;
|
for (let i = Number(r0); i <= Number(r1); i++) {
|
for (let u = Number(c0); u <= Number(c1); u++) {
|
arr1.push({
|
r: i,
|
c: u
|
})
|
}
|
}
|
let arr2 = []
|
arr1.forEach(m=>{
|
arr2.push(getColumnNameFromId(`${m.c}`+'-'+`${m.r}`))
|
})
|
obj[item.split(':').join('-')] = arr2.join(',')
|
}else{
|
obj[item] = item
|
}
|
})
|
str = str.replace(new RegExp(':', 'g'),'-')
|
// 替换参数
|
for (var a in obj) {
|
str = str.replace(new RegExp(a, 'g'),obj[a])
|
}
|
// 计算
|
for (var a in arr) {
|
str = str.replace(new RegExp(a, 'g'),arr[a])
|
}
|
if(str.includes(',,')){
|
str = str.replace(new RegExp(',,', 'g'),',')
|
}
|
if(str.includes(',,')){
|
str = str.replace(new RegExp(',,', 'g'),',')
|
}
|
if(str.includes(',,')){
|
str = str.replace(new RegExp(',,', 'g'),',')
|
}
|
// console.log('str', str)
|
if(str.includes('&"/"&')){
|
return str.replace(new RegExp('&"/"&', 'g'),'/').replace(new RegExp('//', 'g'),'')
|
} else if (isPoint) {
|
return str.replace('ABS', '').replace(/\(|\)/g, '')
|
}else {
|
console.log('str', str)
|
return eval(str)
|
}
|
} catch (error) {
|
console.log('error',error)
|
}
|
}
|
|
|
|
|
/*
|
* big.js v5.2.2
|
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
|
* Copyright (c) 2018 Michael Mclaughlin <M8ch88l@gmail.com>
|
* https://github.com/MikeMcl/big.js/LICENCE
|
*/
|
;(function (GLOBAL) {
|
'use strict';
|
var Big,
|
|
|
/************************************** EDITABLE DEFAULTS *****************************************/
|
|
|
// The default values below must be integers within the stated ranges.
|
|
/*
|
* The maximum number of decimal places (DP) of the results of operations involving division:
|
* div and sqrt, and pow with negative exponents.
|
*/
|
DP = 20, // 0 to MAX_DP
|
|
/*
|
* The rounding mode (RM) used when rounding to the above decimal places.
|
*
|
* 0 Towards zero (i.e. truncate, no rounding). (ROUND_DOWN)
|
* 1 To nearest neighbour. If equidistant, round up. (ROUND_HALF_UP)
|
* 2 To nearest neighbour. If equidistant, to even. (ROUND_HALF_EVEN)
|
* 3 Away from zero. (ROUND_UP)
|
*/
|
RM = 1, // 0, 1, 2 or 3
|
|
// The maximum value of DP and Big.DP.
|
MAX_DP = 1E6, // 0 to 1000000
|
|
// The maximum magnitude of the exponent argument to the pow method.
|
MAX_POWER = 1E6, // 1 to 1000000
|
|
/*
|
* The negative exponent (NE) at and beneath which toString returns exponential notation.
|
* (JavaScript numbers: -7)
|
* -1000000 is the minimum recommended exponent value of a Big.
|
*/
|
NE = -7, // 0 to -1000000
|
|
/*
|
* The positive exponent (PE) at and above which toString returns exponential notation.
|
* (JavaScript numbers: 21)
|
* 1000000 is the maximum recommended exponent value of a Big.
|
* (This limit is not enforced or checked.)
|
*/
|
PE = 21, // 0 to 1000000
|
|
|
/**************************************************************************************************/
|
|
|
// Error messages.
|
NAME = '[big.js] ',
|
INVALID = NAME + 'Invalid ',
|
INVALID_DP = INVALID + 'decimal places',
|
INVALID_RM = INVALID + 'rounding mode',
|
DIV_BY_ZERO = NAME + 'Division by zero',
|
|
// The shared prototype object.
|
P = {},
|
UNDEFINED = void 0,
|
NUMERIC = /^-?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i;
|
|
|
/*
|
* Create and return a Big constructor.
|
*
|
*/
|
function _Big_() {
|
|
/*
|
* The Big constructor and exported function.
|
* Create and return a new instance of a Big number object.
|
*
|
* n {number|string|Big} A numeric value.
|
*/
|
function Big(n) {
|
var x = this;
|
|
// Enable constructor usage without new.
|
if (!(x instanceof Big)) return n === UNDEFINED ? _Big_() : new Big(n);
|
|
// Duplicate.
|
if (n instanceof Big) {
|
x.s = n.s;
|
x.e = n.e;
|
x.c = n.c.slice();
|
} else {
|
parse(x, n);
|
}
|
|
/*
|
* Retain a reference to this Big constructor, and shadow Big.prototype.constructor which
|
* points to Object.
|
*/
|
x.constructor = Big;
|
}
|
|
Big.prototype = P;
|
Big.DP = DP;
|
Big.RM = RM;
|
Big.NE = NE;
|
Big.PE = PE;
|
Big.version = '5.2.2';
|
|
return Big;
|
}
|
|
|
/*
|
* Parse the number or string value passed to a Big constructor.
|
*
|
* x {Big} A Big number instance.
|
* n {number|string} A numeric value.
|
*/
|
function parse(x, n) {
|
var e, i, nl;
|
|
// Minus zero?
|
if (n === 0 && 1 / n < 0) n = '-0';
|
else if (!NUMERIC.test(n += '')) throw Error(INVALID + 'number');
|
|
// Determine sign.
|
x.s = n.charAt(0) == '-' ? (n = n.slice(1), -1) : 1;
|
|
// Decimal point?
|
if ((e = n.indexOf('.')) > -1) n = n.replace('.', '');
|
|
// Exponential form?
|
if ((i = n.search(/e/i)) > 0) {
|
|
// Determine exponent.
|
if (e < 0) e = i;
|
e += +n.slice(i + 1);
|
n = n.substring(0, i);
|
} else if (e < 0) {
|
|
// Integer.
|
e = n.length;
|
}
|
|
nl = n.length;
|
|
// Determine leading zeros.
|
for (i = 0; i < nl && n.charAt(i) == '0';) ++i;
|
|
if (i == nl) {
|
|
// Zero.
|
x.c = [x.e = 0];
|
} else {
|
|
// Determine trailing zeros.
|
for (; nl > 0 && n.charAt(--nl) == '0';);
|
x.e = e - i - 1;
|
x.c = [];
|
|
// Convert string to array of digits without leading/trailing zeros.
|
for (e = 0; i <= nl;) x.c[e++] = +n.charAt(i++);
|
}
|
|
return x;
|
}
|
|
|
/*
|
* Round Big x to a maximum of dp decimal places using rounding mode rm.
|
* Called by stringify, P.div, P.round and P.sqrt.
|
*
|
* x {Big} The Big to round.
|
* dp {number} Integer, 0 to MAX_DP inclusive.
|
* rm {number} 0, 1, 2 or 3 (DOWN, HALF_UP, HALF_EVEN, UP)
|
* [more] {boolean} Whether the result of division was truncated.
|
*/
|
function round(x, dp, rm, more) {
|
var xc = x.c,
|
i = x.e + dp + 1;
|
|
if (i < xc.length) {
|
if (rm === 1) {
|
|
// xc[i] is the digit after the digit that may be rounded up.
|
more = xc[i] >= 5;
|
} else if (rm === 2) {
|
more = xc[i] > 5 || xc[i] == 5 &&
|
(more || i < 0 || xc[i + 1] !== UNDEFINED || xc[i - 1] & 1);
|
} else if (rm === 3) {
|
more = more || !!xc[0];
|
} else {
|
more = false;
|
if (rm !== 0) throw Error(INVALID_RM);
|
}
|
|
if (i < 1) {
|
xc.length = 1;
|
|
if (more) {
|
|
// 1, 0.1, 0.01, 0.001, 0.0001 etc.
|
x.e = -dp;
|
xc[0] = 1;
|
} else {
|
|
// Zero.
|
xc[0] = x.e = 0;
|
}
|
} else {
|
|
// Remove any digits after the required decimal places.
|
xc.length = i--;
|
|
// Round up?
|
if (more) {
|
|
// Rounding up may mean the previous digit has to be rounded up.
|
for (; ++xc[i] > 9;) {
|
xc[i] = 0;
|
if (!i--) {
|
++x.e;
|
xc.unshift(1);
|
}
|
}
|
}
|
|
// Remove trailing zeros.
|
for (i = xc.length; !xc[--i];) xc.pop();
|
}
|
} else if (rm < 0 || rm > 3 || rm !== ~~rm) {
|
throw Error(INVALID_RM);
|
}
|
|
return x;
|
}
|
|
|
/*
|
* Return a string representing the value of Big x in normal or exponential notation.
|
* Handles P.toExponential, P.toFixed, P.toJSON, P.toPrecision, P.toString and P.valueOf.
|
*
|
* x {Big}
|
* id? {number} Caller id.
|
* 1 toExponential
|
* 2 toFixed
|
* 3 toPrecision
|
* 4 valueOf
|
* n? {number|undefined} Caller's argument.
|
* k? {number|undefined}
|
*/
|
function stringify(x, id, n, k) {
|
var e, s,
|
Big = x.constructor,
|
z = !x.c[0];
|
|
if (n !== UNDEFINED) {
|
if (n !== ~~n || n < (id == 3) || n > MAX_DP) {
|
throw Error(id == 3 ? INVALID + 'precision' : INVALID_DP);
|
}
|
|
x = new Big(x);
|
|
// The index of the digit that may be rounded up.
|
n = k - x.e;
|
|
// Round?
|
if (x.c.length > ++k) round(x, n, Big.RM);
|
|
// toFixed: recalculate k as x.e may have changed if value rounded up.
|
if (id == 2) k = x.e + n + 1;
|
|
// Append zeros?
|
for (; x.c.length < k;) x.c.push(0);
|
}
|
|
e = x.e;
|
s = x.c.join('');
|
n = s.length;
|
|
// Exponential notation?
|
if (id != 2 && (id == 1 || id == 3 && k <= e || e <= Big.NE || e >= Big.PE)) {
|
s = s.charAt(0) + (n > 1 ? '.' + s.slice(1) : '') + (e < 0 ? 'e' : 'e+') + e;
|
|
// Normal notation.
|
} else if (e < 0) {
|
for (; ++e;) s = '0' + s;
|
s = '0.' + s;
|
} else if (e > 0) {
|
if (++e > n) for (e -= n; e--;) s += '0';
|
else if (e < n) s = s.slice(0, e) + '.' + s.slice(e);
|
} else if (n > 1) {
|
s = s.charAt(0) + '.' + s.slice(1);
|
}
|
|
return x.s < 0 && (!z || id == 4) ? '-' + s : s;
|
}
|
|
|
// Prototype/instance methods
|
|
|
/*
|
* Return a new Big whose value is the absolute value of this Big.
|
*/
|
P.abs = function () {
|
var x = new this.constructor(this);
|
x.s = 1;
|
return x;
|
};
|
|
|
/*
|
* Return 1 if the value of this Big is greater than the value of Big y,
|
* -1 if the value of this Big is less than the value of Big y, or
|
* 0 if they have the same value.
|
*/
|
P.cmp = function (y) {
|
var isneg,
|
x = this,
|
xc = x.c,
|
yc = (y = new x.constructor(y)).c,
|
i = x.s,
|
j = y.s,
|
k = x.e,
|
l = y.e;
|
|
// Either zero?
|
if (!xc[0] || !yc[0]) return !xc[0] ? !yc[0] ? 0 : -j : i;
|
|
// Signs differ?
|
if (i != j) return i;
|
|
isneg = i < 0;
|
|
// Compare exponents.
|
if (k != l) return k > l ^ isneg ? 1 : -1;
|
|
j = (k = xc.length) < (l = yc.length) ? k : l;
|
|
// Compare digit by digit.
|
for (i = -1; ++i < j;) {
|
if (xc[i] != yc[i]) return xc[i] > yc[i] ^ isneg ? 1 : -1;
|
}
|
|
// Compare lengths.
|
return k == l ? 0 : k > l ^ isneg ? 1 : -1;
|
};
|
|
|
/*
|
* Return a new Big whose value is the value of this Big divided by the value of Big y, rounded,
|
* if necessary, to a maximum of Big.DP decimal places using rounding mode Big.RM.
|
*/
|
P.div = function (y) {
|
var x = this,
|
Big = x.constructor,
|
a = x.c, // dividend
|
b = (y = new Big(y)).c, // divisor
|
k = x.s == y.s ? 1 : -1,
|
dp = Big.DP;
|
|
if (dp !== ~~dp || dp < 0 || dp > MAX_DP) throw Error(INVALID_DP);
|
|
// Divisor is zero?
|
if (!b[0]) throw Error(DIV_BY_ZERO);
|
|
// Dividend is 0? Return +-0.
|
if (!a[0]) return new Big(k * 0);
|
|
var bl, bt, n, cmp, ri,
|
bz = b.slice(),
|
ai = bl = b.length,
|
al = a.length,
|
r = a.slice(0, bl), // remainder
|
rl = r.length,
|
q = y, // quotient
|
qc = q.c = [],
|
qi = 0,
|
d = dp + (q.e = x.e - y.e) + 1; // number of digits of the result
|
|
q.s = k;
|
k = d < 0 ? 0 : d;
|
|
// Create version of divisor with leading zero.
|
bz.unshift(0);
|
|
// Add zeros to make remainder as long as divisor.
|
for (; rl++ < bl;) r.push(0);
|
|
do {
|
|
// n is how many times the divisor goes into current remainder.
|
for (n = 0; n < 10; n++) {
|
|
// Compare divisor and remainder.
|
if (bl != (rl = r.length)) {
|
cmp = bl > rl ? 1 : -1;
|
} else {
|
for (ri = -1, cmp = 0; ++ri < bl;) {
|
if (b[ri] != r[ri]) {
|
cmp = b[ri] > r[ri] ? 1 : -1;
|
break;
|
}
|
}
|
}
|
|
// If divisor < remainder, subtract divisor from remainder.
|
if (cmp < 0) {
|
|
// Remainder can't be more than 1 digit longer than divisor.
|
// Equalise lengths using divisor with extra leading zero?
|
for (bt = rl == bl ? b : bz; rl;) {
|
if (r[--rl] < bt[rl]) {
|
ri = rl;
|
for (; ri && !r[--ri];) r[ri] = 9;
|
--r[ri];
|
r[rl] += 10;
|
}
|
r[rl] -= bt[rl];
|
}
|
|
for (; !r[0];) r.shift();
|
} else {
|
break;
|
}
|
}
|
|
// Add the digit n to the result array.
|
qc[qi++] = cmp ? n : ++n;
|
|
// Update the remainder.
|
if (r[0] && cmp) r[rl] = a[ai] || 0;
|
else r = [a[ai]];
|
|
} while ((ai++ < al || r[0] !== UNDEFINED) && k--);
|
|
// Leading zero? Do not remove if result is simply zero (qi == 1).
|
if (!qc[0] && qi != 1) {
|
|
// There can't be more than one zero.
|
qc.shift();
|
q.e--;
|
}
|
|
// Round?
|
if (qi > d) round(q, dp, Big.RM, r[0] !== UNDEFINED);
|
|
return q;
|
};
|
|
|
/*
|
* Return true if the value of this Big is equal to the value of Big y, otherwise return false.
|
*/
|
P.eq = function (y) {
|
return !this.cmp(y);
|
};
|
|
|
/*
|
* Return true if the value of this Big is greater than the value of Big y, otherwise return
|
* false.
|
*/
|
P.gt = function (y) {
|
return this.cmp(y) > 0;
|
};
|
|
|
/*
|
* Return true if the value of this Big is greater than or equal to the value of Big y, otherwise
|
* return false.
|
*/
|
P.gte = function (y) {
|
return this.cmp(y) > -1;
|
};
|
|
|
/*
|
* Return true if the value of this Big is less than the value of Big y, otherwise return false.
|
*/
|
P.lt = function (y) {
|
return this.cmp(y) < 0;
|
};
|
|
|
/*
|
* Return true if the value of this Big is less than or equal to the value of Big y, otherwise
|
* return false.
|
*/
|
P.lte = function (y) {
|
return this.cmp(y) < 1;
|
};
|
|
|
/*
|
* Return a new Big whose value is the value of this Big minus the value of Big y.
|
*/
|
P.minus = P.sub = function (y) {
|
var i, j, t, xlty,
|
x = this,
|
Big = x.constructor,
|
a = x.s,
|
b = (y = new Big(y)).s;
|
|
// Signs differ?
|
if (a != b) {
|
y.s = -b;
|
return x.plus(y);
|
}
|
|
var xc = x.c.slice(),
|
xe = x.e,
|
yc = y.c,
|
ye = y.e;
|
|
// Either zero?
|
if (!xc[0] || !yc[0]) {
|
|
// y is non-zero? x is non-zero? Or both are zero.
|
return yc[0] ? (y.s = -b, y) : new Big(xc[0] ? x : 0);
|
}
|
|
// Determine which is the bigger number. Prepend zeros to equalise exponents.
|
if (a = xe - ye) {
|
|
if (xlty = a < 0) {
|
a = -a;
|
t = xc;
|
} else {
|
ye = xe;
|
t = yc;
|
}
|
|
t.reverse();
|
for (b = a; b--;) t.push(0);
|
t.reverse();
|
} else {
|
|
// Exponents equal. Check digit by digit.
|
j = ((xlty = xc.length < yc.length) ? xc : yc).length;
|
|
for (a = b = 0; b < j; b++) {
|
if (xc[b] != yc[b]) {
|
xlty = xc[b] < yc[b];
|
break;
|
}
|
}
|
}
|
|
// x < y? Point xc to the array of the bigger number.
|
if (xlty) {
|
t = xc;
|
xc = yc;
|
yc = t;
|
y.s = -y.s;
|
}
|
|
/*
|
* Append zeros to xc if shorter. No need to add zeros to yc if shorter as subtraction only
|
* needs to start at yc.length.
|
*/
|
if ((b = (j = yc.length) - (i = xc.length)) > 0) for (; b--;) xc[i++] = 0;
|
|
// Subtract yc from xc.
|
for (b = i; j > a;) {
|
if (xc[--j] < yc[j]) {
|
for (i = j; i && !xc[--i];) xc[i] = 9;
|
--xc[i];
|
xc[j] += 10;
|
}
|
|
xc[j] -= yc[j];
|
}
|
|
// Remove trailing zeros.
|
for (; xc[--b] === 0;) xc.pop();
|
|
// Remove leading zeros and adjust exponent accordingly.
|
for (; xc[0] === 0;) {
|
xc.shift();
|
--ye;
|
}
|
|
if (!xc[0]) {
|
|
// n - n = +0
|
y.s = 1;
|
|
// Result must be zero.
|
xc = [ye = 0];
|
}
|
|
y.c = xc;
|
y.e = ye;
|
|
return y;
|
};
|
|
|
/*
|
* Return a new Big whose value is the value of this Big modulo the value of Big y.
|
*/
|
P.mod = function (y) {
|
var ygtx,
|
x = this,
|
Big = x.constructor,
|
a = x.s,
|
b = (y = new Big(y)).s;
|
|
if (!y.c[0]) throw Error(DIV_BY_ZERO);
|
|
x.s = y.s = 1;
|
ygtx = y.cmp(x) == 1;
|
x.s = a;
|
y.s = b;
|
|
if (ygtx) return new Big(x);
|
|
a = Big.DP;
|
b = Big.RM;
|
Big.DP = Big.RM = 0;
|
x = x.div(y);
|
Big.DP = a;
|
Big.RM = b;
|
|
return this.minus(x.times(y));
|
};
|
|
|
/*
|
* Return a new Big whose value is the value of this Big plus the value of Big y.
|
*/
|
P.plus = P.add = function (y) {
|
var t,
|
x = this,
|
Big = x.constructor,
|
a = x.s,
|
b = (y = new Big(y)).s;
|
|
// Signs differ?
|
if (a != b) {
|
y.s = -b;
|
return x.minus(y);
|
}
|
|
var xe = x.e,
|
xc = x.c,
|
ye = y.e,
|
yc = y.c;
|
|
// Either zero? y is non-zero? x is non-zero? Or both are zero.
|
if (!xc[0] || !yc[0]) return yc[0] ? y : new Big(xc[0] ? x : a * 0);
|
|
xc = xc.slice();
|
|
// Prepend zeros to equalise exponents.
|
// Note: reverse faster than unshifts.
|
if (a = xe - ye) {
|
if (a > 0) {
|
ye = xe;
|
t = yc;
|
} else {
|
a = -a;
|
t = xc;
|
}
|
|
t.reverse();
|
for (; a--;) t.push(0);
|
t.reverse();
|
}
|
|
// Point xc to the longer array.
|
if (xc.length - yc.length < 0) {
|
t = yc;
|
yc = xc;
|
xc = t;
|
}
|
|
a = yc.length;
|
|
// Only start adding at yc.length - 1 as the further digits of xc can be left as they are.
|
for (b = 0; a; xc[a] %= 10) b = (xc[--a] = xc[a] + yc[a] + b) / 10 | 0;
|
|
// No need to check for zero, as +x + +y != 0 && -x + -y != 0
|
|
if (b) {
|
xc.unshift(b);
|
++ye;
|
}
|
|
// Remove trailing zeros.
|
for (a = xc.length; xc[--a] === 0;) xc.pop();
|
|
y.c = xc;
|
y.e = ye;
|
|
return y;
|
};
|
|
|
/*
|
* Return a Big whose value is the value of this Big raised to the power n.
|
* If n is negative, round to a maximum of Big.DP decimal places using rounding
|
* mode Big.RM.
|
*
|
* n {number} Integer, -MAX_POWER to MAX_POWER inclusive.
|
*/
|
P.pow = function (n) {
|
var x = this,
|
one = new x.constructor(1),
|
y = one,
|
isneg = n < 0;
|
|
if (n !== ~~n || n < -MAX_POWER || n > MAX_POWER) throw Error(INVALID + 'exponent');
|
if (isneg) n = -n;
|
|
for (;;) {
|
if (n & 1) y = y.times(x);
|
n >>= 1;
|
if (!n) break;
|
x = x.times(x);
|
}
|
|
return isneg ? one.div(y) : y;
|
};
|
|
|
/*
|
* Return a new Big whose value is the value of this Big rounded using rounding mode rm
|
* to a maximum of dp decimal places, or, if dp is negative, to an integer which is a
|
* multiple of 10**-dp.
|
* If dp is not specified, round to 0 decimal places.
|
* If rm is not specified, use Big.RM.
|
*
|
* dp? {number} Integer, -MAX_DP to MAX_DP inclusive.
|
* rm? 0, 1, 2 or 3 (ROUND_DOWN, ROUND_HALF_UP, ROUND_HALF_EVEN, ROUND_UP)
|
*/
|
P.round = function (dp, rm) {
|
var Big = this.constructor;
|
if (dp === UNDEFINED) dp = 0;
|
else if (dp !== ~~dp || dp < -MAX_DP || dp > MAX_DP) throw Error(INVALID_DP);
|
return round(new Big(this), dp, rm === UNDEFINED ? Big.RM : rm);
|
};
|
|
|
/*
|
* Return a new Big whose value is the square root of the value of this Big, rounded, if
|
* necessary, to a maximum of Big.DP decimal places using rounding mode Big.RM.
|
*/
|
P.sqrt = function () {
|
var r, c, t,
|
x = this,
|
Big = x.constructor,
|
s = x.s,
|
e = x.e,
|
half = new Big(0.5);
|
|
// Zero?
|
if (!x.c[0]) return new Big(x);
|
|
// Negative?
|
if (s < 0) throw Error(NAME + 'No square root');
|
|
// Estimate.
|
s = Math.sqrt(x + '');
|
|
// Math.sqrt underflow/overflow?
|
// Re-estimate: pass x coefficient to Math.sqrt as integer, then adjust the result exponent.
|
if (s === 0 || s === 1 / 0) {
|
c = x.c.join('');
|
if (!(c.length + e & 1)) c += '0';
|
s = Math.sqrt(c);
|
e = ((e + 1) / 2 | 0) - (e < 0 || e & 1);
|
r = new Big((s == 1 / 0 ? '1e' : (s = s.toExponential()).slice(0, s.indexOf('e') + 1)) + e);
|
} else {
|
r = new Big(s);
|
}
|
|
e = r.e + (Big.DP += 4);
|
|
// Newton-Raphson iteration.
|
do {
|
t = r;
|
r = half.times(t.plus(x.div(t)));
|
} while (t.c.slice(0, e).join('') !== r.c.slice(0, e).join(''));
|
|
return round(r, Big.DP -= 4, Big.RM);
|
};
|
|
|
/*
|
* Return a new Big whose value is the value of this Big times the value of Big y.
|
*/
|
P.times = P.mul = function (y) {
|
var c,
|
x = this,
|
Big = x.constructor,
|
xc = x.c,
|
yc = (y = new Big(y)).c,
|
a = xc.length,
|
b = yc.length,
|
i = x.e,
|
j = y.e;
|
|
// Determine sign of result.
|
y.s = x.s == y.s ? 1 : -1;
|
|
// Return signed 0 if either 0.
|
if (!xc[0] || !yc[0]) return new Big(y.s * 0);
|
|
// Initialise exponent of result as x.e + y.e.
|
y.e = i + j;
|
|
// If array xc has fewer digits than yc, swap xc and yc, and lengths.
|
if (a < b) {
|
c = xc;
|
xc = yc;
|
yc = c;
|
j = a;
|
a = b;
|
b = j;
|
}
|
|
// Initialise coefficient array of result with zeros.
|
for (c = new Array(j = a + b); j--;) c[j] = 0;
|
|
// Multiply.
|
|
// i is initially xc.length.
|
for (i = b; i--;) {
|
b = 0;
|
|
// a is yc.length.
|
for (j = a + i; j > i;) {
|
|
// Current sum of products at this digit position, plus carry.
|
b = c[j] + yc[i] * xc[j - i - 1] + b;
|
c[j--] = b % 10;
|
|
// carry
|
b = b / 10 | 0;
|
}
|
|
c[j] = (c[j] + b) % 10;
|
}
|
|
// Increment result exponent if there is a final carry, otherwise remove leading zero.
|
if (b) ++y.e;
|
else c.shift();
|
|
// Remove trailing zeros.
|
for (i = c.length; !c[--i];) c.pop();
|
y.c = c;
|
|
return y;
|
};
|
|
|
/*
|
* Return a string representing the value of this Big in exponential notation to dp fixed decimal
|
* places and rounded using Big.RM.
|
*
|
* dp? {number} Integer, 0 to MAX_DP inclusive.
|
*/
|
P.toExponential = function (dp) {
|
return stringify(this, 1, dp, dp);
|
};
|
|
|
/*
|
* Return a string representing the value of this Big in normal notation to dp fixed decimal
|
* places and rounded using Big.RM.
|
*
|
* dp? {number} Integer, 0 to MAX_DP inclusive.
|
*
|
* (-0).toFixed(0) is '0', but (-0.1).toFixed(0) is '-0'.
|
* (-0).toFixed(1) is '0.0', but (-0.01).toFixed(1) is '-0.0'.
|
*/
|
P.toFixed = function (dp) {
|
return stringify(this, 2, dp, this.e + dp);
|
};
|
|
|
/*
|
* Return a string representing the value of this Big rounded to sd significant digits using
|
* Big.RM. Use exponential notation if sd is less than the number of digits necessary to represent
|
* the integer part of the value in normal notation.
|
*
|
* sd {number} Integer, 1 to MAX_DP inclusive.
|
*/
|
P.toPrecision = function (sd) {
|
return stringify(this, 3, sd, sd - 1);
|
};
|
|
|
/*
|
* Return a string representing the value of this Big.
|
* Return exponential notation if this Big has a positive exponent equal to or greater than
|
* Big.PE, or a negative exponent equal to or less than Big.NE.
|
* Omit the sign for negative zero.
|
*/
|
P.toString = function () {
|
return stringify(this);
|
};
|
|
|
/*
|
* Return a string representing the value of this Big.
|
* Return exponential notation if this Big has a positive exponent equal to or greater than
|
* Big.PE, or a negative exponent equal to or less than Big.NE.
|
* Include the sign for negative zero.
|
*/
|
P.valueOf = P.toJSON = function () {
|
return stringify(this, 4);
|
};
|
|
|
// Export
|
|
|
Big = _Big_();
|
|
Big['default'] = Big.Big = Big;
|
|
//AMD.
|
if (typeof define === 'function' && define.amd) {
|
define(function () { return Big; });
|
|
// Node and other CommonJS-like environments that support module.exports.
|
} else if (typeof module !== 'undefined' && module.exports) {
|
module.exports = Big;
|
|
//Browser.
|
} else {
|
GLOBAL.Big = Big;
|
}
|
})(this);
|