RedPanda-CPP/RedPandaIDE/compiler/compilermanager.cpp

499 lines
19 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
#include "compilermanager.h"
#include "filecompiler.h"
2023-08-17 19:24:49 +08:00
#include "../project.h"
2023-08-13 18:53:48 +08:00
#ifdef ENABLE_SDCC
#include "sdccfilecompiler.h"
2023-08-17 19:24:49 +08:00
#include "sdccprojectcompiler.h"
2023-08-13 18:53:48 +08:00
#endif
2021-06-24 20:43:09 +08:00
#include "stdincompiler.h"
2021-04-20 22:24:33 +08:00
#include "../mainwindow.h"
#include "executablerunner.h"
2021-11-01 09:18:23 +08:00
#include "ojproblemcasesrunner.h"
#include "utils.h"
#include "../systemconsts.h"
2021-07-01 19:44:38 +08:00
#include "../settings.h"
2021-07-26 22:29:47 +08:00
#include <QMessageBox>
#include <QUuid>
2021-09-13 22:45:50 +08:00
#include "projectcompiler.h"
2021-04-20 22:24:33 +08:00
2021-10-25 09:16:00 +08:00
enum RunProgramFlag {
RPF_PAUSE_CONSOLE = 0x0001,
RPF_REDIRECT_INPUT = 0x0002
};
2022-01-04 16:50:54 +08:00
CompilerManager::CompilerManager(QObject *parent) : QObject(parent),
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
mCompileMutex(),
mBackgroundSyntaxCheckMutex(),
mRunnerMutex()
#else
2022-01-04 16:50:54 +08:00
mCompileMutex(QMutex::Recursive),
mBackgroundSyntaxCheckMutex(QMutex::Recursive),
mRunnerMutex(QMutex::Recursive)
#endif
2021-04-20 22:24:33 +08:00
{
mCompiler = nullptr;
mBackgroundSyntaxChecker = nullptr;
mRunner = nullptr;
2021-06-23 22:38:02 +08:00
mSyntaxCheckErrorCount = 0;
mSyntaxCheckIssueCount = 0;
2021-06-23 22:38:02 +08:00
mCompileErrorCount = 0;
mCompileIssueCount = 0;
mSyntaxCheckErrorCount = 0;
2021-04-20 22:24:33 +08:00
}
bool CompilerManager::compiling()
{
2021-06-25 12:40:11 +08:00
QMutexLocker locker(&mCompileMutex);
2021-04-20 22:24:33 +08:00
return mCompiler!=nullptr;
}
bool CompilerManager::backgroundSyntaxChecking()
{
2021-06-25 12:40:11 +08:00
QMutexLocker locker(&mBackgroundSyntaxCheckMutex);
2021-04-20 22:24:33 +08:00
return mBackgroundSyntaxChecker!=nullptr;
}
2021-06-25 12:40:11 +08:00
bool CompilerManager::running()
2021-04-20 22:24:33 +08:00
{
2021-06-25 12:40:11 +08:00
QMutexLocker locker(&mRunnerMutex);
return (mRunner!=nullptr && !mRunner->pausing());
2021-06-25 12:40:11 +08:00
}
void CompilerManager::compile(const QString& filename, const QByteArray& encoding, bool rebuild, CppCompileType compileType)
2021-06-25 12:40:11 +08:00
{
2021-07-26 22:29:47 +08:00
if (!pSettings->compilerSets().defaultSet()) {
QMessageBox::critical(pMainWindow,
tr("No compiler set"),
tr("No compiler set is configured.")+tr("Can't start debugging."));
return;
2021-04-20 22:24:33 +08:00
}
2021-07-26 22:29:47 +08:00
{
QMutexLocker locker(&mCompileMutex);
if (mCompiler!=nullptr) {
return;
}
mCompileErrorCount = 0;
mCompileIssueCount = 0;
//deleted when thread finished
2023-08-13 18:53:48 +08:00
#ifdef ENABLE_SDCC
if (pSettings->compilerSets().defaultSet()->compilerType()==CompilerType::SDCC) {
2023-08-15 10:57:03 +08:00
mCompiler = new SDCCFileCompiler(filename,encoding,compileType,false);
2023-08-13 18:53:48 +08:00
} else
#endif
2023-08-15 10:57:03 +08:00
mCompiler = new FileCompiler(filename,encoding,compileType,false);
2021-07-26 22:29:47 +08:00
mCompiler->setRebuild(rebuild);
connect(mCompiler, &Compiler::finished, mCompiler, &QObject::deleteLater);
connect(mCompiler, &Compiler::compileFinished, this, &CompilerManager::onCompileFinished);
2021-07-26 22:29:47 +08:00
connect(mCompiler, &Compiler::compileIssue, this, &CompilerManager::onCompileIssue);
connect(mCompiler, &Compiler::compileStarted, pMainWindow, &MainWindow::onCompileStarted);
connect(mCompiler, &Compiler::compileStarted, pMainWindow, &MainWindow::clearToolsOutput);
connect(mCompiler, &Compiler::compileOutput, pMainWindow, &MainWindow::logToolsOutput);
2021-09-13 22:45:50 +08:00
connect(mCompiler, &Compiler::compileIssue, pMainWindow, &MainWindow::onCompileIssue);
connect(mCompiler, &Compiler::compileErrorOccured, pMainWindow, &MainWindow::onCompileErrorOccured);
mCompiler->start();
}
}
void CompilerManager::compileProject(std::shared_ptr<Project> project, bool rebuild)
2021-09-13 22:45:50 +08:00
{
if (!pSettings->compilerSets().defaultSet()) {
QMessageBox::critical(pMainWindow,
tr("No compiler set"),
tr("No compiler set is configured.")+tr("Can't start debugging."));
return;
}
{
QMutexLocker locker(&mCompileMutex);
if (mCompiler!=nullptr) {
return;
}
mCompileErrorCount = 0;
mCompileIssueCount = 0;
//deleted when thread finished
2023-08-17 19:24:49 +08:00
mCompiler = createProjectCompiler(project);
2021-09-13 22:45:50 +08:00
mCompiler->setRebuild(rebuild);
connect(mCompiler, &Compiler::finished, mCompiler, &QObject::deleteLater);
connect(mCompiler, &Compiler::compileFinished, this, &CompilerManager::onCompileFinished);
2021-09-13 22:45:50 +08:00
connect(mCompiler, &Compiler::compileIssue, this, &CompilerManager::onCompileIssue);
connect(mCompiler, &Compiler::compileStarted, pMainWindow, &MainWindow::onProjectCompileStarted);
connect(mCompiler, &Compiler::compileStarted, pMainWindow, &MainWindow::clearToolsOutput);
connect(mCompiler, &Compiler::compileOutput, pMainWindow, &MainWindow::logToolsOutput);
2021-07-26 22:29:47 +08:00
connect(mCompiler, &Compiler::compileIssue, pMainWindow, &MainWindow::onCompileIssue);
connect(mCompiler, &Compiler::compileErrorOccured, pMainWindow, &MainWindow::onCompileErrorOccured);
mCompiler->start();
}
}
void CompilerManager::cleanProject(std::shared_ptr<Project> project)
{
if (!pSettings->compilerSets().defaultSet()) {
QMessageBox::critical(pMainWindow,
tr("No compiler set"),
tr("No compiler set is configured.")+tr("Can't start debugging."));
return;
}
{
QMutexLocker locker(&mCompileMutex);
if (mCompiler!=nullptr) {
return;
}
mCompileErrorCount = 0;
mCompileIssueCount = 0;
//deleted when thread finished
2023-08-17 19:24:49 +08:00
ProjectCompiler* compiler = createProjectCompiler(project);
compiler->setOnlyClean(true);
mCompiler = compiler;
mCompiler->setRebuild(false);
connect(mCompiler, &Compiler::finished, mCompiler, &QObject::deleteLater);
connect(mCompiler, &Compiler::compileFinished, this, &CompilerManager::onCompileFinished);
connect(mCompiler, &Compiler::compileIssue, this, &CompilerManager::onCompileIssue);
connect(mCompiler, &Compiler::compileStarted, pMainWindow, &MainWindow::onProjectCompileStarted);
connect(mCompiler, &Compiler::compileStarted, pMainWindow, &MainWindow::clearToolsOutput);
connect(mCompiler, &Compiler::compileOutput, pMainWindow, &MainWindow::logToolsOutput);
connect(mCompiler, &Compiler::compileIssue, pMainWindow, &MainWindow::onCompileIssue);
connect(mCompiler, &Compiler::compileErrorOccured, pMainWindow, &MainWindow::onCompileErrorOccured);
mCompiler->start();
}
}
2021-09-17 19:58:37 +08:00
void CompilerManager::buildProjectMakefile(std::shared_ptr<Project> project)
{
if (!pSettings->compilerSets().defaultSet()) {
QMessageBox::critical(pMainWindow,
tr("No compiler set"),
tr("No compiler set is configured.")+tr("Can't start debugging."));
return;
}
{
QMutexLocker locker(&mCompileMutex);
if (mCompiler!=nullptr) {
return;
}
2023-08-17 19:24:49 +08:00
ProjectCompiler* pCompiler=createProjectCompiler(project);
pCompiler->buildMakeFile();
delete pCompiler;
2021-09-17 19:58:37 +08:00
}
}
void CompilerManager::checkSyntax(const QString &filename, const QByteArray& encoding, const QString &content, std::shared_ptr<Project> project)
2021-06-24 20:43:09 +08:00
{
2021-07-26 22:29:47 +08:00
if (!pSettings->compilerSets().defaultSet()) {
QMessageBox::critical(pMainWindow,
tr("No compiler set"),
tr("No compiler set is configured.")+tr("Can't start debugging."));
2021-06-24 20:43:09 +08:00
return;
}
2021-07-26 22:29:47 +08:00
{
QMutexLocker locker(&mBackgroundSyntaxCheckMutex);
if (mBackgroundSyntaxChecker!=nullptr) {
return;
}
mSyntaxCheckErrorCount = 0;
mSyntaxCheckIssueCount = 0;
//deleted when thread finished
2023-08-15 10:57:03 +08:00
mBackgroundSyntaxChecker = new StdinCompiler(filename,encoding, content,true);
2021-09-12 22:45:00 +08:00
mBackgroundSyntaxChecker->setProject(project);
connect(mBackgroundSyntaxChecker, &Compiler::finished, mBackgroundSyntaxChecker, &QThread::deleteLater);
2021-07-26 22:29:47 +08:00
connect(mBackgroundSyntaxChecker, &Compiler::compileIssue, this, &CompilerManager::onSyntaxCheckIssue);
connect(mBackgroundSyntaxChecker, &Compiler::compileStarted, pMainWindow, &MainWindow::onSyntaxCheckStarted);
connect(mBackgroundSyntaxChecker, &Compiler::compileFinished, this, &CompilerManager::onSyntaxCheckFinished);
//connect(mBackgroundSyntaxChecker, &Compiler::compileOutput, pMainWindow, &MainWindow::logToolsOutput);
2021-07-26 22:29:47 +08:00
connect(mBackgroundSyntaxChecker, &Compiler::compileIssue, pMainWindow, &MainWindow::onCompileIssue);
connect(mBackgroundSyntaxChecker, &Compiler::compileErrorOccured, pMainWindow, &MainWindow::onCompileErrorOccured);
mBackgroundSyntaxChecker->start();
}
2021-06-24 20:43:09 +08:00
}
void CompilerManager::run(
const QString &filename,
const QString &arguments,
const QString &workDir,
const QStringList& binDirs)
{
2021-06-25 12:40:11 +08:00
QMutexLocker locker(&mRunnerMutex);
if (mRunner!=nullptr && !mRunner->pausing()) {
return;
}
QString redirectInputFilename;
bool redirectInput=false;
if (pSettings->executor().redirectInput()
&& !pSettings->executor().inputFilename().isEmpty()) {
redirectInput =true;
redirectInputFilename = pSettings->executor().inputFilename();
}
2021-11-01 09:18:23 +08:00
ExecutableRunner * execRunner;
2021-10-25 09:16:00 +08:00
if (programHasConsole(filename)) {
int consoleFlag=0;
if (redirectInput)
consoleFlag |= RPF_REDIRECT_INPUT;
if (pSettings->executor().pauseConsole())
consoleFlag |= RPF_PAUSE_CONSOLE;
#ifdef Q_OS_WIN
if (consoleFlag!=0) {
QString sharedMemoryId = QUuid::createUuid().toString();
QString newArguments = QString(" %1 %2 \"%3\" %4")
.arg(consoleFlag)
.arg(sharedMemoryId,localizePath(filename)).arg(arguments);
//delete when thread finished
execRunner = new ExecutableRunner(includeTrailingPathDelimiter(pSettings->dirs().appDir())+CONSOLE_PAUSER,newArguments,workDir);
execRunner->setShareMemoryId(sharedMemoryId);
} else {
//delete when thread finished
execRunner = new ExecutableRunner(filename,arguments,workDir);
}
#else
QString newArguments;
QString sharedMemoryId = "/r"+QUuid::createUuid().toString(QUuid::StringFormat::Id128);
if (consoleFlag!=0) {
QString consolePauserPath=includeTrailingPathDelimiter(pSettings->dirs().appLibexecDir())+"consolepauser";
if (!fileExists(consolePauserPath)) {
QMessageBox::critical(pMainWindow,
tr("Can't find Console Pauser"),
tr("Console Pauser \"%1\" doesn't exists!")
.arg(consolePauserPath));
return;
}
if (redirectInput) {
newArguments = QString(" -e \"%1\" %2 %3 \"%4\" \"%5\" %6")
.arg(consolePauserPath)
.arg(consoleFlag)
.arg(sharedMemoryId)
.arg(escapeSpacesInString(redirectInputFilename))
.arg(localizePath(escapeSpacesInString(filename)))
.arg(arguments);
} else {
newArguments = QString(" -e \"%1\" %2 %3 \"%4\" %5")
.arg(consolePauserPath)
.arg(consoleFlag)
.arg(sharedMemoryId,localizePath(escapeSpacesInString(filename))).arg(arguments);
}
} else {
newArguments = QString(" -e \"%1\" %2")
.arg(localizePath(escapeSpacesInString(filename))).arg(arguments);
}
execRunner = new ExecutableRunner(pSettings->environment().terminalPathForExec(),newArguments,workDir);
execRunner->setShareMemoryId(sharedMemoryId);
#endif
2021-11-01 09:18:23 +08:00
execRunner->setStartConsole(true);
} else {
//delete when thread finished
2021-11-01 09:18:23 +08:00
execRunner = new ExecutableRunner(filename,arguments,workDir);
}
2021-10-25 09:16:00 +08:00
if (redirectInput) {
2021-11-01 09:18:23 +08:00
execRunner->setRedirectInput(true);
execRunner->setRedirectInputFilename(redirectInputFilename);
2021-10-25 09:16:00 +08:00
}
execRunner->addBinDirs(binDirs);
execRunner->addBinDir(pSettings->dirs().appDir());
2021-11-01 09:18:23 +08:00
mRunner = execRunner;
2021-11-01 09:18:23 +08:00
connect(mRunner, &Runner::finished, this ,&CompilerManager::onRunnerTerminated);
connect(mRunner, &Runner::finished, mRunner ,&Runner::deleteLater);
2021-11-01 09:18:23 +08:00
connect(mRunner, &Runner::finished, pMainWindow ,&MainWindow::onRunFinished);
connect(mRunner, &Runner::pausingForFinish, pMainWindow ,&MainWindow::onRunPausingForFinish);
connect(mRunner, &Runner::pausingForFinish, this ,&CompilerManager::onRunnerPausing);
2021-11-01 09:18:23 +08:00
connect(mRunner, &Runner::runErrorOccurred, pMainWindow ,&MainWindow::onRunErrorOccured);
mRunner->start();
}
void CompilerManager::runProblem(const QString &filename, const QString &arguments, const QString &workDir, POJProblemCase problemCase,
const POJProblem& problem
)
2021-11-01 09:18:23 +08:00
{
QMutexLocker locker(&mRunnerMutex);
doRunProblem(filename, arguments, workDir, QVector<POJProblemCase> {problemCase}, problem);
2021-11-01 09:18:23 +08:00
}
void CompilerManager::runProblem(const QString &filename, const QString &arguments, const QString &workDir, const QVector<POJProblemCase>& problemCases,
const POJProblem& problem
)
2021-11-01 09:18:23 +08:00
{
QMutexLocker locker(&mRunnerMutex);
doRunProblem(filename, arguments, workDir, problemCases, problem);
}
void CompilerManager::doRunProblem(const QString &filename, const QString &arguments, const QString &workDir, const QVector<POJProblemCase>& problemCases,
const POJProblem& problem)
{
2021-11-01 09:18:23 +08:00
if (mRunner!=nullptr) {
return;
}
OJProblemCasesRunner * execRunner = new OJProblemCasesRunner(filename,arguments,workDir,problemCases);
mRunner = execRunner;
if (pSettings->executor().enableCaseLimit()) {
execRunner->setExecTimeout(pSettings->executor().caseTimeout());
execRunner->setMemoryLimit(pSettings->executor().caseMemoryLimit()*1024); //convert kb to bytes
}
size_t timeLimit = problem->getTimeLimit();
size_t memoryLimit = problem->getMemoryLimit();
if (timeLimit>0)
execRunner->setExecTimeout(timeLimit);
if (memoryLimit)
execRunner->setMemoryLimit(memoryLimit);
2021-11-01 09:18:23 +08:00
connect(mRunner, &Runner::finished, this ,&CompilerManager::onRunnerTerminated);
connect(mRunner, &Runner::finished, mRunner ,&Runner::deleteLater);
2021-11-01 20:44:08 +08:00
connect(mRunner, &Runner::finished, pMainWindow ,&MainWindow::onRunProblemFinished);
2021-11-01 09:18:23 +08:00
connect(mRunner, &Runner::runErrorOccurred, pMainWindow ,&MainWindow::onRunErrorOccured);
2021-11-01 20:44:08 +08:00
connect(execRunner, &OJProblemCasesRunner::caseStarted, pMainWindow, &MainWindow::onOJProblemCaseStarted);
connect(execRunner, &OJProblemCasesRunner::caseFinished, pMainWindow, &MainWindow::onOJProblemCaseFinished);
connect(execRunner, &OJProblemCasesRunner::newOutputGetted, pMainWindow, &MainWindow::onOJProblemCaseNewOutputGetted);
connect(execRunner, &OJProblemCasesRunner::resetOutput, pMainWindow, &MainWindow::onOJProblemCaseResetOutput);
if (pSettings->executor().redirectStderrToToolLog()) {
connect(execRunner, &OJProblemCasesRunner::logStderrOutput, pMainWindow, &MainWindow::logToolsOutput);
}
mRunner->start();
}
2021-06-25 12:40:11 +08:00
void CompilerManager::stopRun()
{
QMutexLocker locker(&mRunnerMutex);
if (mRunner!=nullptr) {
2021-06-25 12:40:11 +08:00
mRunner->stop();
disconnect(mRunner, &Runner::finished, this ,&CompilerManager::onRunnerTerminated);
mRunner=nullptr;
}
}
void CompilerManager::stopAllRunners()
{
emit signalStopAllRunners();
}
void CompilerManager::stopPausing()
{
QMutexLocker locker(&mRunnerMutex);
if (mRunner!=nullptr && mRunner->pausing()) {
disconnect(mRunner, &Runner::finished, this ,&CompilerManager::onRunnerTerminated);
mRunner->stop();
mRunner=nullptr;
}
2021-06-25 12:40:11 +08:00
}
void CompilerManager::stopCompile()
{
QMutexLocker locker(&mCompileMutex);
if (mCompiler!=nullptr)
mCompiler->stopCompile();
}
void CompilerManager::stopCheckSyntax()
{
QMutexLocker locker(&mBackgroundSyntaxCheckMutex);
if (mBackgroundSyntaxChecker!=nullptr)
mBackgroundSyntaxChecker->stopCompile();
}
2021-10-20 18:05:43 +08:00
bool CompilerManager::canCompile(const QString &)
{
return !compiling();
2021-04-20 22:24:33 +08:00
}
2022-12-25 12:00:09 +08:00
void CompilerManager::onCompileFinished(QString filename)
2021-04-20 22:24:33 +08:00
{
2021-06-25 12:40:11 +08:00
QMutexLocker locker(&mCompileMutex);
mCompiler=nullptr;
2022-12-25 12:00:09 +08:00
pMainWindow->onCompileFinished(filename,false);
2021-04-20 22:24:33 +08:00
}
void CompilerManager::onRunnerTerminated()
{
2021-06-25 12:40:11 +08:00
QMutexLocker locker(&mRunnerMutex);
mRunner=nullptr;
}
void CompilerManager::onRunnerPausing()
{
QMutexLocker locker(&mRunnerMutex);
disconnect(mRunner, &Runner::finished, this ,&CompilerManager::onRunnerTerminated);
disconnect(mRunner, &Runner::finished, pMainWindow ,&MainWindow::onRunFinished);
disconnect(mRunner, &Runner::runErrorOccurred, pMainWindow ,&MainWindow::onRunErrorOccured);
connect(this, &CompilerManager::signalStopAllRunners, mRunner, &Runner::stop);
mRunner=nullptr;
}
void CompilerManager::onCompileIssue(PCompileIssue issue)
{
if (issue->type == CompileIssueType::Error)
mCompileErrorCount++;
mCompileIssueCount++;
}
2022-12-25 12:00:09 +08:00
void CompilerManager::onSyntaxCheckFinished(QString filename)
2021-06-24 20:43:09 +08:00
{
2021-06-25 12:40:11 +08:00
QMutexLocker locker(&mBackgroundSyntaxCheckMutex);
2021-06-24 20:43:09 +08:00
mBackgroundSyntaxChecker=nullptr;
2022-12-25 12:00:09 +08:00
pMainWindow->onCompileFinished(filename, true);
2021-06-24 20:43:09 +08:00
}
void CompilerManager::onSyntaxCheckIssue(PCompileIssue issue)
2021-06-24 20:43:09 +08:00
{
if (issue->type == CompileIssueType::Error)
mSyntaxCheckErrorCount++;
if (issue->type == CompileIssueType::Error ||
issue->type == CompileIssueType::Warning)
mSyntaxCheckIssueCount++;
}
2023-08-17 19:24:49 +08:00
ProjectCompiler *CompilerManager::createProjectCompiler(std::shared_ptr<Project> project)
{
if (project->options().type==ProjectType::MicroController)
return new SDCCProjectCompiler(project);
else
return new ProjectCompiler(project);
}
int CompilerManager::syntaxCheckIssueCount() const
{
return mSyntaxCheckIssueCount;
}
int CompilerManager::compileIssueCount() const
{
return mCompileIssueCount;
2021-06-24 20:43:09 +08:00
}
2021-06-23 22:38:02 +08:00
int CompilerManager::syntaxCheckErrorCount() const
{
return mSyntaxCheckErrorCount;
}
int CompilerManager::compileErrorCount() const
{
return mCompileErrorCount;
}
CompileError::CompileError(const QString &reason):BaseError(reason)
{
}