2009-06-22 10:57:17 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2016-01-01 14:34:45 +01:00
|
|
|
* Copyright (C) 2007-2016 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
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QXmlStreamReader>
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
/**
|
2011-08-23 18:54:53 +02:00
|
|
|
* @brief A class that reads and writes project files.
|
2009-06-22 10:57:17 +02:00
|
|
|
* The project files contain project-specific settings for checking. For
|
2010-07-12 19:22:19 +02:00
|
|
|
* example a list of include paths.
|
2009-06-22 10:57:17 +02:00
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ProjectFile : public QObject {
|
2009-06-22 10:57:17 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-03-08 18:18:09 +01:00
|
|
|
explicit ProjectFile(QObject *parent = 0);
|
2009-06-22 10:57:17 +02:00
|
|
|
ProjectFile(const QString &filename, QObject *parent = 0);
|
|
|
|
|
|
|
|
/**
|
2016-10-02 18:03:21 +02:00
|
|
|
* @brief Read the project file.
|
|
|
|
* @param filename Filename (can be also given to constructor).
|
|
|
|
*/
|
2009-06-22 10:57:17 +02:00
|
|
|
bool Read(const QString &filename = QString());
|
|
|
|
|
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.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
QString GetRootPath() const {
|
2010-08-20 22:58:00 +02:00
|
|
|
return mRootPath;
|
|
|
|
}
|
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
QString GetBuildDir() const {
|
|
|
|
return mBuildDir;
|
|
|
|
}
|
|
|
|
|
2016-08-18 21:58:50 +02:00
|
|
|
QString GetImportProject() const {
|
|
|
|
return mImportProject;
|
|
|
|
}
|
|
|
|
|
2009-07-04 00:38:47 +02:00
|
|
|
/**
|
|
|
|
* @brief Get list of include directories.
|
|
|
|
* @return list of directories.
|
|
|
|
*/
|
2016-10-02 18:03:21 +02:00
|
|
|
QStringList GetIncludeDirs() const {
|
|
|
|
return ProjectFile::fromNativeSeparators(mIncludeDirs);
|
|
|
|
}
|
2009-07-04 00:38:47 +02:00
|
|
|
|
2010-05-20 07:22:19 +02:00
|
|
|
/**
|
|
|
|
* @brief Get list of defines.
|
|
|
|
* @return list of defines.
|
|
|
|
*/
|
2016-10-02 18:03:21 +02:00
|
|
|
QStringList GetDefines() const {
|
|
|
|
return mDefines;
|
|
|
|
}
|
2010-05-20 07:22:19 +02:00
|
|
|
|
2010-08-14 17:42:37 +02:00
|
|
|
/**
|
|
|
|
* @brief Get list of paths to check.
|
|
|
|
* @return list of paths.
|
|
|
|
*/
|
2016-10-02 18:03:21 +02:00
|
|
|
QStringList GetCheckPaths() const {
|
|
|
|
return ProjectFile::fromNativeSeparators(mPaths);
|
|
|
|
}
|
2010-08-14 17:42:37 +02:00
|
|
|
|
2011-02-27 17:32:53 +01:00
|
|
|
/**
|
2011-08-23 18:54:53 +02:00
|
|
|
* @brief Get list of paths to exclude from the check.
|
2011-02-27 17:32:53 +01:00
|
|
|
* @return list of paths.
|
|
|
|
*/
|
2016-10-02 18:03:21 +02:00
|
|
|
QStringList GetExcludedPaths() const {
|
|
|
|
return ProjectFile::fromNativeSeparators(mExcludedPaths);
|
|
|
|
}
|
2011-02-27 17:32:53 +01:00
|
|
|
|
2013-12-29 18:06:31 +01:00
|
|
|
/**
|
|
|
|
* @brief Get list libraries.
|
|
|
|
* @return list of libraries.
|
|
|
|
*/
|
2016-10-02 18:03:21 +02:00
|
|
|
QStringList GetLibraries() const {
|
|
|
|
return mLibraries;
|
|
|
|
}
|
2013-12-29 18:06:31 +01:00
|
|
|
|
2013-12-30 22:32:50 +01:00
|
|
|
/**
|
|
|
|
* @brief Get list suppressions.
|
|
|
|
* @return list of suppressions.
|
|
|
|
*/
|
2016-10-02 18:03:21 +02:00
|
|
|
QStringList GetSuppressions() const {
|
|
|
|
return mSuppressions;
|
|
|
|
}
|
2013-12-30 22:32:50 +01:00
|
|
|
|
2011-06-04 14:38:51 +02:00
|
|
|
/**
|
|
|
|
* @brief Get filename for the project file.
|
|
|
|
* @return file name.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
QString GetFilename() const {
|
2011-06-04 14:38:51 +02:00
|
|
|
return mFilename;
|
|
|
|
}
|
|
|
|
|
2010-08-20 22:58:00 +02:00
|
|
|
/**
|
|
|
|
* @brief Set project root path.
|
|
|
|
* @param rootpath new project root path.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
void SetRootPath(const QString &rootpath) {
|
2010-08-20 22:58:00 +02:00
|
|
|
mRootPath = rootpath;
|
|
|
|
}
|
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
|
|
|
|
void SetBuildDir(const QString &buildDir) {
|
|
|
|
mBuildDir = buildDir;
|
|
|
|
}
|
|
|
|
|
2016-08-18 21:58:50 +02:00
|
|
|
void SetImportProject(const QString &importProject) {
|
|
|
|
mImportProject = importProject;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2011-02-27 17:36:09 +01: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.
|
|
|
|
*/
|
2011-02-27 17:36:09 +01:00
|
|
|
void SetDefines(const QStringList &defines);
|
2010-07-07 23:59:02 +02:00
|
|
|
|
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.
|
|
|
|
*/
|
2011-02-27 17:36:09 +01: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.
|
|
|
|
*/
|
2011-08-23 18:54:53 +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.
|
|
|
|
*/
|
2013-12-29 18:06:31 +01:00
|
|
|
void SetLibraries(const QStringList &libraries);
|
|
|
|
|
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.
|
|
|
|
*/
|
2013-12-30 22:32:50 +01:00
|
|
|
void SetSuppressions(const QStringList &suppressions);
|
|
|
|
|
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.
|
|
|
|
*/
|
2010-07-07 23:59:02 +02:00
|
|
|
bool Write(const QString &filename = QString());
|
|
|
|
|
2013-12-30 22:32:50 +01: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[]);
|
|
|
|
|
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.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
void SetFilename(const QString &filename) {
|
2010-07-08 18:49:04 +02:00
|
|
|
mFilename = filename;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*/
|
2010-08-20 22:58:00 +02:00
|
|
|
void ReadRootPath(QXmlStreamReader &reader);
|
|
|
|
|
2016-11-19 20:38:50 +01:00
|
|
|
void ReadBuildDir(QXmlStreamReader &reader);
|
|
|
|
|
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.
|
|
|
|
*/
|
2016-08-18 21:58:50 +02:00
|
|
|
void ReadImportProject(QXmlStreamReader &reader);
|
|
|
|
|
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.
|
|
|
|
*/
|
2009-07-04 00:38:47 +02:00
|
|
|
void ReadIncludeDirs(QXmlStreamReader &reader);
|
|
|
|
|
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.
|
|
|
|
*/
|
2010-05-20 07:22:19 +02:00
|
|
|
void ReadDefines(QXmlStreamReader &reader);
|
|
|
|
|
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.
|
|
|
|
*/
|
2010-08-14 17:42:37 +02:00
|
|
|
void ReadCheckPaths(QXmlStreamReader &reader);
|
|
|
|
|
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.
|
|
|
|
*/
|
2011-08-23 18:54:53 +02:00
|
|
|
void ReadExcludes(QXmlStreamReader &reader);
|
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 Read string list
|
|
|
|
* @param stringlist destination string list
|
|
|
|
* @param reader XML stream reader
|
|
|
|
* @param elementname elementname for each string
|
|
|
|
*/
|
2013-12-30 22:32:50 +01:00
|
|
|
void ReadStringList(QStringList &stringlist, QXmlStreamReader &reader, const char elementname[]);
|
2013-12-29 18:06:31 +01:00
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
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;
|
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief List of suppressions.
|
|
|
|
*/
|
|
|
|
QStringList mSuppressions;
|
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
|