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
use super::{BoxedConnectHandler, BoxedLaunchHandler, ConnectHandler, LaunchHandler};
use distant_net::{ServerRef, ServerState};
use std::{collections::HashMap, io, sync::Weak};
use tokio::sync::RwLock;

/// Reference to a distant manager's server instance
pub struct DistantManagerRef {
    /// Mapping of "scheme" -> handler
    pub(crate) launch_handlers: Weak<RwLock<HashMap<String, BoxedLaunchHandler>>>,

    /// Mapping of "scheme" -> handler
    pub(crate) connect_handlers: Weak<RwLock<HashMap<String, BoxedConnectHandler>>>,

    pub(crate) inner: Box<dyn ServerRef>,
}

impl DistantManagerRef {
    /// Registers a new [`LaunchHandler`] for the specified scheme (e.g. "distant" or "ssh")
    pub async fn register_launch_handler(
        &self,
        scheme: impl Into<String>,
        handler: impl LaunchHandler + 'static,
    ) -> io::Result<()> {
        let handlers = Weak::upgrade(&self.launch_handlers).ok_or_else(|| {
            io::Error::new(
                io::ErrorKind::Other,
                "Handler reference is no longer available",
            )
        })?;

        handlers
            .write()
            .await
            .insert(scheme.into(), Box::new(handler));

        Ok(())
    }

    /// Registers a new [`ConnectHandler`] for the specified scheme (e.g. "distant" or "ssh")
    pub async fn register_connect_handler(
        &self,
        scheme: impl Into<String>,
        handler: impl ConnectHandler + 'static,
    ) -> io::Result<()> {
        let handlers = Weak::upgrade(&self.connect_handlers).ok_or_else(|| {
            io::Error::new(
                io::ErrorKind::Other,
                "Handler reference is no longer available",
            )
        })?;

        handlers
            .write()
            .await
            .insert(scheme.into(), Box::new(handler));

        Ok(())
    }
}

impl ServerRef for DistantManagerRef {
    fn state(&self) -> &ServerState {
        self.inner.state()
    }

    fn is_finished(&self) -> bool {
        self.inner.is_finished()
    }

    fn abort(&self) {
        self.inner.abort();
    }
}