-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
275 lines (242 loc) · 7.57 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
"use strict";
// Require Node.js dependencies
const { EventEmitter } = require("events");
const { readFile } = require("fs").promises;
const { extname } = require("path");
const { randomBytes } = require("crypto");
// Require Third-party Dependencies
const timer = require("@slimio/timer");
// CONSTANTS
const DEFAULT_INTERVAL_MS = 5000;
const ACTIONS = new Set(["insert", "update", "delete"]);
const TRANSACT = Symbol("TRANSACT");
/** @typedef {(string|symbol)} Subject */
/**
* @typedef {object} Actions
* @property {string} insert
* @property {string} delete
* @property {string} update
*/
/**
* @typedef {object} Transaction
* @property {number} index
* @property {Actions} action
* @property {Subject} subject
* @property {number} openAt Transaction Creation timestamp
* @property {any} attachData
* @property {any[]} data
*/
/**
* @class TransactManager
* @augments EventEmitter
*
* @property {*} db SQLite DB ref
* @property {number} timer Interval Timer ID
* @property {Map<string, Actions>} subjects
* @property {Map<string, Transaction>} transactions
*/
class TransactManager extends EventEmitter {
/**
* @class
* @param {*} db SQLite db
* @param {object} [options] options object
* @param {number} [options.interval=5000] Transaction Interval
* @param {boolean} [options.verbose=false] Enable verbose mode
*/
constructor(db, options = Object.create(null)) {
super();
this.db = db;
this.verbose = typeof options.verbose === "boolean" ? options.verbose : false;
/** @type {Map<string, Actions>} */
this.subjects = new Map();
/** @type {Map<string, Transaction>} */
this.transactions = new Map();
// Set non-enumerable TRANSACT property
Reflect.defineProperty(this, TRANSACT, {
enumerable: false,
value: []
});
// Create the Transaction interval
const intervalMs = typeof options.interval === "number" ? options.interval : DEFAULT_INTERVAL_MS;
this.timer = timer.setInterval(async() => {
/** @type {string[]} */
const qtArr = this[TRANSACT];
if (this.verbose) {
console.log(`Run transaction with ${qtArr.length} element!`);
}
// If there is no open transaction (then, just return)
if (qtArr.length === 0) {
return;
}
let tLen = qtArr.length;
while (tLen--) {
const transactId = qtArr.shift();
const { subject, action, data, attachData, openAt } = this.transactions.get(transactId);
const SQLQuery = this.subjects.get(subject)[action];
this.db.run(SQLQuery, ...data);
this.transactions.delete(transactId);
this.emit(`${subject}.${action}`, openAt, data, attachData);
}
}, intervalMs);
}
/**
* @function size
* @description Size of open transactions
* @returns {number}
*/
get size() {
return this.transactions.size;
}
/**
* @version 0.1.0
*
* @async
* @function loadSubjectsFromFile
* @description Load subjects from a .JSON file
* @memberof TransactManager#
* @param {!string} fileLocation file location on the local disk
* @returns {Promise<void>}
*
* @throws {TypeError}
* @throws {Error}
*/
async loadSubjectsFromFile(fileLocation) {
if (typeof fileLocation !== "string") {
throw new TypeError("fileLocation should be typeof string!");
}
if (extname(fileLocation) !== ".json") {
throw new Error("Only JSON file are supported!");
}
const buf = await readFile(fileLocation);
const query = JSON.parse(buf.toString());
for (const [subject, actions] of Object.entries(query)) {
this.registerSubject(subject, actions);
}
}
/**
* @version 0.1.0
*
* @function registerSubject
* @description Add a new transaction subject
* @memberof TransactManager#
* @param {!Subject} name subject name
* @param {!Actions} actions available actions for the given subject
* @returns {TransactManager}
*
* @throws {TypeError}
*
* @example
* const transact = new TransactManager(db);
* transact.registerSubject("alarm", {
* insert: "INSERT INTO ...",
* delete: "DELETE FROM alarms WHERE cid = ?"
* });
*/
registerSubject(name, actions) {
const tName = typeof name;
if (tName !== "string" && tName !== "symbol") {
throw new TypeError("name should be typeof string or symbol");
}
if (!this.subjects.has(name)) {
this.subjects.set(name, actions);
}
return this;
}
/**
* @version 0.1.0
*
* @function open
* @memberof TransactManager#
* @param {!string} action action name
* @param {!Subject} subject subject
* @param {any[]} data data to be publish
* @returns {string}
*
* @throws {Error}
*/
open(action, subject, data) {
if (!ACTIONS.has(action)) {
throw new Error(`Unknown action ${action}`);
}
if (!this.subjects.has(subject)) {
throw new Error(`Unknown subject with name ${subject}`);
}
const tSub = this.subjects.get(subject);
if (!Reflect.has(tSub, action)) {
throw new Error(`Action with name ${action} is not defined on subject ${subject}`);
}
// Generate transactId
const transactId = randomBytes(16).toString();
const openAt = Date.now();
if (this.verbose) {
console.log(`Open new transaction (${subject}.${action}) with uid ${transactId}`);
}
const index = this[TRANSACT].push(transactId);
this.transactions.set(transactId, {
action, subject, data, index, openAt
});
return transactId;
}
/**
* @version 0.1.0
*
* @function attachData
* @description Attach a payload to a given transaction
* @memberof TransactManager#
* @param {!string} transactId transaction id
* @param {*} data custom data to attach to the transaction
* @returns {boolean}
*/
attachData(transactId, data) {
if (!this.transactions.has(transactId)) {
return false;
}
const tr = this.transactions.get(transactId);
Reflect.set(tr, "attachData", data);
return true;
}
/**
* @version 0.1.0
*
* @function close
* @description Close a given transaction by ID
* @memberof TransactManager#
* @param {!string} transactId transaction id
* @returns {boolean}
*
* @throws {Error}
*/
close(transactId) {
if (!this.transactions.has(transactId)) {
return false;
}
const { index } = this.transactions.get(transactId);
this[TRANSACT].splice(index, 1);
return true;
}
/**
* @function exit
* @description Exit and liberate all ressources of the TransactionManager (timer etc..)
* @memberof TransactManager#
* @returns {void}
*/
exit() {
timer.clearInterval(this.timer);
this.timer = undefined;
}
}
/**
* @static
* @readonly
* @memberof TransactManager#
* @type {object}
* @property {string} Insert
* @property {string} Update
* @property {string} Delete
*/
TransactManager.Actions = Object.freeze({
Insert: "insert",
Update: "update",
Delete: "delete"
});
module.exports = TransactManager;