2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
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-04-21 01:11:10 +05:30
|
|
|
import {Transaction} from "./Transaction.js";
|
2021-08-21 01:03:06 +05:30
|
|
|
import { STORE_NAMES, StoreNames, StorageError } from "../common";
|
2021-08-10 02:26:20 +05:30
|
|
|
import { reqAsPromise } from "./utils";
|
2021-03-05 00:19:13 +05:30
|
|
|
|
|
|
|
const WEBKITEARLYCLOSETXNBUG_BOGUS_KEY = "782rh281re38-boguskey";
|
2019-02-05 04:51:50 +05:30
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
export class Storage {
|
2021-06-02 16:01:13 +05:30
|
|
|
constructor(idbDatabase, IDBKeyRange, hasWebkitEarlyCloseTxnBug) {
|
2019-06-27 02:01:36 +05:30
|
|
|
this._db = idbDatabase;
|
2021-06-02 16:01:13 +05:30
|
|
|
this._IDBKeyRange = IDBKeyRange;
|
2021-03-05 00:19:13 +05:30
|
|
|
this._hasWebkitEarlyCloseTxnBug = hasWebkitEarlyCloseTxnBug;
|
2021-08-21 01:03:06 +05:30
|
|
|
this.storeNames = StoreNames;
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2019-02-05 04:51:50 +05:30
|
|
|
|
2019-06-27 02:01:36 +05:30
|
|
|
_validateStoreNames(storeNames) {
|
|
|
|
const idx = storeNames.findIndex(name => !STORE_NAMES.includes(name));
|
|
|
|
if (idx !== -1) {
|
|
|
|
throw new StorageError(`Tried top, a transaction unknown store ${storeNames[idx]}`);
|
|
|
|
}
|
|
|
|
}
|
2019-02-05 04:51:50 +05:30
|
|
|
|
2021-03-05 00:17:02 +05:30
|
|
|
async readTxn(storeNames) {
|
2019-06-27 02:01:36 +05:30
|
|
|
this._validateStoreNames(storeNames);
|
|
|
|
try {
|
|
|
|
const txn = this._db.transaction(storeNames, "readonly");
|
2021-03-05 00:19:13 +05:30
|
|
|
// https://bugs.webkit.org/show_bug.cgi?id=222746 workaround,
|
|
|
|
// await a bogus idb request on the new txn so it doesn't close early if we await a microtask first
|
|
|
|
if (this._hasWebkitEarlyCloseTxnBug) {
|
|
|
|
await reqAsPromise(txn.objectStore(storeNames[0]).get(WEBKITEARLYCLOSETXNBUG_BOGUS_KEY));
|
|
|
|
}
|
2021-06-02 16:01:13 +05:30
|
|
|
return new Transaction(txn, storeNames, this._IDBKeyRange);
|
2019-06-27 02:01:36 +05:30
|
|
|
} catch(err) {
|
|
|
|
throw new StorageError("readTxn failed", err);
|
|
|
|
}
|
|
|
|
}
|
2019-02-05 04:51:50 +05:30
|
|
|
|
2021-03-05 00:17:02 +05:30
|
|
|
async readWriteTxn(storeNames) {
|
2019-06-27 02:01:36 +05:30
|
|
|
this._validateStoreNames(storeNames);
|
|
|
|
try {
|
|
|
|
const txn = this._db.transaction(storeNames, "readwrite");
|
2021-03-05 00:19:13 +05:30
|
|
|
// https://bugs.webkit.org/show_bug.cgi?id=222746 workaround,
|
|
|
|
// await a bogus idb request on the new txn so it doesn't close early if we await a microtask first
|
|
|
|
if (this._hasWebkitEarlyCloseTxnBug) {
|
|
|
|
await reqAsPromise(txn.objectStore(storeNames[0]).get(WEBKITEARLYCLOSETXNBUG_BOGUS_KEY));
|
|
|
|
}
|
2021-06-02 16:01:13 +05:30
|
|
|
return new Transaction(txn, storeNames, this._IDBKeyRange);
|
2019-06-27 02:01:36 +05:30
|
|
|
} catch(err) {
|
|
|
|
throw new StorageError("readWriteTxn failed", err);
|
|
|
|
}
|
|
|
|
}
|
2020-04-21 01:56:04 +05:30
|
|
|
|
|
|
|
close() {
|
|
|
|
this._db.close();
|
|
|
|
}
|
2019-05-12 23:54:06 +05:30
|
|
|
}
|