-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathruntime.js
80 lines (67 loc) · 1.71 KB
/
runtime.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
require("./prototype");
const datastore = require("./datastore");
const stack = require("./stack");
const Statement = require("./statement");
const Event = require("./event");
const transaction = require("./transaction");
const config = require("./config");
let eventExtension;
const defaultOptions = {
declarative: false,
details: false,
};
try {
const { path } = config();
eventExtension = require(`${path}/extensions/event.js`);
} catch (err) {} // eslint-disable-line no-empty
module.exports.process = function (string, options = {}) {
const { options: configOptions } = config();
options = { ...defaultOptions, ...configOptions, ...options };
const before = Date.now();
let result;
try {
const statements = Statement.compile(string);
if (!statements.length) {
return;
}
transaction.start();
result = stack.process(statements, null, options);
transaction.end();
} catch (error) {
transaction.rollback();
result = { ...result, error, value: error.toString() };
}
const events = Event.list();
const date = Date.now();
const time = date - before;
datastore.write({
s: string,
$: result.$nuc?.length ? result.$nuc : undefined,
c: options.declarative ? true : undefined,
t: time,
r: result.value,
d: date,
e: result.error ? true : undefined,
v: events,
});
if (eventExtension) {
eventExtension.apply(events);
}
Event.clear();
if (options.details) {
return {
result: result.value,
$nuc: result.$nuc,
declarative: options.declarative,
date,
time,
error: !!result.error,
events,
};
} else {
if (result.error) {
throw result.error;
}
return result.value;
}
};