RedPanda-CPP/RedPandaIDE/compiler/compiler.h

86 lines
2.4 KiB
C
Raw Normal View History

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;
2021-06-24 20:43:09 +08:00
virtual QString pipedText() = 0;
2021-06-25 12:40:11 +08:00
virtual bool prepareForRebuild() = 0;
2021-04-20 22:24:33 +08:00
virtual QString getCharsetArgument(const QByteArray& encoding);
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 QString& inputText=QString());
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