forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
74 lines
2.3 KiB
C++
74 lines
2.3 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "clangtoolslogfilereader.h"
|
|
|
|
#include <utils/commandline.h>
|
|
#include <utils/qtcprocess.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace ClangTools {
|
|
namespace Internal {
|
|
|
|
using ArgsCreator = std::function<QStringList(const QStringList &baseOptions)>;
|
|
|
|
class ClangToolRunner : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ClangToolRunner(QObject *parent = nullptr);
|
|
|
|
void init(const Utils::FilePath &outputDirPath, const Utils::Environment &environment);
|
|
void setName(const QString &name) { m_name = name; }
|
|
void setExecutable(const Utils::FilePath &executable) { m_executable = executable; }
|
|
void setArgsCreator(const ArgsCreator &argsCreator) { m_argsCreator = argsCreator; }
|
|
void setOutputFileFormat(const OutputFileFormat &format) { m_outputFileFormat = format; }
|
|
void setVFSOverlay(const QString overlayFilePath) { m_overlayFilePath = overlayFilePath; }
|
|
|
|
QString name() const { return m_name; }
|
|
Utils::FilePath executable() const { return m_executable; }
|
|
OutputFileFormat outputFileFormat() const { return m_outputFileFormat; }
|
|
QString fileToAnalyze() const { return m_fileToAnalyze; }
|
|
QString outputFilePath() const { return m_outputFilePath; }
|
|
QStringList mainToolArguments() const;
|
|
bool supportsVFSOverlay() const;
|
|
|
|
// compilerOptions is expected to contain everything except:
|
|
// (1) file to analyze
|
|
// (2) -o output-file
|
|
bool run(const QString &fileToAnalyze, const QStringList &compilerOptions = QStringList());
|
|
|
|
signals:
|
|
void finishedWithSuccess(const QString &fileToAnalyze);
|
|
void finishedWithFailure(const QString &errorMessage, const QString &errorDetails);
|
|
|
|
protected:
|
|
QString m_overlayFilePath;
|
|
|
|
private:
|
|
void onProcessOutput();
|
|
void onProcessDone();
|
|
|
|
QString commandlineAndOutput() const;
|
|
|
|
private:
|
|
Utils::FilePath m_outputDirPath;
|
|
Utils::QtcProcess m_process;
|
|
|
|
QString m_name;
|
|
Utils::FilePath m_executable;
|
|
ArgsCreator m_argsCreator;
|
|
OutputFileFormat m_outputFileFormat = OutputFileFormat::Yaml;
|
|
|
|
QString m_fileToAnalyze;
|
|
QString m_outputFilePath;
|
|
Utils::CommandLine m_commandLine;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace ClangTools
|