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
use crate::util::{AssociationIdGenerator, RandomAssociationIdGenerator};
use std::fmt;
use std::sync::Arc;
pub(crate) const RECEIVE_MTU: usize = 8192;
pub(crate) const INITIAL_MTU: u32 = 1228;
pub(crate) const INITIAL_RECV_BUF_SIZE: u32 = 1024 * 1024;
pub(crate) const COMMON_HEADER_SIZE: u32 = 12;
pub(crate) const DATA_CHUNK_HEADER_SIZE: u32 = 16;
pub(crate) const DEFAULT_MAX_MESSAGE_SIZE: u32 = 65536;
#[derive(Debug)]
pub struct TransportConfig {
max_receive_buffer_size: u32,
max_message_size: u32,
max_num_outbound_streams: u16,
max_num_inbound_streams: u16,
}
impl Default for TransportConfig {
fn default() -> Self {
TransportConfig {
max_receive_buffer_size: INITIAL_RECV_BUF_SIZE,
max_message_size: DEFAULT_MAX_MESSAGE_SIZE,
max_num_outbound_streams: u16::MAX,
max_num_inbound_streams: u16::MAX,
}
}
}
impl TransportConfig {
pub fn with_max_receive_buffer_size(mut self, value: u32) -> Self {
self.max_receive_buffer_size = value;
self
}
pub fn with_max_message_size(mut self, value: u32) -> Self {
self.max_message_size = value;
self
}
pub fn with_max_num_outbound_streams(mut self, value: u16) -> Self {
self.max_num_outbound_streams = value;
self
}
pub fn with_max_num_inbound_streams(mut self, value: u16) -> Self {
self.max_num_inbound_streams = value;
self
}
pub(crate) fn max_receive_buffer_size(&self) -> u32 {
self.max_receive_buffer_size
}
pub(crate) fn max_message_size(&self) -> u32 {
self.max_message_size
}
pub(crate) fn max_num_outbound_streams(&self) -> u16 {
self.max_num_outbound_streams
}
pub(crate) fn max_num_inbound_streams(&self) -> u16 {
self.max_num_inbound_streams
}
}
#[derive(Clone)]
pub struct EndpointConfig {
pub(crate) max_payload_size: u32,
pub(crate) aid_generator_factory:
Arc<dyn Fn() -> Box<dyn AssociationIdGenerator> + Send + Sync>,
}
impl Default for EndpointConfig {
fn default() -> Self {
Self::new()
}
}
impl EndpointConfig {
pub fn new() -> Self {
let aid_factory: fn() -> Box<dyn AssociationIdGenerator> =
|| Box::<RandomAssociationIdGenerator>::default();
Self {
max_payload_size: INITIAL_MTU - (COMMON_HEADER_SIZE + DATA_CHUNK_HEADER_SIZE),
aid_generator_factory: Arc::new(aid_factory),
}
}
pub fn aid_generator<F: Fn() -> Box<dyn AssociationIdGenerator> + Send + Sync + 'static>(
&mut self,
factory: F,
) -> &mut Self {
self.aid_generator_factory = Arc::new(factory);
self
}
pub fn max_payload_size(&mut self, value: u32) -> &mut Self {
self.max_payload_size = value;
self
}
#[doc(hidden)]
pub fn get_max_payload_size(&self) -> u32 {
self.max_payload_size
}
}
impl fmt::Debug for EndpointConfig {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct("EndpointConfig")
.field("max_payload_size", &self.max_payload_size)
.field("aid_generator_factory", &"[ elided ]")
.finish()
}
}
#[derive(Debug, Clone)]
pub struct ServerConfig {
pub transport: Arc<TransportConfig>,
pub(crate) concurrent_associations: u32,
}
impl Default for ServerConfig {
fn default() -> Self {
ServerConfig {
transport: Arc::new(TransportConfig::default()),
concurrent_associations: 100_000,
}
}
}
impl ServerConfig {
pub fn new() -> Self {
ServerConfig::default()
}
}
#[derive(Debug, Clone)]
pub struct ClientConfig {
pub transport: Arc<TransportConfig>,
}
impl Default for ClientConfig {
fn default() -> Self {
ClientConfig {
transport: Arc::new(TransportConfig::default()),
}
}
}
impl ClientConfig {
pub fn new() -> Self {
ClientConfig::default()
}
}