2010-12-30 09:46:44 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 Cppcheck team.
|
2010-12-30 09:46:44 +01: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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TestUtilsH
|
|
|
|
#define TestUtilsH
|
2011-12-23 22:31:48 +01:00
|
|
|
|
2021-07-08 21:21:35 +02:00
|
|
|
#include "color.h"
|
2021-02-18 18:50:30 +01:00
|
|
|
#include "errorlogger.h"
|
2010-12-30 09:46:44 +01:00
|
|
|
#include "settings.h"
|
2022-01-27 19:03:20 +01:00
|
|
|
#include "suppressions.h"
|
2010-12-30 09:46:44 +01:00
|
|
|
#include "tokenize.h"
|
2022-01-27 19:03:20 +01:00
|
|
|
#include "tokenlist.h"
|
|
|
|
|
2022-03-02 11:10:29 +01:00
|
|
|
#include <cstdio>
|
2022-09-24 11:59:13 +02:00
|
|
|
#include <fstream>
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <list>
|
2022-09-16 07:15:49 +02:00
|
|
|
#include <sstream> // IWYU pragma: keep
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <string>
|
2022-09-16 18:59:15 +02:00
|
|
|
#include <utility>
|
2011-12-23 22:31:48 +01:00
|
|
|
|
|
|
|
class Token;
|
2010-12-30 09:46:44 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class givenACodeSampleToTokenize {
|
2010-12-30 09:46:44 +01:00
|
|
|
private:
|
2019-08-18 12:19:05 +02:00
|
|
|
Tokenizer tokenizer;
|
2021-02-18 16:28:04 +01:00
|
|
|
static const Settings settings;
|
2010-12-30 09:46:44 +01:00
|
|
|
|
|
|
|
public:
|
2014-11-18 19:52:06 +01:00
|
|
|
explicit givenACodeSampleToTokenize(const char sample[], bool createOnly = false, bool cpp = true)
|
2019-08-18 12:19:05 +02:00
|
|
|
: tokenizer(&settings, nullptr) {
|
2012-05-16 18:04:03 +02:00
|
|
|
std::istringstream iss(sample);
|
|
|
|
if (createOnly)
|
2019-08-18 12:19:05 +02:00
|
|
|
tokenizer.list.createTokens(iss, cpp ? "test.cpp" : "test.c");
|
2012-05-16 18:04:03 +02:00
|
|
|
else
|
2019-08-18 12:19:05 +02:00
|
|
|
tokenizer.tokenize(iss, cpp ? "test.cpp" : "test.c");
|
2010-12-30 09:46:44 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
const Token* tokens() const {
|
2019-08-18 12:19:05 +02:00
|
|
|
return tokenizer.tokens();
|
2010-12-30 09:46:44 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-08-27 09:42:09 +02:00
|
|
|
|
|
|
|
class SimpleSuppressor : public ErrorLogger {
|
|
|
|
public:
|
|
|
|
SimpleSuppressor(Settings &settings, ErrorLogger *next)
|
2021-08-07 20:51:18 +02:00
|
|
|
: settings(settings), next(next) {}
|
2022-09-27 20:03:25 +02:00
|
|
|
void reportOut(const std::string &outmsg, Color /*c*/ = Color::Reset) override {
|
2019-08-18 12:19:05 +02:00
|
|
|
next->reportOut(outmsg);
|
2014-08-27 09:42:09 +02:00
|
|
|
}
|
2022-02-10 23:02:24 +01:00
|
|
|
void reportErr(const ErrorMessage &msg) override {
|
2019-08-18 12:19:05 +02:00
|
|
|
if (!msg.callStack.empty() && !settings.nomsg.isSuppressed(msg.toSuppressionsErrorMessage()))
|
|
|
|
next->reportErr(msg);
|
2014-08-27 09:42:09 +02:00
|
|
|
}
|
|
|
|
private:
|
2019-08-18 12:19:05 +02:00
|
|
|
Settings &settings;
|
|
|
|
ErrorLogger *next;
|
2014-08-27 09:42:09 +02:00
|
|
|
};
|
|
|
|
|
2022-03-02 11:10:29 +01:00
|
|
|
class ScopedFile {
|
|
|
|
public:
|
2022-09-16 18:59:15 +02:00
|
|
|
ScopedFile(std::string name, const std::string &content) : mName(std::move(name)) {
|
2022-03-02 11:10:29 +01:00
|
|
|
std::ofstream of(mName);
|
|
|
|
of << content;
|
|
|
|
}
|
|
|
|
|
|
|
|
~ScopedFile() {
|
|
|
|
remove(mName.c_str());
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
std::string mName;
|
|
|
|
};
|
|
|
|
|
2014-01-28 15:44:56 +01:00
|
|
|
#endif // TestUtilsH
|