c717196199
--HG-- branch : develop
246 lines
8.9 KiB
C++
246 lines
8.9 KiB
C++
/************************************************************************
|
||
**
|
||
** @file calculator.cpp
|
||
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
||
** @date November 15, 2013
|
||
**
|
||
** @brief
|
||
** @copyright
|
||
** This source code is part of the Valentine project, a pattern making
|
||
** program, whose allow create and modeling patterns of clothing.
|
||
** Copyright (C) 2013 Valentina project
|
||
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
||
**
|
||
** Valentina 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 of the License, or
|
||
** (at your option) any later version.
|
||
**
|
||
** Valentina 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
||
**
|
||
*************************************************************************/
|
||
|
||
#include "calculator.h"
|
||
#include <QDebug>
|
||
#include <QSettings>
|
||
#include "../core/vapplication.h"
|
||
#include "vcontainer.h"
|
||
|
||
using namespace qmu;
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
/**
|
||
* @brief Calculator class constructor. Make easy initialization math parser.
|
||
*
|
||
* This constructor hide initialization variables, operators, character sets.
|
||
* Use this constuctor for evaluation formula. All formulas must be converted to internal look.
|
||
* Example:
|
||
*
|
||
* const QString formula = qApp->FormulaFromUser(edit->text());
|
||
* Calculator *cal = new Calculator(data);
|
||
* const qreal result = cal->EvalFormula(formula);
|
||
* delete cal;
|
||
*
|
||
* @param data pointer to a variable container.
|
||
*/
|
||
Calculator::Calculator(const VContainer *data)
|
||
:QmuParser(), vVarVal(nullptr), data(data)
|
||
{
|
||
InitCharacterSets();
|
||
setAllowSubexpressions(false);//Only one expression per time
|
||
|
||
SetSepForEval();
|
||
}
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
/**
|
||
* @brief Calculator class constructor. Make easy initialization math parser.
|
||
*
|
||
* This constructor hide initialization variables, operators, character sets.
|
||
* Use this constuctor to get tokens from formula. All formulas must be converted to external look.
|
||
* Example:
|
||
*
|
||
* Calculator *cal = new Calculator(formula, false);
|
||
* tokens = cal->GetTokens();
|
||
* numbers = cal->GetNumbers();
|
||
* delete cal;
|
||
*
|
||
* @param formula string with formula.
|
||
* @param fromUser true if we parse formula from user
|
||
*/
|
||
Calculator::Calculator(const QString &formula, bool fromUser)
|
||
:QmuParser(), vVarVal(nullptr), data(nullptr)
|
||
{
|
||
InitCharacterSets();
|
||
setAllowSubexpressions(false);//Only one expression per time
|
||
SetVarFactory(AddVariable, this);
|
||
|
||
SetSepForTr(fromUser);
|
||
|
||
SetExpr(formula);
|
||
//Need run for making tokens. Don't catch exception here, because we want know if formula has error.
|
||
Eval();
|
||
}
|
||
|
||
Calculator::~Calculator()
|
||
{
|
||
delete [] vVarVal;
|
||
}
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
/**
|
||
* @brief eval calculate formula.
|
||
* @param formula string of formula.
|
||
* @return value of formula.
|
||
*/
|
||
qreal Calculator::EvalFormula(const QString &formula)
|
||
{
|
||
SetVarFactory(AddVariable, this);
|
||
SetSepForEval();//Reset separators options
|
||
|
||
SetExpr(formula);
|
||
|
||
qreal result = 0;
|
||
result = Eval();
|
||
|
||
QMap<int, QString> tokens = this->GetTokens();
|
||
if (tokens.isEmpty())
|
||
{
|
||
return result;
|
||
}
|
||
|
||
// Add variables
|
||
InitVariables(data, tokens, formula);
|
||
return Eval();
|
||
}
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
void Calculator::InitVariables(const VContainer *data, const QMap<int, QString> &tokens, const QString &formula)
|
||
{
|
||
if (qApp->patternType() == MeasurementsType::Standard)
|
||
{
|
||
vVarVal = new qreal[2];
|
||
}
|
||
|
||
const QHash<QString, QSharedPointer<VInternalVariable> > *vars = data->DataVariables();
|
||
|
||
QMap<int, QString>::const_iterator i = tokens.constBegin();
|
||
while (i != tokens.constEnd())
|
||
{
|
||
bool found = false;
|
||
if (vars->contains(i.value()))
|
||
{
|
||
QSharedPointer<VInternalVariable> var = vars->value(i.value());
|
||
if ((qApp->patternType() == MeasurementsType::Standard) &&
|
||
(var->GetType() == VarType::Measurement || var->GetType() == VarType::Increment))
|
||
{
|
||
QSharedPointer<VVariable> m = data->GetVariable<VVariable>(i.value());
|
||
m->SetValue(data->size(), data->height());
|
||
}
|
||
DefineVar(i.value(), var->GetValue());
|
||
found = true;
|
||
}
|
||
|
||
if (qApp->patternType() == MeasurementsType::Standard)
|
||
{
|
||
if (i.value() == data->SizeName())
|
||
{
|
||
vVarVal[0] = data->size();
|
||
DefineVar(data->SizeName(), &vVarVal[0]);
|
||
found = true;
|
||
}
|
||
|
||
if (i.value() == data->HeightName())
|
||
{
|
||
vVarVal[1] = data->height();
|
||
DefineVar(data->HeightName(), &vVarVal[1]);
|
||
found = true;
|
||
}
|
||
}
|
||
|
||
if (builInFunctions.contains(i.value()))
|
||
{// We found built-in function
|
||
found = true;
|
||
}
|
||
|
||
if (found == false)
|
||
{
|
||
throw qmu::QmuParserError (ecUNASSIGNABLE_TOKEN, i.value(), formula, i.key());
|
||
}
|
||
++i;
|
||
}
|
||
}
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
void Calculator::InitCharacterSets()
|
||
{
|
||
//String with all unique symbols for supported alpabets.
|
||
// See script alphabets.py for generation and more information.
|
||
//Note. MSVC doen't support normal string concatenation for long string. Thats why we use QStringList in this place.
|
||
QStringList symbols = QStringList() << "ցЀĆЈVӧĎАғΕĖӅИқΝĞơРңњΥĦШҫ̆جگĮаҳѕεشԶиһνԾрυلՆӝшËՎҔPÓՖXӛӟŞӣզhëծpóӞնxßվāŁЃֆĉЋ"
|
||
<< "CŬđҐГΒęҘЛΚŘġҠУGاհЫدԱҰгβطԹõлκKՁÀуςهՉÈыvیՑÐSOřӘћաőcӐթèkàѓżűðsķչøӥӔĀփїІĈЎ"
|
||
<< "ґĐΗЖҙĘȚΟОҡĠآΧЦتЮұİزηжԸغοоÁՀقχцÉՈيюÑՐђӋіәťӆўáŠĺѐfөըnñŰӤӨӹոľЁրăЉŭċБӸēłΔҖ"
|
||
<< "ЙŤěΜӜDСձģΤӰЩīņحҮбưԳصδHйԻŇμӲӴсՃمτƠщՋєLQŹՓŕÖYśÞaգĽæiŽիӓîqճöyջþĂօЄӦĊЌΑĒДҗј"
|
||
<< "ΙȘĚМΡéĵĢФūӚΩبĪЬүќαذԲдҷιظԺмρՂфÇωوՊьÏՒTŚĻJբdçժlïӪղtպӫAւąЇčŃЏĕӯЗΖEțŮĝПΞأĥ"
|
||
<< "ثĹЧΦÆӳЯIسŲԵзζԽпξكՅÄчφNMՍӌяӢՕÔWÎŝÜџёźեägխoӒյôwĶBžսüЂĄև̈ЊČƏљΓВҕĔӮΛКĜΣТҥĤک"
|
||
<< "ЪƯخγвŅԴŪضλкԼĴσтÅՄنъÍՌRӕՔZÝŜbåդﻩjíլļrӵմzýռپêЅքćچЍďӱҒЕůėژșΘØҚНğńءΠFҢХħΨҪ"
|
||
<< "ЭųįҶرҲеԷňعθҺнԿفπÂхՇψÊэšՏÒUəÚѝŻşҤӑâeէŐımկòuշÕúտŔ";
|
||
|
||
// Defining identifier character sets
|
||
DefineNameChars(QStringLiteral("0123456789_") + symbols.join(""));
|
||
DefineOprtChars(symbols.join("") + QStringLiteral("+-*^/?<>=#!$%&|~'_"));
|
||
}
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
// Factory function for creating new parser variables
|
||
// This could as well be a function performing database queries.
|
||
qreal* Calculator::AddVariable(const QString &a_szName, void *a_pUserData)
|
||
{
|
||
Q_UNUSED(a_szName)
|
||
Q_UNUSED(a_pUserData)
|
||
|
||
static qreal value = 0;
|
||
return &value;
|
||
}
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
void Calculator::SetSepForEval()
|
||
{
|
||
SetArgSep(',');
|
||
SetDecSep('.');
|
||
}
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------
|
||
void Calculator::SetSepForTr(bool fromUser)
|
||
{
|
||
if (fromUser)
|
||
{
|
||
bool osSeparatorValue = qApp->getSettings()->value("configuration/osSeparator", 1).toBool();
|
||
|
||
if (osSeparatorValue)
|
||
{
|
||
QLocale loc = QLocale::system();
|
||
SetDecSep(loc.decimalPoint().toLatin1());
|
||
SetThousandsSep(loc.groupSeparator().toLatin1());
|
||
SetArgSep(';');
|
||
}
|
||
else
|
||
{
|
||
SetArgSep(',');
|
||
SetDecSep('.');
|
||
}
|
||
}
|
||
else
|
||
{
|
||
|
||
SetArgSep(',');
|
||
SetDecSep('.');
|
||
}
|
||
}
|