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
use std::fmt;

use serde::de::Deserialize;
use serde::ser::Serialize;

use super::traits::Oneshot;
use super::worker::OneshotWorker;
use crate::actor::WorkerRegistrar;
use crate::codec::{Bincode, Codec};
use crate::traits::Registrable;

/// A registrar for oneshot workers.
pub struct OneshotRegistrar<T, CODEC = Bincode>
where
    T: Oneshot + 'static,
    CODEC: Codec + 'static,
{
    inner: WorkerRegistrar<OneshotWorker<T>, CODEC>,
}

impl<T, CODEC> Default for OneshotRegistrar<T, CODEC>
where
    T: Oneshot + 'static,
    CODEC: Codec + 'static,
{
    fn default() -> Self {
        Self::new()
    }
}

impl<N, CODEC> OneshotRegistrar<N, CODEC>
where
    N: Oneshot + 'static,
    CODEC: Codec + 'static,
{
    /// Creates a new Oneshot Registrar.
    pub fn new() -> Self {
        Self {
            inner: OneshotWorker::<N>::registrar().encoding::<CODEC>(),
        }
    }

    /// Sets the encoding.
    pub fn encoding<C>(&self) -> OneshotRegistrar<N, C>
    where
        C: Codec + 'static,
    {
        OneshotRegistrar {
            inner: self.inner.encoding::<C>(),
        }
    }

    /// Registers the worker.
    pub fn register(&self)
    where
        N::Input: Serialize + for<'de> Deserialize<'de>,
        N::Output: Serialize + for<'de> Deserialize<'de>,
    {
        self.inner.register()
    }
}

impl<T, CODEC> fmt::Debug for OneshotRegistrar<T, CODEC>
where
    T: Oneshot + 'static,
    CODEC: Codec + 'static,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("OneshotRegistrar<_>").finish()
    }
}