matrix_sdk/event_cache/room/events.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
// Copyright 2024 The Matrix.org Foundation C.I.C.
//
// 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.
use std::cmp::Ordering;
use eyeball_im::VectorDiff;
pub use matrix_sdk_base::event_cache::{Event, Gap};
use matrix_sdk_base::{
event_cache::store::DEFAULT_CHUNK_CAPACITY,
linked_chunk::{AsVector, IterBackward, ObservableUpdates},
};
use matrix_sdk_common::linked_chunk::{
Chunk, ChunkIdentifier, EmptyChunk, Error, LinkedChunk, Position,
};
use ruma::OwnedEventId;
use tracing::{debug, error, warn};
use super::{
super::deduplicator::{Decoration, Deduplicator},
chunk_debug_string,
};
/// This type represents all events of a single room.
#[derive(Debug)]
pub struct RoomEvents {
/// The real in-memory storage for all the events.
chunks: LinkedChunk<DEFAULT_CHUNK_CAPACITY, Event, Gap>,
/// Type mapping [`Update`]s from [`Self::chunks`] to [`VectorDiff`]s.
///
/// [`Update`]: matrix_sdk_base::linked_chunk::Update
chunks_updates_as_vectordiffs: AsVector<Event, Gap>,
/// The events deduplicator instance to help finding duplicates.
deduplicator: Deduplicator,
}
impl Default for RoomEvents {
fn default() -> Self {
Self::new()
}
}
impl RoomEvents {
/// Build a new [`RoomEvents`] struct with zero events.
pub fn new() -> Self {
Self::with_initial_chunks(None)
}
/// Build a new [`RoomEvents`] struct with prior chunks knowledge.
///
/// The provided [`LinkedChunk`] must have been built with update history.
pub fn with_initial_chunks(
chunks: Option<LinkedChunk<DEFAULT_CHUNK_CAPACITY, Event, Gap>>,
) -> Self {
let mut chunks = chunks.unwrap_or_else(LinkedChunk::new_with_update_history);
let chunks_updates_as_vectordiffs = chunks
.as_vector()
// SAFETY: The `LinkedChunk` has been built with `new_with_update_history`, so
// `as_vector` must return `Some(…)`.
.expect("`LinkedChunk` must have been built with `new_with_update_history`");
// Let the deduplicator know about initial events.
let deduplicator =
Deduplicator::with_initial_events(chunks.items().map(|(_pos, event)| event));
Self { chunks, chunks_updates_as_vectordiffs, deduplicator }
}
/// Returns whether the room has at least one event.
pub fn is_empty(&self) -> bool {
self.chunks.num_items() == 0
}
/// Clear all events.
///
/// All events, all gaps, everything is dropped, move into the void, into
/// the ether, forever.
pub fn reset(&mut self) {
self.chunks.clear();
}
/// Push events after all events or gaps.
///
/// The last event in `events` is the most recent one.
///
/// Returns true if the linked chunk was modified, false otherwise.
pub fn push_events<I>(&mut self, events: I) -> bool
where
I: IntoIterator<Item = Event>,
{
let (unique_events, duplicated_event_ids) =
self.filter_duplicated_events(events.into_iter());
if deduplicated_all_new_events(unique_events.len(), duplicated_event_ids.len()) {
return false;
}
// Remove the _old_ duplicated events!
//
// We don't have to worry the removals can change the position of the existing
// events, because we are pushing all _new_ `events` at the back.
self.remove_events(duplicated_event_ids);
// Push new `events`.
self.chunks.push_items_back(unique_events);
true
}
/// Push a gap after all events or gaps.
pub fn push_gap(&mut self, gap: Gap) {
self.chunks.push_gap_back(gap);
}
/// Insert events at a specified position.
///
/// Returns true if the linked chunk was modified.
pub fn insert_events_at<I>(&mut self, events: I, mut position: Position) -> Result<bool, Error>
where
I: IntoIterator<Item = Event>,
{
let (unique_events, duplicated_event_ids) =
self.filter_duplicated_events(events.into_iter());
if deduplicated_all_new_events(unique_events.len(), duplicated_event_ids.len()) {
return Ok(false);
}
// Remove the _old_ duplicated events!
//
// We **have to worry* the removals can change the position of the
// existing events. We **have** to update the `position`
// argument value for each removal.
self.remove_events_and_update_insert_position(duplicated_event_ids, &mut position);
self.chunks.insert_items_at(unique_events, position)?;
Ok(true)
}
/// Insert a gap at a specified position.
pub fn insert_gap_at(&mut self, gap: Gap, position: Position) -> Result<(), Error> {
self.chunks.insert_gap_at(gap, position)
}
/// Replace the gap identified by `gap_identifier`, by events.
///
/// Because the `gap_identifier` can represent non-gap chunk, this method
/// returns a `Result`.
///
/// This method returns:
/// - a boolean indicating if we updated the linked chunk,
/// - a reference to the (first if many) newly created `Chunk` that contains
/// the `items`.
pub fn replace_gap_at<I>(
&mut self,
events: I,
gap_identifier: ChunkIdentifier,
) -> Result<(bool, Option<Position>), Error>
where
I: IntoIterator<Item = Event>,
{
let (unique_events, duplicated_event_ids) =
self.filter_duplicated_events(events.into_iter());
if deduplicated_all_new_events(unique_events.len(), duplicated_event_ids.len()) {
let pos = self.chunks.remove_gap_at(gap_identifier)?;
return Ok((false, pos));
}
// Remove the _old_ duplicated events!
//
// We don't have to worry the removals can change the position of the existing
// events, because we are replacing a gap: its identifier will not change
// because of the removals.
self.remove_events(duplicated_event_ids);
let next_pos = if unique_events.is_empty() {
// There are no new events, so there's no need to create a new empty items
// chunk; instead, remove the gap.
self.chunks.remove_gap_at(gap_identifier)?
} else {
// Replace the gap by new events.
Some(self.chunks.replace_gap_at(unique_events, gap_identifier)?.first_position())
};
Ok((true, next_pos))
}
/// Search for a chunk, and return its identifier.
pub fn chunk_identifier<'a, P>(&'a self, predicate: P) -> Option<ChunkIdentifier>
where
P: FnMut(&'a Chunk<DEFAULT_CHUNK_CAPACITY, Event, Gap>) -> bool,
{
self.chunks.chunk_identifier(predicate)
}
/// Iterate over the chunks, forward.
///
/// The oldest chunk comes first.
pub fn chunks(
&self,
) -> matrix_sdk_common::linked_chunk::Iter<'_, DEFAULT_CHUNK_CAPACITY, Event, Gap> {
self.chunks.chunks()
}
/// Iterate over the chunks, backward.
///
/// The most recent chunk comes first.
pub fn rchunks(&self) -> IterBackward<'_, DEFAULT_CHUNK_CAPACITY, Event, Gap> {
self.chunks.rchunks()
}
/// Iterate over the events, backward.
///
/// The most recent event comes first.
pub fn revents(&self) -> impl Iterator<Item = (Position, &Event)> {
self.chunks.ritems()
}
/// Iterate over the events, forward.
///
/// The oldest event comes first.
pub fn events(&self) -> impl Iterator<Item = (Position, &Event)> {
self.chunks.items()
}
/// Get all updates from the room events as [`VectorDiff`].
///
/// Be careful that each `VectorDiff` is returned only once!
///
/// See [`AsVector`] to learn more.
///
/// [`Update`]: matrix_sdk_base::linked_chunk::Update
#[allow(unused)] // gonna be useful very soon! but we need it now for test purposes
pub fn updates_as_vector_diffs(&mut self) -> Vec<VectorDiff<Event>> {
self.chunks_updates_as_vectordiffs.take()
}
/// Get a mutable reference to the [`LinkedChunk`] updates, aka
/// [`ObservableUpdates`].
pub(super) fn updates(&mut self) -> &mut ObservableUpdates<Event, Gap> {
self.chunks.updates().expect("this is always built with an update history in the ctor")
}
/// Deduplicate `events` considering all events in `Self::chunks`.
///
/// The returned tuple contains (i) the unique events, and (ii) the
/// duplicated events (by ID).
fn filter_duplicated_events<'a, I>(&'a mut self, events: I) -> (Vec<Event>, Vec<OwnedEventId>)
where
I: Iterator<Item = Event> + 'a,
{
let mut duplicated_event_ids = Vec::new();
let deduplicated_events = self
.deduplicator
.scan_and_learn(events, self)
.filter_map(|decorated_event| match decorated_event {
Decoration::Unique(event) => Some(event),
Decoration::Duplicated(event) => {
debug!(event_id = ?event.event_id(), "Found a duplicated event");
duplicated_event_ids.push(
event
.event_id()
// SAFETY: An event with no ID is decorated as `Decoration::Invalid`.
// Thus, it's safe to unwrap the `Option<OwnedEventId>` here.
.expect("The event has no ID"),
);
// Keep the new event!
Some(event)
}
Decoration::Invalid(event) => {
warn!(?event, "Found an event with no ID");
None
}
})
.collect();
(deduplicated_events, duplicated_event_ids)
}
/// Return a nice debug string (a vector of lines) for the linked chunk of
/// events for this room.
pub fn debug_string(&self) -> Vec<String> {
let mut result = Vec::new();
for c in self.chunks() {
let content = chunk_debug_string(c.content());
let line = format!("chunk #{}: {content}", c.identifier().index());
result.push(line);
}
result
}
}
/// Whenever we add new events to the linked chunk, did we *at least add one*,
/// and all the added events were already known (deduplicated)?
///
/// This is useful to know whether we need to store a previous-batch token (gap)
/// we received from a server-side request (sync or back-pagination), or if we
/// should *not* store it.
///
/// Since there can be empty back-paginations with a previous-batch token (that
/// is, they don't contain any events), we need to make sure that there is *at
/// least* one new event that has been added. Otherwise, we might conclude
/// something wrong because a subsequent back-pagination might
/// return non-duplicated events.
///
/// If we had already seen all the duplicated events that we're trying to add,
/// then it would be wasteful to store a previous-batch token, or even touch the
/// linked chunk: we would repeat back-paginations for events that we have
/// already seen, and possibly misplace them. And we should not be missing
/// events either: the already-known events would have their own previous-batch
/// token (it might already be consumed).
fn deduplicated_all_new_events(num_new_unique: usize, num_duplicated: usize) -> bool {
num_new_unique > 0 && num_new_unique == num_duplicated
}
// Private implementations, implementation specific.
impl RoomEvents {
/// Remove some events from `Self::chunks`.
///
/// This method iterates over all event IDs in `event_ids` and removes the
/// associated event (if it exists) from `Self::chunks`.
///
/// This is used to remove duplicated events, see
/// [`Self::filter_duplicated_events`].
fn remove_events(&mut self, event_ids: Vec<OwnedEventId>) {
for event_id in event_ids {
let Some(event_position) = self.revents().find_map(|(position, event)| {
(event.event_id().as_ref() == Some(&event_id)).then_some(position)
}) else {
error!(?event_id, "Cannot find the event to remove");
continue;
};
self.chunks
.remove_item_at(
event_position,
// If removing an event results in an empty chunk, the empty chunk is removed
// because nothing is going to be inserted in it apparently, otherwise the
// `Self::remove_events_and_update_insert_position` method would have been
// used.
EmptyChunk::Remove,
)
.expect("Failed to remove an event we have just found");
}
}
/// Remove all events from `Self::chunks` and update a fix [`Position`].
///
/// This method iterates over all event IDs in `event_ids` and removes the
/// associated event (if it exists) from `Self::chunks`, exactly like
/// [`Self::remove_events`]. The difference is that it will maintain a
/// [`Position`] according to the removals. This is useful for example if
/// one needs to insert events at a particular position, but it first
/// collects events that must be removed before the insertions (e.g.
/// duplicated events). One has to remove events, but also to maintain the
/// `Position` to its correct initial _target_. Let's see a practical
/// example:
///
/// ```text
/// // Pseudo-code.
///
/// let room_events = room_events(['a', 'b', 'c']);
/// let position = position_of('b' in room_events);
/// room_events.remove_events(['a'])
///
/// // `position` no longer targets 'b', it now targets 'c', because all
/// // items have shifted to the left once. Instead, let's do:
///
/// let room_events = room_events(['a', 'b', 'c']);
/// let position = position_of('b' in room_events);
/// room_events.remove_events_and_update_insert_position(['a'], &mut position)
///
/// // `position` has been updated to still target 'b'.
/// ```
///
/// This is used to remove duplicated events, see
/// [`Self::filter_duplicated_events`].
fn remove_events_and_update_insert_position(
&mut self,
event_ids: Vec<OwnedEventId>,
position: &mut Position,
) {
for event_id in event_ids {
let Some(event_position) = self.revents().find_map(|(position, event)| {
(event.event_id().as_ref() == Some(&event_id)).then_some(position)
}) else {
error!(?event_id, "Cannot find the event to remove");
continue;
};
self.chunks
.remove_item_at(
event_position,
// If removing an event results in an empty chunk, the empty chunk is kept
// because maybe something is going to be inserted in it!
EmptyChunk::Keep,
)
.expect("Failed to remove an event we have just found");
// A `Position` is composed of a `ChunkIdentifier` and an index.
// The `ChunkIdentifier` is stable, i.e. it won't change if an
// event is removed in another chunk. It means we only need to
// update `position` if the removal happened in **the same
// chunk**.
if event_position.chunk_identifier() == position.chunk_identifier() {
// Now we can compare the position indices.
match event_position.index().cmp(&position.index()) {
// `event_position`'s index < `position`'s index
Ordering::Less => {
// An event has been removed _before_ the new
// events: `position` needs to be shifted to the
// left by 1.
position.decrement_index();
}
// `event_position`'s index >= `position`'s index
Ordering::Equal | Ordering::Greater => {
// An event has been removed at the _same_ position of
// or _after_ the new events: `position` does _NOT_ need
// to be modified.
}
}
}
}
}
}
#[cfg(test)]
mod tests {
use assert_matches::assert_matches;
use assert_matches2::assert_let;
use matrix_sdk_test::event_factory::EventFactory;
use ruma::{user_id, EventId, OwnedEventId};
use super::*;
macro_rules! assert_events_eq {
( $events_iterator:expr, [ $( ( $event_id:ident at ( $chunk_identifier:literal, $index:literal ) ) ),* $(,)? ] ) => {
{
let mut events = $events_iterator;
$(
assert_let!(Some((position, event)) = events.next());
assert_eq!(position.chunk_identifier(), $chunk_identifier );
assert_eq!(position.index(), $index );
assert_eq!(event.event_id().unwrap(), $event_id );
)*
assert!(events.next().is_none(), "No more events are expected");
}
};
}
fn new_event(event_id: &str) -> (OwnedEventId, Event) {
let event_id = EventId::parse(event_id).unwrap();
let event = EventFactory::new()
.text_msg("")
.sender(user_id!("@mnt_io:matrix.org"))
.event_id(&event_id)
.into_sync();
(event_id, event)
}
#[test]
fn test_new_room_events_has_zero_events() {
let room_events = RoomEvents::new();
assert_eq!(room_events.events().count(), 0);
}
#[test]
fn test_push_events() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0, event_1]);
room_events.push_events([event_2]);
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_1 at (0, 1)),
(event_id_2 at (0, 2)),
]
);
}
#[test]
fn test_push_events_with_duplicates() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev1");
let mut room_events = RoomEvents::new();
room_events.push_events([event_2.clone()]);
assert_events_eq!(
room_events.events(),
[
(event_id_2 at (0, 0)),
]
);
// Everything is alright. Now let's push a duplicated event by simulating a
// wider sync.
room_events.push_events([event_0, event_1, event_2]);
assert_events_eq!(
room_events.events(),
[
// The first `event_id_2` has been removed.
(event_id_0 at (0, 0)),
(event_id_1 at (0, 1)),
(event_id_2 at (0, 2)),
]
);
}
#[test]
fn test_push_events_with_duplicates_on_a_chunk_of_one_event() {
let (event_id_0, event_0) = new_event("$ev0");
let mut room_events = RoomEvents::new();
// The first chunk can never be removed, so let's create a gap, then a new
// chunk.
room_events.push_gap(Gap { prev_token: "hello".to_owned() });
room_events.push_events([event_0.clone()]);
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (2, 0)),
]
);
// Everything is alright. Now let's push a duplicated event.
room_events.push_events([event_0]);
// Nothing has changed in the linked chunk.
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (2, 0)),
]
);
}
#[test]
fn test_push_gap() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0]);
room_events.push_gap(Gap { prev_token: "hello".to_owned() });
room_events.push_events([event_1]);
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_1 at (2, 0)),
]
);
{
let mut chunks = room_events.chunks();
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_gap());
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert!(chunks.next().is_none());
}
}
#[test]
fn test_insert_events_at() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0, event_1]);
let position_of_event_1 = room_events
.events()
.find_map(|(position, event)| {
(event.event_id().unwrap() == event_id_1).then_some(position)
})
.unwrap();
room_events.insert_events_at([event_2], position_of_event_1).unwrap();
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_2 at (0, 1)),
(event_id_1 at (0, 2)),
]
);
}
#[test]
fn test_insert_events_at_with_duplicates() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let (event_id_3, event_3) = new_event("$ev3");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0.clone(), event_1, event_2]);
let position_of_event_2 = room_events
.events()
.find_map(|(position, event)| {
(event.event_id().unwrap() == event_id_2).then_some(position)
})
.unwrap();
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_1 at (0, 1)),
(event_id_2 at (0, 2)),
]
);
// Everything is alright. Now let's insert a duplicated events!
room_events.insert_events_at([event_0, event_3], position_of_event_2).unwrap();
assert_events_eq!(
room_events.events(),
[
// The first `event_id_0` has been removed.
(event_id_1 at (0, 0)),
(event_id_0 at (0, 1)),
(event_id_3 at (0, 2)),
(event_id_2 at (0, 3)),
]
);
}
#[test]
fn test_insert_events_at_with_duplicates_on_a_chunk_of_one_event() {
let (event_id_0, event_0) = new_event("$ev0");
let mut room_events = RoomEvents::new();
// The first chunk can never be removed, so let's create a gap, then a new
// chunk.
room_events.push_gap(Gap { prev_token: "hello".to_owned() });
room_events.push_events([event_0.clone()]);
let position_of_event_0 = room_events
.events()
.find_map(|(position, event)| {
(event.event_id().unwrap() == event_id_0).then_some(position)
})
.unwrap();
room_events.insert_events_at([event_0], position_of_event_0).unwrap();
// Event has been removed, the chunk was empty, but it was kept so that the
// position was still valid and the new event can be inserted.
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (2, 0)),
]
);
}
#[test]
fn test_insert_gap_at() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0, event_1]);
let position_of_event_1 = room_events
.events()
.find_map(|(position, event)| {
(event.event_id().unwrap() == event_id_1).then_some(position)
})
.unwrap();
room_events
.insert_gap_at(Gap { prev_token: "hello".to_owned() }, position_of_event_1)
.unwrap();
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_1 at (2, 0)),
]
);
{
let mut chunks = room_events.chunks();
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_gap());
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert!(chunks.next().is_none());
}
}
#[test]
fn test_replace_gap_at() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0]);
room_events.push_gap(Gap { prev_token: "hello".to_owned() });
let chunk_identifier_of_gap = room_events
.chunks()
.find_map(|chunk| chunk.is_gap().then_some(chunk.identifier()))
.unwrap();
room_events.replace_gap_at([event_1, event_2], chunk_identifier_of_gap).unwrap();
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_1 at (2, 0)),
(event_id_2 at (2, 1)),
]
);
{
let mut chunks = room_events.chunks();
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert!(chunks.next().is_none());
}
}
#[test]
fn test_replace_gap_at_with_duplicates() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0.clone(), event_1]);
room_events.push_gap(Gap { prev_token: "hello".to_owned() });
let chunk_identifier_of_gap = room_events
.chunks()
.find_map(|chunk| chunk.is_gap().then_some(chunk.identifier()))
.unwrap();
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_1 at (0, 1)),
]
);
// Everything is alright. Now let's replace a gap with a duplicated event.
room_events.replace_gap_at([event_0, event_2], chunk_identifier_of_gap).unwrap();
assert_events_eq!(
room_events.events(),
[
// The first `event_id_0` has been removed.
(event_id_1 at (0, 0)),
(event_id_0 at (2, 0)),
(event_id_2 at (2, 1)),
]
);
{
let mut chunks = room_events.chunks();
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert_let!(Some(chunk) = chunks.next());
assert!(chunk.is_items());
assert!(chunks.next().is_none());
}
}
#[test]
fn test_replace_gap_at_with_no_new_events() {
let (_, event_0) = new_event("$ev0");
let (_, event_1) = new_event("$ev1");
let (_, event_2) = new_event("$ev2");
let mut room_events = RoomEvents::new();
room_events.push_events([event_0, event_1]);
room_events.push_gap(Gap { prev_token: "middle".to_owned() });
room_events.push_events([event_2]);
room_events.push_gap(Gap { prev_token: "end".to_owned() });
// Remove the first gap.
let first_gap_id = room_events
.chunks()
.find_map(|chunk| chunk.is_gap().then_some(chunk.identifier()))
.unwrap();
// The next insert position is the next chunk's start.
let (touched_linked_chunk, pos) = room_events.replace_gap_at([], first_gap_id).unwrap();
assert_eq!(pos, Some(Position::new(ChunkIdentifier::new(2), 0)));
assert!(touched_linked_chunk);
// Remove the second gap.
let second_gap_id = room_events
.chunks()
.find_map(|chunk| chunk.is_gap().then_some(chunk.identifier()))
.unwrap();
// No next insert position.
let (touched_linked_chunk, pos) = room_events.replace_gap_at([], second_gap_id).unwrap();
assert!(pos.is_none());
assert!(touched_linked_chunk);
}
#[test]
fn test_remove_events() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let (event_id_3, event_3) = new_event("$ev3");
// Push some events.
let mut room_events = RoomEvents::new();
room_events.push_events([event_0, event_1]);
room_events.push_gap(Gap { prev_token: "hello".to_owned() });
room_events.push_events([event_2, event_3]);
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_1 at (0, 1)),
(event_id_2 at (2, 0)),
(event_id_3 at (2, 1)),
]
);
assert_eq!(room_events.chunks().count(), 3);
// Remove some events.
room_events.remove_events(vec![event_id_1, event_id_3]);
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
(event_id_2 at (2, 0)),
]
);
// Ensure chunks are removed once empty.
room_events.remove_events(vec![event_id_2]);
assert_events_eq!(
room_events.events(),
[
(event_id_0 at (0, 0)),
]
);
assert_eq!(room_events.chunks().count(), 2);
}
#[test]
fn test_remove_events_unknown_event() {
let (event_id_0, _event_0) = new_event("$ev0");
// Push ZERO event.
let mut room_events = RoomEvents::new();
assert_events_eq!(room_events.events(), []);
// Remove one undefined event.
// No error is expected.
room_events.remove_events(vec![event_id_0]);
assert_events_eq!(room_events.events(), []);
let mut events = room_events.events();
assert!(events.next().is_none());
}
#[test]
fn test_remove_events_and_update_insert_position() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let (event_id_3, event_3) = new_event("$ev3");
let (event_id_4, event_4) = new_event("$ev4");
let (event_id_5, event_5) = new_event("$ev5");
let (event_id_6, event_6) = new_event("$ev6");
let (event_id_7, event_7) = new_event("$ev7");
let (event_id_8, event_8) = new_event("$ev8");
// Push some events.
let mut room_events = RoomEvents::new();
room_events.push_events([event_0, event_1, event_2, event_3, event_4, event_5, event_6]);
room_events.push_gap(Gap { prev_token: "raclette".to_owned() });
room_events.push_events([event_7, event_8]);
assert_eq!(room_events.chunks().count(), 3);
fn position_of(room_events: &RoomEvents, event_id: &EventId) -> Position {
room_events
.events()
.find_map(|(position, event)| {
(event.event_id().unwrap() == event_id).then_some(position)
})
.unwrap()
}
// In the same chunk…
{
// Get the position of `event_4`.
let mut position = position_of(&room_events, &event_id_4);
// Remove one event BEFORE `event_4`.
//
// The position must move to the left by 1.
{
let previous_position = position;
room_events
.remove_events_and_update_insert_position(vec![event_id_0], &mut position);
assert_eq!(previous_position.chunk_identifier(), position.chunk_identifier());
assert_eq!(previous_position.index() - 1, position.index());
// It still represents the position of `event_4`.
assert_eq!(position, position_of(&room_events, &event_id_4));
}
// Remove one event AFTER `event_4`.
//
// The position must not move.
{
let previous_position = position;
room_events
.remove_events_and_update_insert_position(vec![event_id_5], &mut position);
assert_eq!(previous_position.chunk_identifier(), position.chunk_identifier());
assert_eq!(previous_position.index(), position.index());
// It still represents the position of `event_4`.
assert_eq!(position, position_of(&room_events, &event_id_4));
}
// Remove one event: `event_4`.
//
// The position must not move.
{
let previous_position = position;
room_events
.remove_events_and_update_insert_position(vec![event_id_4], &mut position);
assert_eq!(previous_position.chunk_identifier(), position.chunk_identifier());
assert_eq!(previous_position.index(), position.index());
}
// Check the events.
assert_events_eq!(
room_events.events(),
[
(event_id_1 at (0, 0)),
(event_id_2 at (0, 1)),
(event_id_3 at (0, 2)),
(event_id_6 at (0, 3)),
(event_id_7 at (2, 0)),
(event_id_8 at (2, 1)),
]
);
}
// In another chunk…
{
// Get the position of `event_7`.
let mut position = position_of(&room_events, &event_id_7);
// Remove one event BEFORE `event_7`.
//
// The position must not move because it happens in another chunk.
{
let previous_position = position;
room_events
.remove_events_and_update_insert_position(vec![event_id_1], &mut position);
assert_eq!(previous_position.chunk_identifier(), position.chunk_identifier());
assert_eq!(previous_position.index(), position.index());
// It still represents the position of `event_7`.
assert_eq!(position, position_of(&room_events, &event_id_7));
}
// Check the events.
assert_events_eq!(
room_events.events(),
[
(event_id_2 at (0, 0)),
(event_id_3 at (0, 1)),
(event_id_6 at (0, 2)),
(event_id_7 at (2, 0)),
(event_id_8 at (2, 1)),
]
);
}
// In the same chunk, but remove multiple events, just for the fun and to ensure
// the loop works correctly.
{
// Get the position of `event_6`.
let mut position = position_of(&room_events, &event_id_6);
// Remove three events BEFORE `event_6`.
//
// The position must move.
{
let previous_position = position;
room_events.remove_events_and_update_insert_position(
vec![event_id_2, event_id_3, event_id_7, event_id_8],
&mut position,
);
assert_eq!(previous_position.chunk_identifier(), position.chunk_identifier());
assert_eq!(previous_position.index() - 2, position.index());
// It still represents the position of `event_6`.
assert_eq!(position, position_of(&room_events, &event_id_6));
}
// Check the events.
assert_events_eq!(
room_events.events(),
[
(event_id_6 at (0, 0)),
]
);
}
// Ensure no chunk has been removed.
assert_eq!(room_events.chunks().count(), 3);
}
#[test]
fn test_reset() {
let (event_id_0, event_0) = new_event("$ev0");
let (event_id_1, event_1) = new_event("$ev1");
let (event_id_2, event_2) = new_event("$ev2");
let (event_id_3, event_3) = new_event("$ev3");
// Push some events.
let mut room_events = RoomEvents::new();
room_events.push_events([event_0, event_1]);
room_events.push_gap(Gap { prev_token: "raclette".to_owned() });
room_events.push_events([event_2]);
// Read the updates as `VectorDiff`.
let diffs = room_events.updates_as_vector_diffs();
assert_eq!(diffs.len(), 2);
assert_matches!(
&diffs[0],
VectorDiff::Append { values } => {
assert_eq!(values.len(), 2);
assert_eq!(values[0].event_id(), Some(event_id_0));
assert_eq!(values[1].event_id(), Some(event_id_1));
}
);
assert_matches!(
&diffs[1],
VectorDiff::Append { values } => {
assert_eq!(values.len(), 1);
assert_eq!(values[0].event_id(), Some(event_id_2));
}
);
// Now we can reset and see what happens.
room_events.reset();
room_events.push_events([event_3]);
// Read the updates as `VectorDiff`.
let diffs = room_events.updates_as_vector_diffs();
assert_eq!(diffs.len(), 2);
assert_matches!(&diffs[0], VectorDiff::Clear);
assert_matches!(
&diffs[1],
VectorDiff::Append { values } => {
assert_eq!(values.len(), 1);
assert_eq!(values[0].event_id(), Some(event_id_3));
}
);
}
}