108 lines
3.4 KiB
C++
108 lines
3.4 KiB
C++
/*
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef COMPILER_H
|
|
#define COMPILER_H
|
|
|
|
#include <QThread>
|
|
#include "settings.h"
|
|
#include "../common.h"
|
|
#include "../parser/cppparser.h"
|
|
|
|
class Project;
|
|
class Compiler : public QThread
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum class TargetType {
|
|
Invalid,
|
|
cttNone,
|
|
File,
|
|
Project,
|
|
StdIn
|
|
};
|
|
Compiler(const QString& filename, bool silent,bool onlyCheckSyntax);
|
|
Compiler(const Compiler&)=delete;
|
|
Compiler& operator=(const Compiler&)=delete;
|
|
|
|
bool isRebuild() const;
|
|
void setRebuild(bool isRebuild);
|
|
|
|
const std::shared_ptr<Project> &project() const;
|
|
void setProject(const std::shared_ptr<Project> &newProject);
|
|
|
|
signals:
|
|
void compileStarted();
|
|
void compileFinished(QString filename);
|
|
void compileOutput(const QString& msg);
|
|
void compileIssue(PCompileIssue issue);
|
|
void compileErrorOccured(const QString& reason);
|
|
public slots:
|
|
void stopCompile();
|
|
|
|
protected:
|
|
void run() override;
|
|
void processOutput(QString& line);
|
|
virtual QString getFileNameFromOutputLine(QString &line);
|
|
virtual int getLineNumberFromOutputLine(QString &line);
|
|
virtual int getColunmnFromOutputLine(QString &line);
|
|
virtual CompileIssueType getIssueTypeFromOutputLine(QString &line);
|
|
|
|
protected:
|
|
virtual Settings::PCompilerSet compilerSet();
|
|
virtual bool prepareForCompile() = 0;
|
|
virtual QByteArray pipedText();
|
|
virtual bool prepareForRebuild() = 0;
|
|
virtual QString getCharsetArgument(const QByteArray& encoding, FileType fileType, bool onlyCheckSyntax);
|
|
virtual QString getCCompileArguments(bool checkSyntax);
|
|
virtual QString getCppCompileArguments(bool checkSyntax);
|
|
virtual QString getCIncludeArguments();
|
|
virtual QString getProjectIncludeArguments();
|
|
virtual QString getCppIncludeArguments();
|
|
virtual QString getLibraryArguments(FileType fileType);
|
|
virtual QString parseFileIncludesForAutolink(
|
|
const QString& filename,
|
|
QSet<QString>& parsedFiles,
|
|
PCppParser& parser);
|
|
virtual bool parseForceUTF8ForAutolink(
|
|
const QString& filename,
|
|
QSet<QString>& parsedFiles,
|
|
PCppParser& parser);
|
|
void log(const QString& msg);
|
|
void error(const QString& msg);
|
|
void runCommand(const QString& cmd, const QString& arguments, const QString& workingDir, const QByteArray& inputText=QByteArray());
|
|
|
|
protected:
|
|
bool mSilent;
|
|
bool mOnlyCheckSyntax;
|
|
QString mCompiler;
|
|
QString mArguments;
|
|
QString mOutputFile;
|
|
int mErrorCount;
|
|
int mWarningCount;
|
|
PCompileIssue mLastIssue;
|
|
QString mFilename;
|
|
QString mDirectory;
|
|
bool mRebuild;
|
|
std::shared_ptr<Project> mProject;
|
|
|
|
private:
|
|
bool mStop;
|
|
};
|
|
|
|
|
|
#endif // COMPILER_H
|