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
use capnp::message::ReaderOptions;
use capnp::capability::Promise;
use futures::{AsyncRead, AsyncWrite, FutureExt, TryFutureExt};
use futures::channel::oneshot;
use std::cell::RefCell;
use std::rc::{Rc, Weak};
pub type VatId = crate::rpc_twoparty_capnp::Side;
struct IncomingMessage {
message: ::capnp::message::Reader<capnp::serialize::OwnedSegments>,
}
impl IncomingMessage {
pub fn new(message: ::capnp::message::Reader<capnp::serialize::OwnedSegments>) -> IncomingMessage {
IncomingMessage { message: message }
}
}
impl crate::IncomingMessage for IncomingMessage {
fn get_body<'a>(&'a self) -> ::capnp::Result<::capnp::any_pointer::Reader<'a>> {
self.message.get_root()
}
}
struct OutgoingMessage {
message: ::capnp::message::Builder<::capnp::message::HeapAllocator>,
sender: ::capnp_futures::Sender<Rc<::capnp::message::Builder<::capnp::message::HeapAllocator>>>,
}
impl crate::OutgoingMessage for OutgoingMessage {
fn get_body<'a>(&'a mut self) -> ::capnp::Result<::capnp::any_pointer::Builder<'a>> {
self.message.get_root()
}
fn get_body_as_reader<'a>(&'a self) -> ::capnp::Result<::capnp::any_pointer::Reader<'a>> {
self.message.get_root_as_reader()
}
fn send(self: Box<Self>)
->
(Promise<Rc<::capnp::message::Builder<::capnp::message::HeapAllocator>>, ::capnp::Error>,
Rc<::capnp::message::Builder<::capnp::message::HeapAllocator>>)
{
let tmp = *self;
let OutgoingMessage {message, mut sender} = tmp;
let m = Rc::new(message);
(Promise::from_future(sender.send(m.clone()).map_err(|e| e.into())), m)
}
fn take(self: Box<Self>)
-> ::capnp::message::Builder<::capnp::message::HeapAllocator>
{
self.message
}
}
struct ConnectionInner<T> where T: AsyncRead + 'static {
input_stream: Rc<RefCell<Option<T>>>,
sender: ::capnp_futures::Sender<Rc<::capnp::message::Builder<::capnp::message::HeapAllocator>>>,
side: crate::rpc_twoparty_capnp::Side,
receive_options: ReaderOptions,
on_disconnect_fulfiller: Option<oneshot::Sender<()>>,
}
struct Connection<T> where T: AsyncRead + 'static {
inner: Rc<RefCell<ConnectionInner<T>>>,
}
impl <T> Drop for ConnectionInner<T> where T: AsyncRead {
fn drop(&mut self) {
let maybe_fulfiller = ::std::mem::replace(&mut self.on_disconnect_fulfiller, None);
match maybe_fulfiller {
Some(fulfiller) => {
let _ = fulfiller.send(());
}
None => unreachable!(),
}
}
}
impl <T> Connection<T> where T: AsyncRead {
fn new(input_stream: T,
sender: ::capnp_futures::Sender<Rc<::capnp::message::Builder<::capnp::message::HeapAllocator>>>,
side: crate::rpc_twoparty_capnp::Side,
receive_options: ReaderOptions,
on_disconnect_fulfiller: oneshot::Sender<()>,
) -> Connection<T>
{
Connection {
inner: Rc::new(RefCell::new(
ConnectionInner {
input_stream: Rc::new(RefCell::new(Some(input_stream))),
sender: sender,
side: side,
receive_options: receive_options,
on_disconnect_fulfiller: Some(on_disconnect_fulfiller),
})),
}
}
}
impl <T> crate::Connection<crate::rpc_twoparty_capnp::Side> for Connection<T>
where T: AsyncRead + Unpin
{
fn get_peer_vat_id(&self) -> crate::rpc_twoparty_capnp::Side {
self.inner.borrow().side
}
fn new_outgoing_message(&mut self, _first_segment_word_size: u32) -> Box<dyn crate::OutgoingMessage> {
Box::new(OutgoingMessage {
message: ::capnp::message::Builder::new_default(),
sender: self.inner.borrow().sender.clone(),
})
}
fn receive_incoming_message(&mut self) -> Promise<Option<Box<dyn crate::IncomingMessage + 'static>>, ::capnp::Error> {
let mut inner = self.inner.borrow_mut();
let maybe_input_stream = ::std::mem::replace(&mut *inner.input_stream.borrow_mut(), None);
let return_it_here = inner.input_stream.clone();
match maybe_input_stream {
Some(mut s) => {
let receive_options = inner.receive_options;
Promise::from_future(async move {
let maybe_message = ::capnp_futures::serialize::read_message(&mut s, receive_options).await?;
*return_it_here.borrow_mut() = Some(s);
Ok(maybe_message.map(|message|
Box::new(IncomingMessage::new(message)) as Box<dyn crate::IncomingMessage>))
})
}
None => {
Promise::err(::capnp::Error::failed("this should not be possible".to_string()))
}
}
}
fn shutdown(&mut self, result: ::capnp::Result<()>) -> Promise<(), ::capnp::Error> {
Promise::from_future(self.inner.borrow_mut().sender.terminate(result).map_err(|e| e.into()))
}
}
pub struct VatNetwork<T> where T: AsyncRead + 'static + Unpin {
connection: Option<Connection<T>>,
weak_connection_inner: Weak<RefCell<ConnectionInner<T>>>,
execution_driver: futures::future::Shared<Promise<(), ::capnp::Error>>,
side: crate::rpc_twoparty_capnp::Side,
}
impl <T> VatNetwork<T> where T: AsyncRead + Unpin {
pub fn new<U>(input_stream: T,
output_stream: U,
side: crate::rpc_twoparty_capnp::Side,
receive_options: ReaderOptions) -> VatNetwork<T>
where U: AsyncWrite + 'static + Unpin,
{
let (fulfiller, disconnect_promise) = oneshot::channel();
let disconnect_promise = disconnect_promise
.map_err(|_| ::capnp::Error::disconnected("disconnected".into()));
let (execution_driver, sender) = {
let (tx, write_queue) = ::capnp_futures::write_queue(output_stream);
(Promise::from_future(
write_queue
.then(move |r| disconnect_promise.then(move |_| futures::future::ready(r)).map_ok(|_| ()))).shared(),
tx)
};
let connection = Connection::new(input_stream, sender, side, receive_options, fulfiller);
let weak_inner = Rc::downgrade(&connection.inner);
VatNetwork {
connection: Some(connection),
weak_connection_inner: weak_inner,
execution_driver: execution_driver,
side: side,
}
}
}
impl <T> crate::VatNetwork<VatId> for VatNetwork<T>
where T: AsyncRead + Unpin
{
fn connect(&mut self, host_id: VatId) -> Option<Box<dyn crate::Connection<VatId>>> {
if host_id == self.side {
None
} else {
let connection = ::std::mem::replace(&mut self.connection, None);
match connection {
Some(c) => {
Some(Box::new(c))
} None => {
match self.weak_connection_inner.upgrade() {
Some(connection_inner) => {
Some(Box::new(Connection { inner: connection_inner }))
}
None => {
panic!("tried to reconnect a disconnected twoparty vat network.")
}
}
}
}
}
}
fn accept(&mut self) -> Promise<Box<dyn crate::Connection<VatId>>, ::capnp::Error> {
let connection = ::std::mem::replace(&mut self.connection, None);
match connection {
Some(c) => Promise::ok(Box::new(c) as Box<dyn crate::Connection<VatId>>),
None => Promise::from_future(::futures::future::pending()),
}
}
fn drive_until_shutdown(&mut self) -> Promise<(), ::capnp::Error> {
Promise::from_future(self.execution_driver.clone())
}
}