matrix_sdk_ui/timeline/controller/state.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 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
// Copyright 2023 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::{
collections::{vec_deque::Iter, HashMap, VecDeque},
future::Future,
num::NonZeroUsize,
sync::{Arc, RwLock},
};
use eyeball_im::{ObservableVector, ObservableVectorTransaction, ObservableVectorTransactionEntry};
use itertools::Itertools as _;
use matrix_sdk::{
deserialized_responses::SyncTimelineEvent, ring_buffer::RingBuffer, send_queue::SendHandle,
};
use matrix_sdk_base::deserialized_responses::TimelineEvent;
#[cfg(test)]
use ruma::events::receipt::ReceiptEventContent;
use ruma::{
events::{
poll::{
unstable_response::UnstablePollResponseEventContent,
unstable_start::NewUnstablePollStartEventContentWithoutRelation,
},
relation::Replacement,
room::message::RoomMessageEventContentWithoutRelation,
AnySyncEphemeralRoomEvent, AnySyncTimelineEvent,
},
push::Action,
serde::Raw,
EventId, MilliSecondsSinceUnixEpoch, OwnedEventId, OwnedTransactionId, OwnedUserId,
RoomVersionId, UserId,
};
use tracing::{debug, instrument, trace, warn};
use super::{HandleManyEventsResult, TimelineFocusKind, TimelineSettings};
use crate::{
events::SyncTimelineEventWithoutContent,
timeline::{
day_dividers::DayDividerAdjuster,
event_handler::{
Flow, HandleEventResult, TimelineEventContext, TimelineEventHandler, TimelineEventKind,
TimelineItemPosition,
},
event_item::{PollState, RemoteEventOrigin, ResponseData},
item::TimelineUniqueId,
reactions::Reactions,
read_receipts::ReadReceipts,
traits::RoomDataProvider,
util::{rfind_event_by_id, RelativePosition},
Profile, TimelineItem, TimelineItemKind,
},
unable_to_decrypt_hook::UtdHookManager,
};
/// This is a simplification of [`TimelineItemPosition`] which doesn't contain
/// the [`TimelineItemPosition::UpdateDecrypted`] variant, because it is used
/// only for **new** items.
#[derive(Debug)]
pub(crate) enum TimelineNewItemPosition {
/// One or more items are prepended to the timeline (i.e. they're the
/// oldest).
Start { origin: RemoteEventOrigin },
/// One or more items are appended to the timeline (i.e. they're the most
/// recent).
End { origin: RemoteEventOrigin },
}
impl From<TimelineNewItemPosition> for TimelineItemPosition {
fn from(value: TimelineNewItemPosition) -> Self {
match value {
TimelineNewItemPosition::Start { origin } => Self::Start { origin },
TimelineNewItemPosition::End { origin } => Self::End { origin },
}
}
}
#[derive(Debug)]
pub(in crate::timeline) struct TimelineState {
pub items: ObservableVector<Arc<TimelineItem>>,
pub meta: TimelineMetadata,
/// The kind of focus of this timeline.
timeline_focus: TimelineFocusKind,
}
impl TimelineState {
pub(super) fn new(
timeline_focus: TimelineFocusKind,
own_user_id: OwnedUserId,
room_version: RoomVersionId,
internal_id_prefix: Option<String>,
unable_to_decrypt_hook: Option<Arc<UtdHookManager>>,
is_room_encrypted: Option<bool>,
) -> Self {
Self {
// Upstream default capacity is currently 16, which is making
// sliding-sync tests with 20 events lag. This should still be
// small enough.
items: ObservableVector::with_capacity(32),
meta: TimelineMetadata::new(
own_user_id,
room_version,
internal_id_prefix,
unable_to_decrypt_hook,
is_room_encrypted,
),
timeline_focus,
}
}
/// Add the given remote events at the given end of the timeline.
///
/// Note: when the `position` is [`TimelineEnd::Front`], prepended events
/// should be ordered in *reverse* topological order, that is, `events[0]`
/// is the most recent.
#[tracing::instrument(skip(self, events, room_data_provider, settings))]
pub(super) async fn add_remote_events_at<Events, RoomData>(
&mut self,
events: Events,
position: TimelineNewItemPosition,
room_data_provider: &RoomData,
settings: &TimelineSettings,
) -> HandleManyEventsResult
where
Events: IntoIterator + ExactSizeIterator,
<Events as IntoIterator>::Item: Into<SyncTimelineEvent>,
RoomData: RoomDataProvider,
{
if events.len() == 0 {
return Default::default();
}
let mut txn = self.transaction();
let handle_many_res =
txn.add_remote_events_at(events, position, room_data_provider, settings).await;
txn.commit();
handle_many_res
}
/// Marks the given event as fully read, using the read marker received from
/// sync.
pub(super) fn handle_fully_read_marker(&mut self, fully_read_event_id: OwnedEventId) {
let mut txn = self.transaction();
txn.set_fully_read_event(fully_read_event_id);
txn.commit();
}
#[instrument(skip_all)]
pub(super) async fn handle_ephemeral_events<P: RoomDataProvider>(
&mut self,
events: Vec<Raw<AnySyncEphemeralRoomEvent>>,
room_data_provider: &P,
) {
if events.is_empty() {
return;
}
let mut txn = self.transaction();
trace!("Handling ephemeral room events");
let own_user_id = room_data_provider.own_user_id();
for raw_event in events {
match raw_event.deserialize() {
Ok(AnySyncEphemeralRoomEvent::Receipt(ev)) => {
txn.handle_explicit_read_receipts(ev.content, own_user_id);
}
Ok(_) => {}
Err(e) => {
let event_type = raw_event.get_field::<String>("type").ok().flatten();
warn!(event_type, "Failed to deserialize ephemeral event: {e}");
}
}
}
txn.commit();
}
/// Adds a local echo (for an event) to the timeline.
#[instrument(skip_all)]
pub(super) async fn handle_local_event(
&mut self,
own_user_id: OwnedUserId,
own_profile: Option<Profile>,
should_add_new_items: bool,
txn_id: OwnedTransactionId,
send_handle: Option<SendHandle>,
content: TimelineEventKind,
) {
let ctx = TimelineEventContext {
sender: own_user_id,
sender_profile: own_profile,
timestamp: MilliSecondsSinceUnixEpoch::now(),
is_own_event: true,
read_receipts: Default::default(),
// An event sent by ourselves is never matched against push rules.
is_highlighted: false,
flow: Flow::Local { txn_id, send_handle },
should_add_new_items,
};
let mut txn = self.transaction();
let mut day_divider_adjuster = DayDividerAdjuster::default();
TimelineEventHandler::new(&mut txn, ctx)
.handle_event(&mut day_divider_adjuster, content)
.await;
txn.adjust_day_dividers(day_divider_adjuster);
txn.commit();
}
pub(super) async fn retry_event_decryption<P: RoomDataProvider, Fut>(
&mut self,
retry_one: impl Fn(Arc<TimelineItem>) -> Fut,
retry_indices: Vec<usize>,
push_rules_context: Option<(ruma::push::Ruleset, ruma::push::PushConditionRoomCtx)>,
room_data_provider: &P,
settings: &TimelineSettings,
) where
Fut: Future<Output = Option<TimelineEvent>>,
{
let mut txn = self.transaction();
let mut day_divider_adjuster = DayDividerAdjuster::default();
// Loop through all the indices, in order so we don't decrypt edits
// before the event being edited, if both were UTD. Keep track of
// index change as UTDs are removed instead of updated.
let mut offset = 0;
for idx in retry_indices {
let idx = idx - offset;
let Some(mut event) = retry_one(txn.items[idx].clone()).await else {
continue;
};
event.push_actions = push_rules_context.as_ref().map(|(push_rules, push_context)| {
push_rules.get_actions(event.raw(), push_context).to_owned()
});
let handle_one_res = txn
.handle_remote_event(
event.into(),
TimelineItemPosition::UpdateDecrypted { timeline_item_index: idx },
room_data_provider,
settings,
&mut day_divider_adjuster,
)
.await;
// If the UTD was removed rather than updated, offset all
// subsequent loop iterations.
if handle_one_res.item_removed {
offset += 1;
}
}
txn.adjust_day_dividers(day_divider_adjuster);
txn.commit();
}
#[cfg(test)]
pub(super) fn handle_read_receipts(
&mut self,
receipt_event_content: ReceiptEventContent,
own_user_id: &UserId,
) {
let mut txn = self.transaction();
txn.handle_explicit_read_receipts(receipt_event_content, own_user_id);
txn.commit();
}
pub(super) fn clear(&mut self) {
let mut txn = self.transaction();
txn.clear();
txn.commit();
}
/// Replaces the existing events in the timeline with the given remote ones.
///
/// Note: when the `position` is [`TimelineEnd::Front`], prepended events
/// should be ordered in *reverse* topological order, that is, `events[0]`
/// is the most recent.
pub(super) async fn replace_with_remote_events<Events, RoomData>(
&mut self,
events: Events,
position: TimelineNewItemPosition,
room_data_provider: &RoomData,
settings: &TimelineSettings,
) -> HandleManyEventsResult
where
Events: IntoIterator,
Events::Item: Into<SyncTimelineEvent>,
RoomData: RoomDataProvider,
{
let mut txn = self.transaction();
txn.clear();
let result = txn.add_remote_events_at(events, position, room_data_provider, settings).await;
txn.commit();
result
}
pub(super) fn update_all_events_is_room_encrypted(&mut self) {
let is_room_encrypted = *self.meta.is_room_encrypted.read().unwrap();
// When this transaction finishes, all items in the timeline will be emitted
// again with the updated encryption value
let mut txn = self.transaction();
txn.update_all_events_is_room_encrypted(is_room_encrypted);
txn.commit();
}
pub(super) fn transaction(&mut self) -> TimelineStateTransaction<'_> {
let items = self.items.transaction();
let meta = self.meta.clone();
TimelineStateTransaction {
items,
previous_meta: &mut self.meta,
meta,
timeline_focus: self.timeline_focus,
}
}
}
pub(in crate::timeline) struct TimelineStateTransaction<'a> {
/// A vector transaction over the items themselves. Holds temporary state
/// until committed.
pub items: ObservableVectorTransaction<'a, Arc<TimelineItem>>,
/// A clone of the previous meta, that we're operating on during the
/// transaction, and that will be committed to the previous meta location in
/// [`Self::commit`].
pub meta: TimelineMetadata,
/// Pointer to the previous meta, only used during [`Self::commit`].
previous_meta: &'a mut TimelineMetadata,
/// The kind of focus of this timeline.
timeline_focus: TimelineFocusKind,
}
impl TimelineStateTransaction<'_> {
/// Add the given remote events at the given end of the timeline.
///
/// Note: when the `position` is [`TimelineEnd::Front`], prepended events
/// should be ordered in *reverse* topological order, that is, `events[0]`
/// is the most recent.
#[tracing::instrument(skip(self, events, room_data_provider, settings))]
pub(super) async fn add_remote_events_at<Events, RoomData>(
&mut self,
events: Events,
position: TimelineNewItemPosition,
room_data_provider: &RoomData,
settings: &TimelineSettings,
) -> HandleManyEventsResult
where
Events: IntoIterator,
Events::Item: Into<SyncTimelineEvent>,
RoomData: RoomDataProvider,
{
let mut total = HandleManyEventsResult::default();
let position = position.into();
let mut day_divider_adjuster = DayDividerAdjuster::default();
// Implementation note: when `position` is `TimelineEnd::Front`, events are in
// the reverse topological order. Prepending them one by one in the order they
// appear in the vector will thus result in the correct order.
//
// For instance, if the new events are : [C, B, A], where C is the most recent
// and A is the oldest: we prepend C, then prepend B, then prepend A,
// resulting in [A, B, C, (previous events)], which is what we want.
for event in events {
let handle_one_res = self
.handle_remote_event(
event.into(),
position,
room_data_provider,
settings,
&mut day_divider_adjuster,
)
.await;
total.items_added += handle_one_res.item_added as u64;
total.items_updated += handle_one_res.items_updated as u64;
}
self.adjust_day_dividers(day_divider_adjuster);
self.check_no_unused_unique_ids();
total
}
fn check_no_unused_unique_ids(&self) {
let duplicates = self
.items
.iter()
.duplicates_by(|item| item.unique_id())
.map(|item| item.unique_id())
.collect::<Vec<_>>();
if !duplicates.is_empty() {
#[cfg(any(debug_assertions, test))]
panic!("duplicate unique ids in this timeline:{:?}\n{:?}", duplicates, self.items);
#[cfg(not(any(debug_assertions, test)))]
tracing::error!(
"duplicate unique ids in this timeline:{:?}\n{:?}",
duplicates,
self.items
);
}
}
/// Handle a remote event.
///
/// Returns the number of timeline updates that were made.
async fn handle_remote_event<P: RoomDataProvider>(
&mut self,
event: SyncTimelineEvent,
position: TimelineItemPosition,
room_data_provider: &P,
settings: &TimelineSettings,
day_divider_adjuster: &mut DayDividerAdjuster,
) -> HandleEventResult {
let SyncTimelineEvent { push_actions, kind } = event;
let encryption_info = kind.encryption_info().cloned();
let (raw, utd_info) = match kind {
matrix_sdk::deserialized_responses::TimelineEventKind::UnableToDecrypt {
utd_info,
event,
} => (event, Some(utd_info)),
_ => (kind.into_raw(), None),
};
let (event_id, sender, timestamp, txn_id, event_kind, should_add) = match raw.deserialize()
{
// Classical path: the event is valid, can be deserialized, everything is alright.
Ok(event) => {
let event_id = event.event_id().to_owned();
let room_version = room_data_provider.room_version();
let mut should_add = (settings.event_filter)(&event, &room_version);
if should_add {
// Retrieve the origin of the event.
let origin = match position {
TimelineItemPosition::End { origin }
| TimelineItemPosition::Start { origin } => origin,
TimelineItemPosition::UpdateDecrypted { timeline_item_index: idx } => self
.items
.get(idx)
.and_then(|item| item.as_event())
.and_then(|item| item.as_remote())
.map_or(RemoteEventOrigin::Unknown, |item| item.origin),
};
match origin {
RemoteEventOrigin::Sync | RemoteEventOrigin::Unknown => {
should_add = match self.timeline_focus {
TimelineFocusKind::PinnedEvents => {
// Only insert timeline items for pinned events, if the event
// came from the sync.
room_data_provider.is_pinned_event(&event_id)
}
TimelineFocusKind::Live => {
// Always add new items to a live timeline receiving items from
// sync.
true
}
TimelineFocusKind::Event => {
// Never add any item to a focused timeline when the item comes
// down from the sync.
false
}
};
}
RemoteEventOrigin::Pagination | RemoteEventOrigin::Cache => {
// Forward the previous decision to add it.
}
}
}
(
event_id,
event.sender().to_owned(),
event.origin_server_ts(),
event.transaction_id().map(ToOwned::to_owned),
TimelineEventKind::from_event(event, &raw, room_data_provider, utd_info).await,
should_add,
)
}
// The event seems invalid…
Err(e) => match raw.deserialize_as::<SyncTimelineEventWithoutContent>() {
// The event can be partially deserialized, and it is allowed to be added to the
// timeline.
Ok(event) if settings.add_failed_to_parse => (
event.event_id().to_owned(),
event.sender().to_owned(),
event.origin_server_ts(),
event.transaction_id().map(ToOwned::to_owned),
TimelineEventKind::failed_to_parse(event, e),
true,
),
// The event can be partially deserialized, but it is NOT allowed to be added to
// the timeline.
Ok(event) => {
let event_type = event.event_type();
let event_id = event.event_id();
warn!(%event_type, %event_id, "Failed to deserialize timeline event: {e}");
let is_own_event = event.sender() == room_data_provider.own_user_id();
let event_meta = FullEventMeta {
event_id,
sender: Some(event.sender()),
is_own_event,
timestamp: Some(event.origin_server_ts()),
visible: false,
};
// Remember the event before returning prematurely.
// See [`TimelineMetadata::all_remote_events`].
self.add_or_update_remote_event(
event_meta,
position,
room_data_provider,
settings,
)
.await;
return HandleEventResult::default();
}
// The event can NOT be partially deserialized, it seems really broken.
Err(e) => {
let event_type: Option<String> = raw.get_field("type").ok().flatten();
let event_id: Option<String> = raw.get_field("event_id").ok().flatten();
warn!(
event_type,
event_id, "Failed to deserialize timeline event even without content: {e}"
);
let event_id = event_id.and_then(|s| EventId::parse(s).ok());
if let Some(event_id) = &event_id {
let sender: Option<OwnedUserId> = raw.get_field("sender").ok().flatten();
let is_own_event =
sender.as_ref().is_some_and(|s| s == room_data_provider.own_user_id());
let timestamp: Option<MilliSecondsSinceUnixEpoch> =
raw.get_field("origin_server_ts").ok().flatten();
let event_meta = FullEventMeta {
event_id,
sender: sender.as_deref(),
is_own_event,
timestamp,
visible: false,
};
// Remember the event before returning prematurely.
// See [`TimelineMetadata::all_remote_events`].
self.add_or_update_remote_event(
event_meta,
position,
room_data_provider,
settings,
)
.await;
}
return HandleEventResult::default();
}
},
};
let is_own_event = sender == room_data_provider.own_user_id();
let event_meta = FullEventMeta {
event_id: &event_id,
sender: Some(&sender),
is_own_event,
timestamp: Some(timestamp),
visible: should_add,
};
// Remember the event.
// See [`TimelineMetadata::all_remote_events`].
self.add_or_update_remote_event(event_meta, position, room_data_provider, settings).await;
let sender_profile = room_data_provider.profile_from_user_id(&sender).await;
let ctx = TimelineEventContext {
sender,
sender_profile,
timestamp,
is_own_event,
read_receipts: if settings.track_read_receipts && should_add {
self.meta.read_receipts.compute_event_receipts(
&event_id,
&self.meta.all_remote_events,
matches!(position, TimelineItemPosition::End { .. }),
)
} else {
Default::default()
},
is_highlighted: push_actions.iter().any(Action::is_highlight),
flow: Flow::Remote {
event_id: event_id.clone(),
raw_event: raw,
encryption_info,
txn_id,
position,
},
should_add_new_items: should_add,
};
// Handle the event to create or update a timeline item.
TimelineEventHandler::new(self, ctx).handle_event(day_divider_adjuster, event_kind).await
}
fn clear(&mut self) {
let has_local_echoes = self.items.iter().any(|item| item.is_local_echo());
// By first checking if there are any local echoes first, we do a bit
// more work in case some are found, but it should be worth it because
// there will often not be any, and only emitting a single
// `VectorDiff::Clear` should be much more efficient to process for
// subscribers.
if has_local_echoes {
// Remove all remote events and the read marker
self.items.for_each(|entry| {
if entry.is_remote_event() || entry.is_read_marker() {
ObservableVectorTransactionEntry::remove(entry);
}
});
// Remove stray day dividers
let mut idx = 0;
while idx < self.items.len() {
if self.items[idx].is_day_divider()
&& self.items.get(idx + 1).map_or(true, |item| item.is_day_divider())
{
self.items.remove(idx);
// don't increment idx because all elements have shifted
} else {
idx += 1;
}
}
} else {
self.items.clear();
}
self.meta.clear();
debug!(remaining_items = self.items.len(), "Timeline cleared");
}
#[instrument(skip_all)]
fn set_fully_read_event(&mut self, fully_read_event_id: OwnedEventId) {
// A similar event has been handled already. We can ignore it.
if self.meta.fully_read_event.as_ref().is_some_and(|id| *id == fully_read_event_id) {
return;
}
self.meta.fully_read_event = Some(fully_read_event_id);
self.meta.update_read_marker(&mut self.items);
}
pub(super) fn commit(self) {
let Self { items, previous_meta, meta, .. } = self;
// Replace the pointer to the previous meta with the new one.
*previous_meta = meta;
items.commit();
}
/// Add or update a remote event in the
/// [`TimelineMetadata::all_remote_events`] collection.
///
/// This method also adjusts read receipt if needed.
async fn add_or_update_remote_event<P: RoomDataProvider>(
&mut self,
event_meta: FullEventMeta<'_>,
position: TimelineItemPosition,
room_data_provider: &P,
settings: &TimelineSettings,
) {
// Detect if an event already exists in [`TimelineMetadata::all_remote_events`].
//
// Returns its position, in this case.
fn event_already_exists(
new_event_id: &EventId,
all_remote_events: &AllRemoteEvents,
) -> Option<usize> {
all_remote_events.iter().position(|EventMeta { event_id, .. }| event_id == new_event_id)
}
match position {
TimelineItemPosition::Start { .. } => {
if let Some(pos) =
event_already_exists(event_meta.event_id, &self.meta.all_remote_events)
{
self.meta.all_remote_events.remove(pos);
}
self.meta.all_remote_events.push_front(event_meta.base_meta())
}
TimelineItemPosition::End { .. } => {
if let Some(pos) =
event_already_exists(event_meta.event_id, &self.meta.all_remote_events)
{
self.meta.all_remote_events.remove(pos);
}
self.meta.all_remote_events.push_back(event_meta.base_meta());
}
TimelineItemPosition::UpdateDecrypted { .. } => {
if let Some(event) =
self.meta.all_remote_events.get_by_event_id_mut(event_meta.event_id)
{
if event.visible != event_meta.visible {
event.visible = event_meta.visible;
if settings.track_read_receipts {
// Since the event's visibility changed, we need to update the read
// receipts of the previous visible event.
self.maybe_update_read_receipts_of_prev_event(event_meta.event_id);
}
}
}
}
}
if settings.track_read_receipts
&& matches!(
position,
TimelineItemPosition::Start { .. } | TimelineItemPosition::End { .. }
)
{
self.load_read_receipts_for_event(event_meta.event_id, room_data_provider).await;
self.maybe_add_implicit_read_receipt(event_meta);
}
}
fn adjust_day_dividers(&mut self, mut adjuster: DayDividerAdjuster) {
adjuster.run(&mut self.items, &mut self.meta);
}
/// This method replaces the `is_room_encrypted` value for all timeline
/// items to its updated version and creates a `VectorDiff::Set` operation
/// for each item which will be added to this transaction.
fn update_all_events_is_room_encrypted(&mut self, is_encrypted: Option<bool>) {
for idx in 0..self.items.len() {
let item = &self.items[idx];
if let Some(event) = item.as_event() {
let mut cloned_event = event.clone();
cloned_event.is_room_encrypted = is_encrypted;
// Replace the existing item with a new version with the right encryption flag
let item = item.with_kind(cloned_event);
self.items.set(idx, item);
}
}
}
}
/// Cache holding poll response and end events handled before their poll start
/// event has been handled.
#[derive(Clone, Debug, Default)]
pub(in crate::timeline) struct PendingPollEvents {
/// Responses to a poll (identified by the poll's start event id).
responses: HashMap<OwnedEventId, Vec<ResponseData>>,
/// Mapping of a poll (identified by its start event's id) to its end date.
end_dates: HashMap<OwnedEventId, MilliSecondsSinceUnixEpoch>,
}
impl PendingPollEvents {
pub(crate) fn add_response(
&mut self,
start_event_id: &EventId,
sender: &UserId,
timestamp: MilliSecondsSinceUnixEpoch,
content: &UnstablePollResponseEventContent,
) {
self.responses.entry(start_event_id.to_owned()).or_default().push(ResponseData {
sender: sender.to_owned(),
timestamp,
answers: content.poll_response.answers.clone(),
});
}
pub(crate) fn clear(&mut self) {
self.end_dates.clear();
self.responses.clear();
}
/// Mark a poll as finished by inserting its poll date.
pub(crate) fn mark_as_ended(
&mut self,
start_event_id: &EventId,
timestamp: MilliSecondsSinceUnixEpoch,
) {
self.end_dates.insert(start_event_id.to_owned(), timestamp);
}
/// Dumps all response and end events present in the cache that belong to
/// the given start_event_id into the given poll_state.
pub(crate) fn apply_pending(&mut self, start_event_id: &EventId, poll_state: &mut PollState) {
if let Some(pending_responses) = self.responses.remove(start_event_id) {
poll_state.response_data.extend(pending_responses);
}
if let Some(pending_end) = self.end_dates.remove(start_event_id) {
poll_state.end_event_timestamp = Some(pending_end);
}
}
}
#[derive(Clone)]
pub(in crate::timeline) enum PendingEditKind {
RoomMessage(Replacement<RoomMessageEventContentWithoutRelation>),
Poll(Replacement<NewUnstablePollStartEventContentWithoutRelation>),
}
#[derive(Clone)]
pub(in crate::timeline) struct PendingEdit {
pub kind: PendingEditKind,
pub event_json: Raw<AnySyncTimelineEvent>,
}
impl PendingEdit {
pub fn edited_event(&self) -> &EventId {
match &self.kind {
PendingEditKind::RoomMessage(Replacement { event_id, .. })
| PendingEditKind::Poll(Replacement { event_id, .. }) => event_id,
}
}
}
#[cfg(not(tarpaulin_include))]
impl std::fmt::Debug for PendingEdit {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match &self.kind {
PendingEditKind::RoomMessage(_) => {
f.debug_struct("RoomMessage").finish_non_exhaustive()
}
PendingEditKind::Poll(_) => f.debug_struct("Poll").finish_non_exhaustive(),
}
}
}
#[derive(Clone, Debug)]
pub(in crate::timeline) struct TimelineMetadata {
// **** CONSTANT FIELDS ****
/// An optional prefix for internal IDs, defined during construction of the
/// timeline.
///
/// This value is constant over the lifetime of the metadata.
internal_id_prefix: Option<String>,
/// The hook to call whenever we run into a unable-to-decrypt event.
///
/// This value is constant over the lifetime of the metadata.
pub(crate) unable_to_decrypt_hook: Option<Arc<UtdHookManager>>,
/// A boolean indicating whether the room the timeline is attached to is
/// actually encrypted or not.
pub(crate) is_room_encrypted: Arc<RwLock<Option<bool>>>,
/// Matrix room version of the timeline's room, or a sensible default.
///
/// This value is constant over the lifetime of the metadata.
pub room_version: RoomVersionId,
/// The own [`OwnedUserId`] of the client who opened the timeline.
own_user_id: OwnedUserId,
// **** DYNAMIC FIELDS ****
/// The next internal identifier for timeline items, used for both local and
/// remote echoes.
///
/// This is never cleared, but always incremented, to avoid issues with
/// reusing a stale internal id across timeline clears. We don't expect
/// we can hit `u64::max_value()` realistically, but if this would
/// happen, we do a wrapping addition when incrementing this
/// id; the previous 0 value would have disappeared a long time ago, unless
/// the device has terabytes of RAM.
next_internal_id: u64,
/// List of all the remote events as received in the timeline, even the ones
/// that are discarded in the timeline items.
///
/// This is useful to get this for the moment as it helps the `Timeline` to
/// compute read receipts and read markers.
pub all_remote_events: AllRemoteEvents,
/// State helping matching reactions to their associated events, and
/// stashing pending reactions.
pub reactions: Reactions,
/// Associated poll events received before their original poll start event.
pub pending_poll_events: PendingPollEvents,
/// Edit events received before the related event they're editing.
pub pending_edits: RingBuffer<PendingEdit>,
/// Identifier of the fully-read event, helping knowing where to introduce
/// the read marker.
pub fully_read_event: Option<OwnedEventId>,
/// Whether we have a fully read-marker item in the timeline, that's up to
/// date with the room's read marker.
///
/// This is false when:
/// - The fully-read marker points to an event that is not in the timeline,
/// - The fully-read marker item would be the last item in the timeline.
pub has_up_to_date_read_marker_item: bool,
/// Read receipts related state.
///
/// TODO: move this over to the event cache (see also #3058).
pub read_receipts: ReadReceipts,
}
/// Maximum number of stash pending edits.
/// SAFETY: 32 is not 0.
const MAX_NUM_STASHED_PENDING_EDITS: NonZeroUsize = unsafe { NonZeroUsize::new_unchecked(32) };
impl TimelineMetadata {
pub(crate) fn new(
own_user_id: OwnedUserId,
room_version: RoomVersionId,
internal_id_prefix: Option<String>,
unable_to_decrypt_hook: Option<Arc<UtdHookManager>>,
is_room_encrypted: Option<bool>,
) -> Self {
Self {
own_user_id,
all_remote_events: Default::default(),
next_internal_id: Default::default(),
reactions: Default::default(),
pending_poll_events: Default::default(),
pending_edits: RingBuffer::new(MAX_NUM_STASHED_PENDING_EDITS),
fully_read_event: Default::default(),
// It doesn't make sense to set this to false until we fill the `fully_read_event`
// field, otherwise we'll keep on exiting early in `Self::update_read_marker`.
has_up_to_date_read_marker_item: true,
read_receipts: Default::default(),
room_version,
unable_to_decrypt_hook,
internal_id_prefix,
is_room_encrypted: Arc::new(RwLock::new(is_room_encrypted)),
}
}
pub(crate) fn clear(&mut self) {
// Note: we don't clear the next internal id to avoid bad cases of stale unique
// ids across timeline clears.
self.all_remote_events.clear();
self.reactions.clear();
self.pending_poll_events.clear();
self.pending_edits.clear();
self.fully_read_event = None;
// We forgot about the fully read marker right above, so wait for a new one
// before attempting to update it for each new timeline item.
self.has_up_to_date_read_marker_item = true;
self.read_receipts.clear();
}
/// Get the relative positions of two events in the timeline.
///
/// This method assumes that all events since the end of the timeline are
/// known.
///
/// Returns `None` if none of the two events could be found in the timeline.
pub fn compare_events_positions(
&self,
event_a: &EventId,
event_b: &EventId,
) -> Option<RelativePosition> {
if event_a == event_b {
return Some(RelativePosition::Same);
}
// We can make early returns here because we know all events since the end of
// the timeline, so the first event encountered is the oldest one.
for meta in self.all_remote_events.iter().rev() {
if meta.event_id == event_a {
return Some(RelativePosition::Before);
}
if meta.event_id == event_b {
return Some(RelativePosition::After);
}
}
None
}
/// Returns the next internal id for a timeline item (and increment our
/// internal counter).
fn next_internal_id(&mut self) -> TimelineUniqueId {
let val = self.next_internal_id;
self.next_internal_id = self.next_internal_id.wrapping_add(1);
let prefix = self.internal_id_prefix.as_deref().unwrap_or("");
TimelineUniqueId(format!("{prefix}{val}"))
}
/// Returns a new timeline item with a fresh internal id.
pub fn new_timeline_item(&mut self, kind: impl Into<TimelineItemKind>) -> Arc<TimelineItem> {
TimelineItem::new(kind, self.next_internal_id())
}
/// Try to update the read marker item in the timeline.
pub(crate) fn update_read_marker(
&mut self,
items: &mut ObservableVectorTransaction<'_, Arc<TimelineItem>>,
) {
let Some(fully_read_event) = &self.fully_read_event else { return };
trace!(?fully_read_event, "Updating read marker");
let read_marker_idx = items.iter().rposition(|item| item.is_read_marker());
let mut fully_read_event_idx =
rfind_event_by_id(items, fully_read_event).map(|(idx, _)| idx);
if let Some(i) = &mut fully_read_event_idx {
// The item at position `i` is the first item that's fully read, we're about to
// insert a read marker just after it.
//
// Do another forward pass to skip all the events we've sent too.
// Find the position of the first element…
let next = items
.iter()
.enumerate()
// …strictly *after* the fully read event…
.skip(*i + 1)
// …that's not virtual and not sent by us…
.find(|(_, item)| {
item.as_event().is_some_and(|event| event.sender() != self.own_user_id)
})
.map(|(i, _)| i);
if let Some(next) = next {
// `next` point to the first item that's not sent by us, so the *previous* of
// next is the right place where to insert the fully read marker.
*i = next.wrapping_sub(1);
} else {
// There's no event after the read marker that's not sent by us, i.e. the full
// timeline has been read: the fully read marker goes to the end.
*i = items.len().wrapping_sub(1);
}
}
match (read_marker_idx, fully_read_event_idx) {
(None, None) => {
// We didn't have a previous read marker, and we didn't find the fully-read
// event in the timeline items. Don't do anything, and retry on
// the next event we add.
self.has_up_to_date_read_marker_item = false;
}
(None, Some(idx)) => {
// Only insert the read marker if it is not at the end of the timeline.
if idx + 1 < items.len() {
items.insert(idx + 1, TimelineItem::read_marker());
self.has_up_to_date_read_marker_item = true;
} else {
// The next event might require a read marker to be inserted at the current
// end.
self.has_up_to_date_read_marker_item = false;
}
}
(Some(_), None) => {
// We didn't find the timeline item containing the event referred to by the read
// marker. Retry next time we get a new event.
self.has_up_to_date_read_marker_item = false;
}
(Some(from), Some(to)) => {
if from >= to {
// The read marker can't move backwards.
if from + 1 == items.len() {
// The read marker has nothing after it. An item disappeared; remove it.
items.remove(from);
}
self.has_up_to_date_read_marker_item = true;
return;
}
let prev_len = items.len();
let read_marker = items.remove(from);
// Only insert the read marker if it is not at the end of the timeline.
if to + 1 < prev_len {
// Since the fully-read event's index was shifted to the left
// by one position by the remove call above, insert the fully-
// read marker at its previous position, rather than that + 1
items.insert(to, read_marker);
self.has_up_to_date_read_marker_item = true;
} else {
self.has_up_to_date_read_marker_item = false;
}
}
}
}
}
/// A type for all remote events.
///
/// Having this type helps to know exactly which parts of the code and how they
/// use all remote events. It also helps to give a bit of semantics on top of
/// them.
#[derive(Clone, Debug, Default)]
pub(crate) struct AllRemoteEvents(VecDeque<EventMeta>);
impl AllRemoteEvents {
/// Return a front-to-back iterator over all remote events.
pub fn iter(&self) -> Iter<'_, EventMeta> {
self.0.iter()
}
/// Remove all remote events.
pub fn clear(&mut self) {
self.0.clear();
}
/// Insert a new remote event at the front of all the others.
pub fn push_front(&mut self, event_meta: EventMeta) {
self.0.push_front(event_meta)
}
/// Insert a new remote event at the back of all the others.
pub fn push_back(&mut self, event_meta: EventMeta) {
self.0.push_back(event_meta)
}
/// Remove one remote event at a specific index, and return it if it exists.
pub fn remove(&mut self, event_index: usize) -> Option<EventMeta> {
self.0.remove(event_index)
}
/// Return a reference to the last remote event if it exists.
pub fn last(&self) -> Option<&EventMeta> {
self.0.back()
}
/// Get a mutable reference to a specific remote event by its ID.
pub fn get_by_event_id_mut(&mut self, event_id: &EventId) -> Option<&mut EventMeta> {
self.0.iter_mut().rev().find(|event_meta| event_meta.event_id == event_id)
}
}
/// Full metadata about an event.
///
/// Only used to group function parameters.
pub(crate) struct FullEventMeta<'a> {
/// The ID of the event.
pub event_id: &'a EventId,
/// Whether the event is among the timeline items.
pub visible: bool,
/// The sender of the event.
pub sender: Option<&'a UserId>,
/// Whether this event was sent by our own user.
pub is_own_event: bool,
/// The timestamp of the event.
pub timestamp: Option<MilliSecondsSinceUnixEpoch>,
}
impl FullEventMeta<'_> {
fn base_meta(&self) -> EventMeta {
EventMeta { event_id: self.event_id.to_owned(), visible: self.visible }
}
}
/// Metadata about an event that needs to be kept in memory.
#[derive(Debug, Clone)]
pub(crate) struct EventMeta {
/// The ID of the event.
pub event_id: OwnedEventId,
/// Whether the event is among the timeline items.
pub visible: bool,
}