forked from neonious/lowjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm.js
73 lines (61 loc) · 1.81 KB
/
vm.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
let native = require('native');
class Script {
constructor(code, options) {
this._func = native.compile(code);
if (options && options.filename)
this._filename = options.filename;
}
runInNewContext(sandbox, options) {
createContext(sandbox, options);
return runInContext(sandbox, options);
}
runInContext(sandbox, options) {
if (options && options.filename)
this._func.fileName = options.filename;
else
this._func.fileName = this._filename;
return native.runInContext(this._func, sandbox, options ? options.timeout : undefined, options ? !!options.breakOnSigint : undefined);
}
runInThisContext(options) {
return runInContext(global, options);
}
createCachedData() {
// returning bogus data does not break anything
// currently not supported, but we might in the future
return new Buffer(1);
}
}
function createScript(code, options) {
return new Script(code, options);
}
function createContext(sandbox) {
if (!sandbox)
sandbox = {};
sandbox._isContext = true;
return sandbox;
}
function isContext(sandbox) {
return !!sandbox._isContext;
}
function runInContext(code, sandbox, options) {
let script = new Script(code, options);
return script.runInContext(sandbox, options);
}
function runInNewContext(code, sandbox, options) {
let script = new Script(code, options);
createContext(sandbox, options);
return script.runInContext(sandbox, options);
}
function runInThisContext(code, options) {
let script = new Script(code, options);
return script.runInThisContext(options);
}
module.exports = {
Script,
createScript,
createContext,
isContext,
runInContext,
runInNewContext,
runInThisContext
};