2021-04-20 22:24:33 +08:00
|
|
|
#include "compiler.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTextCodec>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QTime>
|
|
|
|
|
|
|
|
Compiler::Compiler(bool silent,bool onlyCheckSyntax):
|
|
|
|
QThread(),
|
|
|
|
mSilent(silent),
|
|
|
|
mOnlyCheckSyntax(onlyCheckSyntax)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Compiler::run()
|
|
|
|
{
|
|
|
|
emit compileStarted();
|
|
|
|
if (prepareForCompile()){
|
|
|
|
QElapsedTimer timer;
|
|
|
|
timer.start();
|
|
|
|
runCommand(mCompiler, mArguments, QFileInfo(mCompiler).absolutePath());
|
|
|
|
|
|
|
|
log("");
|
|
|
|
log(tr("Compile Result:"));
|
|
|
|
log("------------------");
|
|
|
|
log(tr("- Errors: %1").arg(0));
|
|
|
|
log(tr("- Warnings: %1").arg(0));
|
|
|
|
log(tr("- Time Elasped: %1 secs").arg(timer.elapsed() / 1000.0));
|
|
|
|
}
|
|
|
|
this->deleteLater();
|
|
|
|
emit compileFinished();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Compiler::stopCompile()
|
|
|
|
{
|
|
|
|
mStop = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Compiler::getCharsetArgument(const QByteArray& encoding)
|
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
if (compilerSet()->autoAddCharsetParams() && encoding != ENCODING_ASCII) {
|
|
|
|
QString encodingName;
|
|
|
|
QString systemEncodingName=QTextCodec::codecForLocale()->name();
|
|
|
|
if (encoding == ENCODING_SYSTEM_DEFAULT) {
|
|
|
|
encodingName = systemEncodingName;
|
|
|
|
} else if (encoding == ENCODING_UTF8_BOM) {
|
|
|
|
encodingName = "UTF-8";
|
|
|
|
} else {
|
|
|
|
encodingName = encoding;
|
|
|
|
}
|
|
|
|
result += QString(" -finput-charset=%1 -fexec-charset=%2")
|
|
|
|
.arg(encodingName)
|
|
|
|
.arg(systemEncodingName);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Compiler::getCCompileArguments(bool checkSyntax)
|
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
if (checkSyntax) {
|
|
|
|
result += " -fsyntax-only";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (PCompilerOption pOption: compilerSet()->options()) {
|
|
|
|
if (pOption->value > 0 && pOption->isC) {
|
|
|
|
if (pOption->choices.isEmpty()) {
|
|
|
|
result += " " + pOption->setting;
|
|
|
|
} else if (pOption->value < pOption->choices.size()) {
|
|
|
|
QStringList nameValue=pOption->choices[pOption->value].split('=');
|
|
|
|
if (nameValue.count()==2) {
|
|
|
|
result += " " + pOption->setting + nameValue[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (compilerSet()->useCustomCompileParams() && !compilerSet()->customCompileParams().isEmpty()) {
|
|
|
|
result += " "+compilerSet()->customCompileParams();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Compiler::getCppCompileArguments(bool checkSyntax)
|
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
if (checkSyntax) {
|
|
|
|
result += " -fsyntax-only";
|
|
|
|
}
|
|
|
|
|
|
|
|
for (PCompilerOption pOption: compilerSet()->options()) {
|
|
|
|
if (pOption->value > 0 && pOption->isCpp) {
|
|
|
|
if (pOption->choices.isEmpty()) {
|
|
|
|
result += " "+pOption->setting;
|
|
|
|
} else if (pOption->value < pOption->choices.size()) {
|
|
|
|
QStringList nameValue=pOption->choices[pOption->value].split('=');
|
|
|
|
if (nameValue.count()==2) {
|
|
|
|
result += " "+pOption->setting + nameValue[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (compilerSet()->useCustomCompileParams() && !compilerSet()->customCompileParams().isEmpty()) {
|
|
|
|
result += " "+compilerSet()->customCompileParams();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString Compiler::getCIncludeArguments()
|
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
for (const QString& folder:compilerSet()->CIncludeDirs()) {
|
|
|
|
result += QString(" -I\"%1\"").arg(folder);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Compiler::getCppIncludeArguments()
|
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
for (const QString& folder:compilerSet()->CppIncludeDirs()) {
|
|
|
|
result += QString(" -I\"%1\"").arg(folder);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Compiler::getLibraryArguments()
|
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
|
|
|
|
for (const QString& folder:compilerSet()->libDirs()) {
|
|
|
|
result += QString(" -L\"%1\"").arg(folder);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add global compiler linker extras
|
|
|
|
if (compilerSet()->useCustomLinkParams() && !compilerSet()->customLinkParams().isEmpty()) {
|
|
|
|
result += " "+compilerSet()->customCompileParams();
|
|
|
|
}
|
|
|
|
|
|
|
|
//options like "-static" must be added after "-lxxx"
|
|
|
|
for (PCompilerOption pOption: compilerSet()->options()) {
|
|
|
|
if (pOption->value > 0 && pOption->isLinker) {
|
|
|
|
if (pOption->choices.isEmpty()) {
|
|
|
|
result += " " + pOption->setting;
|
|
|
|
} else if (pOption->value < pOption->choices.size()) {
|
|
|
|
QStringList nameValue=pOption->choices[pOption->value].split('=');
|
|
|
|
if (nameValue.count()==2) {
|
|
|
|
result += " " + pOption->setting + nameValue[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Compiler::runCommand(const QString &cmd, const QString &arguments, const QString &workingDir, const QString& inputText)
|
|
|
|
{
|
|
|
|
QProcess process;
|
|
|
|
mStop = false;
|
|
|
|
process.setProgram(cmd);
|
|
|
|
process.setArguments(QProcess::splitCommand(arguments));
|
|
|
|
process.setWorkingDirectory(workingDir);
|
|
|
|
|
|
|
|
process.connect(&process, &QProcess::readyReadStandardError,[&process,this](){
|
|
|
|
this->log(process.readAllStandardError());
|
|
|
|
});
|
|
|
|
process.connect(&process, &QProcess::readyReadStandardOutput,[&process,this](){
|
|
|
|
this->log(process.readAllStandardOutput());
|
|
|
|
});
|
|
|
|
process.start();
|
|
|
|
if (!inputText.isEmpty())
|
|
|
|
process.write(inputText.toUtf8());
|
|
|
|
process.closeWriteChannel();
|
2021-04-21 18:58:35 +08:00
|
|
|
process.waitForStarted(5000);
|
2021-04-20 22:24:33 +08:00
|
|
|
while (true) {
|
|
|
|
process.waitForFinished(1000);
|
|
|
|
if (process.state()!=QProcess::Running) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (mStop) {
|
|
|
|
process.kill();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Compiler::log(const QString &msg)
|
|
|
|
{
|
|
|
|
emit compileOutput(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Compiler::error(const QString &msg)
|
|
|
|
{
|
|
|
|
emit compileError(msg);
|
|
|
|
}
|
|
|
|
|