2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-09-28 18:58:51 +05:30
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-09-29 12:47:03 +05:30
|
|
|
import { IDBRequestError } from "./error.js";
|
2019-06-27 01:30:50 +05:30
|
|
|
import { StorageError } from "../common.js";
|
|
|
|
|
2020-09-28 18:21:41 +05:30
|
|
|
let needsSyncPromise = false;
|
|
|
|
|
|
|
|
/* should be called on legacy platforms to see
|
|
|
|
if transactions close before draining the microtask queue (IE11 on Windows 7).
|
|
|
|
If this is the case, promises need to be resolved
|
|
|
|
synchronously from the idb request handler to prevent the transaction from closing prematurely.
|
|
|
|
*/
|
|
|
|
export async function checkNeedsSyncPromise() {
|
|
|
|
// important to have it turned off while doing the test,
|
|
|
|
// otherwise reqAsPromise would not fail
|
|
|
|
needsSyncPromise = false;
|
|
|
|
const NAME = "test-idb-needs-sync-promise";
|
|
|
|
const db = await openDatabase(NAME, db => {
|
|
|
|
db.createObjectStore("test", {keyPath: "key"});
|
|
|
|
}, 1);
|
|
|
|
const txn = db.transaction("test", "readonly");
|
|
|
|
try {
|
|
|
|
await reqAsPromise(txn.objectStore("test").get(1));
|
|
|
|
await reqAsPromise(txn.objectStore("test").get(2));
|
|
|
|
} catch (err) {
|
|
|
|
// err.name would be either TransactionInactiveError or InvalidStateError,
|
|
|
|
// but let's not exclude any other failure modes
|
|
|
|
needsSyncPromise = true;
|
|
|
|
}
|
|
|
|
// we could delete the store here,
|
|
|
|
// but let's not create it on every page load on legacy platforms,
|
|
|
|
// and just keep it around
|
|
|
|
return needsSyncPromise;
|
|
|
|
}
|
|
|
|
|
2020-10-26 15:04:35 +05:30
|
|
|
// storage keys are defined to be unsigned 32bit numbers in KeyLimits, which is assumed by idb
|
2019-07-01 13:30:29 +05:30
|
|
|
export function encodeUint32(n) {
|
|
|
|
const hex = n.toString(16);
|
|
|
|
return "0".repeat(8 - hex.length) + hex;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function decodeUint32(str) {
|
|
|
|
return parseInt(str, 16);
|
|
|
|
}
|
|
|
|
|
2019-02-07 04:49:14 +05:30
|
|
|
export function openDatabase(name, createObjectStore, version) {
|
2020-09-28 18:21:41 +05:30
|
|
|
const req = indexedDB.open(name, version);
|
2019-02-07 03:36:56 +05:30
|
|
|
req.onupgradeneeded = (ev) => {
|
|
|
|
const db = ev.target.result;
|
2020-06-27 02:56:24 +05:30
|
|
|
const txn = ev.target.transaction;
|
2019-02-07 03:36:56 +05:30
|
|
|
const oldVersion = ev.oldVersion;
|
2020-06-27 02:56:24 +05:30
|
|
|
createObjectStore(db, txn, oldVersion, version);
|
2019-02-07 03:36:56 +05:30
|
|
|
};
|
|
|
|
return reqAsPromise(req);
|
2019-01-09 15:36:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
export function reqAsPromise(req) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2020-09-25 20:23:19 +05:30
|
|
|
req.addEventListener("success", event => {
|
|
|
|
resolve(event.target.result);
|
2020-09-28 18:21:41 +05:30
|
|
|
needsSyncPromise && Promise._flush && Promise._flush();
|
2020-09-25 20:23:19 +05:30
|
|
|
});
|
|
|
|
req.addEventListener("error", () => {
|
|
|
|
reject(new IDBRequestError(req));
|
2020-09-28 18:21:41 +05:30
|
|
|
needsSyncPromise && Promise._flush && Promise._flush();
|
2020-09-25 20:23:19 +05:30
|
|
|
});
|
2019-01-09 15:36:09 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function txnAsPromise(txn) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2020-09-25 20:23:19 +05:30
|
|
|
txn.addEventListener("complete", () => {
|
|
|
|
resolve();
|
2020-09-28 18:21:41 +05:30
|
|
|
needsSyncPromise && Promise._flush && Promise._flush();
|
2020-09-25 20:23:19 +05:30
|
|
|
});
|
|
|
|
txn.addEventListener("abort", () => {
|
|
|
|
reject(new IDBRequestError(txn));
|
2020-09-28 18:21:41 +05:30
|
|
|
needsSyncPromise && Promise._flush && Promise._flush();
|
2020-09-25 20:23:19 +05:30
|
|
|
});
|
2019-01-09 15:36:09 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-09-15 15:53:54 +05:30
|
|
|
export function iterateCursor(cursorRequest, processValue) {
|
2019-02-07 03:36:56 +05:30
|
|
|
// TODO: does cursor already have a value here??
|
2019-01-09 15:36:09 +05:30
|
|
|
return new Promise((resolve, reject) => {
|
2019-09-15 15:53:54 +05:30
|
|
|
cursorRequest.onerror = () => {
|
2020-09-25 20:23:19 +05:30
|
|
|
reject(new IDBRequestError(cursorRequest));
|
2020-09-28 18:21:41 +05:30
|
|
|
needsSyncPromise && Promise._flush && Promise._flush();
|
2019-01-09 15:36:09 +05:30
|
|
|
};
|
|
|
|
// collect results
|
2019-09-15 15:53:54 +05:30
|
|
|
cursorRequest.onsuccess = (event) => {
|
2019-01-09 15:36:09 +05:30
|
|
|
const cursor = event.target.result;
|
|
|
|
if (!cursor) {
|
|
|
|
resolve(false);
|
2020-09-28 18:21:41 +05:30
|
|
|
needsSyncPromise && Promise._flush && Promise._flush();
|
2019-01-09 15:36:09 +05:30
|
|
|
return; // end of results
|
|
|
|
}
|
2020-06-27 02:56:24 +05:30
|
|
|
const result = processValue(cursor.value, cursor.key);
|
2020-09-28 18:21:41 +05:30
|
|
|
// TODO: don't use object for result and assume it's jumpTo when not === true/false or undefined
|
2020-08-19 21:55:38 +05:30
|
|
|
const done = result?.done;
|
|
|
|
const jumpTo = result?.jumpTo;
|
2020-06-27 02:56:24 +05:30
|
|
|
|
2019-05-11 16:40:31 +05:30
|
|
|
if (done) {
|
2019-02-07 03:36:56 +05:30
|
|
|
resolve(true);
|
2020-09-28 18:21:41 +05:30
|
|
|
needsSyncPromise && Promise._flush && Promise._flush();
|
2019-06-27 01:32:00 +05:30
|
|
|
} else if(jumpTo) {
|
2019-05-11 16:40:31 +05:30
|
|
|
cursor.continue(jumpTo);
|
2019-06-27 01:32:00 +05:30
|
|
|
} else {
|
|
|
|
cursor.continue();
|
2019-01-09 15:36:09 +05:30
|
|
|
}
|
|
|
|
};
|
2019-06-27 01:30:50 +05:30
|
|
|
}).catch(err => {
|
|
|
|
throw new StorageError("iterateCursor failed", err);
|
2019-01-09 15:36:09 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function fetchResults(cursor, isDone) {
|
|
|
|
const results = [];
|
|
|
|
await iterateCursor(cursor, (value) => {
|
2019-02-07 03:36:56 +05:30
|
|
|
results.push(value);
|
2019-05-11 16:40:31 +05:30
|
|
|
return {done: isDone(results)};
|
2019-01-09 15:36:09 +05:30
|
|
|
});
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function select(db, storeName, toCursor, isDone) {
|
2019-02-07 03:36:56 +05:30
|
|
|
if (!isDone) {
|
|
|
|
isDone = () => false;
|
|
|
|
}
|
|
|
|
if (!toCursor) {
|
|
|
|
toCursor = store => store.openCursor();
|
|
|
|
}
|
|
|
|
const tx = db.transaction([storeName], "readonly");
|
|
|
|
const store = tx.objectStore(storeName);
|
|
|
|
const cursor = toCursor(store);
|
|
|
|
return await fetchResults(cursor, isDone);
|
2019-01-09 15:36:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
export async function findStoreValue(db, storeName, toCursor, matchesValue) {
|
2019-02-07 03:36:56 +05:30
|
|
|
if (!matchesValue) {
|
|
|
|
matchesValue = () => true;
|
|
|
|
}
|
|
|
|
if (!toCursor) {
|
|
|
|
toCursor = store => store.openCursor();
|
|
|
|
}
|
2019-01-09 15:36:09 +05:30
|
|
|
|
2019-02-07 03:36:56 +05:30
|
|
|
const tx = db.transaction([storeName], "readwrite");
|
|
|
|
const store = tx.objectStore(storeName);
|
|
|
|
const cursor = await reqAsPromise(toCursor(store));
|
|
|
|
let match;
|
|
|
|
const matched = await iterateCursor(cursor, (value) => {
|
|
|
|
if (matchesValue(value)) {
|
|
|
|
match = value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (!matched) {
|
2019-06-27 01:30:50 +05:30
|
|
|
throw new StorageError("Value not found");
|
2019-02-07 03:36:56 +05:30
|
|
|
}
|
|
|
|
return match;
|
2019-05-11 16:40:31 +05:30
|
|
|
}
|