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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
//! Options to set mqtt client behaviour
use mqtt311::LastWill;
use std::time::Duration;
/// Control how the connection is re-established if it is lost.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum ReconnectOptions {
/// Don't automatically reconnect
Never,
/// Reconnect automatically if the initial connection was successful.
///
/// Before a reconnection attempt, sleep for the specified amount of time (in seconds).
AfterFirstSuccess(u64),
/// Always reconnect automatically.
///
/// Before a reconnection attempt, sleep for the specified amount of time (in seconds).
Always(u64),
}
/// Client authentication option for mqtt connect packet
#[derive(Clone, Debug)]
pub enum SecurityOptions {
/// No authentication.
None,
/// Use the specified `(username, password)` tuple to authenticate.
UsernamePassword(String, String),
#[cfg(feature = "jwt")]
/// Authenticate against a Google Cloud IoT Core project with the triple
/// `(project name, private_key.der to sign jwt, expiry in seconds)`.
GcloudIot(String, Vec<u8>, i64),
}
/// Mqtt through http proxy
#[derive(Clone, Debug)]
pub enum Proxy {
/// No tunnel
None,
/// Tunnel through a proxy using http connect.
/// (Proxy name, Port, priave_key.der to sign jwt, Expiry in seconds)
HttpConnect(String, u16, Vec<u8>, i64),
}
/// Mqtt options
#[derive(Clone, Debug)]
pub struct MqttOptions {
/// broker address that you want to connect to
broker_addr: String,
port: u16,
/// keep alive time to send pingreq to broker when the connection is idle
keep_alive: Duration,
/// clean (or) persistent session
clean_session: bool,
/// client identifier
client_id: String,
/// tcp connection timeout
connection_timeout: Duration,
/// connection method
ca: Option<Vec<u8>>,
client_auth: Option<(Vec<u8>, Vec<u8>)>,
alpn: Option<Vec<Vec<u8>>>,
/// proxy
proxy: Proxy,
/// reconnection options
reconnect: ReconnectOptions,
/// security options
security: SecurityOptions,
/// maximum packet size
max_packet_size: usize,
/// last will and testament
last_will: Option<LastWill>,
/// request (publish, subscribe) channel capacity
request_channel_capacity: usize,
/// notification channel capacity
notification_channel_capacity: usize,
/// maximum number of outgoing messages per second
throttle: Option<f32>,
/// maximum number of outgoing inflight messages
inflight: usize,
}
impl Default for MqttOptions {
fn default() -> Self {
MqttOptions {
broker_addr: "127.0.0.1".into(),
port: 1883,
keep_alive: Duration::from_secs(30),
clean_session: true,
client_id: "test-client".into(),
connection_timeout: Duration::from_secs(10),
ca: None,
client_auth: None,
alpn: None,
proxy: Proxy::None,
reconnect: ReconnectOptions::AfterFirstSuccess(10),
security: SecurityOptions::None,
max_packet_size: 256 * 1024,
last_will: None,
request_channel_capacity: 10,
notification_channel_capacity: 10,
throttle: None,
inflight: 100,
}
}
}
impl MqttOptions {
/// New mqtt options
pub fn new<S: Into<String>, T: Into<String>>(id: S, host: T, port: u16) -> MqttOptions {
// TODO: Validate if addr is proper address type
let id = id.into();
if id.starts_with(' ') || id.is_empty() {
panic!("Invalid client id")
}
MqttOptions {
broker_addr: host.into(),
port,
keep_alive: Duration::from_secs(60),
clean_session: true,
connection_timeout: Duration::from_secs(10),
client_id: id,
ca: None,
client_auth: None,
alpn: None,
proxy: Proxy::None,
reconnect: ReconnectOptions::AfterFirstSuccess(10),
security: SecurityOptions::None,
max_packet_size: 256 * 1024,
last_will: None,
request_channel_capacity: 10,
notification_channel_capacity: 10,
throttle: None,
inflight: 100,
}
}
/// Broker address
pub fn broker_address(&self) -> (String, u16) {
(self.broker_addr.clone(), self.port)
}
pub fn set_ca(mut self, ca: Vec<u8>) -> Self {
self.ca = Some(ca);
self
}
pub fn ca(&self) -> Option<Vec<u8>> {
self.ca.clone()
}
pub fn set_client_auth(mut self, cert: Vec<u8>, key: Vec<u8>) -> Self {
self.client_auth = Some((cert, key));
self
}
pub fn client_auth(&self) -> Option<(Vec<u8>, Vec<u8>)> {
self.client_auth.clone()
}
pub fn set_connection_timeout(mut self, secs: u16) -> Self {
self.connection_timeout = Duration::from_secs(u64::from(secs));
self
}
pub fn connection_timeout(&self) -> Duration {
self.connection_timeout
}
pub fn set_alpn(mut self, alpn: Vec<Vec<u8>>) -> Self {
self.alpn = Some(alpn);
self
}
pub fn alpn(&self) -> Option<Vec<Vec<u8>>> {
self.alpn.clone()
}
/// Set number of seconds after which client should ping the broker
/// if there is no other data exchange
pub fn set_keep_alive(mut self, secs: u16) -> Self {
if secs < 5 {
panic!("Keep alives should be >= 5 secs");
}
self.keep_alive = Duration::from_secs(u64::from(secs));
self
}
/// Keep alive time
pub fn keep_alive(&self) -> Duration {
self.keep_alive
}
/// Client identifier
pub fn client_id(&self) -> String {
self.client_id.clone()
}
/// Set packet size limit (in Kilo Bytes)
pub fn set_max_packet_size(mut self, sz: usize) -> Self {
self.max_packet_size = sz * 1024;
self
}
/// Maximum packet size
pub fn max_packet_size(&self) -> usize {
self.max_packet_size
}
/// `clean_session = true` removes all the state from queues & instructs the broker
/// to clean all the client state when client disconnects.
///
/// When set `false`, broker will hold the client state and performs pending
/// operations on the client when reconnection with same `client_id`
/// happens. Local queue state is also held to retransmit packets after reconnection.
pub fn set_clean_session(mut self, clean_session: bool) -> Self {
self.clean_session = clean_session;
self
}
/// Clean session
pub fn clean_session(&self) -> bool {
self.clean_session
}
pub fn set_proxy(mut self, proxy: Proxy) -> Self {
self.proxy = proxy;
self
}
pub fn proxy(&self) -> Proxy {
self.proxy.clone()
}
/// Time interval after which client should retry for new
/// connection if there are any disconnections. By default, no retry will happen
pub fn set_reconnect_opts(mut self, opts: ReconnectOptions) -> Self {
self.reconnect = opts;
self
}
/// Reconnection options
pub fn reconnect_opts(&self) -> ReconnectOptions {
self.reconnect
}
/// Set security option
/// Supports username-password auth, tls client cert auth, gcloud iotcore jwt auth
pub fn set_security_opts(mut self, opts: SecurityOptions) -> Self {
self.security = opts;
self
}
/// Security options
pub fn security_opts(&self) -> SecurityOptions {
self.security.clone()
}
/// Set last will and testament
pub fn set_last_will(mut self, last_will: LastWill) -> Self {
self.last_will = Some(last_will);
self
}
/// Last will and testament
pub fn last_will(&self) -> Option<mqtt311::LastWill> {
self.last_will.clone()
}
/// Set notification channel capacity
pub fn set_notification_channel_capacity(mut self, capacity: usize) -> Self {
self.notification_channel_capacity = capacity;
self
}
/// Notification channel capacity
pub fn notification_channel_capacity(&self) -> usize {
self.notification_channel_capacity
}
/// Set request channel capacity
pub fn set_request_channel_capacity(mut self, capacity: usize) -> Self {
self.request_channel_capacity = capacity;
self
}
/// Request channel capacity
pub fn request_channel_capacity(&self) -> usize {
self.request_channel_capacity
}
/// Enables throttling and sets outoing message rate to the specified 'rate'
pub fn set_throttle(mut self, rate: f32) -> Self {
if rate <= 0.0 {
panic!("throttle rate should be a positive number.");
}
self.throttle = Some(rate);
self
}
/// Outgoing message rate
pub fn throttle(&self) -> Option<f32> {
self.throttle
}
/// Set number of concurrent in flight messages
pub fn set_inflight(mut self, inflight: usize) -> Self {
if inflight == 0 {
panic!("zero in flight is not allowed")
}
self.inflight = inflight;
self
}
/// Number of concurrent in flight messages
pub fn inflight(&self) -> usize {
self.inflight
}
}
#[cfg(test)]
mod test {
use crate::mqttoptions::{MqttOptions, ReconnectOptions};
#[test]
#[should_panic]
fn client_id_startswith_space() {
let _mqtt_opts = MqttOptions::new(" client_a", "127.0.0.1", 1883)
.set_reconnect_opts(ReconnectOptions::Always(10))
.set_clean_session(true);
}
#[test]
#[should_panic]
fn no_client_id() {
let _mqtt_opts = MqttOptions::new("", "127.0.0.1", 1883)
.set_reconnect_opts(ReconnectOptions::Always(10))
.set_clean_session(true);
}
}