-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwatcher.js
383 lines (323 loc) · 7.3 KB
/
watcher.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
const PGUIDs = require('./pguids');
const EventEmitter = require('events');
const helpers = require('./helpers');
const EVENTS = {
1 : 'insert',
2 : 'update',
3 : 'delete'
};
// A counter for naming query tables
let ctr = 0;
// A queue for re-running queries
const queue = [];
class Watcher {
constructor(client, uid_col, rev_col) {
this.uid_col = uid_col || '__id__';
this.rev_col = rev_col || '__rev__';
this.uid = new PGUIDs(client, this.uid_col, this.rev_col);
this.client = client;
// Keep track of which tables we've added triggers
// to (currently not shared between instances)
this.triggers = {};
helpers.query(this.client, 'LISTEN __qw__');
this.client.on('notification', (message) => {
const key = message.payload;
queue.forEach((item) => {
item.tables[key] && ++item.stale;
});
this.process();
});
}
// Get the selected columns from a sql statement
cols(sql) {
const meta = [
this.uid_col,
this.rev_col
];
const cols_sql = `
SELECT
*
FROM
(${sql}) q
WHERE
0 = 1
`;
return helpers.query(this.client, cols_sql)
.then((result) => {
return result.fields
.filter(({ name }) => meta.indexOf(name) === -1)
.map(({ name }) => name);
});
}
// Initialize a temporary table to keep track of state changes
initializeQuery(sql) {
const table = `__qw__${ctr++}`;
const i_table = helpers.quote(table);
// Create a table to keep track of state changes
const table_sql = `
CREATE TEMP TABLE ${i_table} (
id TEXT NOT NULL,
rev BIGINT NOT NULL
)
`;
const promises = [
this.cols(sql),
helpers.query(this.client, table_sql)
];
return Promise.all(promises).then(([ cols ]) => [ table, cols ]);
}
// Create some triggers
createTriggers(tables) {
const promises = [];
for(const i in tables) {
if(!this.triggers[i]) {
const i_table = helpers.tableRef(tables[i]);
const i_trigger = helpers.quote(`__qw__${i}`);
const l_key = helpers.quote(i, true);
const drop_sql = `
DROP TRIGGER IF EXISTS
${i_trigger}
ON
${i_table}
`;
const func_sql = `
CREATE OR REPLACE FUNCTION pg_temp.${i_trigger}()
RETURNS TRIGGER AS $$
BEGIN
EXECUTE pg_notify('__qw__', '${l_key}');
RETURN NULL;
END;
$$ LANGUAGE plpgsql
`;
const create_sql = `
CREATE TRIGGER
${i_trigger}
AFTER INSERT OR UPDATE OR DELETE OR TRUNCATE ON
${i_table}
EXECUTE PROCEDURE pg_temp.${i_trigger}()
`;
this.triggers[i] = helpers.queries(this.client, [
drop_sql,
func_sql,
create_sql
]);
}
promises.push(this.triggers[i]);
}
return Promise.all(promises);
}
// Process the queue
process() {
// Sort the queue to put the stalest queries first
queue.sort((a, b) => b.stale - a.stale);
// Get the stalest item
const item = queue[0];
// If there are no (stale) items do nothing
if(!item || !item.stale) {
return;
}
// This item is now fresh
item.stale = 0;
// Update the item, then process the next one
item.update().then((changes) => {
if(!changes.length) {
return;
}
// Emit individual events and map the
// change rows to a more sensible format
changes = changes.map(({ c }) => {
// Emit an event for this change
item.handler.emit(EVENTS[c.op], c.id, c.data, item.cols);
return c;
});
// Emit a 'changes' event
item.handler.emit('changes', changes, item.cols);
}, (error) => {
// Emit an 'error' event
item.handler.emit('error', error);
}).then(this.process);
}
// Watch for changes to query results
watch(sql) {
const handler = new EventEmitter();
const pre_init = [
this.initializeQuery(sql),
this.uid.addMetaColumns(sql)
];
const post_init = Promise.all(pre_init).then((results) => {
const [
[ state_table, cols ],
{ sql, tables }
] = results;
return this.createTriggers(tables).then(() => {
return {
state_table,
cols,
sql,
tables
};
});
});
const promise = post_init.then((results) => {
// Destructure all the results
const {
state_table,
cols,
sql,
tables
} = results;
// Start tracking changes from the beginning
let rev = 0;
// Create an update function specific to this query
const _update = this.update.bind(this, state_table, cols, sql);
const update = () => {
return _update(rev).then((rows) => {
// Update the last revision
const tmp_rev = rows
.map((row) => row.__rev__)
.reduce((p, c) => Math.max(p, c), 0);
rev = Math.max(rev, tmp_rev);
return rows;
});
};
// Initialize the query as stale
const stale = true;
// Initial state
const state = {};
// Add this query to the queue
queue.push({
update,
stale,
tables,
cols,
handler,
state
});
// Process the queue
this.process();
});
promise.then(() => {
handler.emit('ready');
}, (error) => {
handler.emit('error', error);
});
return handler;
}
// Update query state
update(table, cols, sql, last_rev) {
last_rev = last_rev || 0;
// Quote a bunch of identifiers
const i_table = helpers.quote(table);
const i_uid = helpers.quote(this.uid.output.uid);
const i_rev = helpers.quote(this.uid.output.rev);
const i_seq = helpers.quote(this.uid.output.seq);
const i_uid_out = helpers.quote(this.uid_col);
const i_rn_out = helpers.quote('~~~rn~~~');
const i_cols = cols.map((col) => `q.${helpers.quote(col)}`).join(',');
// Where all the magic happens
const update_sql = `
WITH
q AS (
SELECT
*,
ROW_NUMBER() OVER() AS ${i_rn_out}
FROM
(${sql}) t
),
u AS (
UPDATE ${i_table} SET
rev = q.${i_rev}
FROM
q
WHERE
${i_table}.id = q.${i_uid} AND
${i_table}.rev < q.${i_rev}
RETURNING
${i_table}.id,
${i_table}.rev
),
d AS (
DELETE FROM
${i_table}
WHERE
NOT EXISTS(
SELECT
1
FROM
q
WHERE
q.${i_uid} = ${i_table}.id
)
RETURNING
${i_table}.id,
nextval('${i_seq}') AS rev
),
i AS (
INSERT INTO ${i_table} (
id,
rev
)
SELECT
${i_uid},
${i_rev}
FROM
q
WHERE
q.${i_rev} > $1 AND
q.${i_uid} NOT IN (select id FROM u) AND
NOT EXISTS(
SELECT
1
FROM
${i_table} WHERE id = q.${i_uid}
)
RETURNING
${i_table}.id,
${i_table}.rev
)
SELECT
jsonb_build_object(
'id', i.id,
'op', 1, -- INSERT
'rn', q.${i_rn_out},
'data', jsonb_build_array(${i_cols})
) AS c
FROM
i JOIN
q ON
i.id = q.${i_uid}
UNION ALL
SELECT
jsonb_build_object(
'id', u.id,
'op', 2, -- UPDATE
'rn', q.${i_rn_out},
'data', jsonb_build_array(${i_cols})
) AS c
FROM
u JOIN
q ON
u.id = q.${i_uid}
UNION ALL
SELECT
jsonb_build_object(
'id', d.id,
'op', 3 -- DELETE
) AS c
FROM
d
`;
const update_query = {
name : `__qw__${table}`,
text : update_sql
};
const params = [
last_rev
];
const promise = helpers.query(this.client, update_query, params);
return promise.then((result) => {
return result.rows;
});
}
}
module.exports = Watcher;