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
use std::{clone::Clone, net::SocketAddr, thread};
use amethyst_core::ecs::{Entities, Join, System, WriteStorage};
use crossbeam_channel::{Receiver, Sender};
use laminar::{Packet, SocketEvent};
use log::{error, warn};
use serde::{de::DeserializeOwned, Serialize};
use super::{
error::Result,
serialize_event, serialize_packet,
server::{Host, ServerConfig},
ConnectionState, NetConnection, NetEvent,
};
use std::io::{Error, ErrorKind};
enum InternalSocketEvent<E> {
SendEvents {
target: SocketAddr,
events: Vec<NetEvent<E>>,
},
Stop,
}
#[allow(missing_debug_implementations)]
pub struct NetSocketSystem<E: 'static>
where
E: PartialEq,
{
event_sender: Sender<InternalSocketEvent<E>>,
event_receiver: Receiver<laminar::SocketEvent>,
config: ServerConfig,
}
impl<E> NetSocketSystem<E>
where
E: Serialize + PartialEq + Send + 'static,
{
pub fn new(config: ServerConfig) -> Result<Self> {
if config.udp_socket_addr.port() < 1024 {
warn!("Using a port below 1024, this will require root permission and should not be done.");
}
let server = Host::run(&config)?;
let udp_send_handle = server.udp_send_handle();
let udp_receive_handle = server.udp_receive_handle();
let event_sender = NetSocketSystem::<E>::start_sending(udp_send_handle);
Ok(NetSocketSystem {
event_sender,
event_receiver: udp_receive_handle,
config,
})
}
fn start_sending(sender: Sender<Packet>) -> Sender<InternalSocketEvent<E>> {
let (event_sender, event_receiver) = crossbeam_channel::unbounded();
thread::spawn(move || loop {
for control_event in event_receiver.try_iter() {
match control_event {
InternalSocketEvent::SendEvents { target, events } => {
for ev in events {
let serialize_result = match ev {
NetEvent::Packet(packet) => serialize_packet(packet, target),
NetEvent::Connected(addr) => serialize_event(ev, addr),
NetEvent::Disconnected(addr) => serialize_event(ev, addr),
NetEvent::__Nonexhaustive => {
Err(Error::new(ErrorKind::Other, "Net event does not exist.")
.into())
}
};
match serialize_result {
Ok(packet) => match sender.send(packet) {
Ok(_qty) => {}
Err(e) => {
error!("Failed to send data to network socket: {}", e)
}
},
Err(e) => error!("Cannot serialize packet. Reason: {}", e),
}
}
}
InternalSocketEvent::Stop => {
break;
}
}
}
});
event_sender
}
}
impl<'a, E> System<'a> for NetSocketSystem<E>
where
E: Send + Sync + Serialize + Clone + DeserializeOwned + PartialEq + 'static,
{
type SystemData = (WriteStorage<'a, NetConnection<E>>, Entities<'a>);
fn run(&mut self, (mut net_connections, entities): Self::SystemData) {
#[cfg(feature = "profiler")]
profile_scope!("net_socket_system");
for connection in (&mut net_connections).join() {
match connection.state {
ConnectionState::Connected | ConnectionState::Connecting => {
self.event_sender
.send(InternalSocketEvent::SendEvents {
target: connection.target_addr,
events: connection.send_buffer_early_read().cloned().collect(),
})
.expect("Unreachable: Channel will be alive until a stop event is sent");
}
ConnectionState::Disconnected => {
self.event_sender
.send(InternalSocketEvent::Stop)
.expect("Already sent a stop event to the channel");
}
}
}
for (counter, socket_event) in self.event_receiver.try_iter().enumerate() {
match socket_event {
SocketEvent::Packet(packet) => {
let from_addr = packet.addr();
match NetEvent::<E>::from_packet(packet) {
Ok(event) => {
for connection in (&mut net_connections).join() {
if connection.target_addr == from_addr {
connection.receive_buffer.single_write(event.clone());
}
}
}
Err(e) => error!(
"Failed to deserialize an incoming network event: {} From source: {:?}",
e, from_addr
),
}
}
SocketEvent::Connect(addr) => {
if self.config.create_net_connection_on_connect {
let mut connection: NetConnection<E> = NetConnection::new(addr);
connection
.receive_buffer
.single_write(NetEvent::Connected(addr));
entities
.build_entity()
.with(connection, &mut net_connections)
.build();
}
}
SocketEvent::Timeout(timeout_addr) => {
for connection in (&mut net_connections).join() {
if connection.target_addr == timeout_addr {
connection
.receive_buffer
.single_write(NetEvent::Disconnected(timeout_addr));
}
}
}
};
if counter >= self.config.max_throughput as usize {
break;
}
}
}
}