2018-01-17 15:08:30 +01: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
|
|
|
|
|
|
2019-08-01 16:08:40 +02:00
|
|
|
#include "clangtoolslogfilereader.h"
|
|
|
|
|
|
2018-01-17 15:08:30 +01:00
|
|
|
#include <QString>
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
|
2019-08-29 14:25:49 +02:00
|
|
|
#include <memory>
|
|
|
|
|
|
2018-01-17 15:08:30 +01:00
|
|
|
namespace Utils { class Environment; }
|
|
|
|
|
|
|
|
|
|
namespace ClangTools {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2019-08-01 14:54:15 +02:00
|
|
|
using ArgsCreator = std::function<QStringList(const QStringList &baseOptions)>;
|
|
|
|
|
|
2018-01-17 15:08:30 +01:00
|
|
|
class ClangToolRunner : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2019-08-01 14:54:15 +02:00
|
|
|
ClangToolRunner(QObject *parent = nullptr) : QObject(parent) {}
|
2018-11-04 22:30:54 +01:00
|
|
|
~ClangToolRunner() override;
|
2018-01-17 15:08:30 +01:00
|
|
|
|
2019-08-29 14:25:49 +02:00
|
|
|
void init(const QString &outputDirPath, const Utils::Environment &environment);
|
2019-08-01 14:54:15 +02:00
|
|
|
void setName(const QString &name) { m_name = name; }
|
2019-08-01 16:08:40 +02:00
|
|
|
void setExecutable(const QString &executable) { m_executable = executable; }
|
2019-08-01 14:54:15 +02:00
|
|
|
void setArgsCreator(const ArgsCreator &argsCreator) { m_argsCreator = argsCreator; }
|
2019-08-01 16:08:40 +02:00
|
|
|
void setOutputFileFormat(const OutputFileFormat &format) { m_outputFileFormat = format; }
|
2019-08-01 14:54:15 +02:00
|
|
|
|
2019-08-01 15:18:32 +02:00
|
|
|
QString name() const { return m_name; }
|
2019-08-28 08:56:22 +02:00
|
|
|
QString executable() const { return m_executable; }
|
2019-08-29 14:25:49 +02:00
|
|
|
OutputFileFormat outputFileFormat() const { return m_outputFileFormat; }
|
|
|
|
|
QString fileToAnalyze() const { return m_fileToAnalyze; }
|
|
|
|
|
QString outputFilePath() const { return m_outputFilePath; }
|
|
|
|
|
|
|
|
|
|
// compilerOptions is expected to contain everything except:
|
|
|
|
|
// (1) file to analyze
|
|
|
|
|
// (2) -o output-file
|
|
|
|
|
bool run(const QString &fileToAnalyze, const QStringList &compilerOptions = QStringList());
|
2018-01-17 15:08:30 +01:00
|
|
|
|
|
|
|
|
signals:
|
2019-08-29 14:25:49 +02:00
|
|
|
void finishedWithSuccess(const QString &fileToAnalyze);
|
2018-01-17 15:08:30 +01:00
|
|
|
void finishedWithFailure(const QString &errorMessage, const QString &errorDetails);
|
|
|
|
|
|
|
|
|
|
private:
|
2019-08-29 14:25:49 +02:00
|
|
|
void onProcessOutput();
|
2018-01-17 15:08:30 +01:00
|
|
|
void onProcessFinished(int exitCode, QProcess::ExitStatus exitStatus);
|
|
|
|
|
void onProcessError(QProcess::ProcessError error);
|
|
|
|
|
|
2019-08-29 14:25:49 +02:00
|
|
|
QString commandlineAndOutput() const;
|
2018-01-17 15:08:30 +01:00
|
|
|
|
2019-08-29 14:25:49 +02:00
|
|
|
private:
|
|
|
|
|
QString m_outputDirPath;
|
2018-01-17 15:08:30 +01:00
|
|
|
QProcess m_process;
|
|
|
|
|
QByteArray m_processOutput;
|
|
|
|
|
|
2019-08-01 14:54:15 +02:00
|
|
|
QString m_name;
|
2019-08-01 16:08:40 +02:00
|
|
|
QString m_executable;
|
2019-08-01 14:54:15 +02:00
|
|
|
ArgsCreator m_argsCreator;
|
2019-08-01 16:08:40 +02:00
|
|
|
OutputFileFormat m_outputFileFormat = OutputFileFormat::Yaml;
|
2019-08-01 14:54:15 +02:00
|
|
|
|
2019-08-29 14:25:49 +02:00
|
|
|
QString m_fileToAnalyze;
|
|
|
|
|
QString m_outputFilePath;
|
2018-01-17 15:08:30 +01:00
|
|
|
QString m_commandLine;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangTools
|