elfo-core 0.2.0-alpha.21

The core of the elfo system
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
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
use std::{
    future::Future,
    mem,
    pin::Pin,
    task::{self, Poll},
};

use derive_more::From;
use futures::future::{join_all, BoxFuture};
use idr_ebr::{BorrowedEntry, OwnedEntry};
use pin_project::pin_project;
use smallvec::SmallVec;

#[cfg(feature = "network")]
use crate::remote::{self, RemoteHandle};
use crate::{
    actor::Actor,
    addr::Addr,
    envelope::Envelope,
    errors::{RequestError, SendError, TrySendError},
    request_table::ResponseToken,
};

// Reexported in `_priv`.
pub struct Object {
    addr: Addr,
    kind: ObjectKind,
}

assert_impl_all!(Object: Sync);

pub(crate) type BorrowedObject<'g> = BorrowedEntry<'g, Object>;
// Reexported in `_priv`.
pub type OwnedObject = OwnedEntry<Object>;

#[derive(From)]
#[allow(clippy::large_enum_variant)]
pub(crate) enum ObjectKind {
    Actor(Actor),
    Group(Box<dyn GroupHandle>),
    #[cfg(feature = "network")]
    Remote(Box<dyn RemoteHandle>),
}

impl Object {
    pub(crate) fn new(addr: Addr, kind: impl Into<ObjectKind>) -> Self {
        Self {
            addr,
            kind: kind.into(),
        }
    }

    #[instability::unstable]
    #[inline]
    pub fn addr(&self) -> Addr {
        self.addr
    }

    // Tries to send an envelope to the object synchronously.
    // Only if the object is full, it gets an owned link to the object
    // (because an EBR guard cannot be hold over the async boundary)
    // and sends the envelope asynchronously.
    #[instability::unstable]
    pub fn send(
        this: BorrowedObject<'_>,
        recipient: Addr,
        envelope: Envelope,
    ) -> impl Future<Output = SendResult> + 'static {
        let _ = recipient; // suppress a warning if the "network" feature is disabled

        match &this.kind {
            ObjectKind::Actor(handle) => match handle.try_send(envelope) {
                Ok(()) => SendFut::Ready(Ok(())),
                Err(TrySendError::Closed(envelope)) => SendFut::Ready(Err(SendError(envelope))),
                Err(TrySendError::Full(envelope)) => {
                    let Some(this) = this.to_owned() else {
                        return SendFut::Ready(Err(SendError(envelope)));
                    };

                    SendFut::WaitActor(async move {
                        let actor = this.as_actor().unwrap();
                        actor.send(envelope).await
                    })
                }
            },
            ObjectKind::Group(handle) => {
                let mut visitor = SendGroupVisitor::default();
                handle.handle(envelope, &mut visitor);
                SendFut::WaitGroup(visitor.finish())
            }
            #[cfg(feature = "network")]
            ObjectKind::Remote(handle) => match handle.try_send(recipient, envelope) {
                Ok(()) => SendFut::Ready(Ok(())),
                Err(TrySendError::Closed(envelope)) => SendFut::Ready(Err(SendError(envelope))),
                Err(TrySendError::Full(mut envelope)) => {
                    let Some(this) = this.to_owned() else {
                        return SendFut::Ready(Err(SendError(envelope)));
                    };

                    SendFut::WaitRemote(async move {
                        let handle = this.as_remote().unwrap();
                        loop {
                            match handle.send(recipient, envelope) {
                                remote::SendResult::Ok => break Ok(()),
                                remote::SendResult::Err(err) => break Err(err),
                                remote::SendResult::Wait(notified, e) => {
                                    envelope = e;
                                    notified.await;
                                }
                            }
                        }
                    })
                }
            },
        }
    }

    #[instability::unstable]
    pub fn try_send(
        &self,
        recipient: Addr,
        envelope: Envelope,
    ) -> Result<(), TrySendError<Envelope>> {
        let _ = recipient; // suppress a warning if the "network" feature is disabled

        match &self.kind {
            ObjectKind::Actor(handle) => handle.try_send(envelope),
            ObjectKind::Group(handle) => {
                let mut visitor = TrySendGroupVisitor::default();
                handle.handle(envelope, &mut visitor);
                visitor.finish()
            }
            #[cfg(feature = "network")]
            ObjectKind::Remote(handle) => handle.try_send(recipient, envelope),
        }
    }

    #[instability::unstable]
    pub fn unbounded_send(
        &self,
        recipient: Addr,
        envelope: Envelope,
    ) -> Result<(), SendError<Envelope>> {
        let _ = recipient; // suppress a warning if the "network" feature is disabled

        match &self.kind {
            ObjectKind::Actor(handle) => handle.unbounded_send(envelope),
            ObjectKind::Group(handle) => {
                let mut visitor = UnboundedSendGroupVisitor::default();
                handle.handle(envelope, &mut visitor);
                visitor.finish()
            }
            #[cfg(feature = "network")]
            ObjectKind::Remote(handle) => handle.unbounded_send(recipient, envelope),
        }
    }

    #[instability::unstable]
    pub fn respond(&self, token: ResponseToken, response: Result<Envelope, RequestError>) {
        match &self.kind {
            ObjectKind::Actor(handle) => handle.request_table().resolve(token, response),
            ObjectKind::Group(_handle) => unreachable!(),
            #[cfg(feature = "network")]
            ObjectKind::Remote(handle) => handle.respond(token, response),
        }
    }

    #[instability::unstable]
    pub fn visit_group(&self, envelope: Envelope, visitor: &mut dyn GroupVisitor) {
        let ObjectKind::Group(handle) = &self.kind else {
            panic!("route() called on a non-group object");
        };

        handle.handle(envelope, visitor);
    }

    pub(crate) fn as_actor(&self) -> Option<&Actor> {
        match &self.kind {
            ObjectKind::Actor(handle) => Some(handle),
            _ => None,
        }
    }

    #[cfg(feature = "network")]
    #[allow(clippy::borrowed_box)]
    fn as_remote(&self) -> Option<&Box<dyn RemoteHandle>> {
        match &self.kind {
            ObjectKind::Remote(handle) => Some(handle),
            _ => None,
        }
    }

    pub(crate) async fn finished(&self) {
        match &self.kind {
            ObjectKind::Actor(actor) => actor.finished().await,
            ObjectKind::Group(group) => group.finished().await,
            #[cfg(feature = "network")]
            ObjectKind::Remote(_) => todo!(),
        }
    }
}

// === SendFut ===

type SendResult = Result<(), SendError<Envelope>>;

#[cfg(not(feature = "network"))]
#[pin_project(project = SendFutProj)]
enum SendFut<A, G> {
    Ready(SendResult),
    WaitActor(#[pin] A),
    WaitGroup(#[pin] G),
}

#[cfg(not(feature = "network"))]
impl<A, G> Future for SendFut<A, G>
where
    A: Future<Output = SendResult>,
    G: Future<Output = SendResult>,
{
    type Output = SendResult;

    fn poll(self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> Poll<Self::Output> {
        match self.project() {
            SendFutProj::Ready(result) => Poll::Ready(mem::replace(result, Ok(()))),
            SendFutProj::WaitActor(fut) => fut.poll(cx),
            SendFutProj::WaitGroup(fut) => fut.poll(cx),
        }
    }
}

#[cfg(feature = "network")]
#[pin_project(project = SendFutProj)]
enum SendFut<A, G, R> {
    Ready(SendResult),
    WaitActor(#[pin] A),
    WaitGroup(#[pin] G),
    WaitRemote(#[pin] R),
}

#[cfg(feature = "network")]
impl<A, G, R> Future for SendFut<A, G, R>
where
    A: Future<Output = SendResult>,
    G: Future<Output = SendResult>,
    R: Future<Output = SendResult>,
{
    type Output = SendResult;

    fn poll(self: Pin<&mut Self>, cx: &mut task::Context<'_>) -> Poll<Self::Output> {
        match self.project() {
            SendFutProj::Ready(result) => Poll::Ready(mem::replace(result, Ok(()))),
            SendFutProj::WaitActor(fut) => fut.poll(cx),
            SendFutProj::WaitGroup(fut) => fut.poll(cx),
            SendFutProj::WaitRemote(fut) => fut.poll(cx),
        }
    }
}

pub(crate) trait GroupHandle: Send + Sync + 'static {
    fn handle(&self, envelope: Envelope, visitor: &mut dyn GroupVisitor);
    fn finished(&self) -> BoxFuture<'static, ()>;
}

/// The visitor of actors inside a group.
/// Possible sequences of calls:
/// * `done()`, if handled by a supervisor
/// * `empty()`, if no relevant actors in a group
/// * `visit_last()`, if only one relevant actor in a group
/// * `visit()`, `visit()`, .., `visit_last()`
pub trait GroupVisitor {
    fn done(&mut self);
    fn empty(&mut self, envelope: Envelope);
    fn visit(&mut self, object: &OwnedObject, envelope: &Envelope);
    fn visit_last(&mut self, object: &OwnedObject, envelope: Envelope);
}

// === SendGroupVisitor ===

#[derive(Default)]
struct SendGroupVisitor {
    extra: Option<Envelope>,
    full: SmallVec<[(OwnedObject, Envelope); 1]>,
    has_ok: bool,
}

impl SendGroupVisitor {
    // We must send while visiting to ensure that a message starting a new actor
    // is actually the first message that the actor receives.
    fn try_send(&mut self, object: &OwnedObject, envelope: Envelope) {
        let actor = object.as_actor().expect("group stores only actors");
        match actor.try_send(envelope) {
            Ok(()) => self.has_ok = true,
            Err(TrySendError::Full(envelope)) => {
                self.full.push((object.clone(), envelope));
            }
            Err(TrySendError::Closed(envelope)) => {
                self.extra = Some(envelope);
            }
        }
    }

    #[inline]
    async fn finish(mut self) -> SendResult {
        // Wait until messages reach all full actors.
        #[allow(clippy::comparison_chain)]
        if self.full.len() == 1 {
            let (object, envelope) = self.full.pop().unwrap();

            let actor = object.as_actor().expect("group stores only actors");
            match actor.send(envelope).await {
                Ok(()) => self.has_ok = true,
                Err(SendError(envelope)) => {
                    if !self.has_ok {
                        self.extra = Some(envelope);
                    }
                }
            }
        } else if self.full.len() > 1 {
            let mut futures = Vec::new();

            for (object, envelope) in self.full.drain(..) {
                futures.push(async move {
                    object
                        .as_actor()
                        .expect("group stores only actors")
                        .send(envelope)
                        .await
                });
            }

            for result in join_all(futures).await {
                match result {
                    Ok(()) => self.has_ok = true,
                    Err(SendError(envelope)) => {
                        if !self.has_ok {
                            self.extra = Some(envelope);
                        }
                    }
                }
            }
        }

        debug_assert!(self.full.is_empty());

        if self.has_ok {
            Ok(())
        } else {
            Err(SendError(self.extra.take().expect("missing envelope")))
        }
    }
}

impl GroupVisitor for SendGroupVisitor {
    fn done(&mut self) {
        debug_assert!(self.full.is_empty());
        debug_assert!(self.extra.is_none());
        debug_assert!(!self.has_ok);
        self.has_ok = true;
    }

    fn empty(&mut self, envelope: Envelope) {
        debug_assert!(self.full.is_empty());
        debug_assert!(self.extra.is_none());
        debug_assert!(!self.has_ok);
        self.extra = Some(envelope);
    }

    fn visit(&mut self, object: &OwnedObject, envelope: &Envelope) {
        let envelope = self.extra.take().unwrap_or_else(|| envelope.duplicate());
        self.try_send(object, envelope);
    }

    fn visit_last(&mut self, object: &OwnedObject, envelope: Envelope) {
        self.try_send(object, envelope);
    }
}

// === TrySendGroupVisitor ===

#[derive(Default)]
struct TrySendGroupVisitor {
    extra: Option<Envelope>,
    has_ok: bool,
    has_full: bool,
}

impl TrySendGroupVisitor {
    // We must send while visiting to ensure that a message starting a new actor
    // is actually the first message that the actor receives.
    fn try_send(&mut self, object: &OwnedObject, envelope: Envelope) {
        let actor = object.as_actor().expect("group stores only actors");
        match actor.try_send(envelope) {
            Ok(()) => self.has_ok = true,
            Err(err) => {
                if err.is_full() {
                    self.has_full = true;
                }
                self.extra = Some(err.into_inner());
            }
        }
    }

    fn finish(mut self) -> Result<(), TrySendError<Envelope>> {
        if self.has_ok {
            Ok(())
        } else {
            let envelope = self.extra.take().expect("missing envelope");
            Err(if self.has_full {
                TrySendError::Full(envelope)
            } else {
                TrySendError::Closed(envelope)
            })
        }
    }
}

impl GroupVisitor for TrySendGroupVisitor {
    fn done(&mut self) {
        debug_assert!(self.extra.is_none());
        debug_assert!(!self.has_ok);
        self.has_ok = true;
    }

    fn empty(&mut self, envelope: Envelope) {
        debug_assert!(self.extra.is_none());
        debug_assert!(!self.has_ok);
        self.extra = Some(envelope);
    }

    fn visit(&mut self, object: &OwnedObject, envelope: &Envelope) {
        let envelope = self.extra.take().unwrap_or_else(|| envelope.duplicate());
        self.try_send(object, envelope);
    }

    fn visit_last(&mut self, object: &OwnedObject, envelope: Envelope) {
        self.try_send(object, envelope);
    }
}

// === UnboundedSendGroupVisitor ===

#[derive(Default)]
struct UnboundedSendGroupVisitor {
    extra: Option<Envelope>,
    has_ok: bool,
}

impl UnboundedSendGroupVisitor {
    // We must send while visiting to ensure that a message starting a new actor
    // is actually the first message that the actor receives.
    fn try_send(&mut self, object: &OwnedObject, envelope: Envelope) {
        let actor = object.as_actor().expect("group stores only actors");
        match actor.unbounded_send(envelope) {
            Ok(()) => self.has_ok = true,
            Err(err) => self.extra = Some(err.0),
        }
    }

    fn finish(mut self) -> Result<(), SendError<Envelope>> {
        if self.has_ok {
            Ok(())
        } else {
            let envelope = self.extra.take().expect("missing envelope");
            Err(SendError(envelope))
        }
    }
}

impl GroupVisitor for UnboundedSendGroupVisitor {
    fn done(&mut self) {
        debug_assert!(self.extra.is_none());
        debug_assert!(!self.has_ok);
        self.has_ok = true;
    }

    fn empty(&mut self, envelope: Envelope) {
        debug_assert!(self.extra.is_none());
        debug_assert!(!self.has_ok);
        self.extra = Some(envelope);
    }

    fn visit(&mut self, object: &OwnedObject, envelope: &Envelope) {
        let envelope = self.extra.take().unwrap_or_else(|| envelope.duplicate());
        self.try_send(object, envelope);
    }

    fn visit_last(&mut self, object: &OwnedObject, envelope: Envelope) {
        self.try_send(object, envelope);
    }
}