hydrogen-web/src/matrix/storage/idb/Storage.js

41 lines
1.3 KiB
JavaScript
Raw Normal View History

import {Transaction} from "./Transaction.js";
import { STORE_NAMES, StorageError } from "../common.js";
2019-02-05 04:51:50 +05:30
export class Storage {
2019-06-27 02:01:36 +05:30
constructor(idbDatabase) {
this._db = idbDatabase;
const nameMap = STORE_NAMES.reduce((nameMap, name) => {
nameMap[name] = name;
return nameMap;
}, {});
this.storeNames = Object.freeze(nameMap);
}
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
2019-06-27 02:01:36 +05:30
async readTxn(storeNames) {
this._validateStoreNames(storeNames);
try {
const txn = this._db.transaction(storeNames, "readonly");
return new Transaction(txn, storeNames);
} catch(err) {
throw new StorageError("readTxn failed", err);
}
}
2019-02-05 04:51:50 +05:30
2019-06-27 02:01:36 +05:30
async readWriteTxn(storeNames) {
this._validateStoreNames(storeNames);
try {
const txn = this._db.transaction(storeNames, "readwrite");
return new Transaction(txn, storeNames);
} catch(err) {
throw new StorageError("readWriteTxn failed", err);
}
}
}