131 lines
3.6 KiB
TypeScript
131 lines
3.6 KiB
TypeScript
|
import { join } from 'path';
|
||
|
import { exec, spawn } from 'child_process';
|
||
|
import util from 'util';
|
||
|
import { RunResult, timeoutSeconds } from '../index.js';
|
||
|
import { IRunner, IRunnerParams, IRunnerReturn } from './types.js';
|
||
|
import kill from 'tree-kill';
|
||
|
|
||
|
const execPromise = util.promisify(exec);
|
||
|
|
||
|
export type CppPlatform = 'VisualStudio' | 'GCC';
|
||
|
|
||
|
interface IRunnerParamsCpp extends IRunnerParams {
|
||
|
srcDir: string;
|
||
|
problemName: string;
|
||
|
input: string;
|
||
|
cppPlatform: CppPlatform;
|
||
|
outputCallback?: (data: string) => void;
|
||
|
}
|
||
|
|
||
|
export const runCpp: IRunner<IRunnerParamsCpp> = async function (
|
||
|
params: IRunnerParamsCpp
|
||
|
): IRunnerReturn {
|
||
|
console.log(`- BUILD: ${params.problemName}`);
|
||
|
|
||
|
const configureCommand = `cmake -S ${params.srcDir} -B ${join(params.srcDir, 'build')}`;
|
||
|
try {
|
||
|
await execPromise(configureCommand);
|
||
|
} catch (e) {
|
||
|
const buildErrorText = e?.toString() ?? 'Unknown build errors.';
|
||
|
console.log('Build errors: ' + buildErrorText);
|
||
|
return {
|
||
|
success: false,
|
||
|
runResult: { kind: 'CompileFailed', resultKindReason: buildErrorText }
|
||
|
};
|
||
|
}
|
||
|
|
||
|
const compileCommand = `cmake --build ${join(params.srcDir, 'build')} --target ${params.problemName}`;
|
||
|
try {
|
||
|
await execPromise(compileCommand);
|
||
|
} catch (e) {
|
||
|
const buildErrorText = e?.toString() ?? 'Unknown build errors.';
|
||
|
console.log('Build errors: ' + buildErrorText);
|
||
|
return {
|
||
|
success: false,
|
||
|
runResult: { kind: 'CompileFailed', resultKindReason: buildErrorText }
|
||
|
};
|
||
|
}
|
||
|
|
||
|
console.log(`- RUN: ${params.problemName}`);
|
||
|
|
||
|
let runCommand = '';
|
||
|
if (params.cppPlatform === 'VisualStudio') {
|
||
|
runCommand = `${join(params.srcDir, 'build', 'Debug', `${params.problemName}.exe`)}`;
|
||
|
} else {
|
||
|
runCommand = `${join(params.srcDir, 'build', params.problemName)}`;
|
||
|
}
|
||
|
try {
|
||
|
let outputBuffer = '';
|
||
|
const child = spawn(runCommand, { shell: true });
|
||
|
child.stdout.setEncoding('utf8');
|
||
|
child.stdout.on('data', (data) => {
|
||
|
outputBuffer += data.toString();
|
||
|
});
|
||
|
child.stderr.setEncoding('utf8');
|
||
|
child.stderr.on('data', (data) => {
|
||
|
outputBuffer += data.toString();
|
||
|
});
|
||
|
|
||
|
let runStartTime = performance.now();
|
||
|
child.stdin.write(params.input);
|
||
|
child.stdin.end();
|
||
|
|
||
|
let timeLimitExceeded = false;
|
||
|
let completedNormally = false;
|
||
|
|
||
|
return {
|
||
|
success: true,
|
||
|
runResult: new Promise<RunResult>(async (resolve) => {
|
||
|
child.on('close', () => {
|
||
|
completedNormally = !timeLimitExceeded;
|
||
|
|
||
|
let runEndTime = performance.now();
|
||
|
const runtimeMilliseconds = Math.floor(runEndTime - runStartTime);
|
||
|
|
||
|
if (completedNormally) {
|
||
|
clearTimeout(timeoutHandle);
|
||
|
resolve({
|
||
|
kind: 'Completed',
|
||
|
output: outputBuffer,
|
||
|
exitCode: child.exitCode!,
|
||
|
runtimeMilliseconds
|
||
|
});
|
||
|
} else {
|
||
|
console.log(`Process terminated, total sandbox time: ${runtimeMilliseconds}ms`);
|
||
|
resolve({
|
||
|
kind: 'TimeLimitExceeded',
|
||
|
output: outputBuffer,
|
||
|
resultKindReason: `Timeout after ${timeoutSeconds} seconds`
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
let timeoutHandle = setTimeout(() => {
|
||
|
if (completedNormally) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
console.log(`Run timed out after ${timeoutSeconds} seconds, killing process...`);
|
||
|
timeLimitExceeded = true;
|
||
|
|
||
|
child.stdin.end();
|
||
|
child.stdin.destroy();
|
||
|
child.stdout.destroy();
|
||
|
child.stderr.destroy();
|
||
|
child.kill('SIGKILL');
|
||
|
}, timeoutSeconds * 1000);
|
||
|
}),
|
||
|
killFunc() {
|
||
|
if (child.pid !== undefined) {
|
||
|
if (!completedNormally && !timeLimitExceeded) {
|
||
|
kill(child.pid);
|
||
|
params.outputCallback?.('\n[Manually stopped]');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
} catch (error) {
|
||
|
return { success: false, runResult: { kind: 'RunError' } };
|
||
|
}
|
||
|
};
|