ruchei 0.1.2

Utilities for working with many streams
Documentation
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
//! Simple event pub-sub system.

use std::{
    collections::HashMap,
    convert::Infallible,
    hash::Hash,
    pin::Pin,
    sync::Arc,
    task::{Context, Poll},
};

use async_std::{
    channel::{Receiver, Sender, unbounded},
    net::TcpListener,
};
use async_tungstenite::tungstenite::{self, Message};
use futures_util::{
    Future, FutureExt, Sink, SinkExt, Stream, StreamExt, TryStream, TryStreamExt,
    future::Ready,
    lock::{Mutex, OwnedMutexGuard, OwnedMutexLockFuture},
    ready,
    stream::{FusedStream, FuturesUnordered, SelectAll, SplitSink, SplitStream},
};
use pin_project::pin_project;
use ruchei::{
    callback::Start,
    concurrent::ConcurrentExt,
    connection_item::ConnectionItem,
    liveness::timeout_unused::{KeepAlive, TimeoutUnused, WithTimeout},
    multicast::buffered::{Multicast, MulticastBuffered},
    poll_on_wake::PollOnWakeExt,
};
use ruchei_extend::Extending;
use ruchei_extra::WithExtra;

enum Command<K, T> {
    Publish(K, T),
    Join(K),
    Leave(K),
}

enum Event<S, K, T> {
    Publish(K, T),
    Join(K, Active<S>),
}

struct Alive;

struct Joined {
    _alive: OwnedMutexGuard<Alive>,
}

struct Client<S, K> {
    stream: Arc<Mutex<S>>,
    joined: HashMap<K, Joined>,
}

impl<
    E,
    K: Unpin + Clone + Eq + Hash,
    T,
    S: Unpin + FusedStream + TryStream<Ok = Command<K, T>, Error = E>,
> Stream for Client<S, K>
{
    type Item = Event<S, K, T>;

    fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        let this = self.get_mut();
        let mut stream = this.stream.try_lock().unwrap();
        if stream.is_terminated() {
            this.joined.clear();
            return Poll::Ready(None);
        }
        Poll::Ready(loop {
            match ready!(stream.try_poll_next_unpin(cx)) {
                Some(Ok(Command::Publish(k, t))) => break Some(Event::Publish(k, t)),
                Some(Ok(Command::Join(k))) => {
                    if this.joined.contains_key(&k) {
                        continue;
                    }
                    let mutex = Arc::new(Mutex::new(Alive));
                    let guard = mutex.clone().try_lock_owned().unwrap();
                    let future = mutex.lock_owned();
                    this.joined.insert(k.clone(), Joined { _alive: guard });
                    break Some(Event::Join(
                        k,
                        Active {
                            stream: this.stream.clone(),
                            alive: future,
                        },
                    ));
                }
                Some(Ok(Command::Leave(k))) => {
                    this.joined.remove(&k);
                }
                Some(Err(_)) | None => {
                    this.joined.clear();
                    break None;
                }
            }
        })
    }
}

struct Active<S> {
    stream: Arc<Mutex<S>>,
    alive: OwnedMutexLockFuture<Alive>,
}

struct Error;

impl<S> Stream for Active<S> {
    type Item = Result<Infallible, Error>;

    fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        let this = self.get_mut();
        match this.alive.poll_unpin(cx) {
            Poll::Ready(_) => Poll::Ready(None),
            Poll::Pending => Poll::Pending,
        }
    }
}

impl<Item, S: Unpin + FusedStream + Sink<Item>> Sink<Item> for Active<S> {
    type Error = Error;

    fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        let this = self.get_mut();
        if this.alive.poll_unpin(cx).is_ready() {
            return Poll::Ready(Err(Error));
        }
        let mut stream = this.stream.try_lock().unwrap();
        if stream.is_terminated() {
            return Poll::Ready(Err(Error));
        }
        stream.poll_ready_unpin(cx).map_err(|_| Error)
    }

    fn start_send(self: Pin<&mut Self>, item: Item) -> Result<(), Self::Error> {
        let this = self.get_mut();
        let mut stream = this.stream.try_lock().unwrap();
        if stream.is_terminated() {
            return Err(Error);
        }
        stream.start_send_unpin(item).map_err(|_| Error)
    }

    fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        let this = self.get_mut();
        if this.alive.poll_unpin(cx).is_ready() {
            return Poll::Ready(Err(Error));
        }
        let mut stream = this.stream.try_lock().unwrap();
        if stream.is_terminated() {
            return Poll::Ready(Err(Error));
        }
        stream.poll_flush_unpin(cx).map_err(|_| Error)
    }

    fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        let this = self.get_mut();
        if this.alive.poll_unpin(cx).is_ready() {
            return Poll::Ready(Ok(()));
        }
        let mut stream = this.stream.try_lock().unwrap();
        if stream.is_terminated() {
            return Poll::Ready(Ok(()));
        }
        stream.poll_close_unpin(cx).map_err(|_| Error)
    }
}

struct ReadyStart;

impl Start for ReadyStart {
    type Fut = Ready<()>;

    fn make(&mut self) -> Self::Fut {
        futures_util::future::ready(())
    }
}

type ActiveReceiver<S> = WithTimeout<Receiver<Active<S>>, ReadyStart, Ready<()>>;

type ActiveMulticast<S, K, T> =
    Extending<Multicast<WithExtra<Active<S>, KeepAlive>, (K, T)>, ActiveReceiver<S>>;

#[pin_project]
struct Finalize<S, K, T>(#[pin] SplitStream<ActiveMulticast<S, K, T>>, Option<K>);

impl<
    E,
    K: Unpin + Clone + Eq + Hash,
    T: Clone,
    S: Unpin + FusedStream + TryStream<Ok = Command<K, T>, Error = E> + Sink<(K, T), Error = E>,
> Future for Finalize<S, K, T>
{
    type Output = K;

    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let mut this = self.project();
        while let Some(item) = ready!(this.0.as_mut().poll_next(cx)) {
            let ConnectionItem::Closed(_, _) = item;
        }
        Poll::Ready(this.1.take().unwrap())
    }
}

type ActiveEntry<S, K, T> = (
    SplitSink<ActiveMulticast<S, K, T>, (K, T)>,
    Sender<Active<S>>,
);

#[pin_project]
struct Server<R, S, K, T> {
    #[pin]
    streams: R,
    #[pin]
    select: SelectAll<Client<S, K>>,
    #[pin]
    finalizing: FuturesUnordered<Finalize<S, K, T>>,
    active: HashMap<K, ActiveEntry<S, K, T>>,
}

impl<
    E,
    K: Unpin + Clone + Eq + Hash,
    T: Clone,
    S: Unpin + FusedStream + TryStream<Ok = Command<K, T>, Error = E> + Sink<(K, T), Error = E>,
    R: FusedStream<Item = S>,
> Future for Server<R, S, K, T>
{
    type Output = ();

    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let mut this = self.project();
        if !this.streams.is_terminated() {
            while let Poll::Ready(Some(stream)) = this.streams.as_mut().poll_next(cx) {
                this.select.push(Client {
                    stream: Arc::new(Mutex::new(stream)),
                    joined: Default::default(),
                });
            }
        }
        loop {
            while let Poll::Ready(Some(k)) = this.finalizing.as_mut().poll_next(cx) {
                this.active.remove(&k);
            }
            let Some(event) = ready!(this.select.as_mut().poll_next(cx)) else {
                break if this.streams.is_terminated() {
                    Poll::Ready(())
                } else {
                    Poll::Pending
                };
            };
            match event {
                Event::Publish(k, t) => {
                    if let Some((sink, _)) = this.active.get_mut(&k) {
                        sink.start_send_unpin((k, t)).unwrap();
                        match sink.poll_ready_unpin(cx) {
                            Poll::Ready(r) => r.unwrap(),
                            Poll::Pending => panic!("oops"),
                        }
                    }
                }
                Event::Join(k, active) => {
                    Pin::new(this.active.entry(k).or_insert_with_key(|k| {
                        let (sender, receiver) = unbounded();
                        let (sink, stream) = receiver
                            .timeout_unused(ReadyStart)
                            .multicast_buffered()
                            .split();
                        this.finalizing.push(Finalize(stream, Some(k.clone())));
                        (sink, sender)
                    }))
                    .1
                    .try_send(active)
                    .unwrap();
                }
            }
        }
    }
}

trait ServeEvents: Sized {
    type S;

    type K;

    type T;

    fn serve_events(self) -> Server<Self, Self::S, Self::K, Self::T>;
}

impl<
    E,
    K: Unpin + Clone + Eq + Hash,
    T,
    S: Unpin + FusedStream + TryStream<Ok = Command<K, T>, Error = E>,
    R: Stream<Item = S>,
> ServeEvents for R
{
    type S = S;

    type K = K;

    type T = T;

    fn serve_events(self) -> Server<Self, Self::S, Self::K, Self::T> {
        Server {
            streams: self,
            select: Default::default(),
            finalizing: Default::default(),
            active: Default::default(),
        }
    }
}

#[pin_project]
struct EventStream<S>(#[pin] S);

#[derive(Debug, thiserror::Error)]
enum EventError {
    #[error(transparent)]
    WebSocket(#[from] tungstenite::Error),
    #[error("no command")]
    NoCommand,
    #[error("no key")]
    NoKey,
    #[error("unknown command")]
    UknownCommand,
}

impl<S: TryStream<Ok = Message, Error = tungstenite::Error>> Stream for EventStream<S> {
    type Item = Result<Command<String, String>, EventError>;

    fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        self.project().0.try_poll_next(cx).map(|o| {
            o.map(|r| {
                let s = r?.into_text()?;
                let s = s.trim();
                let (command, s) = s.split_once(' ').ok_or(EventError::NoCommand)?;
                let s = s.trim();
                match command {
                    "j" => Ok(Command::Join(s.into())),
                    "l" => Ok(Command::Leave(s.into())),
                    "p" => {
                        let (key, s) = s.split_once(' ').ok_or(EventError::NoKey)?;
                        let s = s.trim();
                        Ok(Command::Publish(key.into(), s.into()))
                    }
                    _ => Err(EventError::UknownCommand),
                }
            })
        })
    }
}

impl<S: FusedStream> FusedStream for EventStream<S>
where
    Self: Stream,
{
    fn is_terminated(&self) -> bool {
        self.0.is_terminated()
    }
}

impl<S: Sink<Message, Error = tungstenite::Error>> Sink<(String, String)> for EventStream<S> {
    type Error = EventError;

    fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        self.project().0.poll_ready(cx).map_err(Into::into)
    }

    fn start_send(self: Pin<&mut Self>, (k, t): (String, String)) -> Result<(), Self::Error> {
        self.project()
            .0
            .start_send(format!("{k} {t}").into())
            .map_err(Into::into)
    }

    fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        self.project().0.poll_flush(cx).map_err(Into::into)
    }

    fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        self.project().0.poll_close(cx).map_err(Into::into)
    }
}

#[async_std::main]
async fn main() {
    TcpListener::bind("127.0.0.1:8080")
        .await
        .unwrap()
        .incoming()
        .poll_on_wake()
        .filter_map(|r| async { r.ok() })
        .map(async_tungstenite::accept_async)
        .concurrent()
        .filter_map(|r| async { r.ok() })
        .map(|s| s.poll_on_wake())
        .map(EventStream)
        .serve_events()
        .await;
}