cppcheck/gui/projectfile.h

288 lines
7.0 KiB
C
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2016-01-01 14:34:45 +01:00
* Copyright (C) 2007-2016 Cppcheck team.
*
* 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 PROJECT_FILE_H
#define PROJECT_FILE_H
#include <QObject>
#include <QString>
#include <QStringList>
#include <QXmlStreamReader>
/// @addtogroup GUI
/// @{
/**
* @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 {
Q_OBJECT
public:
explicit ProjectFile(QObject *parent = 0);
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).
*/
bool Read(const QString &filename = QString());
/**
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 {
return mRootPath;
}
2016-08-18 21:58:50 +02:00
QString GetImportProject() const {
return mImportProject;
}
/**
* @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);
}
/**
* @brief Get list of defines.
* @return list of defines.
*/
2016-10-02 18:03:21 +02:00
QStringList GetDefines() const {
return mDefines;
}
/**
* @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);
}
/**
* @brief Get list of paths to exclude from the check.
* @return list of paths.
*/
2016-10-02 18:03:21 +02:00
QStringList GetExcludedPaths() const {
return ProjectFile::fromNativeSeparators(mExcludedPaths);
}
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
/**
* @brief Get filename for the project file.
* @return file name.
*/
2014-11-20 14:20:09 +01:00
QString GetFilename() const {
return mFilename;
}
/**
* @brief Set project root path.
* @param rootpath new project root path.
*/
2014-11-20 14:20:09 +01:00
void SetRootPath(const QString &rootpath) {
mRootPath = rootpath;
}
2016-08-18 21:58:50 +02:00
void SetImportProject(const QString &importProject) {
mImportProject = importProject;
}
/**
2016-10-02 18:03:21 +02:00
* @brief Set list of includes.
* @param includes List of defines.
*/
void SetIncludes(const QStringList &includes);
/**
2016-10-02 18:03:21 +02:00
* @brief Set list of defines.
* @param defines List of defines.
*/
void SetDefines(const QStringList &defines);
/**
2016-10-02 18:03:21 +02:00
* @brief Set list of paths to check.
* @param paths List of paths.
*/
void SetCheckPaths(const QStringList &paths);
/**
2016-10-02 18:03:21 +02:00
* @brief Set list of paths to exclude from the check.
* @param paths List of paths.
*/
void SetExcludedPaths(const QStringList &paths);
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);
/**
2016-10-02 18:03:21 +02:00
* @brief Write project file (to disk).
* @param filename Filename to use.
*/
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[]);
/**
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) {
mFilename = filename;
}
protected:
/**
2016-10-02 18:03:21 +02:00
* @brief Read optional root path from XML.
* @param reader XML stream reader.
*/
void ReadRootPath(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);
/**
2016-10-02 18:03:21 +02:00
* @brief Read list of include directories from XML.
* @param reader XML stream reader.
*/
void ReadIncludeDirs(QXmlStreamReader &reader);
/**
2016-10-02 18:03:21 +02:00
* @brief Read list of defines from XML.
* @param reader XML stream reader.
*/
void ReadDefines(QXmlStreamReader &reader);
/**
2016-10-02 18:03:21 +02:00
* @brief Read list paths to check.
* @param reader XML stream reader.
*/
void ReadCheckPaths(QXmlStreamReader &reader);
/**
2016-10-02 18:03:21 +02:00
* @brief Read lists of excluded paths.
* @param reader XML stream reader.
*/
void ReadExcludes(QXmlStreamReader &reader);
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
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.
*/
QString mFilename;
/**
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.
*/
QString mRootPath;
2016-08-18 21:58:50 +02:00
QString mImportProject;
/**
2016-10-02 18:03:21 +02:00
* @brief List of include directories used to search include files.
*/
QStringList mIncludeDirs;
/**
2016-10-02 18:03:21 +02:00
* @brief List of defines.
*/
QStringList mDefines;
/**
2016-10-02 18:03:21 +02:00
* @brief List of paths to check.
*/
QStringList mPaths;
/**
2016-10-02 18:03:21 +02:00
* @brief Paths excluded from the check.
*/
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;
};
/// @}
#endif // PROJECT_FILE_H