RedPanda-CPP/RedPandaIDE/compiler/compiler.h

102 lines
3.1 KiB
C
Raw Normal View History

2021-12-26 23:18:28 +08:00
/*
* 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/>.
*/
2021-04-20 22:24:33 +08:00
#ifndef COMPILER_H
#define COMPILER_H
#include <QThread>
#include "settings.h"
2021-04-24 15:57:45 +08:00
#include "../common.h"
2021-09-04 11:37:04 +08:00
#include "../parser/cppparser.h"
2021-04-20 22:24:33 +08:00
2021-09-12 22:45:00 +08:00
class Project;
2021-04-20 22:24:33 +08:00
class Compiler : public QThread
{
Q_OBJECT
public:
enum class TargetType {
Invalid,
cttNone,
File,
Project,
StdIn
};
2021-06-24 20:43:09 +08:00
Compiler(const QString& filename, bool silent,bool onlyCheckSyntax);
2021-04-20 22:24:33 +08:00
2021-06-25 12:40:11 +08:00
bool isRebuild() const;
void setRebuild(bool isRebuild);
2021-09-12 22:45:00 +08:00
const std::shared_ptr<Project> &project() const;
void setProject(const std::shared_ptr<Project> &newProject);
2021-04-20 22:24:33 +08:00
signals:
void compileStarted();
void compileFinished();
void compileOutput(const QString& msg);
2021-04-24 15:57:45 +08:00
void compileIssue(PCompileIssue issue);
void compileErrorOccured(const QString& reason);
2021-04-20 22:24:33 +08:00
public slots:
void stopCompile();
protected:
void run() override;
2021-04-24 15:57:45 +08:00
void processOutput(QString& line);
virtual QString getFileNameFromOutputLine(QString &line);
virtual int getLineNumberFromOutputLine(QString &line);
virtual int getColunmnFromOutputLine(QString &line);
virtual CompileIssueType getIssueTypeFromOutputLine(QString &line);
2021-04-20 22:24:33 +08:00
protected:
2021-09-13 07:49:36 +08:00
virtual Settings::PCompilerSet compilerSet();
2021-04-20 22:24:33 +08:00
virtual bool prepareForCompile() = 0;
virtual QByteArray pipedText();
2021-06-25 12:40:11 +08:00
virtual bool prepareForRebuild() = 0;
virtual QString getCharsetArgument(const QByteArray& encoding,bool onlyCheckSyntax);
2021-04-20 22:24:33 +08:00
virtual QString getCCompileArguments(bool checkSyntax);
virtual QString getCppCompileArguments(bool checkSyntax);
virtual QString getCIncludeArguments();
2021-09-12 22:45:00 +08:00
virtual QString getProjectIncludeArguments();
2021-04-20 22:24:33 +08:00
virtual QString getCppIncludeArguments();
2021-09-04 14:06:48 +08:00
virtual QString getLibraryArguments(FileType fileType);
2021-09-04 11:37:04 +08:00
virtual QString parseFileIncludesForAutolink(
const QString& filename,
QSet<QString>& parsedFiles,
2021-09-04 11:37:04 +08:00
PCppParser& parser);
2021-04-20 22:24:33 +08:00
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());
2021-04-20 22:24:33 +08:00
protected:
bool mSilent;
bool mOnlyCheckSyntax;
QString mCompiler;
QString mArguments;
QString mOutputFile;
2021-04-24 15:57:45 +08:00
int mErrorCount;
int mWarningCount;
PCompileIssue mLastIssue;
2021-06-24 20:43:09 +08:00
QString mFilename;
2021-09-13 22:45:50 +08:00
QString mDirectory;
2021-06-25 12:40:11 +08:00
bool mRebuild;
2021-09-12 22:45:00 +08:00
std::shared_ptr<Project> mProject;
2021-04-20 22:24:33 +08:00
private:
bool mStop;
};
2021-04-20 22:24:33 +08:00
#endif // COMPILER_H