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.
|
|
|
|
*/
|
|
|
|
|
2019-07-01 13:30:29 +05:30
|
|
|
export const STORE_NAMES = Object.freeze([
|
|
|
|
"session",
|
|
|
|
"roomState",
|
|
|
|
"roomSummary",
|
2020-06-27 02:56:24 +05:30
|
|
|
"roomMembers",
|
2019-07-01 13:30:29 +05:30
|
|
|
"timelineEvents",
|
|
|
|
"timelineFragments",
|
|
|
|
"pendingEvents",
|
2020-08-31 18:08:03 +05:30
|
|
|
"userIdentities",
|
|
|
|
"deviceIdentities",
|
2020-09-01 21:29:59 +05:30
|
|
|
"olmSessions",
|
2020-09-02 17:54:38 +05:30
|
|
|
"inboundGroupSessions",
|
2020-09-03 21:19:20 +05:30
|
|
|
"outboundGroupSessions",
|
2020-09-04 19:01:00 +05:30
|
|
|
"groupSessionDecryptions",
|
2020-09-17 14:09:51 +05:30
|
|
|
"operations",
|
|
|
|
"accountData",
|
2019-07-01 13:30:29 +05:30
|
|
|
]);
|
2019-04-04 12:57:31 +05:30
|
|
|
|
|
|
|
export const STORE_MAP = Object.freeze(STORE_NAMES.reduce((nameMap, name) => {
|
|
|
|
nameMap[name] = name;
|
|
|
|
return nameMap;
|
|
|
|
}, {}));
|
2019-06-27 01:30:50 +05:30
|
|
|
|
|
|
|
export class StorageError extends Error {
|
2020-09-29 12:47:03 +05:30
|
|
|
constructor(message, cause) {
|
|
|
|
super(message);
|
2019-07-27 01:33:57 +05:30
|
|
|
if (cause) {
|
|
|
|
this.errcode = cause.name;
|
|
|
|
}
|
2019-10-13 01:49:16 +05:30
|
|
|
this.cause = cause;
|
2019-06-27 01:30:50 +05:30
|
|
|
}
|
2020-08-18 20:57:40 +05:30
|
|
|
|
|
|
|
get name() {
|
|
|
|
return "StorageError";
|
|
|
|
}
|
2019-06-27 01:30:50 +05:30
|
|
|
}
|
2020-10-26 15:04:35 +05:30
|
|
|
|
|
|
|
export const KeyLimits = {
|
|
|
|
get minStorageKey() {
|
|
|
|
// for indexeddb, we use unsigned 32 bit integers as keys
|
|
|
|
return 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
get middleStorageKey() {
|
|
|
|
// for indexeddb, we use unsigned 32 bit integers as keys
|
|
|
|
return 0x7FFFFFFF;
|
|
|
|
},
|
|
|
|
|
|
|
|
get maxStorageKey() {
|
|
|
|
// for indexeddb, we use unsigned 32 bit integers as keys
|
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
}
|