valentina/src/app/container/calculator.h

189 lines
5.8 KiB
C
Raw Normal View History

/************************************************************************
**
** @file calculator.h
** @author Roman Telezhinsky <dismine@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/>.
**
*************************************************************************/
2013-07-17 13:38:11 +02:00
#ifndef CALCULATOR_H
#define CALCULATOR_H
#include "vcontainer.h"
/**
* @brief The Calculator class calculate formulas of pattern. Support operation +,-,/,* and braces.
* Can replace name of variables her value.
2013-07-17 13:38:11 +02:00
*/
class Calculator
{
2013-07-17 13:38:11 +02:00
public:
/**
* @brief Calculator class constructor.
* @param data pointer to a variable container.
2013-07-17 13:38:11 +02:00
*/
explicit Calculator(const VContainer *data):errorMsg(nullptr), token(QString()), tok(0), token_type(0),
prog(QString()), index(0), data(data), debugFormula(QString()){}
2013-07-17 13:38:11 +02:00
/**
* @brief eval calculate formula.
* @param prog string of formula.
* @param errorMsg keep error message.
* @return value of formula.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
qreal eval(QString prog, QString *errorMsg);
2013-07-17 13:38:11 +02:00
private:
Q_DISABLE_COPY(Calculator)
2013-07-17 13:38:11 +02:00
/**
* @brief errorMsg keeps error message of calculation.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
QString *errorMsg;
2013-07-17 13:38:11 +02:00
/**
* @brief token теперішня лексема.
*/
2013-10-27 11:22:44 +01:00
QString token;
2013-07-17 13:38:11 +02:00
/**
* @brief tok internal representation of token.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
qint32 tok;
2013-07-17 13:38:11 +02:00
/**
* @brief token_type type of token.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
qint32 token_type;
2013-07-17 13:38:11 +02:00
/**
* @brief prog string where keeps formula.
2013-07-17 13:38:11 +02:00
*/
QString prog;
2013-07-17 13:38:11 +02:00
/**
* @brief index number character in string of formula.
*/
qint32 index;
/**
* @brief data container with data container of all variables.
2013-07-17 13:38:11 +02:00
*/
2013-07-25 14:00:51 +02:00
const VContainer *data;
2013-07-17 13:38:11 +02:00
/**
* @brief debugFormula decoded string of formula.
*/
2013-10-27 11:22:44 +01:00
QString debugFormula;
/**
* @brief get_exp calculate formula.
* @return value of formula.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
qreal get_exp();
2013-07-17 13:38:11 +02:00
/**
* @brief get_token return next token.
2013-07-17 13:38:11 +02:00
*/
void get_token();
2013-07-17 13:38:11 +02:00
/**
* @brief StrChr checks whether the character belongs to the line.
* @param string string with formula
* @param c character.
* @return true - belongs to the line, false - don't belongs to the line.
2013-07-17 13:38:11 +02:00
*/
static bool StrChr(QString string, QChar c);
2013-07-17 13:38:11 +02:00
/**
* @brief putback returns the readout token back into the flow.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
void putback();
2013-07-17 13:38:11 +02:00
/**
* @brief level2 method of addition and subtraction of two terms.
* @param result result of operation.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
void level2(qreal *result);
2013-07-17 13:38:11 +02:00
/**
* @brief level3 method of multiplication, division, finding percent.
* @param result result of operation.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
void level3(qreal *result);
2013-07-17 13:38:11 +02:00
/**
* @brief level4 method of degree two numbers.
* @param result result of operation.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
void level4(qreal *result);
2013-07-17 13:38:11 +02:00
/**
* @brief level5 method for finding unary plus or minus.
* @param result result of operation.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
void level5(qreal *result);
2013-07-17 13:38:11 +02:00
/**
* @brief level6 processing method of the expression in brackets.
* @param result result of operation.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
void level6(qreal *result);
2013-07-17 13:38:11 +02:00
/**
* @brief primitive method of determining the value of a variable by its name.
* @param result result of operation.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
void primitive(qreal *result);
2013-07-17 13:38:11 +02:00
/**
* @brief arith perform the specified arithmetic. The result is written to the first element.
* @param o sign of operation.
* @param r first element.
* @param h second element.
2013-07-17 13:38:11 +02:00
*/
static void arith(QChar o, qreal *r, qreal *h);
2013-07-17 13:38:11 +02:00
/**
* @brief unary method changes the sign.
* @param o sign of symbol.
* @param r element.
2013-07-17 13:38:11 +02:00
*/
static void unary(QChar o, qreal *r);
2013-07-17 13:38:11 +02:00
/**
* @brief find_var method is finding variable by name.
* @param s name of variable.
* @return value of variable.
2013-07-17 13:38:11 +02:00
*/
2013-10-27 11:22:44 +01:00
qreal find_var(QString s);
2013-07-17 13:38:11 +02:00
/**
* @brief serror report an error
* @param error error code
2013-07-17 13:38:11 +02:00
*/
// cppcheck-suppress functionStatic
2013-10-27 11:22:44 +01:00
void serror(qint32 error);
2013-07-17 13:38:11 +02:00
/**
* @brief look_up finding the internal format for the current token in the token table.
* @param s name of token.
* @return internal number of token.
2013-07-17 13:38:11 +02:00
*/
static char look_up(QString s);
2013-07-17 13:38:11 +02:00
/**
* @brief isdelim return true if c delimiter.
* @param c character.
* @return true - delimiter, false - do not delimiter.
2013-07-17 13:38:11 +02:00
*/
static bool isdelim(QChar c);
2013-07-17 13:38:11 +02:00
/**
* @brief isdelim return true if c delimiter.
* @param c character.
* @return true - delimiter, false - do not delimiter.
2013-07-17 13:38:11 +02:00
*/
static bool iswhite(QChar c);
2013-07-17 13:38:11 +02:00
/**
* @brief iswhite checks whether c space or tab.
* @param c character.
* @return true - space or tab, false - don't space and don't tab.
2013-07-17 13:38:11 +02:00
*/
};
#endif // CALCULATOR_H