mirror of
https://github.com/reactos/CMake.git
synced 2024-11-30 23:10:26 +00:00
406f397e8b
Prior to commit 7c4c13ffef
(math: Reject unexpected expression input
explicitly, 2018-05-18) we ignored unexpected characters in an
expression that otherwise can be parsed. In order to preserve
compatibility with projects that accidentally used this, convert the
error to a warning.
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmExprParserHelper_h
|
|
#define cmExprParserHelper_h
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include "cm_kwiml.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class cmExprParserHelper
|
|
{
|
|
public:
|
|
struct ParserType
|
|
{
|
|
KWIML_INT_int64_t Number;
|
|
};
|
|
|
|
cmExprParserHelper();
|
|
~cmExprParserHelper();
|
|
|
|
int ParseString(const char* str, int verb);
|
|
|
|
int LexInput(char* buf, int maxlen);
|
|
void Error(const char* str);
|
|
|
|
void SetResult(KWIML_INT_int64_t value);
|
|
|
|
KWIML_INT_int64_t GetResult() { return this->Result; }
|
|
|
|
const char* GetError() { return this->ErrorString.c_str(); }
|
|
|
|
void UnexpectedChar(char c);
|
|
|
|
std::string const& GetWarning() const { return this->WarningString; }
|
|
|
|
private:
|
|
std::string::size_type InputBufferPos;
|
|
std::string InputBuffer;
|
|
std::vector<char> OutputBuffer;
|
|
int CurrentLine;
|
|
int Verbose;
|
|
|
|
void Print(const char* place, const char* str);
|
|
|
|
void SetError(std::string errorString);
|
|
|
|
KWIML_INT_int64_t Result;
|
|
const char* FileName;
|
|
long FileLine;
|
|
std::string ErrorString;
|
|
std::string WarningString;
|
|
};
|
|
|
|
#define YYSTYPE cmExprParserHelper::ParserType
|
|
#define YYSTYPE_IS_DECLARED
|
|
#define YY_EXTRA_TYPE cmExprParserHelper*
|
|
#define YY_DECL int cmExpr_yylex(YYSTYPE* yylvalp, yyscan_t yyscanner)
|
|
|
|
#endif
|