-
Notifications
You must be signed in to change notification settings - Fork 34
/
core.js
429 lines (373 loc) · 11.8 KB
/
core.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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
'use strict';
var utils = require('../shared/utils');
var clientUtils = require('./utils');
var uuid = require('./../shared/uuid');
var errors = require('../shared/errors');
var log = require('debug')('pouchdb:worker:client');
var preprocessAttachments = clientUtils.preprocessAttachments;
var encodeArgs = clientUtils.encodeArgs;
var adapterFun = clientUtils.adapterFun;
// Implements the PouchDB API for dealing with PouchDB instances over WW
function WorkerPouch(opts, callback) {
var api = this;
if (typeof opts === 'string') {
var slashIdx = utils.lastIndexOf(opts, '/');
opts = {
url: opts.substring(0, slashIdx),
name: opts.substring(slashIdx + 1)
};
} else {
opts = utils.clone(opts);
}
log('constructor called', opts);
// Aspirational. once https://github.com/pouchdb/pouchdb/issues/5200
// is resolved, you'll be able to directly pass in a worker here instead of
// a function that returns a worker.
var worker = (opts.worker && typeof opts.worker === 'function') ?
opts.worker() : opts.worker;
if (!worker || (!worker.postMessage && (!worker.controller || !worker.controller.postMessage))) {
var workerOptsErrMessage =
'Error: you must provide a valid `worker` in `new PouchDB()`';
console.error(workerOptsErrMessage);
return callback(new Error(workerOptsErrMessage));
}
if (!opts.name) {
var optsErrMessage = 'Error: you must provide a database name.';
console.error(optsErrMessage);
return callback(new Error(optsErrMessage));
}
function handleUncaughtError(content) {
try {
api.emit('error', content);
} catch (err) {
// TODO: it's weird that adapters should have to handle this themselves
console.error(
'The user\'s map/reduce function threw an uncaught error.\n' +
'You can debug this error by doing:\n' +
'myDatabase.on(\'error\', function (err) { debugger; });\n' +
'Please double-check your map/reduce function.');
console.error(content);
}
}
function onReceiveMessage(message) {
var messageId = message.messageId;
var messageType = message.type;
var content = message.content;
if (messageType === 'uncaughtError') {
handleUncaughtError(content);
return;
}
var cb = api._callbacks[messageId];
if (!cb) {
log('duplicate message (ignoring)', messageId, messageType, content);
return;
}
log('receive message', api._instanceId, messageId, messageType, content);
if (messageType === 'error') {
delete api._callbacks[messageId];
cb(content);
} else if (messageType === 'success') {
delete api._callbacks[messageId];
cb(null, content);
} else { // 'update'
api._changesListeners[messageId](content);
}
}
function workerListener(e) {
if (e.data.id === api._instanceId) {
onReceiveMessage(e.data);
}
}
function postMessage(message) {
/* istanbul ignore if */
if (typeof worker.controller !== 'undefined') {
// service worker, use MessageChannels because e.source is broken in Chrome < 51:
// https://bugs.chromium.org/p/chromium/issues/detail?id=543198
var channel = new MessageChannel();
channel.port1.onmessage = workerListener;
worker.controller.postMessage(message, [channel.port2]);
} else {
// web worker
worker.postMessage(message);
}
}
function sendMessage(type, args, callback) {
if (api._destroyed) {
return callback(new Error('this db was destroyed'));
} else if (api._closed) {
return callback(new Error('this db was closed'));
}
var messageId = uuid();
log('send message', api._instanceId, messageId, type, args);
api._callbacks[messageId] = callback;
var encodedArgs = encodeArgs(args);
postMessage({
id: api._instanceId,
type: type,
messageId: messageId,
args: encodedArgs
});
log('message sent', api._instanceId, messageId);
}
function sendRawMessage(messageId, type, args) {
log('send message', api._instanceId, messageId, type, args);
var encodedArgs = encodeArgs(args);
postMessage({
id: api._instanceId,
type: type,
messageId: messageId,
args: encodedArgs
});
log('message sent', api._instanceId, messageId);
}
api.type = function () {
return 'worker';
};
api._remote = false;
api._id = adapterFun('id', function (callback) {
sendMessage('id', [], callback);
});
api.compact = adapterFun('compact', function (opts, callback) {
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
sendMessage('compact', [opts], callback);
});
api._info = function (callback) {
sendMessage('info', [], callback);
};
api.get = adapterFun('get', function (id, opts, callback) {
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
sendMessage('get', [id, opts], callback);
});
// hacky code necessary due to implicit breaking change in
// https://github.com/pouchdb/pouchdb/commits/0ddeae6b
api._get = function (id, opts, callback) {
api.get(id, opts, function (err, doc) {
if (err) {
return callback(err);
}
callback(null, {doc: doc});
});
};
api.remove =
adapterFun('remove', function (docOrId, optsOrRev, opts, callback) {
var doc;
if (typeof optsOrRev === 'string') {
// id, rev, opts, callback style
doc = {
_id: docOrId,
_rev: optsOrRev
};
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
} else {
// doc, opts, callback style
doc = docOrId;
if (typeof optsOrRev === 'function') {
callback = optsOrRev;
opts = {};
} else {
callback = opts;
opts = optsOrRev;
}
}
var rev = (doc._rev || opts.rev);
sendMessage('remove', [doc._id, rev], callback);
});
api.getAttachment =
adapterFun('getAttachment', function (docId, attachmentId, opts,
callback) {
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
sendMessage('getAttachment', [docId, attachmentId, opts], callback);
});
api.removeAttachment =
adapterFun('removeAttachment', function (docId, attachmentId, rev,
callback) {
sendMessage('removeAttachment', [docId, attachmentId, rev], callback);
});
// Add the attachment given by blob and its contentType property
// to the document with the given id, the revision given by rev, and
// add it to the database given by host.
api.putAttachment =
adapterFun('putAttachment', function (docId, attachmentId, rev, blob,
type, callback) {
if (typeof type === 'function') {
callback = type;
type = blob;
blob = rev;
rev = null;
}
if (typeof type === 'undefined') {
type = blob;
blob = rev;
rev = null;
}
if (typeof blob === 'string') {
var binary;
try {
binary = atob(blob);
} catch (err) {
// it's not base64-encoded, so throw error
return callback(errors.error(errors.BAD_ARG,
'Attachments need to be base64 encoded'));
}
blob = utils.createBlob([utils.binaryStringToArrayBuffer(binary)], {type: type});
}
var args = [docId, attachmentId, rev, blob, type];
sendMessage('putAttachment', args, callback);
});
api.put = adapterFun('put', utils.getArguments(function (args) {
var temp, temptype, opts;
var doc = args.shift();
var id = '_id' in doc;
var callback = args.pop();
if (typeof doc !== 'object' || Array.isArray(doc)) {
return callback(errors.error(errors.NOT_AN_OBJECT));
}
doc = utils.clone(doc);
preprocessAttachments(doc).then(function () {
while (true) {
temp = args.shift();
temptype = typeof temp;
if (temptype === "string" && !id) {
doc._id = temp;
id = true;
} else if (temptype === "string" && id && !('_rev' in doc)) {
doc._rev = temp;
} else if (temptype === "object") {
opts = utils.clone(temp);
}
if (!args.length) {
break;
}
}
opts = opts || {};
sendMessage('put', [doc, opts], callback);
}).catch(callback);
}));
api.post = adapterFun('post', function (doc, opts, callback) {
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
opts = utils.clone(opts);
sendMessage('post', [doc, opts], callback);
});
api._bulkDocs = function (req, opts, callback) {
sendMessage('bulkDocs', [req, opts], callback);
};
api._allDocs = function (opts, callback) {
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
sendMessage('allDocs', [opts], callback);
};
api._changes = function (opts) {
opts = utils.clone(opts);
if (opts.continuous) {
var messageId = uuid();
api._changesListeners[messageId] = opts.onChange;
api._callbacks[messageId] = opts.complete;
sendRawMessage(messageId, 'liveChanges', [opts]);
return {
cancel: function () {
sendRawMessage(messageId, 'cancelChanges', []);
}
};
}
sendMessage('changes', [opts], function (err, res) {
if (err) {
opts.complete(err);
return callback(err);
}
res.results.forEach(function (change) {
opts.onChange(change);
});
if (opts.returnDocs === false || opts.return_docs === false) {
res.results = [];
}
opts.complete(null, res);
});
};
// Given a set of document/revision IDs (given by req), tets the subset of
// those that do NOT correspond to revisions stored in the database.
// See http://wiki.apache.org/couchdb/HttpPostRevsDiff
api.revsDiff = adapterFun('revsDiff', function (req, opts, callback) {
// If no options were given, set the callback to be the second parameter
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
sendMessage('revsDiff', [req, opts], callback);
});
api._query = adapterFun('query', function (fun, opts, callback) {
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
var funEncoded = fun;
if (typeof fun === 'function') {
funEncoded = {map: fun};
}
sendMessage('query', [funEncoded, opts], callback);
});
api._viewCleanup = adapterFun('viewCleanup', function (callback) {
sendMessage('viewCleanup', [], callback);
});
api._close = function (callback) {
api._closed = true;
callback();
};
api.destroy = adapterFun('destroy', function (opts, callback) {
if (typeof opts === 'function') {
callback = opts;
opts = {};
}
sendMessage('destroy', [], function (err, res) {
if (err) {
api.emit('error', err);
return callback(err);
}
api._destroyed = true;
worker.removeEventListener('message', workerListener);
api.emit('destroyed');
callback(null, res);
});
});
// api.name was added in pouchdb 6.0.0
api._instanceId = api.name || opts.originalName;
api._callbacks = {};
api._changesListeners = {};
worker.addEventListener('message', workerListener);
var workerOpts = {
name: api._instanceId,
auto_compaction: !!opts.auto_compaction,
storage: opts.storage
};
if (opts.revs_limit) {
workerOpts.revs_limit = opts.revs_limit;
}
sendMessage('createDatabase', [workerOpts], function (err) {
if (err) {
return callback(err);
}
callback(null, api);
});
}
// WorkerPouch is a valid adapter.
WorkerPouch.valid = function () {
return true;
};
WorkerPouch.use_prefix = false;
module.exports = WorkerPouch;