2014-03-17 08:49:40 -03:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2014-03-17 08:49:40 -03:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2014-03-17 08:49:40 -03:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2014-03-17 08:49:40 -03:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2014-03-17 08:49:40 -03:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef CPPCODEMODELINSPECTORDUMPER_H
|
|
|
|
|
#define CPPCODEMODELINSPECTORDUMPER_H
|
|
|
|
|
|
|
|
|
|
#include "cpptools_global.h"
|
|
|
|
|
|
2015-03-05 08:22:48 +01:00
|
|
|
#include <cpptools/cppprojects.h>
|
2014-03-17 08:49:40 -03:00
|
|
|
#include <cplusplus/CppDocument.h>
|
|
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
|
|
namespace CppTools {
|
2015-03-05 08:22:48 +01:00
|
|
|
class WorkingCopy;
|
|
|
|
|
|
2014-03-17 08:49:40 -03:00
|
|
|
namespace CppCodeModelInspector {
|
|
|
|
|
|
|
|
|
|
struct CPPTOOLS_EXPORT Utils
|
|
|
|
|
{
|
|
|
|
|
static QString toString(bool value);
|
|
|
|
|
static QString toString(unsigned value);
|
|
|
|
|
static QString toString(const QDateTime &dateTime);
|
|
|
|
|
static QString toString(CPlusPlus::Document::CheckMode checkMode);
|
|
|
|
|
static QString toString(CPlusPlus::Document::DiagnosticMessage::Level level);
|
2014-08-21 16:26:06 +02:00
|
|
|
static QString toString(CppTools::ProjectPart::LanguageVersion languageVersion);
|
|
|
|
|
static QString toString(CppTools::ProjectPart::LanguageExtensions languageExtension);
|
2014-03-17 08:49:40 -03:00
|
|
|
static QString toString(CppTools::ProjectPart::QtVersion qtVersion);
|
2016-01-13 14:12:15 +01:00
|
|
|
static QString toString(const QVector<CppTools::ProjectFile> &projectFiles);
|
2014-03-17 08:49:40 -03:00
|
|
|
static QString toString(CppTools::ProjectFile::Kind kind);
|
|
|
|
|
static QString toString(CPlusPlus::Kind kind);
|
|
|
|
|
static QString partsForFile(const QString &fileName);
|
|
|
|
|
static QString unresolvedFileNameWithDelimiters(const CPlusPlus::Document::Include &include);
|
|
|
|
|
static QString pathListToString(const QStringList &pathList);
|
2016-01-13 14:12:15 +01:00
|
|
|
static QString pathListToString(const ProjectPartHeaderPaths &pathList);
|
2014-03-17 08:49:40 -03:00
|
|
|
static QList<CPlusPlus::Document::Ptr> snapshotToList(const CPlusPlus::Snapshot &snapshot);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CPPTOOLS_EXPORT Dumper
|
|
|
|
|
{
|
|
|
|
|
public:
|
2014-03-17 09:45:07 -03:00
|
|
|
explicit Dumper(const CPlusPlus::Snapshot &globalSnapshot,
|
|
|
|
|
const QString &logFileId = QString());
|
2014-03-17 08:49:40 -03:00
|
|
|
~Dumper();
|
|
|
|
|
|
2014-07-30 17:13:45 +02:00
|
|
|
void dumpProjectInfos(const QList<CppTools::ProjectInfo> &projectInfos);
|
2014-03-17 08:49:40 -03:00
|
|
|
void dumpSnapshot(const CPlusPlus::Snapshot &snapshot,
|
|
|
|
|
const QString &title,
|
|
|
|
|
bool isGlobalSnapshot = false);
|
2014-07-30 16:29:02 +02:00
|
|
|
void dumpWorkingCopy(const CppTools::WorkingCopy &workingCopy);
|
2016-01-13 14:12:15 +01:00
|
|
|
void dumpMergedEntities(const ProjectPartHeaderPaths &mergedHeaderPaths,
|
2014-03-17 09:03:01 -03:00
|
|
|
const QByteArray &mergedMacros);
|
2014-03-17 08:49:40 -03:00
|
|
|
|
|
|
|
|
private:
|
2014-03-17 09:03:01 -03:00
|
|
|
void dumpStringList(const QStringList &list, const QByteArray &indent);
|
2014-03-17 08:49:40 -03:00
|
|
|
void dumpDocuments(const QList<CPlusPlus::Document::Ptr> &documents,
|
|
|
|
|
bool skipDetails = false);
|
|
|
|
|
static QByteArray indent(int level);
|
|
|
|
|
|
|
|
|
|
CPlusPlus::Snapshot m_globalSnapshot;
|
|
|
|
|
QFile m_logFile;
|
|
|
|
|
QTextStream m_out;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace CppCodeModelInspector
|
|
|
|
|
} // namespace CppTools
|
|
|
|
|
|
|
|
|
|
#endif // CPPCODEMODELINSPECTORDUMPER_H
|