2021-04-20 22:24:33 +08:00
|
|
|
#ifndef COMPILERMANAGER_H
|
|
|
|
#define COMPILERMANAGER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QMutex>
|
2021-06-21 11:21:26 +08:00
|
|
|
#include "../utils.h"
|
2021-06-24 16:05:19 +08:00
|
|
|
#include "../common.h"
|
2021-04-20 22:24:33 +08:00
|
|
|
|
2021-04-21 18:58:35 +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-04-21 18:58:35 +08:00
|
|
|
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 onCompileFinished();
|
2021-04-21 18:58:35 +08:00
|
|
|
void onRunnerTerminated();
|
2021-06-24 16:05:19 +08:00
|
|
|
void onCompileIssue(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;
|
2021-04-21 18:58:35 +08:00
|
|
|
ExecutableRunner* mRunner;
|
2021-04-20 22:24:33 +08:00
|
|
|
QMutex compileMutex;
|
|
|
|
QMutex backgroundSyntaxChekMutex;
|
2021-04-21 18:58:35 +08:00
|
|
|
QMutex runnerMutex;
|
2021-04-20 22:24:33 +08:00
|
|
|
};
|
|
|
|
|
2021-06-21 11:21:26 +08:00
|
|
|
class CompileError : public BaseError {
|
|
|
|
public:
|
|
|
|
explicit CompileError(const QString& reason);
|
|
|
|
};
|
|
|
|
|
2021-04-20 22:24:33 +08:00
|
|
|
#endif // COMPILERMANAGER_H
|