This repository was archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import missing shared libraries and cry because we still haven't figu…
…red out package management =(
- Loading branch information
1 parent
2eebc12
commit a4d066f
Showing
52 changed files
with
4,716 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
/* globals indexedDB */ | ||
/** | ||
* This file defines an asynchronous version of the localStorage API, backed by | ||
* an IndexedDB database. It creates a global asyncStorage object that has | ||
* methods like the localStorage object. | ||
* | ||
* To store a value use setItem: | ||
* | ||
* asyncStorage.setItem('key', 'value'); | ||
* | ||
* If you want confirmation that the value has been stored, pass a callback | ||
* function as the third argument: | ||
* | ||
* asyncStorage.setItem('key', 'newvalue', function() { | ||
* console.log('new value stored'); | ||
* }); | ||
* | ||
* To read a value, call getItem(), but note that you must supply a callback | ||
* function that the value will be passed to asynchronously: | ||
* | ||
* asyncStorage.getItem('key', function(value) { | ||
* console.log('The value of key is:', value); | ||
* }); | ||
* | ||
* Note that unlike localStorage, asyncStorage does not allow you to store and | ||
* retrieve values by setting and querying properties directly. You cannot just | ||
* write asyncStorage.key; you have to explicitly call setItem() or getItem(). | ||
* | ||
* removeItem(), clear(), length(), and key() are like the same-named methods of | ||
* localStorage, but, like getItem() and setItem() they take a callback | ||
* argument. | ||
* | ||
* The asynchronous nature of getItem() makes it tricky to retrieve multiple | ||
* values. But unlike localStorage, asyncStorage does not require the values you | ||
* store to be strings. So if you need to save multiple values and want to | ||
* retrieve them together, in a single asynchronous operation, just group the | ||
* values into a single object. The properties of this object may not include | ||
* DOM elements, but they may include things like Blobs and typed arrays. | ||
* | ||
* Unit tests are in apps/gallery/test/unit/asyncStorage_test.js | ||
*/ | ||
|
||
this.asyncStorage = (function() { | ||
'use strict'; | ||
|
||
var DBNAME = 'asyncStorage'; | ||
var DBVERSION = 1; | ||
var STORENAME = 'keyvaluepairs'; | ||
var db = null; | ||
|
||
function withDatabase(f) { | ||
if (db) { | ||
f(); | ||
} else { | ||
var openreq = indexedDB.open(DBNAME, DBVERSION); | ||
openreq.onerror = function withStoreOnError() { | ||
console.error('asyncStorage: can\'t open database:', | ||
openreq.error.name); | ||
}; | ||
openreq.onupgradeneeded = function withStoreOnUpgradeNeeded() { | ||
// First time setup: create an empty object store | ||
openreq.result.createObjectStore(STORENAME); | ||
}; | ||
openreq.onsuccess = function withStoreOnSuccess() { | ||
db = openreq.result; | ||
f(); | ||
}; | ||
} | ||
} | ||
|
||
function withStore(type, callback, oncomplete) { | ||
withDatabase(function() { | ||
var transaction = db.transaction(STORENAME, type); | ||
if (oncomplete) { | ||
transaction.oncomplete = oncomplete; | ||
} | ||
callback(transaction.objectStore(STORENAME)); | ||
}); | ||
} | ||
|
||
function getItem(key, callback) { | ||
var req; | ||
withStore('readonly', function getItemBody(store) { | ||
req = store.get(key); | ||
req.onerror = function getItemOnError() { | ||
console.error('Error in asyncStorage.getItem(): ', req.error.name); | ||
}; | ||
}, function onComplete() { | ||
var value = req.result; | ||
if (value === undefined) { | ||
value = null; | ||
} | ||
callback(value); | ||
}); | ||
} | ||
|
||
function setItem(key, value, callback) { | ||
withStore('readwrite', function setItemBody(store) { | ||
var req = store.put(value, key); | ||
req.onerror = function setItemOnError() { | ||
console.error('Error in asyncStorage.setItem(): ', req.error.name); | ||
}; | ||
}, callback); | ||
} | ||
|
||
function removeItem(key, callback) { | ||
withStore('readwrite', function removeItemBody(store) { | ||
var req = store.delete(key); | ||
req.onerror = function removeItemOnError() { | ||
console.error('Error in asyncStorage.removeItem(): ', req.error.name); | ||
}; | ||
}, callback); | ||
} | ||
|
||
function clear(callback) { | ||
withStore('readwrite', function clearBody(store) { | ||
var req = store.clear(); | ||
req.onerror = function clearOnError() { | ||
console.error('Error in asyncStorage.clear(): ', req.error.name); | ||
}; | ||
}, callback); | ||
} | ||
|
||
function length(callback) { | ||
var req; | ||
withStore('readonly', function lengthBody(store) { | ||
req = store.count(); | ||
req.onerror = function lengthOnError() { | ||
console.error('Error in asyncStorage.length(): ', req.error.name); | ||
}; | ||
}, function onComplete() { | ||
callback(req.result); | ||
}); | ||
} | ||
|
||
function key(n, callback) { | ||
if (n < 0) { | ||
callback(null); | ||
return; | ||
} | ||
|
||
var req; | ||
withStore('readonly', function keyBody(store) { | ||
var advanced = false; | ||
req = store.openCursor(); | ||
req.onsuccess = function keyOnSuccess() { | ||
var cursor = req.result; | ||
if (!cursor) { | ||
// this means there weren't enough keys | ||
return; | ||
} | ||
if (n === 0 || advanced) { | ||
// Either 1) we have the first key, return it if that's what they | ||
// wanted, or 2) we've got the nth key. | ||
return; | ||
} | ||
|
||
// Otherwise, ask the cursor to skip ahead n records | ||
advanced = true; | ||
cursor.advance(n); | ||
}; | ||
req.onerror = function keyOnError() { | ||
console.error('Error in asyncStorage.key(): ', req.error.name); | ||
}; | ||
}, function onComplete() { | ||
var cursor = req.result; | ||
callback(cursor ? cursor.key : null); | ||
}); | ||
} | ||
|
||
return { | ||
getItem: getItem, | ||
setItem: setItem, | ||
removeItem: removeItem, | ||
clear: clear, | ||
length: length, | ||
key: key | ||
}; | ||
}()); | ||
|
Oops, something went wrong.