2010-12-30 09:46:44 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 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/>.
|
|
|
|
*/
|
|
|
|
|
2023-01-27 08:18:32 +01:00
|
|
|
#ifndef helpersH
|
|
|
|
#define helpersH
|
2011-12-23 22:31:48 +01:00
|
|
|
|
2023-05-02 11:48:24 +02:00
|
|
|
#include "settings.h"
|
2010-12-30 09:46:44 +01:00
|
|
|
#include "tokenize.h"
|
2022-01-27 19:03:20 +01:00
|
|
|
#include "tokenlist.h"
|
|
|
|
|
2022-09-16 07:15:49 +02:00
|
|
|
#include <sstream> // IWYU pragma: keep
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <string>
|
2023-03-02 21:50:14 +01:00
|
|
|
|
2011-12-23 22:31:48 +01:00
|
|
|
class Token;
|
2023-04-30 07:33:19 +02:00
|
|
|
class Preprocessor;
|
|
|
|
class Suppressions;
|
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;
|
2023-05-02 11:48:24 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-05-02 06:55:31 +02:00
|
|
|
Token* tokens() {
|
|
|
|
return tokenizer.tokens();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-03-02 11:10:29 +01:00
|
|
|
class ScopedFile {
|
|
|
|
public:
|
2023-02-07 22:02:12 +01:00
|
|
|
ScopedFile(std::string name, const std::string &content, std::string path = "");
|
|
|
|
~ScopedFile();
|
2022-03-02 11:10:29 +01:00
|
|
|
|
2023-02-07 22:02:12 +01:00
|
|
|
const std::string& path() const
|
|
|
|
{
|
|
|
|
return mFullPath;
|
2022-03-02 11:10:29 +01:00
|
|
|
}
|
2023-03-02 20:44:29 +01:00
|
|
|
|
|
|
|
ScopedFile(const ScopedFile&) = delete;
|
|
|
|
ScopedFile(ScopedFile&&) = delete;
|
|
|
|
ScopedFile& operator=(const ScopedFile&) = delete;
|
|
|
|
ScopedFile& operator=(ScopedFile&&) = delete;
|
|
|
|
|
2022-03-02 11:10:29 +01:00
|
|
|
private:
|
2023-02-07 22:02:12 +01:00
|
|
|
const std::string mName;
|
|
|
|
const std::string mPath;
|
|
|
|
const std::string mFullPath;
|
2022-03-02 11:10:29 +01:00
|
|
|
};
|
|
|
|
|
2023-04-22 10:22:00 +02:00
|
|
|
class PreprocessorHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Get preprocessed code for a given configuration
|
|
|
|
*
|
|
|
|
* Note: for testing only.
|
|
|
|
*
|
|
|
|
* @param filedata file data including preprocessing 'if', 'define', etc
|
|
|
|
* @param cfg configuration to read out
|
|
|
|
* @param filename name of source file
|
|
|
|
* @param inlineSuppression the inline suppressions
|
|
|
|
*/
|
|
|
|
static std::string getcode(Preprocessor &preprocessor, const std::string &filedata, const std::string &cfg, const std::string &filename, Suppressions *inlineSuppression = nullptr);
|
|
|
|
};
|
|
|
|
|
2023-08-04 13:56:18 +02:00
|
|
|
/* designated initialization helper
|
|
|
|
Usage:
|
|
|
|
struct S
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto s = dinit(S,
|
|
|
|
$.i = 1
|
|
|
|
);
|
|
|
|
*/
|
|
|
|
#define dinit(T, ...) \
|
|
|
|
([&] { T ${}; __VA_ARGS__; return $; }())
|
|
|
|
|
2023-08-08 23:55:07 +02:00
|
|
|
// Default construct object to avoid bug in clang
|
2023-08-04 13:56:18 +02:00
|
|
|
// error: default member initializer for 'y' needed within definition of enclosing class 'X' outside of member functions
|
|
|
|
// see https://stackoverflow.com/questions/53408962
|
2023-08-08 23:55:07 +02:00
|
|
|
struct make_default_obj
|
|
|
|
{
|
|
|
|
template<class T>
|
|
|
|
operator T() const // NOLINT
|
|
|
|
{
|
|
|
|
return T{};
|
|
|
|
}
|
|
|
|
};
|
2023-08-04 13:56:18 +02:00
|
|
|
|
2023-01-27 08:18:32 +01:00
|
|
|
#endif // helpersH
|