-
Notifications
You must be signed in to change notification settings - Fork 0
/
c++.js
46 lines (43 loc) · 1.59 KB
/
c++.js
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
const util = require("./util");
const commandLine = require("./command-line");
const runStr = (source_code, lang, options) => {
const tmp_dir = util.makeTmpDir();
//copy code to tmp folder tmps filest
const lang_ext = util.getLangExtension(lang);
if (lang_ext !== ".cpp") throw new Error(`${lang} is not supported`);
const tmp_file_path = util.makeTmpFileWithGivenData(
tmp_dir,
lang_ext,
source_code
);
options = util.makeOptions(options, tmp_file_path);
const file_name = util.pathBaseName(tmp_file_path);
const cc_o_out_file_name = util.pathBaseName(tmp_file_path, ".cpp") + ".out";
const cc_args = [file_name, "-o", cc_o_out_file_name];
const cc_status = commandLine.execute("g++", cc_args, options);
if (cc_status.error) return cc_status;
const cr_status = commandLine.execute(
`./${cc_o_out_file_name}`,
null,
options
);
return cr_status;
};
const runFile = (source_file, lang, options) => {
const lang_ext = util.getLangExtension(lang);
if (lang_ext !== ".cpp" || util.pathExtName(source_file) != ".cpp")
throw new Error(`${lang} is not supported`);
options = util.makeOptions(options, source_file);
const file_name = util.pathBaseName(source_file);
const cc_o_out_file_name = util.pathBaseName(source_file, ".cpp") + ".out";
const cc_args = [file_name, "-o", cc_o_out_file_name];
const cc_status = commandLine.execute("g++", cc_args, options);
if (cc_status.error) return cc_status;
const cr_status = commandLine.execute(
`./${cc_o_out_file_name}`,
null,
options
);
return cr_status;
};
module.exports = { runStr, runFile };