wrpc_runtime_wasmtime/rpc/
mod.rs

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
//! `wrpc:transport` implementation

use core::any::Any;
use core::fmt;
use core::future::Future;
use core::marker::PhantomData;
use core::pin::Pin;
use core::task::{Context, Poll};

use std::sync::Arc;

use anyhow::Context as _;
use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
use wasmtime::component::Linker;
use wasmtime_wasi::Pollable;
use wrpc_transport::Invoke;

use crate::{bindings, WrpcView};

mod host;

/// Wrapper struct, for which [crate::bindings::wrpc::transport::transport::Host] is implemented
#[repr(transparent)]
pub struct WrpcRpcImpl<T>(pub T);

fn type_annotate<T, F>(val: F) -> F
where
    F: Fn(&mut T) -> WrpcRpcImpl<&mut T>,
{
    val
}

pub fn add_to_linker<T>(linker: &mut Linker<T>) -> anyhow::Result<()>
where
    T: WrpcView,
    T::Invoke: Clone + 'static,
    <T::Invoke as Invoke>::Context: 'static,
{
    let closure = type_annotate::<T, _>(|t| WrpcRpcImpl(t));
    bindings::rpc::context::add_to_linker_get_host(linker, closure)
        .context("failed to link `wrpc:rpc/context`")?;
    bindings::rpc::error::add_to_linker_get_host(linker, closure)
        .context("failed to link `wrpc:rpc/error`")?;
    bindings::rpc::invoker::add_to_linker_get_host(linker, closure)
        .context("failed to link `wrpc:rpc/invoker`")?;
    bindings::rpc::transport::add_to_linker_get_host(linker, closure)
        .context("failed to link `wrpc:rpc/transport`")?;
    Ok(())
}

/// RPC error
pub enum Error {
    /// Error originating from [Invoke::invoke] call
    Invoke(anyhow::Error),
    /// Error originating from [Index::index](wrpc_transport::Index::index) call on [Invoke::Incoming].
    IncomingIndex(anyhow::Error),
    /// Error originating from [Index::index](wrpc_transport::Index::index) call on
    /// [Invoke::Outgoing].
    OutgoingIndex(anyhow::Error),
    /// Error originating from a `wasi:io` stream provided by this crate.
    Stream(StreamError),
}

impl fmt::Debug for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::Invoke(error) | Error::IncomingIndex(error) | Error::OutgoingIndex(error) => {
                error.fmt(f)
            }
            Error::Stream(error) => error.fmt(f),
        }
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::Invoke(error) | Error::IncomingIndex(error) | Error::OutgoingIndex(error) => {
                error.fmt(f)
            }
            Error::Stream(error) => error.fmt(f),
        }
    }
}

/// Error type originating from `wasi:io` streams provided by this crate.
pub enum StreamError {
    LockPoisoned,
    TypeMismatch(&'static str),
    Read(std::io::Error),
    Write(std::io::Error),
    Flush(std::io::Error),
    Shutdown(std::io::Error),
}

impl core::error::Error for StreamError {}

impl fmt::Debug for StreamError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            StreamError::LockPoisoned => "lock poisoned".fmt(f),
            StreamError::TypeMismatch(error) => error.fmt(f),
            StreamError::Read(error)
            | StreamError::Write(error)
            | StreamError::Flush(error)
            | StreamError::Shutdown(error) => error.fmt(f),
        }
    }
}

impl fmt::Display for StreamError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            StreamError::LockPoisoned => "lock poisoned".fmt(f),
            StreamError::TypeMismatch(error) => error.fmt(f),
            StreamError::Read(error)
            | StreamError::Write(error)
            | StreamError::Flush(error)
            | StreamError::Shutdown(error) => error.fmt(f),
        }
    }
}

pub enum Invocation {
    Future(Pin<Box<dyn Future<Output = Box<dyn Any + Send>> + Send>>),
    Ready(Box<dyn Any + Send>),
}

#[wasmtime_wasi::async_trait]
impl Pollable for Invocation {
    async fn ready(&mut self) {
        match self {
            Self::Future(fut) => {
                let res = fut.await;
                *self = Self::Ready(res);
            }
            Self::Ready(..) => {}
        }
    }
}

pub struct OutgoingChannel(pub Arc<std::sync::RwLock<Box<dyn Any + Send + Sync>>>);

pub struct IncomingChannel(pub Arc<std::sync::RwLock<Box<dyn Any + Send + Sync>>>);

pub struct IncomingChannelStream<T> {
    incoming: IncomingChannel,
    _ty: PhantomData<T>,
}

impl<T: AsyncRead + Unpin + 'static> AsyncRead for IncomingChannelStream<T> {
    fn poll_read(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut ReadBuf<'_>,
    ) -> Poll<std::io::Result<()>> {
        let Ok(mut incoming) = self.incoming.0.write() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::Deadlock,
                StreamError::LockPoisoned,
            )));
        };
        let Some(incoming) = incoming.downcast_mut::<T>() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                StreamError::TypeMismatch("invalid incoming channel type"),
            )));
        };
        Pin::new(incoming)
            .poll_read(cx, buf)
            .map_err(|err| std::io::Error::new(err.kind(), StreamError::Read(err)))
    }
}

pub struct OutgoingChannelStream<T> {
    outgoing: OutgoingChannel,
    _ty: PhantomData<T>,
}

impl<T: AsyncWrite + Unpin + 'static> AsyncWrite for OutgoingChannelStream<T> {
    fn poll_write(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> Poll<Result<usize, std::io::Error>> {
        let Ok(mut outgoing) = self.outgoing.0.write() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::Deadlock,
                StreamError::LockPoisoned,
            )));
        };
        let Some(outgoing) = outgoing.downcast_mut::<T>() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                StreamError::TypeMismatch("invalid outgoing channel type"),
            )));
        };
        Pin::new(outgoing)
            .poll_write(cx, buf)
            .map_err(|err| std::io::Error::new(err.kind(), StreamError::Write(err)))
    }

    fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), std::io::Error>> {
        let Ok(mut outgoing) = self.outgoing.0.write() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::Deadlock,
                StreamError::LockPoisoned,
            )));
        };
        let Some(outgoing) = outgoing.downcast_mut::<T>() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                StreamError::TypeMismatch("invalid outgoing channel type"),
            )));
        };
        Pin::new(outgoing)
            .poll_flush(cx)
            .map_err(|err| std::io::Error::new(err.kind(), StreamError::Flush(err)))
    }

    fn poll_shutdown(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> Poll<Result<(), std::io::Error>> {
        let Ok(mut outgoing) = self.outgoing.0.write() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::Deadlock,
                StreamError::LockPoisoned,
            )));
        };
        let Some(outgoing) = outgoing.downcast_mut::<T>() else {
            return Poll::Ready(Err(std::io::Error::new(
                std::io::ErrorKind::InvalidData,
                StreamError::TypeMismatch("invalid outgoing channel type"),
            )));
        };
        Pin::new(outgoing)
            .poll_shutdown(cx)
            .map_err(|err| std::io::Error::new(err.kind(), StreamError::Shutdown(err)))
    }
}