forked from qt-creator/qt-creator
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
78 lines
2.1 KiB
C++
78 lines
2.1 KiB
C++
// Copyright (C) 2019 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "compilationdatabaseutils.h"
|
|
|
|
#include <projectexplorer/buildsystem.h>
|
|
|
|
#include <utils/fileutils.h>
|
|
|
|
#include <QFutureWatcher>
|
|
#include <QList>
|
|
#include <QObject>
|
|
#include <QStringList>
|
|
|
|
#include <vector>
|
|
|
|
namespace ProjectExplorer {
|
|
class FileNode;
|
|
class TreeScanner;
|
|
}
|
|
|
|
namespace CompilationDatabaseProjectManager {
|
|
namespace Internal {
|
|
|
|
enum class ParseResult { Success, Failure, Cached };
|
|
|
|
class CompilationDbParser : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CompilationDbParser(const QString &projectName,
|
|
const Utils::FilePath &projectPath,
|
|
const Utils::FilePath &rootPath,
|
|
MimeBinaryCache &mimeBinaryCache,
|
|
ProjectExplorer::BuildSystem::ParseGuard &&guard,
|
|
QObject *parent = nullptr);
|
|
|
|
|
|
void setPreviousProjectFileHash(const QByteArray &fileHash) { m_projectFileHash = fileHash; }
|
|
QByteArray projectFileHash() const { return m_projectFileHash; }
|
|
|
|
void start();
|
|
void stop();
|
|
|
|
QList<ProjectExplorer::FileNode *> scannedFiles() const;
|
|
DbContents dbContents() const
|
|
{
|
|
return m_dbContents;
|
|
}
|
|
|
|
signals:
|
|
void finished(ParseResult result);
|
|
|
|
private:
|
|
void parserJobFinished();
|
|
void finish(ParseResult result);
|
|
DbContents parseProject();
|
|
std::vector<DbEntry> readJsonObjects() const;
|
|
|
|
const QString m_projectName;
|
|
const Utils::FilePath m_projectFilePath;
|
|
const Utils::FilePath m_rootPath;
|
|
MimeBinaryCache &m_mimeBinaryCache;
|
|
ProjectExplorer::TreeScanner *m_treeScanner = nullptr;
|
|
QFutureWatcher<DbContents> m_parserWatcher;
|
|
DbContents m_dbContents;
|
|
QByteArray m_projectFileContents;
|
|
QByteArray m_projectFileHash;
|
|
int m_runningParserJobs = 0;
|
|
|
|
ProjectExplorer::BuildSystem::ParseGuard m_guard;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace CompilationDatabaseProjectManager
|