forked from axemclion/jquery-indexeddb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.indexeddb.js
423 lines (415 loc) · 15.1 KB
/
jquery.indexeddb.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
(function($){
$.extend({
/**
* The edDB object used to open databases
* @param {Object} dbName
* @param {Object} config
*/
"indexedDB": function(dbName, config){
indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB;
IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;
IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction;
var promise = {
/**
* Returns a database promise
*/
db: function(dbName){
return $.Deferred(function(dfd){
//console.debug("Starting DB Promise", arguments);
var req = indexedDB.open(dbName);
req.onsuccess = function(){
//console.debug("DB Promise resolved", req.result);
dfd.resolve(req.result);
}
req.onerror = function(e){
//console.debug("DB Promise rejected", req.result);
dfd.reject(e, req);
return;
}
}).promise();
},
/**
* Returns a promise for version change transaction.
* @param {Object} dbPromise
* @param {Object} version - optional. If nothing is specified, version is increased by 1.
*/
versionTransaction: function(dbPromise, version){
return $.Deferred(function(dfd){
dbPromise.then(function(db){
//console.debug("Version Change Transaction Promise started", db, version);
var req = db.setVersion(version || (isNaN(parseInt(db.version, 10)) ? 0 : parseInt(db.version, 10) + 1));
req.onsuccess = function(){
//console.debug("Version Change Transaction Promise completed", req.result);
req.result.oncomplete = function(){
//console.debug("Transaction Complete, so closing database");
req.result.db.close();
}
dfd.resolve(req.result);
}
req.onblocked = function(e){
//console.debug("Version Change Transaction Promise blocked", e);
dfd.reject(e, req);
return;
}
req.onerror = function(e){
//console.debug("Version Change Transaction Promise error", e);
dfd.reject(e, req);
return;
}
}, dfd.reject);
}).promise();
},
/**
* Returns a new transaction.
* @param {Object} dbPromise
* @param {Object} objectStoreNames
* @param {Object} transactionType
*/
transaction: function(dbPromise, objectStoreNames, transactionType){
return $.Deferred(function(dfd){
(typeof objectStoreNames === "string") && (objectStoreNames = [objectStoreNames]);
dbPromise.then(function(db){
//console.debug("Transaction Promise started", db, objectStoreNames, transactionType);
try {
var transaction = db.transaction(objectStoreNames || [], transactionType || IDBTransaction.READ);
transaction.oncomplete = function(){
//console.debug("Transaction completed, so closing database");
transaction.db.close();
}
//console.debug("Transaction Promise completed", transaction);
} catch (e) {
//console.debug("Error in transaction", e);
dfd.reject(e, db);
return;
}
dfd.resolve(transaction);
}, dfd.reject);
}).promise();
},
/**
* Returns an object store if available. If object store is not available, tries to create it.
* @param {Object} transactionPromise
* @param {Object} objectStoreName
* @param {Object} createOptions - if false, objectStore is not created. Undefined or Null creates out-of-line keys. An object with {autoincrement , keypPath} is passed directly to the create call
*/
objectStore: function(transactionPromise, objectStoreName, createOptions){
return $.Deferred(function(dfd){
transactionPromise.then(function(transaction){
//console.debug("ObjectStore Promise started", transactionPromise, objectStoreName, createOptions);
try {
var objectStore = transaction.objectStore(objectStoreName);
//console.debug("ObjectStore Promise completed", objectStore);
} catch (e) {
//console.debug("Object store not found", objectStoreName, e);
try {
if (createOptions === false) {
//console.debug("Could not create object", e);
dfd.reject(e, transaction.db);
return;
} else {
//console.debug("Create options specified, so trying to create the database", createOptions);
objectStore = transaction.db.createObjectStore(objectStoreName, createOptions);
//console.debug("Object Store created", objectStore);
}
} catch (e) {
//console.debug("Error in Object Store Promise", e);
dfd.reject(e, transaction.db);
return;
}
}
dfd.resolve(objectStore);
}, dfd.reject);
}).promise();
},
/**
* Returns a promise to remove an object store
* @param {Object} objectStoreName
*/
deleteObjectStore: function(transactionPromise, objectStoreName){
return $.Deferred(function(dfd){
transactionPromise.then(function(transaction){
try {
transaction.db.deleteObjectStore(objectStoreName);
//console.debug("Deleted object store", objectStoreName);
dfd.resolve(transaction.db);
} catch (e) {
//console.debug("Could not delete ", objectStoreName)
dfd.reject(e, transaction.db);
return;
}
}, dfd.reject);
}).promise();
},
/**
* Creates a cursor Promise
* @param {Object} sourcePromise - Object Store or Index
* @param {Object} range
* @param {Object} direction
*/
cursor: function(sourcePromise, range, direction, cursorType){
if (!cursorType) {
cursorType = "openCursor";
}
return $.Deferred(function(dfd){
sourcePromise.then(function(source){
//console.debug("Cursor Promise Started", source);
var req = source[cursorType](range, direction);
req.onsuccess = function(){
//console.debug("Cursor Promise completed", req);
dfd.resolve(req);
};
req.onerror = function(e){
//console.debug("Cursor Promise error", e, req);
dfd.reject(e, req);
return;
};
}, dfd.reject);
}).promise();
},
/**
* Returns an index promise, or creates one if index does not exist
* @param {Object} indexName
* @param {Object} objectStorePromise
* @parasm {Object} transactionPromise is required as getting transaction.db.name is not supported in Chrome
*/
index: function(indexName, objectStorePromise, transactionPromise){
return $.Deferred(function(dfd){
objectStorePromise.then(function(objectStore){
//console.debug("Index Promise started", objectStore)
try {
var index = objectStore.index(indexName + "-index");
//console.debug("Index Promise completed", index);
dfd.resolve(index);
} catch (e) {
transactionPromise.then(function(transaction){
var name = transaction.db.name;
transaction.abort();
transaction.db.close();
//console.debug("Index Promise requires version change");
$.when(promise.versionTransaction(promise.db(name))).then(function(transaction){
//console.debug("Index Promise version change transaction started", transaction);
try {
var index = transaction.objectStore(objectStore.name).createIndex(indexName + "-index", indexName);
transaction.oncomplete = function(){
transaction.db.close();
}
//console.debug("Index Promise completed", index);
dfd.resolve(index);
} catch (e) {
//console.debug("Index Promise Failed", e);
dfd.reject(e, transaction);
return;
}
}, dfd.reject);
}, dfd.reject);
}
}, dfd.reject);
}).promise();
},
}//end of promise object
/**
* Returns an objectStore promise with openCursor, etc.
* @param {Object} objectStoreName
* @param {Object} canCreate - false: don't create, true|undefined:create with default path, object:create with options
*/
var objectStore = function(transactionPromise, objectStoreName, createOptions){
var objectStorePromise = $.Deferred(function(dfd){
if (typeof createOptions === "undefined") {
createOptions = {
"autoIncrement": true
};
}
$.when(promise.objectStore(transactionPromise, objectStoreName, createOptions)).then(function(objectStore){
dfd.resolve(objectStore);
}, function(e, db){
$.when(promise.objectStore(promise.versionTransaction(dbPromise), objectStoreName, createOptions)).then(function(objectStore){
dfd.resolve(objectStore);
}, dfd.reject);
}, dfd.reject);
}).promise();
var crudOp = function(op, args){
return $.Deferred(function(dfd){
objectStorePromise.then(function(objectStore){
try {
//TODO : Accept all args that are sent
var req = objectStore[op](args[0], args[1]);
req.onsuccess = function(event){
//console.debug("Performed", op, req.result);
dfd.resolve(req.result);
};
req.onerror = function(e){
//console.debug("Error performing", op, e, req);
dfd.reject(e, req);
return;
}
} catch (e) {
//console.debug("Exception in ", op, e, req);
dfd.reject(e, req);
return;
}
}, dfd.reject);
}).promise();
};
var result = objectStorePromise;
$.extend(result, {
"openCursor": function(range, direction){
return cursor(objectStorePromise, range, direction);
},
"index": function(indexName){
/*
* Transaction promise is required here because when creating a new index, Chrome does not let us get
* transaction.db from the object Store.
*/
var indexResult = indexPromise = promise.index(indexName, objectStorePromise, transactionPromise);
return {
"openCursor": function(range, direction){
return cursor(indexPromise, range, direction);
},
"openKeyCursor": function(range, direction){
return cursor(indexPromise, range, direction, "openKeyCursor");
}
};
},
"add": function(data, key){
return crudOp("add", [data, key]);
},
"delete": function(data){
return crudOp("delete", [data]);
},
"remove": function(data){
return crudOp("delete", [data]);
},
"get": function(data){
return crudOp("get", [data]);
},
"update": function(data, key){
return crudOp("put", [data, key]);
},
"put": function(data, key){
return crudOp("put", [data, key]);
}
});
return result;
};
/**
* Defines the bounds of a cursor range
* @param {Object} range
*/
var bounds = function(range){
var result = range;
if ($.isArray(range)) {
if (range[0] && range[1]) result = new IDBKeyRange.bound(range[0], range[1], range[2] || true, range[3] || true);
else if (range[0] && !range[1]) result = new IDBKeyRange.lowerBound(range[0], range[2] || true);
else if (!range[0] && range[1]) result = new IDBKeyRange.upperBound(range[1], range[3] || true);
}
return result;
};
/**
* Returns a cursor object with each, getAll, etc.
* @param {Object} sourcePromise
* @param {Object} range
* @param {Object} direction
*/
var cursor = function(sourcePromise, range, direction, type){
var cursorPromise = promise.cursor(sourcePromise, bounds(range), direction, type);
function loop(callback, canDelete){
cursorPromise.then(function(cursorRequest){
function iterator(){
if (cursorRequest.result) {
var result = callback(cursorRequest.result.value, cursorRequest.result.key);
if (canDelete && result) {
cursorRequest.result["delete"]();
} else if (result) {
cursorRequest.result.update(result);
}
cursorRequest.result["continue"]();
}
cursorRequest.onsuccess = iterator;
}
cursorRequest.onsuccess = iterator;
iterator();
}, function(e, req){
//console.debug("Could not open cursor", e, req);
});
};
var result = cursorPromise;
$.extend(result, {
/**
* Updates each element when iterating on the cursor
* @param {Object} callback
* @param {Object} canDelete
*/
updateEach: loop,
/**
* Iterates over each element
* @param {Object} callback
*/
"each": function(callback){
loop(function(val, key){
callback(val, key);
return false;
});
},
/**
* Deletes each element if callback returns true
* @param {Object} callback
*/
"deleteEach": function(callback){
loop(function(val, key){
return callback(val, key);
}, true);
}
});
return result;
}; //end of cursor
var result = dbPromise = promise.db(dbName);
$.extend(result, {
"promise": dbPromise,
/**
* Sets the version of a database
* @param {Object} callback
* @param {Object} versionNumber - optional. If nothing is specified, version is incremented by 1.
*/
"setVersion": function(versionNumber){
return promise.versionTransaction(dbPromise, versionNumber);
},
/**
* Creates a new transaction that can be used to create
* @param {Object} objectStoreNames
* @param {Object} transactionType - IDBTransaction.
*/
"transaction": function(objectStoreNames, transactionType){
var transactionPromise = null;
if (transactionType === IDBTransaction.VERSION_CHANGE) {
transactionPromise = promise.versionTransaction(dbPromise, transactionType);
} else {
transactionPromise = promise.transaction(dbPromise, objectStoreNames, transactionType);
}
var result = transactionPromise;
$.extend(result, {
"objectStore": function(objectStoreName, canCreate){
return objectStore(transactionPromise, objectStoreName, canCreate);
}
});
return result;
},
"objectStore": function(objectStoreName, canCreate){
var transactionPromise = promise.transaction(dbPromise, objectStoreName, IDBTransaction.READ_WRITE);
return objectStore(transactionPromise, objectStoreName, canCreate);
},
/**
* Creates a new object store with the set version transaction
* @param {Object} objectStoreName
* @param {Object} createOptions
*/
"createObjectStore": function(objectStoreName, canCreate){
return objectStore(promise.versionTransaction(dbPromise), objectStoreName, canCreate);
},
"deleteObjectStore": function(objectStoreName){
return promise.deleteObjectStore(promise.versionTransaction(dbPromise), objectStoreName);
}
});//end of return values for indexedDB()
return result;
}
});
})(jQuery);