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
use std::{fmt, pin::Pin, sync::Arc};
use dashmap::DashSet;
use futures_channel::mpsc;
use futures_core::{
stream::{BoxStream, Stream},
task::{Context, Poll},
};
use ruma::OwnedEventId;
use thiserror::Error;
use tracing::trace;
use crate::{
deserialized_responses::{SyncRoomEvent, TimelineSlice},
store::Result,
};
const CHANNEL_LIMIT: usize = 10;
#[derive(Error, Debug)]
pub enum TimelineStreamError {
#[error("the end of the stored timeline was reached")]
EndCache {
fetch_more_token: String,
},
#[error("the event in the store produced an error")]
Store(crate::StoreError),
}
pub struct TimelineStreamBackward<'a> {
receiver: mpsc::Receiver<TimelineSlice>,
stored_events: Option<BoxStream<'a, Result<SyncRoomEvent>>>,
pending: Vec<SyncRoomEvent>,
event_ids: Arc<DashSet<OwnedEventId>>,
token: Option<String>,
}
#[cfg(not(tarpaulin_include))]
impl fmt::Debug for TimelineStreamBackward<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("TimelineStream")
.field("event_ids", &self.event_ids)
.field("token", &self.token)
.field("pending", &self.pending)
.finish()
}
}
impl<'a> TimelineStreamBackward<'a> {
pub(crate) fn new(
event_ids: Arc<DashSet<OwnedEventId>>,
token: Option<String>,
stored_events: Option<BoxStream<'a, Result<SyncRoomEvent>>>,
) -> (Self, mpsc::Sender<TimelineSlice>) {
let (sender, receiver) = mpsc::channel(CHANNEL_LIMIT);
let self_ = Self { event_ids, pending: Vec::new(), stored_events, token, receiver };
(self_, sender)
}
fn handle_new_slice(
&mut self,
slice: TimelineSlice,
) -> Poll<Option<Result<SyncRoomEvent, TimelineStreamError>>> {
if self.token.is_some() && self.token != Some(slice.start) {
trace!("Store received a timeline batch that wasn't expected");
return Poll::Pending;
}
if slice.limited {
return Poll::Ready(None);
}
if slice.events.is_empty() {
return Poll::Ready(None);
}
for event in slice.events.into_iter().rev().filter(|event| {
self.event_ids
.insert(event.event_id().expect("Timeline events always have an event id."))
}) {
self.pending.push(event);
}
self.token = slice.end;
if let Some(event) = self.pending.pop() {
Poll::Ready(Some(Ok(event)))
} else if let Some(token) = &self.token {
Poll::Ready(Some(Err(TimelineStreamError::EndCache {
fetch_more_token: token.to_string(),
})))
} else {
Poll::Ready(None)
}
}
}
impl<'a> Stream for TimelineStreamBackward<'a> {
type Item = Result<SyncRoomEvent, TimelineStreamError>;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let this = self.get_mut();
if let Some(stored_events) = &mut this.stored_events {
match Pin::new(stored_events).poll_next(cx) {
Poll::Ready(None) => {}
Poll::Pending => return Poll::Pending,
Poll::Ready(Some(event)) => {
return Poll::Ready(Some(event.map_err(TimelineStreamError::Store)))
}
}
this.stored_events = None;
}
if let Some(event) = this.pending.pop() {
Poll::Ready(Some(Ok(event)))
} else {
loop {
match Pin::new(&mut this.receiver).poll_next(cx) {
Poll::Ready(Some(slice)) => match this.handle_new_slice(slice) {
Poll::Pending => continue,
other => break other,
},
Poll::Ready(None) => break Poll::Ready(None),
Poll::Pending => {
if let Some(token) = &this.token {
break Poll::Ready(Some(Err(TimelineStreamError::EndCache {
fetch_more_token: token.to_string(),
})));
} else {
break Poll::Ready(None);
}
}
};
}
}
}
}
pub struct TimelineStreamForward {
receiver: mpsc::Receiver<TimelineSlice>,
pending: Vec<SyncRoomEvent>,
event_ids: Arc<DashSet<OwnedEventId>>,
}
#[cfg(not(tarpaulin_include))]
impl fmt::Debug for TimelineStreamForward {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("TimelineStream")
.field("event_ids", &self.event_ids)
.field("pending", &self.pending)
.finish()
}
}
impl TimelineStreamForward {
pub(crate) fn new(
event_ids: Arc<DashSet<OwnedEventId>>,
) -> (Self, mpsc::Sender<TimelineSlice>) {
let (sender, receiver) = mpsc::channel(CHANNEL_LIMIT);
let self_ = Self { event_ids, pending: Vec::new(), receiver };
(self_, sender)
}
fn handle_new_slice(&mut self, slice: TimelineSlice) -> Poll<Option<SyncRoomEvent>> {
if slice.limited {
return Poll::Ready(None);
}
for event in slice.events.into_iter().rev().filter(|event| {
self.event_ids
.insert(event.event_id().expect("Timeline events always have an event id."))
}) {
self.pending.push(event);
}
if let Some(event) = self.pending.pop() {
Poll::Ready(Some(event))
} else {
Poll::Pending
}
}
}
impl Stream for TimelineStreamForward {
type Item = SyncRoomEvent;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let this = self.get_mut();
if let Some(event) = this.pending.pop() {
Poll::Ready(Some(event))
} else {
loop {
match Pin::new(&mut this.receiver).poll_next(cx) {
Poll::Ready(Some(slice)) => match this.handle_new_slice(slice) {
Poll::Pending => continue,
other => break other,
},
Poll::Ready(None) => break Poll::Ready(None),
Poll::Pending => break Poll::Pending,
}
}
}
}
}