2016-10-17 13:55:54 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 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
|
|
|
|
|
|
2017-09-28 11:32:39 +02:00
|
|
|
#include "builddirparameters.h"
|
|
|
|
|
#include "cmakebuildtarget.h"
|
2016-10-17 13:55:54 +02:00
|
|
|
#include "cmakeconfigitem.h"
|
|
|
|
|
#include "cmaketool.h"
|
|
|
|
|
|
2019-08-28 18:22:45 +02:00
|
|
|
#include <projectexplorer/rawprojectpart.h>
|
2017-02-06 16:59:53 +01:00
|
|
|
|
2016-10-17 13:55:54 +02:00
|
|
|
#include <utils/environment.h>
|
|
|
|
|
#include <utils/fileutils.h>
|
|
|
|
|
#include <utils/macroexpander.h>
|
|
|
|
|
|
|
|
|
|
#include <QFutureInterface>
|
|
|
|
|
#include <QObject>
|
2019-08-15 12:22:09 +02:00
|
|
|
#include <QVector>
|
2016-10-17 13:55:54 +02:00
|
|
|
|
2017-09-28 11:32:39 +02:00
|
|
|
namespace ProjectExplorer { class FileNode; }
|
|
|
|
|
|
2016-10-17 13:55:54 +02:00
|
|
|
namespace CMakeProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class CMakeBuildConfiguration;
|
2017-03-14 15:35:02 +01:00
|
|
|
class CMakeProjectNode;
|
2016-10-17 13:55:54 +02:00
|
|
|
|
|
|
|
|
class BuildDirReader : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2019-06-05 15:42:46 +02:00
|
|
|
static std::unique_ptr<BuildDirReader> createReader(const BuildDirParameters &p);
|
2019-06-05 15:56:37 +02:00
|
|
|
virtual void setParameters(const BuildDirParameters &p) = 0;
|
2016-10-17 13:55:54 +02:00
|
|
|
|
2017-09-28 11:32:39 +02:00
|
|
|
virtual bool isCompatible(const BuildDirParameters &p) = 0;
|
2016-10-17 13:55:54 +02:00
|
|
|
virtual void resetData() = 0;
|
2019-06-06 15:07:17 +02:00
|
|
|
virtual void parse(bool forceCMakeRun, bool forceConfiguration) = 0;
|
2016-10-17 13:55:54 +02:00
|
|
|
virtual void stop() = 0;
|
|
|
|
|
|
|
|
|
|
virtual bool isParsing() const = 0;
|
|
|
|
|
|
2019-08-15 12:22:09 +02:00
|
|
|
virtual QVector<Utils::FilePath> takeProjectFilesToWatch() = 0;
|
2019-06-07 17:13:49 +02:00
|
|
|
virtual QList<CMakeBuildTarget> takeBuildTargets(QString &errorMessage) = 0;
|
|
|
|
|
virtual CMakeConfig takeParsedConfiguration(QString &errorMessage) = 0;
|
2019-06-13 14:24:04 +02:00
|
|
|
virtual std::unique_ptr<CMakeProjectNode> generateProjectTree(
|
|
|
|
|
const QList<const ProjectExplorer::FileNode *> &allFiles, QString &errorMessage)
|
|
|
|
|
= 0;
|
2019-08-28 18:22:45 +02:00
|
|
|
virtual ProjectExplorer::RawProjectParts createRawProjectParts(QString &errorMessage) = 0;
|
2016-10-17 13:55:54 +02:00
|
|
|
|
|
|
|
|
signals:
|
2016-10-17 14:35:48 +02:00
|
|
|
void isReadyNow() const;
|
2016-10-17 13:55:54 +02:00
|
|
|
void configurationStarted() const;
|
|
|
|
|
void dataAvailable() const;
|
|
|
|
|
void dirty() const;
|
|
|
|
|
void errorOccured(const QString &message) const;
|
|
|
|
|
|
|
|
|
|
protected:
|
2017-09-28 11:32:39 +02:00
|
|
|
BuildDirParameters m_parameters;
|
2016-10-17 13:55:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace CMakeProjectManager
|