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
use crate::address::MessageResponseFuture;
use crate::{
    Actor, Address, AddressExt, Context, Disconnected, Handler, Message, SyncHandler, WeakAddress,
};
use futures::channel::oneshot::{self, Receiver, Sender};
use futures::{future, Future, FutureExt, Sink};
use std::marker::PhantomData;
use std::pin::Pin;

/// The type of future returned by `Envelope::handle`
type Fut<'a> = Pin<Box<dyn Future<Output = ()> + Send + 'a>>;

/// A message envelope is a struct that encapsulates a message and its return channel sender (if applicable).
/// Firstly, this allows us to be generic over returning and non-returning messages (as all use the
/// same `handle` method and return the same pinned & boxed future), but almost more importantly it
/// allows us to erase the type of the message when this is in dyn Trait format, thereby being able to
/// use only one channel to send all the kinds of messages that the actor can receives. This does,
/// however, induce a bit of allocation (as envelopes have to be boxed).
pub(crate) trait MessageEnvelope: Send {
    /// The type of actor that this envelope carries a message for
    type Actor: Actor;

    /// Handle the message inside of the box by calling the relevant `AsyncHandler::handle` or
    /// `Handler::handle` method, returning its result over a return channel if applicable. The
    /// reason that this returns a future is so that we can propagate any `Handler` responder
    /// futures upwards and `.await` on them in the manager loop. This also takes `Box<Self>` as the
    /// `self` parameter because `Envelope`s always appear as `Box<dyn Envelope<Actor = ...>>`,
    /// and this allows us to consume the envelope, meaning that we don't have to waste *precious
    /// CPU cycles* on useless option checks.
    ///
    /// # Doesn't the return type induce *Unnecessary Boxing* for synchronous handlers?
    /// To save on boxing for non-asynchronously handled message envelopes, we *could* return some
    /// enum like:
    ///
    /// ```ignore
    /// enum Return<'a> {
    ///     Fut(Fut<'a>),
    ///     Noop,
    /// }
    /// ```
    ///
    /// But this is actually about 10% *slower* for `do_send`. I don't know why. Maybe it's something
    /// to do with branch (mis)prediction or compiler optimisation. If you think that you can get
    /// it to be faster, then feel free to open a PR with benchmark results attached to prove it.
    fn handle<'a>(
        self: Box<Self>,
        act: &'a mut Self::Actor,
        ctx: &'a mut Context<Self::Actor>,
    ) -> Fut<'a>;
}

/// An envelope that returns a result from a message. Constructed by the `AddressExt::do_send` method.
pub(crate) struct ReturningEnvelope<A: Actor + Send, M: Message> {
    message: M,
    result_sender: Sender<M::Result>,
    phantom: PhantomData<A>,
}

impl<A: Actor + Send, M: Message> ReturningEnvelope<A, M> {
    pub(crate) fn new(message: M) -> (Self, Receiver<M::Result>) {
        let (tx, rx) = oneshot::channel();
        let envelope = ReturningEnvelope {
            message,
            result_sender: tx,
            phantom: PhantomData,
        };

        (envelope, rx)
    }
}

impl<M, A> MessageEnvelope for ReturningEnvelope<A, M>
where
    A: Handler<M> + Send,
    for<'a> A::Responder<'a>: Future<Output = M::Result>,
    M: Message,
{
    type Actor = A;

    default fn handle<'a>(
        self: Box<Self>,
        act: &'a mut Self::Actor,
        ctx: &'a mut Context<Self::Actor>,
    ) -> Fut<'a> {
        let Self {
            message,
            result_sender,
            ..
        } = *self;
        Box::pin(act.handle(message, ctx).map(move |r| {
            // We don't actually care if the receiver is listening
            let _ = result_sender.send(r);
        }))
    }
}

impl<A, M> MessageEnvelope for ReturningEnvelope<A, M>
where
    A: Handler<M> + SyncHandler<M> + Send,
    M: Message,
    M::Result: Send,
{
    fn handle<'a>(
        self: Box<Self>,
        act: &'a mut Self::Actor,
        ctx: &'a mut Context<Self::Actor>,
    ) -> Fut<'a> {
        let message_result = SyncHandler::handle(act, self.message, ctx);

        // We don't actually care if the receiver is listening
        let _ = self.result_sender.send(message_result);

        Box::pin(future::ready(()))
    }
}

/// An envelope that does not return a result from a message. Constructed  by the `AddressExt::do_send`
/// method.
pub(crate) struct NonReturningEnvelope<A: Actor, M: Message> {
    message: M,
    phantom: PhantomData<A>,
}

impl<A: Actor, M: Message> NonReturningEnvelope<A, M> {
    pub(crate) fn new(message: M) -> Self {
        NonReturningEnvelope {
            message,
            phantom: PhantomData,
        }
    }
}

impl<A, M> MessageEnvelope for NonReturningEnvelope<A, M>
where
    A: Handler<M> + Send,
    for<'a> A::Responder<'a>: Future<Output = M::Result>,
    M: Message,
{
    type Actor = A;

    default fn handle<'a>(
        self: Box<Self>,
        act: &'a mut Self::Actor,
        ctx: &'a mut Context<Self::Actor>,
    ) -> Fut<'a> {
        Box::pin(act.handle(self.message, ctx).map(|_| ()))
    }
}

impl<A, M> MessageEnvelope for NonReturningEnvelope<A, M>
where
    A: Handler<M> + SyncHandler<M> + Send,
    M: Message,
{
    fn handle<'a>(
        self: Box<Self>,
        act: &'a mut Self::Actor,
        ctx: &'a mut Context<Self::Actor>,
    ) -> Fut<'a> {
        SyncHandler::handle(act, self.message, ctx);
        Box::pin(future::ready(()))
    }
}

/// Similar to `MessageEnvelope`, but used to erase the type of the actor instead of the channel.
/// This is used in `message_channel.rs`. All of its methods map to an equivalent method in
/// `Address` or `AddressExt`
pub(crate) trait AddressEnvelope<M: Message>: Sink<M, Error = Disconnected> + Unpin {
    fn is_connected(&self) -> bool;
    fn do_send(&self, message: M) -> Result<(), Disconnected>;
    fn send(&self, message: M) -> MessageResponseFuture<M>;

    /// It is an error for this method to be called on an already weak address
    fn downgrade(&self) -> Box<dyn AddressEnvelope<M>>;
}

impl<A, M> AddressEnvelope<M> for Address<A>
where
    A: Handler<M> + Send,
    M: Message,
{
    fn is_connected(&self) -> bool {
        AddressExt::is_connected(self)
    }

    fn do_send(&self, message: M) -> Result<(), Disconnected> {
        AddressExt::do_send(self, message)
    }

    fn send(&self, message: M) -> MessageResponseFuture<M> {
        AddressExt::send(self, message)
    }

    fn downgrade(&self) -> Box<dyn AddressEnvelope<M>> {
        Box::new(Address::downgrade(self))
    }
}

impl<A, M> AddressEnvelope<M> for WeakAddress<A>
where
    A: Handler<M> + Send,
    M: Message,
{
    fn is_connected(&self) -> bool {
        AddressExt::is_connected(self)
    }

    fn do_send(&self, message: M) -> Result<(), Disconnected> {
        AddressExt::do_send(self, message)
    }

    fn send(&self, message: M) -> MessageResponseFuture<M> {
        AddressExt::send(self, message)
    }

    fn downgrade(&self) -> Box<dyn AddressEnvelope<M>> {
        unimplemented!()
    }
}