2009-05-30 07:48:12 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2012-01-01 00:05:37 +01:00
|
|
|
* Copyright (C) 2007-2012 Daniel Marjamäki and Cppcheck team.
|
2009-06-02 22:32:58 +02:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-06-02 22:32:58 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef mathlibH
|
|
|
|
#define mathlibH
|
|
|
|
|
2010-07-24 22:12:56 +02:00
|
|
|
#include <string>
|
2010-08-06 22:37:48 +02:00
|
|
|
#include <sstream>
|
2009-06-02 22:32:58 +02:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup Core
|
|
|
|
/// @{
|
|
|
|
|
2010-03-13 21:49:09 +01:00
|
|
|
/** @brief simple math functions that uses operands stored in std::string. useful when performing math on tokens. */
|
2009-07-17 10:49:01 +02:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class MathLib {
|
2009-06-02 22:32:58 +02:00
|
|
|
public:
|
2010-11-20 10:05:33 +01:00
|
|
|
typedef long long bigint;
|
|
|
|
|
|
|
|
static bigint toLongNumber(const std::string & str);
|
2009-06-02 22:32:58 +02:00
|
|
|
static double toDoubleNumber(const std::string & str);
|
|
|
|
|
|
|
|
template<typename T>
|
2011-10-13 20:53:06 +02:00
|
|
|
static std::string toString(const T &d) {
|
2010-08-06 22:37:48 +02:00
|
|
|
std::ostringstream result;
|
|
|
|
result << d;
|
2012-02-17 19:54:53 +01:00
|
|
|
if (isNullValue(result.str()))
|
2010-08-06 22:37:48 +02:00
|
|
|
return std::string("0");
|
|
|
|
return result.str();
|
|
|
|
}
|
2009-06-02 22:32:58 +02:00
|
|
|
|
|
|
|
static bool isInt(const std::string & str);
|
2010-04-02 07:32:03 +02:00
|
|
|
static bool isFloat(const std::string &str);
|
|
|
|
static bool isNegative(const std::string &str);
|
2012-02-17 19:54:53 +01:00
|
|
|
static bool isHex(const std::string& str);
|
|
|
|
static bool isOct(const std::string& str);
|
2009-06-02 22:32:58 +02:00
|
|
|
|
|
|
|
static std::string add(const std::string & first, const std::string & second);
|
|
|
|
static std::string subtract(const std::string & first, const std::string & second);
|
|
|
|
static std::string multiply(const std::string & first, const std::string & second);
|
|
|
|
static std::string divide(const std::string & first, const std::string & second);
|
2012-01-08 21:19:44 +01:00
|
|
|
static std::string calculate(const std::string & first, const std::string & second, char action);
|
2009-08-02 14:22:39 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
static std::string sin(const std::string & tok);
|
|
|
|
static std::string cos(const std::string & tok);
|
|
|
|
static std::string tan(const std::string & tok);
|
|
|
|
static std::string abs(const std::string & tok);
|
2011-07-17 05:05:35 +02:00
|
|
|
static bool isEqual(const std::string & first, const std::string & second);
|
|
|
|
static bool isNotEqual(const std::string & first, const std::string & second);
|
2009-06-02 22:32:58 +02:00
|
|
|
static bool isGreater(const std::string & first, const std::string & second);
|
2011-07-17 05:05:35 +02:00
|
|
|
static bool isGreaterEqual(const std::string & first, const std::string & second);
|
|
|
|
static bool isLess(const std::string & first, const std::string & second);
|
|
|
|
static bool isLessEqual(const std::string & first, const std::string & second);
|
2010-04-02 22:41:54 +02:00
|
|
|
static bool isNullValue(const std::string &tok);
|
2009-09-27 16:04:10 +02:00
|
|
|
/**
|
|
|
|
* Return true if given character is 0,1,2,3,4,5,6 or 7.
|
|
|
|
* @param c The character to check
|
|
|
|
* @return true if given character is octal digit.
|
|
|
|
*/
|
|
|
|
static bool isOctalDigit(char c);
|
2009-06-02 22:32:58 +02:00
|
|
|
};
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
#endif
|