-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwasm_runner.cpp
More file actions
236 lines (206 loc) · 8.43 KB
/
Copy pathwasm_runner.cpp
File metadata and controls
236 lines (206 loc) · 8.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#include "wasm_runner.h"
#include <QMutexLocker>
#include <QProcess>
#include <QTemporaryDir>
#include <QTemporaryFile>
#include <QFileInfo>
#include <QDir>
#include <QElapsedTimer>
#include <QCoreApplication>
#include <QStandardPaths>
WasmRunner::WasmRunner(bool isCpp)
: m_isCpp(isCpp)
{}
QString WasmRunner::getWasmerExecutable() const {
// Try to find the downloaded Wasmer executable
QString basePath = QCoreApplication::applicationDirPath();
QStringList searchPaths = {
basePath + "/tools/wasmer/bin/wasmer",
basePath + "/../tools/wasmer/bin/wasmer",
basePath + "/../../tools/wasmer/bin/wasmer",
basePath + "/../../../tools/wasmer/bin/wasmer"
};
#ifdef Q_OS_WIN
for (int i = 0; i < searchPaths.size(); ++i) {
searchPaths[i] += ".exe";
}
#endif
for (const QString &path : searchPaths) {
if (QFile::exists(path)) {
return path;
}
}
// Fallback to system PATH
return "wasmer";
}
QString WasmRunner::getWasiSdkCompiler() const {
QString basePath = QCoreApplication::applicationDirPath();
QString compilerName = m_isCpp ? "clang++" : "clang";
QStringList searchPaths = {
basePath + "/_deps/wasi_sdk-src/bin/" + compilerName,
basePath + "/_deps/wasi_sdk-src/wasi-sdk-20.0/bin/" + compilerName,
basePath + "/wasi-sdk/bin/" + compilerName,
basePath + "/wasi-sdk/wasi-sdk-20.0/bin/" + compilerName,
basePath + "/../wasi-sdk/bin/" + compilerName,
basePath + "/../wasi-sdk/wasi-sdk-20.0/bin/" + compilerName,
basePath + "/../../wasi-sdk/bin/" + compilerName,
basePath + "/../../wasi-sdk/wasi-sdk-20.0/bin/" + compilerName,
basePath + "/../../../wasi-sdk/bin/" + compilerName,
basePath + "/../../../wasi-sdk/wasi-sdk-20.0/bin/" + compilerName
};
#ifdef Q_OS_WIN
for (int i = 0; i < searchPaths.size(); ++i) {
searchPaths[i] += ".exe";
}
#endif
for (const QString &path : searchPaths) {
if (QFile::exists(path)) {
return path;
}
}
return compilerName;
}
EmbeddedRunner::Result WasmRunner::execute(const QString &code,
const QString &stdinInput,
volatile bool *stopRequested,
const QMap<QString, QString> &additionalFiles)
{
QMutexLocker lock(&m_mutex);
Result result;
QTemporaryDir tmpDir;
if (!tmpDir.isValid()) {
result.error = QStringLiteral("Failed to create temp directory");
result.exitCode = -1;
return result;
}
const QString ext = m_isCpp ? QStringLiteral(".cpp") : QStringLiteral(".c");
const QString srcPath = tmpDir.filePath(QStringLiteral("user_code") + ext);
const QString binPath = tmpDir.filePath(QStringLiteral("user_bin.wasm"));
QFile srcFile(srcPath);
if (!srcFile.open(QIODevice::WriteOnly | QIODevice::Text)) {
result.error = QStringLiteral("Failed to write source file");
result.exitCode = -1;
return result;
}
srcFile.write(code.toUtf8());
srcFile.close();
for (auto it = additionalFiles.begin(); it != additionalFiles.end(); ++it) {
QFile file(tmpDir.filePath(it.key()));
if (file.open(QIODevice::WriteOnly | QIODevice::Text)) {
file.write(it.value().toUtf8());
file.close();
}
}
QString wasmerExe = getWasmerExecutable();
// ── 1. Compile to WASM natively using wasi-sdk ──────────────────────
QProcess compileProc;
compileProc.setWorkingDirectory(tmpDir.path());
QString basePath = QCoreApplication::applicationDirPath();
QString includeDir = QDir::cleanPath(basePath + "/../resources/include");
QString wasiSdkCompiler = getWasiSdkCompiler();
QStringList compileArgs;
compileArgs << "-I" + includeDir;
if (m_isCpp) {
QString pchPath = includeDir + "/stdcpp.h.pch";
if (!QFile::exists(pchPath)) {
QStringList pchArgs;
pchArgs << "-x" << "c++-header" << "-fno-exceptions" << "-fno-rtti"
<< "-DJSON_HAS_FILESYSTEM=0" << "-DJSON_HAS_EXPERIMENTAL_FILESYSTEM=0"
<< "-I" + includeDir << includeDir + "/stdcpp.h" << "-o" << pchPath;
QProcess pchProc;
pchProc.start(wasiSdkCompiler, pchArgs);
pchProc.waitForFinished(-1);
}
compileArgs << "-fno-exceptions" << "-fno-rtti" << "-DJSON_HAS_FILESYSTEM=0" << "-DJSON_HAS_EXPERIMENTAL_FILESYSTEM=0";
if (QFile::exists(pchPath)) {
compileArgs << "-include-pch" << pchPath;
}
}
compileArgs << "user_code" + ext << "-o" << "user_bin.wasm";
qDebug() << "WasmRunner: starting compileProc... args:" << compileArgs;
compileProc.start(wasiSdkCompiler, compileArgs);
if (!compileProc.waitForStarted(2000)) {
result.error = QStringLiteral("Failed to start compiler: ") + compileProc.errorString();
result.exitCode = -1;
qDebug() << "WasmRunner: Failed to start compileProc";
return result;
}
compileProc.closeWriteChannel();
QElapsedTimer compileTimer;
compileTimer.start();
qDebug() << "WasmRunner: waiting for compile finish...";
while (!compileProc.waitForFinished(100)) {
if (stopRequested && *stopRequested) {
compileProc.kill();
compileProc.waitForFinished(500);
result.error = QStringLiteral("Compilation stopped by user");
result.exitCode = -1;
qDebug() << "WasmRunner: compile aborted";
return result;
}
if (compileTimer.elapsed() >= 300000) {
compileProc.kill();
compileProc.waitForFinished(500);
result.error = QStringLiteral("Compilation timed out (300 s)");
result.exitCode = -1;
qDebug() << "WasmRunner: compile timed out";
return result;
}
}
qDebug() << "WasmRunner: compile finished. exitCode:" << compileProc.exitCode();
if (compileProc.exitStatus() != QProcess::NormalExit || compileProc.exitCode() != 0) {
result.error = QString::fromUtf8(compileProc.readAllStandardError());
if (result.error.isEmpty()) {
result.error = QString::fromUtf8(compileProc.readAllStandardOutput());
}
result.exitCode = compileProc.exitCode() != 0 ? compileProc.exitCode() : -1;
return result;
}
// ── 2. Run the generated WASM binary ────────────────────────────────────
QProcess runProc;
runProc.setWorkingDirectory(tmpDir.path());
QStringList runArgs;
runArgs << "run" << "--mapdir" << "/src:." << "user_bin.wasm";
qDebug() << "WasmRunner: starting wasmer... args:" << runArgs;
runProc.start(wasmerExe, runArgs);
if (!runProc.waitForStarted(2000)) {
result.error = QStringLiteral("Failed to start engine: ") + runProc.errorString();
result.exitCode = -1;
qDebug() << "WasmRunner: Failed to start";
return result;
}
if (!stdinInput.isEmpty()) {
runProc.write(stdinInput.toUtf8());
}
runProc.closeWriteChannel();
const int TIMEOUT_MS = 60000;
QElapsedTimer timer;
timer.start();
qDebug() << "WasmRunner: waiting for finish...";
while (!runProc.waitForFinished(100)) {
if (stopRequested && *stopRequested) {
runProc.kill();
runProc.waitForFinished(500);
result.error = QStringLiteral("Execution stopped by user");
result.exitCode = -1;
result.timedOut = false;
qDebug() << "WasmRunner: aborted";
return result;
}
if (timer.elapsed() >= TIMEOUT_MS) {
runProc.kill();
result.error = QStringLiteral("Time limit exceeded (60 s)");
result.exitCode = -1;
result.timedOut = true;
qDebug() << "WasmRunner: timed out";
return result;
}
}
qDebug() << "WasmRunner: finished. exitCode:" << runProc.exitCode();
result.output = QString::fromUtf8(runProc.readAllStandardOutput());
result.error = QString::fromUtf8(runProc.readAllStandardError());
result.exitCode = runProc.exitCode();
result.timedOut = false;
qDebug() << "WasmRunner: returning result";
return result;
}