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-11-01 09:18:23 +08:00
|
|
|
class Runner;
|
2021-04-21 18:58:35 +08:00
|
|
|
class Compiler;
|
2021-09-12 22:45:00 +08:00
|
|
|
class Project;
|
2021-11-01 09:18:23 +08:00
|
|
|
class OJProblemCase;
|
|
|
|
using POJProblemCase = std::shared_ptr<OJProblemCase>;
|
2021-04-20 22:24:33 +08:00
|
|
|
class CompilerManager : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit CompilerManager(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
bool compiling();
|
|
|
|
bool backgroundSyntaxChecking();
|
2021-06-25 12:40:11 +08:00
|
|
|
bool running();
|
2021-04-20 22:24:33 +08:00
|
|
|
|
2021-06-25 12:40:11 +08:00
|
|
|
void compile(const QString& filename, const QByteArray& encoding, bool rebuild, bool silent=false,bool onlyCheckSyntax=false);
|
2021-09-13 22:45:50 +08:00
|
|
|
void compileProject(std::shared_ptr<Project> project, bool rebuild, bool silent=false,bool onlyCheckSyntax=false);
|
2021-09-17 21:33:19 +08:00
|
|
|
void cleanProject(std::shared_ptr<Project> project);
|
2021-09-17 19:58:37 +08:00
|
|
|
void buildProjectMakefile(std::shared_ptr<Project> project);
|
2021-09-12 22:45:00 +08:00
|
|
|
void checkSyntax(const QString&filename, const QString& content, bool isAscii, std::shared_ptr<Project> project);
|
2021-04-21 18:58:35 +08:00
|
|
|
void run(const QString& filename, const QString& arguments, const QString& workDir);
|
2021-11-01 09:18:23 +08:00
|
|
|
void runProblem(const QString& filename, const QString& arguments, const QString& workDir, POJProblemCase problemCase);
|
|
|
|
void runProblem(const QString& filename, const QString& arguments, const QString& workDir, QVector<POJProblemCase> problemCases);
|
2021-06-25 12:40:11 +08:00
|
|
|
void stopRun();
|
2021-12-23 17:07:27 +08:00
|
|
|
void stopPausing();
|
2021-06-25 12:40:11 +08:00
|
|
|
void stopCompile();
|
2021-09-26 19:40:52 +08:00
|
|
|
void stopCheckSyntax();
|
2021-04-21 18:58:35 +08:00
|
|
|
bool canCompile(const QString& filename);
|
2021-06-23 22:38:02 +08:00
|
|
|
int compileErrorCount() const;
|
|
|
|
|
|
|
|
int syntaxCheckErrorCount() const;
|
|
|
|
|
2021-09-26 22:52:19 +08:00
|
|
|
int compileIssueCount() const;
|
|
|
|
|
|
|
|
int syntaxCheckIssueCount() const;
|
|
|
|
|
2021-04-20 22:24:33 +08:00
|
|
|
private slots:
|
2021-04-21 18:58:35 +08:00
|
|
|
void onRunnerTerminated();
|
2021-06-24 20:43:09 +08:00
|
|
|
void onCompileFinished();
|
2021-06-24 16:05:19 +08:00
|
|
|
void onCompileIssue(PCompileIssue issue);
|
2021-06-24 20:43:09 +08:00
|
|
|
void onSyntaxCheckFinished();
|
|
|
|
void onSyntaxCheckIssue(PCompileIssue issue);
|
2021-06-24 16:05:19 +08:00
|
|
|
|
2021-04-20 22:24:33 +08:00
|
|
|
private:
|
|
|
|
Compiler* mCompiler;
|
2021-06-23 22:38:02 +08:00
|
|
|
int mCompileErrorCount;
|
2021-09-26 22:52:19 +08:00
|
|
|
int mCompileIssueCount;
|
2021-06-23 22:38:02 +08:00
|
|
|
int mSyntaxCheckErrorCount;
|
2021-09-26 22:52:19 +08:00
|
|
|
int mSyntaxCheckIssueCount;
|
2021-04-20 22:24:33 +08:00
|
|
|
Compiler* mBackgroundSyntaxChecker;
|
2021-11-01 09:18:23 +08:00
|
|
|
Runner* mRunner;
|
2021-10-09 11:33:23 +08:00
|
|
|
QRecursiveMutex mCompileMutex;
|
|
|
|
QRecursiveMutex mBackgroundSyntaxCheckMutex;
|
|
|
|
QRecursiveMutex mRunnerMutex;
|
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
|