valentina/src/libs/vpatterndb/calculator.h

78 lines
2.7 KiB
C
Raw Normal View History

/************************************************************************
**
** @file calculator.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date November 15, 2013
**
** @brief
** @copyright
** This source code is part of the Valentina project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2013-2015 Valentina project
** <https://gitlab.com/smart-pattern/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/>.
**
*************************************************************************/
2013-07-17 13:38:11 +02:00
#ifndef CALCULATOR_H
#define CALCULATOR_H
#include <QHash>
#include <QMap>
#include <QString>
#include <QtGlobal>
#include "../qmuparser/qmuformulabase.h"
class VInternalVariable;
/**
* @brief The Calculator class for calculation formula.
*
* Main purpose make easy evaluate value of formula and get tokens.
* Note. If created to many parser for different purpes in the same time parser can work wrong.
* Example:
* DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data);
2015-02-03 11:17:04 +01:00
* dialog->SetFormula(formula);
* if (dialog->exec() == QDialog::Accepted)
* {
2015-02-03 11:17:04 +01:00
* formula = dialog->GetFormula();
* //Need delete dialog here because parser in dialog don't allow use correct separator for parsing here.
* //Don't know why.
* delete dialog;
* QScopedPointer<Calculator> cal(new Calculator());
* result = cal->EvalFormula(data->PlainVariables(), formula);
* }
*/
2021-09-25 16:18:33 +02:00
class Calculator final : public qmu::QmuFormulaBase
{
2013-07-17 13:38:11 +02:00
public:
Calculator();
2023-07-13 16:49:20 +02:00
~Calculator() override = default;
2023-05-03 13:07:02 +02:00
auto EvalFormula(const QHash<QString, QSharedPointer<VInternalVariable>> *vars, const QString &formula) -> qreal;
protected:
2023-05-03 13:07:02 +02:00
static auto VarFactory(const QString &a_szName, void *a_pUserData) -> qreal *;
static auto Warning(const QString &warningMsg, qreal value) -> qreal;
2013-07-17 13:38:11 +02:00
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(Calculator) // NOLINT
2023-07-13 16:49:20 +02:00
QVector<QSharedPointer<qreal>> m_varsValues{};
const QHash<QString, QSharedPointer<VInternalVariable>> *m_vars{nullptr};
2013-07-17 13:38:11 +02:00
};
#endif // CALCULATOR_H