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.
|
|
|
|
*/
|
|
|
|
|
2021-08-10 02:14:07 +05:30
|
|
|
import {KeyLimits} from "../../storage/common";
|
2019-05-11 21:49:53 +05:30
|
|
|
|
2019-05-12 23:55:41 +05:30
|
|
|
// key for events in the timelineEvents store
|
2020-04-21 00:56:39 +05:30
|
|
|
export class EventKey {
|
2019-05-11 21:49:53 +05:30
|
|
|
constructor(fragmentId, eventIndex) {
|
|
|
|
this.fragmentId = fragmentId;
|
|
|
|
this.eventIndex = eventIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
nextFragmentKey() {
|
|
|
|
// could take MIN_EVENT_INDEX here if it can't be paged back
|
2020-10-26 15:04:35 +05:30
|
|
|
return new EventKey(this.fragmentId + 1, KeyLimits.middleStorageKey);
|
2019-05-11 21:49:53 +05:30
|
|
|
}
|
2019-05-12 23:55:41 +05:30
|
|
|
|
|
|
|
nextKeyForDirection(direction) {
|
|
|
|
if (direction.isForward) {
|
|
|
|
return this.nextKey();
|
|
|
|
} else {
|
|
|
|
return this.previousKey();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
previousKey() {
|
|
|
|
return new EventKey(this.fragmentId, this.eventIndex - 1);
|
|
|
|
}
|
2019-05-11 21:49:53 +05:30
|
|
|
|
|
|
|
nextKey() {
|
|
|
|
return new EventKey(this.fragmentId, this.eventIndex + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static get maxKey() {
|
2020-10-26 15:04:35 +05:30
|
|
|
return new EventKey(KeyLimits.maxStorageKey, KeyLimits.maxStorageKey);
|
2019-05-11 21:49:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static get minKey() {
|
2020-10-26 15:04:35 +05:30
|
|
|
return new EventKey(KeyLimits.minStorageKey, KeyLimits.minStorageKey);
|
2019-05-11 21:49:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static get defaultLiveKey() {
|
2020-10-26 15:04:35 +05:30
|
|
|
return EventKey.defaultFragmentKey(KeyLimits.minStorageKey);
|
2020-03-28 20:44:48 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static defaultFragmentKey(fragmentId) {
|
2020-10-26 15:04:35 +05:30
|
|
|
return new EventKey(fragmentId, KeyLimits.middleStorageKey);
|
2019-05-11 21:49:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
toString() {
|
|
|
|
return `[${this.fragmentId}/${this.eventIndex}]`;
|
|
|
|
}
|
2020-09-23 21:04:25 +05:30
|
|
|
|
|
|
|
equals(other) {
|
|
|
|
return this.fragmentId === other?.fragmentId && this.eventIndex === other?.eventIndex;
|
|
|
|
}
|
2019-05-11 21:49:53 +05:30
|
|
|
}
|