-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexecute-program.js
88 lines (82 loc) · 2.58 KB
/
execute-program.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
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
import program from '../src/commands/main.js';
import { prepareOptions } from '../src/utils/default-option-description.js';
export const url = 'http://localhost:3013';
export const compilerUrl = 'http://localhost:3080';
function getProgramOptions(command) {
return {
optionValues: { ...command._optionValues },
optionValueSources: { ...command._optionValueSources },
commands: command.commands.map((c) => getProgramOptions(c)),
};
}
function setProgramOptions(command, options) {
command._optionValues = options.optionValues;
command._optionValueSources = options.optionValueSources;
command.commands.forEach((c, i) => setProgramOptions(c, options.commands[i]));
}
let isProgramExecuting = false;
export default async function executeProgram(...args) {
if (isProgramExecuting) throw new Error('Another program is already running');
isProgramExecuting = true;
let result = '';
prepareOptions(program);
program
.configureOutput({
writeOut: (str) => {
result += str;
},
})
.exitOverride();
const { log, warn, group, groupEnd } = console;
let padding = 0;
console.group = () => {
padding += 1;
};
console.groupEnd = () => {
padding -= 1;
};
console.log = (...data) => {
if (result) result += '\n';
result += ' '.repeat(padding * 4) + data.join(' ');
};
console.warn = (...data) => {
if (/Cost of .+ execution ≈ .+ae/.test(data[0])) return;
warn(...data);
};
const options = getProgramOptions(program);
try {
const allArgs = [
...args.map((arg) => arg.toString()),
...(['config', 'select-node', 'select-compiler'].includes(args[0]) ||
args.includes('--url') ||
(args[0] === 'account' &&
['save', 'create', 'address', 'sign-message', 'verify-message'].includes(args[1])) ||
(args[0] === 'contract' &&
['compile', 'encode-calldata', 'decode-call-result'].includes(args[1])) ||
(args[0] === 'tx' && args[1] !== 'verify')
? []
: ['--url', url]),
...(['compile', 'deploy', 'call', 'encode-calldata', 'decode-call-result'].includes(
args[1],
) && !args.includes('--compilerUrl')
? ['--compilerUrl', compilerUrl]
: []),
];
await program.parseAsync(allArgs, { from: 'user' });
} finally {
Object.assign(console, {
log,
warn,
group,
groupEnd,
});
isProgramExecuting = false;
setProgramOptions(program, options);
}
if (!args.includes('--json')) return result;
try {
return JSON.parse(result);
} catch {
throw new Error(`Can't parse as JSON:\n${result}`);
}
}