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
use crate::codec::{
Cookie, ErrorCode, Message, Namespace, NewRegistration, Registration, RendezvousCodec, Ttl,
};
use crate::handler::Error;
use crate::handler::PROTOCOL_IDENT;
use crate::substream_handler::{Next, PassthroughProtocol, SubstreamHandler};
use asynchronous_codec::Framed;
use futures::{SinkExt, StreamExt};
use libp2p_swarm::{NegotiatedSubstream, SubstreamProtocol};
use std::fmt;
use std::task::{Context, Poll};
#[allow(clippy::large_enum_variant)]
#[allow(clippy::enum_variant_names)]
pub enum Stream {
PendingRead(Framed<NegotiatedSubstream, RendezvousCodec>),
PendingBehaviour(Framed<NegotiatedSubstream, RendezvousCodec>),
PendingSend(Framed<NegotiatedSubstream, RendezvousCodec>, Message),
PendingClose(Framed<NegotiatedSubstream, RendezvousCodec>),
}
impl fmt::Debug for Stream {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Stream::PendingRead(_) => write!(f, "Inbound::PendingRead"),
Stream::PendingBehaviour(_) => write!(f, "Inbound::PendingBehaviour"),
Stream::PendingSend(_, _) => write!(f, "Inbound::PendingSend"),
Stream::PendingClose(_) => write!(f, "Inbound::PendingClose"),
}
}
}
#[allow(clippy::large_enum_variant)]
#[allow(clippy::enum_variant_names)]
#[derive(Debug, Clone)]
pub enum OutEvent {
RegistrationRequested(NewRegistration),
UnregisterRequested(Namespace),
DiscoverRequested {
namespace: Option<Namespace>,
cookie: Option<Cookie>,
limit: Option<u64>,
},
}
#[derive(Debug)]
pub enum InEvent {
RegisterResponse {
ttl: Ttl,
},
DeclineRegisterRequest(ErrorCode),
DiscoverResponse {
discovered: Vec<Registration>,
cookie: Cookie,
},
DeclineDiscoverRequest(ErrorCode),
}
impl SubstreamHandler for Stream {
type InEvent = InEvent;
type OutEvent = OutEvent;
type Error = Error;
type OpenInfo = ();
fn upgrade(
open_info: Self::OpenInfo,
) -> SubstreamProtocol<PassthroughProtocol, Self::OpenInfo> {
SubstreamProtocol::new(PassthroughProtocol::new(PROTOCOL_IDENT), open_info)
}
fn new(substream: NegotiatedSubstream, _: Self::OpenInfo) -> Self {
Stream::PendingRead(Framed::new(substream, RendezvousCodec::default()))
}
fn inject_event(self, event: Self::InEvent) -> Self {
match (event, self) {
(InEvent::RegisterResponse { ttl }, Stream::PendingBehaviour(substream)) => {
Stream::PendingSend(substream, Message::RegisterResponse(Ok(ttl)))
}
(InEvent::DeclineRegisterRequest(error), Stream::PendingBehaviour(substream)) => {
Stream::PendingSend(substream, Message::RegisterResponse(Err(error)))
}
(
InEvent::DiscoverResponse { discovered, cookie },
Stream::PendingBehaviour(substream),
) => Stream::PendingSend(
substream,
Message::DiscoverResponse(Ok((discovered, cookie))),
),
(InEvent::DeclineDiscoverRequest(error), Stream::PendingBehaviour(substream)) => {
Stream::PendingSend(substream, Message::DiscoverResponse(Err(error)))
}
(event, inbound) => {
debug_assert!(false, "{:?} cannot handle event {:?}", inbound, event);
inbound
}
}
}
fn advance(self, cx: &mut Context<'_>) -> Result<Next<Self, Self::OutEvent>, Self::Error> {
let next_state = match self {
Stream::PendingRead(mut substream) => {
match substream.poll_next_unpin(cx).map_err(Error::ReadMessage)? {
Poll::Ready(Some(msg)) => {
let event = match msg {
Message::Register(registration) => {
OutEvent::RegistrationRequested(registration)
}
Message::Discover {
cookie,
namespace,
limit,
} => OutEvent::DiscoverRequested {
cookie,
namespace,
limit,
},
Message::Unregister(namespace) => {
OutEvent::UnregisterRequested(namespace)
}
other => return Err(Error::BadMessage(other)),
};
Next::EmitEvent {
event,
next_state: Stream::PendingBehaviour(substream),
}
}
Poll::Ready(None) => return Err(Error::UnexpectedEndOfStream),
Poll::Pending => Next::Pending {
next_state: Stream::PendingRead(substream),
},
}
}
Stream::PendingBehaviour(substream) => Next::Pending {
next_state: Stream::PendingBehaviour(substream),
},
Stream::PendingSend(mut substream, message) => match substream
.poll_ready_unpin(cx)
.map_err(Error::WriteMessage)?
{
Poll::Ready(()) => {
substream
.start_send_unpin(message)
.map_err(Error::WriteMessage)?;
Next::Continue {
next_state: Stream::PendingClose(substream),
}
}
Poll::Pending => Next::Pending {
next_state: Stream::PendingSend(substream, message),
},
},
Stream::PendingClose(mut substream) => match substream.poll_close_unpin(cx) {
Poll::Ready(Ok(())) => Next::Done,
Poll::Ready(Err(_)) => Next::Done, Poll::Pending => Next::Pending {
next_state: Stream::PendingClose(substream),
},
},
};
Ok(next_state)
}
}