forked from qt-creator/qt-creator
		
	... by a function object. Change-Id: I9953ba6915c0177e7c4067d36dd755fc2ba5cf84 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
		
			
				
	
	
		
			107 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/****************************************************************************
 | 
						|
**
 | 
						|
** Copyright (C) 2018 The Qt Company Ltd.
 | 
						|
** Contact: https://www.qt.io/licensing/
 | 
						|
**
 | 
						|
** 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
 | 
						|
** a written agreement between you and The Qt Company. For licensing terms
 | 
						|
** and conditions see https://www.qt.io/terms-conditions. For further
 | 
						|
** information use the contact form at https://www.qt.io/contact-us.
 | 
						|
**
 | 
						|
** GNU General Public License Usage
 | 
						|
** Alternatively, this file may be used under the terms of the GNU
 | 
						|
** General Public License version 3 as published by the Free Software
 | 
						|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
 | 
						|
** included in the packaging of this file. Please review the following
 | 
						|
** information to ensure the GNU General Public License requirements will
 | 
						|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
 | 
						|
**
 | 
						|
****************************************************************************/
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "compilationdatabaseutils.h"
 | 
						|
 | 
						|
#include <projectexplorer/buildconfiguration.h>
 | 
						|
#include <projectexplorer/buildsystem.h>
 | 
						|
#include <projectexplorer/project.h>
 | 
						|
 | 
						|
#include <texteditor/texteditor.h>
 | 
						|
 | 
						|
#include <utils/filesystemwatcher.h>
 | 
						|
 | 
						|
#include <QFutureWatcher>
 | 
						|
 | 
						|
QT_BEGIN_NAMESPACE
 | 
						|
class QTimer;
 | 
						|
QT_END_NAMESPACE
 | 
						|
 | 
						|
namespace CppTools { class CppProjectUpdater; }
 | 
						|
namespace ProjectExplorer { class Kit; }
 | 
						|
namespace Utils { class FileSystemWatcher; }
 | 
						|
 | 
						|
namespace CompilationDatabaseProjectManager {
 | 
						|
namespace Internal {
 | 
						|
class CompilationDbParser;
 | 
						|
 | 
						|
class CompilationDatabaseProject : public ProjectExplorer::Project
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    explicit CompilationDatabaseProject(const Utils::FilePath &filename);
 | 
						|
 | 
						|
    bool needsConfiguration() const override { return false; }
 | 
						|
 | 
						|
    Utils::FilePath rootPathFromSettings() const;
 | 
						|
    ProjectExplorer::Kit *kit() const { return m_kit.get(); }
 | 
						|
 | 
						|
private:
 | 
						|
    std::unique_ptr<ProjectExplorer::Kit> m_kit;
 | 
						|
};
 | 
						|
 | 
						|
class CompilationDatabaseBuildSystem : public ProjectExplorer::BuildSystem
 | 
						|
{
 | 
						|
public:
 | 
						|
    explicit CompilationDatabaseBuildSystem(ProjectExplorer::Target *target);
 | 
						|
    ~CompilationDatabaseBuildSystem();
 | 
						|
 | 
						|
    void triggerParsing() final;
 | 
						|
 | 
						|
    void reparseProject();
 | 
						|
    void updateDeploymentData();
 | 
						|
    void buildTreeAndProjectParts();
 | 
						|
 | 
						|
    QFutureWatcher<void> m_parserWatcher;
 | 
						|
    std::unique_ptr<CppTools::CppProjectUpdater> m_cppCodeModelUpdater;
 | 
						|
    MimeBinaryCache m_mimeBinaryCache;
 | 
						|
    QByteArray m_projectFileHash;
 | 
						|
    QTimer * const m_parseDelay;
 | 
						|
    CompilationDbParser *m_parser = nullptr;
 | 
						|
    Utils::FileSystemWatcher * const m_deployFileWatcher;
 | 
						|
};
 | 
						|
 | 
						|
class CompilationDatabaseEditorFactory : public TextEditor::TextEditorFactory
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    CompilationDatabaseEditorFactory();
 | 
						|
};
 | 
						|
 | 
						|
class CompilationDatabaseBuildConfigurationFactory
 | 
						|
    : public ProjectExplorer::BuildConfigurationFactory
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
public:
 | 
						|
    CompilationDatabaseBuildConfigurationFactory();
 | 
						|
};
 | 
						|
 | 
						|
} // namespace Internal
 | 
						|
} // namespace CompilationDatabaseProjectManager
 |