2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-08-12 12:38:44 -07:00
|
|
|
import {Transaction} from "./Transaction";
|
2021-08-20 12:33:06 -07:00
|
|
|
import { STORE_NAMES, StoreNames, StorageError } from "../common";
|
2021-08-09 13:56:20 -07:00
|
|
|
import { reqAsPromise } from "./utils";
|
2021-09-17 18:19:26 +02:00
|
|
|
import { BaseLogger } from "../../../logging/BaseLogger.js";
|
2021-03-04 19:49:13 +01:00
|
|
|
|
|
|
|
const WEBKITEARLYCLOSETXNBUG_BOGUS_KEY = "782rh281re38-boguskey";
|
2019-02-04 23:21:50 +00:00
|
|
|
|
2020-04-20 21:26:39 +02:00
|
|
|
export class Storage {
|
2021-08-12 13:06:09 -07:00
|
|
|
private _db: IDBDatabase;
|
|
|
|
private _hasWebkitEarlyCloseTxnBug: boolean;
|
|
|
|
|
2021-09-17 18:19:26 +02:00
|
|
|
readonly logger: BaseLogger;
|
2021-09-17 15:19:16 -07:00
|
|
|
readonly idbFactory: IDBFactory
|
2021-09-17 18:19:26 +02:00
|
|
|
readonly IDBKeyRange: typeof IDBKeyRange;
|
|
|
|
readonly storeNames: typeof StoreNames;
|
2021-08-12 13:06:09 -07:00
|
|
|
|
2021-09-17 15:19:16 -07:00
|
|
|
constructor(idbDatabase: IDBDatabase, idbFactory: IDBFactory, _IDBKeyRange: typeof IDBKeyRange, hasWebkitEarlyCloseTxnBug: boolean, logger: BaseLogger) {
|
2019-06-26 22:31:36 +02:00
|
|
|
this._db = idbDatabase;
|
2021-09-17 15:19:16 -07:00
|
|
|
this.idbFactory = idbFactory;
|
2021-09-17 18:19:26 +02:00
|
|
|
this.IDBKeyRange = _IDBKeyRange;
|
2021-03-04 19:49:13 +01:00
|
|
|
this._hasWebkitEarlyCloseTxnBug = hasWebkitEarlyCloseTxnBug;
|
2021-08-20 12:33:06 -07:00
|
|
|
this.storeNames = StoreNames;
|
2021-09-17 18:19:26 +02:00
|
|
|
this.logger = logger;
|
2019-06-26 22:31:36 +02:00
|
|
|
}
|
2019-02-04 23:21:50 +00:00
|
|
|
|
2021-08-12 13:06:09 -07:00
|
|
|
_validateStoreNames(storeNames: StoreNames[]): void {
|
2019-06-26 22:31:36 +02:00
|
|
|
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-04 23:21:50 +00:00
|
|
|
|
2021-08-12 13:06:09 -07:00
|
|
|
async readTxn(storeNames: StoreNames[]): Promise<Transaction> {
|
2019-06-26 22:31:36 +02:00
|
|
|
this._validateStoreNames(storeNames);
|
|
|
|
try {
|
|
|
|
const txn = this._db.transaction(storeNames, "readonly");
|
2021-03-04 19:49:13 +01:00
|
|
|
// 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-09-17 18:19:26 +02:00
|
|
|
return new Transaction(txn, storeNames, this);
|
2019-06-26 22:31:36 +02:00
|
|
|
} catch(err) {
|
|
|
|
throw new StorageError("readTxn failed", err);
|
|
|
|
}
|
|
|
|
}
|
2019-02-04 23:21:50 +00:00
|
|
|
|
2021-08-12 13:06:09 -07:00
|
|
|
async readWriteTxn(storeNames: StoreNames[]): Promise<Transaction> {
|
2019-06-26 22:31:36 +02:00
|
|
|
this._validateStoreNames(storeNames);
|
|
|
|
try {
|
|
|
|
const txn = this._db.transaction(storeNames, "readwrite");
|
2021-03-04 19:49:13 +01:00
|
|
|
// 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-09-17 18:19:26 +02:00
|
|
|
return new Transaction(txn, storeNames, this);
|
2019-06-26 22:31:36 +02:00
|
|
|
} catch(err) {
|
|
|
|
throw new StorageError("readWriteTxn failed", err);
|
|
|
|
}
|
|
|
|
}
|
2020-04-20 22:26:04 +02:00
|
|
|
|
2021-08-12 13:06:09 -07:00
|
|
|
close(): void {
|
2020-04-20 22:26:04 +02:00
|
|
|
this._db.close();
|
|
|
|
}
|
2019-05-12 20:24:06 +02:00
|
|
|
}
|