RedPanda-CPP/RedPandaIDE/compiler/compilermanager.h

52 lines
1.3 KiB
C
Raw Normal View History

2021-04-20 22:24:33 +08:00
#ifndef COMPILERMANAGER_H
#define COMPILERMANAGER_H
#include <QObject>
#include <QMutex>
#include "../utils.h"
#include "../common.h"
2021-04-20 22:24:33 +08:00
class ExecutableRunner;
class Compiler;
2021-04-20 22:24:33 +08:00
class CompilerManager : public QObject
{
Q_OBJECT
public:
explicit CompilerManager(QObject *parent = nullptr);
bool compiling();
bool backgroundSyntaxChecking();
void compile(const QString& filename, const QByteArray& encoding, bool silent=false,bool onlyCheckSyntax=false);
2021-06-24 20:43:09 +08:00
void checkSyntax(const QString&filename, const QString& content);
void run(const QString& filename, const QString& arguments, const QString& workDir);
bool canCompile(const QString& filename);
2021-06-23 22:38:02 +08:00
int compileErrorCount() const;
int syntaxCheckErrorCount() const;
2021-04-20 22:24:33 +08:00
private slots:
void onRunnerTerminated();
2021-06-24 20:43:09 +08:00
void onCompileFinished();
void onCompileIssue(PCompileIssue issue);
2021-06-24 20:43:09 +08:00
void onSyntaxCheckFinished();
void onSyntaxCheckIssue(PCompileIssue issue);
2021-04-20 22:24:33 +08:00
private:
Compiler* mCompiler;
2021-06-23 22:38:02 +08:00
int mCompileErrorCount;
int mSyntaxCheckErrorCount;
2021-04-20 22:24:33 +08:00
Compiler* mBackgroundSyntaxChecker;
ExecutableRunner* mRunner;
2021-04-20 22:24:33 +08:00
QMutex compileMutex;
QMutex backgroundSyntaxChekMutex;
QMutex runnerMutex;
2021-04-20 22:24:33 +08:00
};
class CompileError : public BaseError {
public:
explicit CompileError(const QString& reason);
};
2021-04-20 22:24:33 +08:00
#endif // COMPILERMANAGER_H