2009-06-22 10:57:17 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 Cppcheck team.
|
2009-06-22 10:57:17 +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-22 10:57:17 +02:00
|
|
|
*/
|
|
|
|
|
2009-06-24 22:49:38 +02:00
|
|
|
#ifndef PROJECT_FILE_H
|
|
|
|
#define PROJECT_FILE_H
|
2009-06-24 12:56:28 +02:00
|
|
|
|
2022-02-02 16:17:28 +01:00
|
|
|
#include "settings.h"
|
|
|
|
#include "suppressions.h"
|
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
#include <cstddef>
|
2020-04-27 09:08:50 +02:00
|
|
|
#include <map>
|
2022-09-16 07:15:49 +02:00
|
|
|
#include <utility>
|
2022-02-02 16:17:28 +01:00
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
|
2021-04-03 21:30:50 +02:00
|
|
|
class QXmlStreamReader;
|
|
|
|
class QXmlStreamWriter;
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief A class that reads and writes project files.
|
|
|
|
* The project files contain project-specific settings for checking. For
|
|
|
|
* example a list of include paths.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ProjectFile : public QObject {
|
2009-06-22 10:57:17 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-06-30 21:39:22 +02:00
|
|
|
explicit ProjectFile(QObject *parent = nullptr);
|
2022-07-28 22:51:45 +02:00
|
|
|
explicit ProjectFile(QString filename, QObject *parent = nullptr);
|
2022-03-13 20:07:58 +01:00
|
|
|
~ProjectFile() override {
|
2020-07-15 13:03:07 +02:00
|
|
|
if (this == mActiveProject) mActiveProject = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ProjectFile* getActiveProject() {
|
|
|
|
return mActiveProject;
|
|
|
|
}
|
|
|
|
void setActiveProject() {
|
|
|
|
mActiveProject = this;
|
|
|
|
}
|
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read the project file.
|
|
|
|
* @param filename Filename (can be also given to constructor).
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
bool read(const QString &filename = QString());
|
2009-06-22 10:57:17 +02:00
|
|
|
|
2010-08-20 22:58:00 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Get project root path.
|
|
|
|
* @return project root path.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
QString getRootPath() const {
|
2010-08-20 22:58:00 +02:00
|
|
|
return mRootPath;
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:08:59 +02:00
|
|
|
QString getBuildDir() const {
|
2016-11-19 20:38:50 +01:00
|
|
|
return mBuildDir;
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:08:59 +02:00
|
|
|
QString getImportProject() const {
|
2016-08-18 21:58:50 +02:00
|
|
|
return mImportProject;
|
|
|
|
}
|
|
|
|
|
2017-08-10 00:18:04 +02:00
|
|
|
bool getAnalyzeAllVsConfigs() const {
|
|
|
|
return mAnalyzeAllVsConfigs;
|
|
|
|
}
|
|
|
|
|
2019-04-10 16:49:24 +02:00
|
|
|
bool getCheckHeaders() const {
|
|
|
|
return mCheckHeaders;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setCheckHeaders(bool b) {
|
|
|
|
mCheckHeaders = b;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool getCheckUnusedTemplates() const {
|
|
|
|
return mCheckUnusedTemplates;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setCheckUnusedTemplates(bool b) {
|
|
|
|
mCheckUnusedTemplates = b;
|
|
|
|
}
|
|
|
|
|
2009-07-04 00:38:47 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list of include directories.
|
|
|
|
* @return list of directories.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
QStringList getIncludeDirs() const {
|
2016-10-02 18:03:21 +02:00
|
|
|
return ProjectFile::fromNativeSeparators(mIncludeDirs);
|
|
|
|
}
|
2009-07-04 00:38:47 +02:00
|
|
|
|
2010-05-20 07:22:19 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list of defines.
|
|
|
|
* @return list of defines.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
QStringList getDefines() const {
|
2016-10-02 18:03:21 +02:00
|
|
|
return mDefines;
|
|
|
|
}
|
2010-05-20 07:22:19 +02:00
|
|
|
|
2018-10-09 15:05:05 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list of undefines.
|
|
|
|
* @return list of undefines.
|
|
|
|
*/
|
2018-10-09 15:05:05 +02:00
|
|
|
QStringList getUndefines() const {
|
|
|
|
return mUndefines;
|
|
|
|
}
|
|
|
|
|
2010-08-14 17:42:37 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list of paths to check.
|
|
|
|
* @return list of paths.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
QStringList getCheckPaths() const {
|
2016-10-02 18:03:21 +02:00
|
|
|
return ProjectFile::fromNativeSeparators(mPaths);
|
|
|
|
}
|
2010-08-14 17:42:37 +02:00
|
|
|
|
2011-02-27 17:32:53 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list of paths to exclude from the check.
|
|
|
|
* @return list of paths.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
QStringList getExcludedPaths() const {
|
2016-10-02 18:03:21 +02:00
|
|
|
return ProjectFile::fromNativeSeparators(mExcludedPaths);
|
|
|
|
}
|
2011-02-27 17:32:53 +01:00
|
|
|
|
2020-01-31 07:08:38 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list of paths to exclude from the check.
|
|
|
|
* @return list of paths.
|
|
|
|
*/
|
2020-01-31 07:08:38 +01:00
|
|
|
QStringList getVsConfigurations() const {
|
|
|
|
return mVsConfigurations;
|
|
|
|
}
|
|
|
|
|
2013-12-29 18:06:31 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list libraries.
|
|
|
|
* @return list of libraries.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
QStringList getLibraries() const {
|
2016-10-02 18:03:21 +02:00
|
|
|
return mLibraries;
|
|
|
|
}
|
2013-12-29 18:06:31 +01:00
|
|
|
|
2018-03-13 13:07:10 +01:00
|
|
|
/**
|
|
|
|
* @brief Get platform.
|
|
|
|
* @return Current platform. If it ends with .xml then it is a file. Otherwise it must match one of the return values from @sa cppcheck::Platform::platformString() ("win32A", "unix32", ..)
|
|
|
|
*/
|
|
|
|
QString getPlatform() const {
|
|
|
|
return mPlatform;
|
|
|
|
}
|
|
|
|
|
2013-12-30 22:32:50 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get "raw" suppressions.
|
|
|
|
* @return list of suppressions.
|
|
|
|
*/
|
2018-04-09 06:43:48 +02:00
|
|
|
QList<Suppressions::Suppression> getSuppressions() const {
|
2016-10-02 18:03:21 +02:00
|
|
|
return mSuppressions;
|
|
|
|
}
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2017-08-03 12:30:28 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list addons.
|
|
|
|
* @return list of addons.
|
|
|
|
*/
|
2017-08-03 12:30:28 +02:00
|
|
|
QStringList getAddons() const {
|
|
|
|
return mAddons;
|
|
|
|
}
|
|
|
|
|
2020-05-17 23:14:40 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get path to addon python script
|
|
|
|
* @param filesDir Data files folder set by --data-dir
|
|
|
|
* @param addon addon i.e. "misra" to lookup
|
|
|
|
*/
|
2020-05-17 23:14:40 +02:00
|
|
|
static QString getAddonFilePath(QString filesDir, const QString &addon);
|
2020-05-17 16:50:02 +02:00
|
|
|
|
2017-09-22 15:41:27 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get list of addons and tools.
|
|
|
|
* @return list of addons and tools.
|
|
|
|
*/
|
2017-09-22 15:41:27 +02:00
|
|
|
QStringList getAddonsAndTools() const;
|
|
|
|
|
2021-04-30 16:47:02 +02:00
|
|
|
bool getClangAnalyzer() const {
|
|
|
|
return false; //mClangAnalyzer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setClangAnalyzer(bool c) {
|
|
|
|
mClangAnalyzer = c;
|
|
|
|
}
|
|
|
|
|
2017-08-20 12:21:46 +02:00
|
|
|
bool getClangTidy() const {
|
2017-09-22 15:41:27 +02:00
|
|
|
return mClangTidy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setClangTidy(bool c) {
|
|
|
|
mClangTidy = c;
|
2017-08-20 12:21:46 +02:00
|
|
|
}
|
|
|
|
|
2017-08-18 17:25:08 +02:00
|
|
|
QStringList getTags() const {
|
|
|
|
return mTags;
|
|
|
|
}
|
|
|
|
|
2019-04-10 16:49:24 +02:00
|
|
|
int getMaxCtuDepth() const {
|
|
|
|
return mMaxCtuDepth;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setMaxCtuDepth(int maxCtuDepth) {
|
|
|
|
mMaxCtuDepth = maxCtuDepth;
|
|
|
|
}
|
|
|
|
|
2020-06-26 17:12:02 +02:00
|
|
|
int getMaxTemplateRecursion() const {
|
|
|
|
return mMaxTemplateRecursion;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setMaxTemplateRecursion(int maxTemplateRecursion) {
|
|
|
|
mMaxTemplateRecursion = maxTemplateRecursion;
|
|
|
|
}
|
|
|
|
|
2011-06-04 14:38:51 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get filename for the project file.
|
|
|
|
* @return file name.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
QString getFilename() const {
|
2011-06-04 14:38:51 +02:00
|
|
|
return mFilename;
|
|
|
|
}
|
|
|
|
|
2010-08-20 22:58:00 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set project root path.
|
|
|
|
* @param rootpath new project root path.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void setRootPath(const QString &rootpath) {
|
2010-08-20 22:58:00 +02:00
|
|
|
mRootPath = rootpath;
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:08:59 +02:00
|
|
|
void setBuildDir(const QString &buildDir) {
|
2016-11-19 20:38:50 +01:00
|
|
|
mBuildDir = buildDir;
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:08:59 +02:00
|
|
|
void setImportProject(const QString &importProject) {
|
2016-08-18 21:58:50 +02:00
|
|
|
mImportProject = importProject;
|
|
|
|
}
|
|
|
|
|
2017-08-10 00:18:04 +02:00
|
|
|
void setAnalyzeAllVsConfigs(bool b) {
|
|
|
|
mAnalyzeAllVsConfigs = b;
|
|
|
|
}
|
|
|
|
|
2010-07-07 23:59:02 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Set list of includes.
|
|
|
|
* @param includes List of defines.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void setIncludes(const QStringList &includes);
|
2010-07-07 23:59:02 +02:00
|
|
|
|
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Set list of defines.
|
|
|
|
* @param defines List of defines.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void setDefines(const QStringList &defines);
|
2010-07-07 23:59:02 +02:00
|
|
|
|
2018-10-09 15:05:05 +02:00
|
|
|
/**
|
|
|
|
* @brief Set list of undefines.
|
2018-12-21 21:23:03 +01:00
|
|
|
* @param undefines List of undefines.
|
2018-10-09 15:05:05 +02:00
|
|
|
*/
|
|
|
|
void setUndefines(const QStringList &undefines);
|
|
|
|
|
2010-08-14 17:42:37 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Set list of paths to check.
|
|
|
|
* @param paths List of paths.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void setCheckPaths(const QStringList &paths);
|
2010-08-14 17:42:37 +02:00
|
|
|
|
2011-02-27 17:32:53 +01:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Set list of paths to exclude from the check.
|
|
|
|
* @param paths List of paths.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void setExcludedPaths(const QStringList &paths);
|
2011-02-27 17:32:53 +01:00
|
|
|
|
2013-12-29 18:06:31 +01:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Set list of libraries.
|
|
|
|
* @param libraries List of libraries.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void setLibraries(const QStringList &libraries);
|
2013-12-29 18:06:31 +01:00
|
|
|
|
2018-03-13 13:07:10 +01:00
|
|
|
/**
|
|
|
|
* @brief Set platform.
|
|
|
|
* @param platform platform.
|
|
|
|
*/
|
|
|
|
void setPlatform(const QString &platform);
|
|
|
|
|
2013-12-30 22:32:50 +01:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Set list of suppressions.
|
|
|
|
* @param suppressions List of suppressions.
|
|
|
|
*/
|
2018-04-09 06:43:48 +02:00
|
|
|
void setSuppressions(const QList<Suppressions::Suppression> &suppressions);
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2020-07-16 16:36:55 +02:00
|
|
|
/** Add suppression */
|
|
|
|
void addSuppression(const Suppressions::Suppression &suppression);
|
|
|
|
|
2017-08-03 12:30:28 +02:00
|
|
|
/**
|
|
|
|
* @brief Set list of addons.
|
|
|
|
* @param addons List of addons.
|
|
|
|
*/
|
|
|
|
void setAddons(const QStringList &addons);
|
|
|
|
|
2020-01-31 07:08:38 +01:00
|
|
|
/** @brief Set list of Visual Studio configurations to be checked
|
|
|
|
* @param vsConfigs List of configurations
|
|
|
|
*/
|
|
|
|
void setVSConfigurations(const QStringList &vsConfigs);
|
|
|
|
|
2017-08-18 17:25:08 +02:00
|
|
|
/**
|
|
|
|
* @brief Set tags.
|
|
|
|
* @param tags tag list
|
|
|
|
*/
|
|
|
|
void setTags(const QStringList &tags) {
|
|
|
|
mTags = tags;
|
|
|
|
}
|
|
|
|
|
2020-07-16 23:03:54 +02:00
|
|
|
/** Set tags for a warning */
|
2022-01-18 20:17:05 +01:00
|
|
|
void setWarningTags(std::size_t hash, const QString& tags);
|
2020-07-16 23:03:54 +02:00
|
|
|
|
|
|
|
/** Get tags for a warning */
|
2020-07-21 11:27:03 +02:00
|
|
|
QString getWarningTags(std::size_t hash) const;
|
2020-07-16 23:03:54 +02:00
|
|
|
|
2022-08-22 21:11:28 +02:00
|
|
|
/** Bughunting (Cppcheck Premium) */
|
|
|
|
void setBughunting(bool bughunting) {
|
|
|
|
mBughunting = bughunting;
|
|
|
|
}
|
|
|
|
bool getBughunting() const {
|
|
|
|
return mBughunting;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief Get list of coding standards (checked by Cppcheck Premium). */
|
|
|
|
QStringList getCodingStandards() const {
|
|
|
|
return mCodingStandards;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set list of coding standards (checked by Cppcheck Premium).
|
|
|
|
* @param codingStandards List of coding standards.
|
|
|
|
*/
|
|
|
|
void setCodingStandards(QStringList codingStandards) {
|
|
|
|
mCodingStandards = std::move(codingStandards);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Cert C: int precision */
|
|
|
|
void setCertIntPrecision(int p) {
|
|
|
|
mCertIntPrecision = p;
|
|
|
|
}
|
|
|
|
int getCertIntPrecision() const {
|
|
|
|
return mCertIntPrecision;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-07 23:59:02 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Write project file (to disk).
|
|
|
|
* @param filename Filename to use.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
bool write(const QString &filename = QString());
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2010-07-08 18:49:04 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Set filename for the project file.
|
|
|
|
* @param filename Filename to use.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void setFilename(const QString &filename) {
|
2010-07-08 18:49:04 +02:00
|
|
|
mFilename = filename;
|
|
|
|
}
|
|
|
|
|
2019-07-23 11:54:38 +02:00
|
|
|
/** Do not only check how interface is used. Also check that interface is safe. */
|
2020-02-09 21:02:28 +01:00
|
|
|
class SafeChecks : public Settings::SafeChecks {
|
2019-07-23 11:54:38 +02:00
|
|
|
public:
|
2020-02-09 21:02:28 +01:00
|
|
|
SafeChecks() : Settings::SafeChecks() {}
|
2019-07-23 11:54:38 +02:00
|
|
|
|
|
|
|
void loadFromXml(QXmlStreamReader &xmlReader);
|
|
|
|
void saveToXml(QXmlStreamWriter &xmlWriter) const;
|
|
|
|
};
|
|
|
|
|
2020-02-09 21:02:28 +01:00
|
|
|
SafeChecks safeChecks;
|
2019-07-11 21:05:52 +02:00
|
|
|
|
|
|
|
/** Check unknown function return values */
|
|
|
|
QStringList getCheckUnknownFunctionReturn() const {
|
|
|
|
return mCheckUnknownFunctionReturn;
|
|
|
|
}
|
2019-07-12 08:27:10 +02:00
|
|
|
void setCheckUnknownFunctionReturn(const QStringList &s) {
|
2019-07-11 21:05:52 +02:00
|
|
|
mCheckUnknownFunctionReturn = s;
|
|
|
|
}
|
|
|
|
|
2021-04-30 16:47:02 +02:00
|
|
|
/** Use Clang parser */
|
|
|
|
bool clangParser;
|
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
protected:
|
2010-08-20 22:58:00 +02:00
|
|
|
|
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read optional root path from XML.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void readRootPath(QXmlStreamReader &reader);
|
2010-08-20 22:58:00 +02:00
|
|
|
|
2017-07-28 05:08:59 +02:00
|
|
|
void readBuildDir(QXmlStreamReader &reader);
|
2016-11-19 20:38:50 +01:00
|
|
|
|
2016-08-18 21:58:50 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read importproject from XML.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void readImportProject(QXmlStreamReader &reader);
|
2016-08-18 21:58:50 +02:00
|
|
|
|
2022-09-08 20:01:41 +02:00
|
|
|
static bool readBool(QXmlStreamReader &reader);
|
2019-04-10 16:49:24 +02:00
|
|
|
|
2022-09-08 20:01:41 +02:00
|
|
|
static int readInt(QXmlStreamReader &reader, int defaultValue);
|
2017-08-10 00:18:04 +02:00
|
|
|
|
2009-07-04 00:38:47 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read list of include directories from XML.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void readIncludeDirs(QXmlStreamReader &reader);
|
2009-07-04 00:38:47 +02:00
|
|
|
|
2010-05-20 07:22:19 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read list of defines from XML.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void readDefines(QXmlStreamReader &reader);
|
2010-05-20 07:22:19 +02:00
|
|
|
|
2010-08-14 17:42:37 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read list paths to check.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void readCheckPaths(QXmlStreamReader &reader);
|
2010-08-14 17:42:37 +02:00
|
|
|
|
2011-02-27 17:32:53 +01:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read lists of excluded paths.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
2017-07-28 05:08:59 +02:00
|
|
|
void readExcludes(QXmlStreamReader &reader);
|
2011-02-27 17:32:53 +01:00
|
|
|
|
2020-01-31 07:08:38 +01:00
|
|
|
/**
|
|
|
|
* @brief Read lists of Visual Studio configurations
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
|
|
|
void readVsConfigurations(QXmlStreamReader &reader);
|
|
|
|
|
2018-03-13 13:07:10 +01:00
|
|
|
/**
|
|
|
|
* @brief Read platform text.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
|
|
|
void readPlatform(QXmlStreamReader &reader);
|
|
|
|
|
2018-04-09 06:43:48 +02:00
|
|
|
/**
|
|
|
|
* @brief Read suppressions.
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
|
|
|
void readSuppressions(QXmlStreamReader &reader);
|
|
|
|
|
2020-07-16 23:03:54 +02:00
|
|
|
/**
|
|
|
|
* @brief Read tag warnings, what warnings are tagged with a specific tag
|
|
|
|
* @param reader XML stream reader.
|
|
|
|
*/
|
2020-07-17 12:25:06 +02:00
|
|
|
void readTagWarnings(QXmlStreamReader &reader, const QString &tag);
|
2020-07-16 23:03:54 +02:00
|
|
|
|
2013-12-29 18:06:31 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Read string list
|
|
|
|
* @param stringlist destination string list
|
|
|
|
* @param reader XML stream reader
|
|
|
|
* @param elementname elementname for each string
|
|
|
|
*/
|
2022-09-08 20:01:41 +02:00
|
|
|
static void readStringList(QStringList &stringlist, QXmlStreamReader &reader, const char elementname[]);
|
2017-07-28 05:08:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Write string list
|
|
|
|
* @param xmlWriter xml writer
|
|
|
|
* @param stringlist string list to write
|
|
|
|
* @param startelementname name of start element
|
|
|
|
* @param stringelementname name of each string element
|
|
|
|
*/
|
|
|
|
static void writeStringList(QXmlStreamWriter &xmlWriter, const QStringList &stringlist, const char startelementname[], const char stringelementname[]);
|
2013-12-29 18:06:31 +01:00
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
private:
|
|
|
|
|
2017-08-10 00:18:04 +02:00
|
|
|
void clear();
|
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Convert paths
|
|
|
|
*/
|
|
|
|
static QStringList fromNativeSeparators(const QStringList &paths);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Filename (+path) of the project file.
|
|
|
|
*/
|
2009-06-22 10:57:17 +02:00
|
|
|
QString mFilename;
|
|
|
|
|
2010-08-20 22:58:00 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Root path (optional) for the project.
|
|
|
|
* This is the project root path. If it is present then all relative paths in
|
|
|
|
* the project file are relative to this path. Otherwise paths are relative
|
|
|
|
* to project file's path.
|
|
|
|
*/
|
2010-08-20 22:58:00 +02:00
|
|
|
QString mRootPath;
|
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
/** Cppcheck build dir */
|
|
|
|
QString mBuildDir;
|
|
|
|
|
|
|
|
/** Visual studio project/solution , compile database */
|
2016-08-18 21:58:50 +02:00
|
|
|
QString mImportProject;
|
|
|
|
|
2017-08-10 00:18:04 +02:00
|
|
|
/**
|
|
|
|
* Should all visual studio configurations be analyzed?
|
|
|
|
* If this is false then only the Debug configuration
|
|
|
|
* for the set platform is analyzed.
|
|
|
|
*/
|
|
|
|
bool mAnalyzeAllVsConfigs;
|
|
|
|
|
2020-01-31 07:08:38 +01:00
|
|
|
/** Check only a selected VS configuration */
|
|
|
|
QStringList mVsConfigurations;
|
|
|
|
|
2019-04-10 16:49:24 +02:00
|
|
|
/** Check code in headers */
|
|
|
|
bool mCheckHeaders;
|
|
|
|
|
|
|
|
/** Check code in unused templates */
|
|
|
|
bool mCheckUnusedTemplates;
|
|
|
|
|
2009-07-04 00:38:47 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief List of include directories used to search include files.
|
|
|
|
*/
|
2009-07-04 00:38:47 +02:00
|
|
|
QStringList mIncludeDirs;
|
2010-05-20 07:22:19 +02:00
|
|
|
|
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief List of defines.
|
|
|
|
*/
|
2010-05-20 07:22:19 +02:00
|
|
|
QStringList mDefines;
|
2010-08-14 17:42:37 +02:00
|
|
|
|
2018-10-09 15:05:05 +02:00
|
|
|
/**
|
|
|
|
* @brief List of undefines.
|
|
|
|
*/
|
|
|
|
QStringList mUndefines;
|
|
|
|
|
2010-08-14 17:42:37 +02:00
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief List of paths to check.
|
|
|
|
*/
|
2010-08-14 17:42:37 +02:00
|
|
|
QStringList mPaths;
|
2011-02-27 17:32:53 +01:00
|
|
|
|
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Paths excluded from the check.
|
|
|
|
*/
|
2011-08-23 18:54:53 +02:00
|
|
|
QStringList mExcludedPaths;
|
2013-12-29 18:06:31 +01:00
|
|
|
|
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief List of libraries.
|
|
|
|
*/
|
2013-12-29 18:06:31 +01:00
|
|
|
QStringList mLibraries;
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2018-03-13 13:07:10 +01:00
|
|
|
/**
|
|
|
|
* @brief Platform
|
|
|
|
*/
|
|
|
|
QString mPlatform;
|
|
|
|
|
2013-12-30 22:32:50 +01:00
|
|
|
/**
|
|
|
|
* @brief List of suppressions.
|
|
|
|
*/
|
2018-04-09 06:43:48 +02:00
|
|
|
QList<Suppressions::Suppression> mSuppressions;
|
2017-08-03 12:30:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief List of addons.
|
|
|
|
*/
|
|
|
|
QStringList mAddons;
|
2017-08-18 17:25:08 +02:00
|
|
|
|
2022-08-22 21:11:28 +02:00
|
|
|
bool mBughunting;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief List of coding standards, checked by Cppcheck Premium.
|
|
|
|
*/
|
|
|
|
QStringList mCodingStandards;
|
|
|
|
|
|
|
|
int mCertIntPrecision;
|
|
|
|
|
2021-04-30 16:47:02 +02:00
|
|
|
/** @brief Execute clang analyzer? */
|
|
|
|
bool mClangAnalyzer;
|
|
|
|
|
2017-09-22 15:41:27 +02:00
|
|
|
/** @brief Execute clang-tidy? */
|
|
|
|
bool mClangTidy;
|
|
|
|
|
2017-08-18 17:25:08 +02:00
|
|
|
/**
|
2020-07-16 23:03:54 +02:00
|
|
|
* @brief Tags
|
2017-08-18 17:25:08 +02:00
|
|
|
*/
|
|
|
|
QStringList mTags;
|
2019-04-10 16:49:24 +02:00
|
|
|
|
2020-07-16 23:03:54 +02:00
|
|
|
/**
|
|
|
|
* @brief Warning tags
|
|
|
|
*/
|
|
|
|
std::map<std::size_t, QString> mWarningTags;
|
|
|
|
|
2019-04-10 16:49:24 +02:00
|
|
|
/** Max CTU depth */
|
|
|
|
int mMaxCtuDepth;
|
2019-07-11 21:05:52 +02:00
|
|
|
|
2020-06-26 17:12:02 +02:00
|
|
|
/** Max template instantiation recursion */
|
|
|
|
int mMaxTemplateRecursion;
|
|
|
|
|
2019-07-11 21:05:52 +02:00
|
|
|
QStringList mCheckUnknownFunctionReturn;
|
|
|
|
|
2020-07-15 13:03:07 +02:00
|
|
|
static ProjectFile *mActiveProject;
|
2009-06-22 10:57:17 +02:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-06-24 22:49:38 +02:00
|
|
|
#endif // PROJECT_FILE_H
|