forked from eclipse-paho/paho.mqtt.rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasync_client.rs
1230 lines (1065 loc) · 40.1 KB
/
async_client.rs
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// paho-mqtt/src/async_client.rs
// This file is part of the Eclipse Paho MQTT Rust Client library.
/*******************************************************************************
* Copyright (c) 2017-2020 Frank Pagliughi <fpagliughi@mindspring.com>
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Frank Pagliughi - initial implementation and documentation
*******************************************************************************/
//! The Asynchronous client module for the Paho MQTT Rust client library.
//!
//! This presents an asynchronous API that is similar to the other Paho MQTT
//! clients, but uses Token objects that implement the Futures trait, so
//! can be used in much more flexible ways than the other language clients.
//!
//! Asynchronous operations return a `Token` that is a type of future. It
//! can be used to determine if an operation has completed, block and wait
//! for the operation to complete, and obtain the final result.
//! For example, you can start a connection, do something else, and then
//! wait for the connection to complete.
//!
//! ```
//! use futures::future::Future;
//! use paho_mqtt as mqtt;
//!
//! let cli = mqtt::AsyncClient::new("tcp://localhost:1883").unwrap();
//!
//! // Start an async operation and get the token for it.
//! let tok = cli.connect(mqtt::ConnectOptions::new());
//!
//! // ...do something else...
//!
//! // Wait for the async operation to complete.
//! tok.wait().unwrap();
//! ```
use crate::{
client_persistence::UserPersistence,
connect_options::ConnectOptions,
create_options::{CreateOptions, PersistenceType},
disconnect_options::{DisconnectOptions, DisconnectOptionsBuilder},
errors::{self, Error, Result},
ffi,
message::Message,
properties::Properties,
reason_code::ReasonCode,
response_options::{ResponseOptions, ResponseOptionsBuilder},
server_response::ServerRequest,
string_collection::StringCollection,
subscribe_options::SubscribeOptions,
token::{ConnectToken, DeliveryToken, SubscribeManyToken, SubscribeToken, Token},
AsyncReceiver, Receiver, UserData,
};
use crossbeam_channel as channel;
use std::{
ffi::{CStr, CString},
mem,
os::raw::{c_char, c_int, c_void},
ptr, slice, str,
sync::{Arc, Mutex},
time::Duration,
};
/////////////////////////////////////////////////////////////////////////////
// AsynClient
/// An asynchronous MQTT connection client.
#[derive(Clone)]
pub struct AsyncClient {
pub(crate) inner: Arc<InnerAsyncClient>,
}
/// Implementation details for the asynchronous MQTT connection client.
pub(crate) struct InnerAsyncClient {
// The handle to the Paho C client
handle: ffi::MQTTAsync,
// The options for connecting to the broker
opts: Mutex<ConnectOptions>,
// The context to give to the C callbacks
callback_context: Mutex<CallbackContext>,
// The server URI
server_uri: CString,
// The MQTT client ID name
client_id: CString,
// The user persistence (if any)
user_persistence: Option<Box<UserPersistence>>,
// Arbitrary, user-supplied data
user_data: Option<UserData>,
}
/// User callback type for when the client is connected.
pub type ConnectedCallback = dyn FnMut(&AsyncClient) + 'static;
/// User callback type for when the connection is lost from the broker.
pub type ConnectionLostCallback = dyn FnMut(&AsyncClient) + 'static;
/// User callback type for when the client receives a disconnect packet.
pub type DisconnectedCallback = dyn FnMut(&AsyncClient, Properties, ReasonCode) + 'static;
/// User callback signature for when subscribed messages are received.
pub type MessageArrivedCallback = dyn FnMut(&AsyncClient, Option<Message>) + 'static;
// The context provided for the client callbacks.
//
// Originally these needed to be kept together and managed with a single
// context in the C lib. Now, we just keep them together to easily manage
// for thread-protection with a Mutex.
// These are now independent, so don't need to be kept inside a single mutex.
// Even better, it would be nice to be able to run the callbacks lock-free.
#[derive(Default)]
struct CallbackContext {
/// Callback for when the client successfully connects.
on_connected: Option<Box<ConnectedCallback>>,
/// Callback for when the client loses connection to the server.
on_connection_lost: Option<Box<ConnectionLostCallback>>,
/// Callback for when the client receives a disconnect packet.
on_disconnected: Option<Box<DisconnectedCallback>>,
/// Callback for when a message arrives from the server.
on_message_arrived: Option<Box<MessageArrivedCallback>>,
}
impl AsyncClient {
/// Creates a new MQTT client which can connect to an MQTT broker.
///
/// # Arguments
///
/// `opts` The create options for the client.
///
pub fn new<T>(opts: T) -> Result<AsyncClient>
where
T: Into<CreateOptions>,
{
let mut opts = opts.into();
debug!("Create options: {:?}", opts);
let mut cli = InnerAsyncClient {
handle: ptr::null_mut(),
opts: Mutex::new(ConnectOptions::new()),
callback_context: Mutex::new(CallbackContext::default()),
server_uri: CString::new(opts.server_uri)?,
client_id: CString::new(opts.client_id)?,
user_persistence: None,
user_data: opts.user_data,
};
// We might need this for file persistence path
let file_path;
let (ptype, pptr) = match opts.persistence {
PersistenceType::None => (ffi::MQTTCLIENT_PERSISTENCE_NONE, ptr::null_mut()),
PersistenceType::File => (ffi::MQTTCLIENT_PERSISTENCE_DEFAULT, ptr::null_mut()),
PersistenceType::FilePath(path) => {
let s = path.to_str().ok_or(errors::PersistenceError)?;
file_path = CString::new(s).unwrap_or_default();
let pptr = file_path.as_ptr() as *mut c_void;
(ffi::MQTTCLIENT_PERSISTENCE_DEFAULT, pptr)
}
PersistenceType::User(cli_persist) => {
let mut user_persistence = Box::new(UserPersistence::new(cli_persist));
let pptr = &mut user_persistence.copts as *mut _ as *mut c_void;
cli.user_persistence = Some(user_persistence);
(ffi::MQTTCLIENT_PERSISTENCE_USER, pptr)
}
};
debug!("Creating client with persistence: {}", ptype);
let rc = unsafe {
ffi::MQTTAsync_createWithOptions(
&mut cli.handle as *mut *mut c_void,
cli.server_uri.as_ptr(),
cli.client_id.as_ptr(),
ptype as c_int,
pptr,
&mut opts.copts,
) as i32
};
if rc != 0 {
warn!("Create result: {}", rc);
return Err(rc.into());
}
debug!("AsyncClient handle: {:?}", cli.handle);
Ok(AsyncClient {
inner: Arc::new(cli),
})
}
/// Constructs a client from a raw pointer to the inner structure.
/// This is how the client is normally reconstructed from a context
/// pointer coming back from the C lib.
pub(crate) unsafe fn from_raw(ptr: *mut c_void) -> AsyncClient {
AsyncClient {
inner: Arc::from_raw(ptr as *mut InnerAsyncClient),
}
}
/// Consumes the client, returning the inner wrapped value.
/// This is how a client can be passed to the C lib as a context pointer.
pub(crate) fn into_raw(self) -> *mut c_void {
Arc::into_raw(self.inner) as *mut c_void
}
// Low-level callback from the C library when the client is connected.
// We just pass the call on to the handler registered with the client, if any.
unsafe extern "C" fn on_connected(context: *mut c_void, _cause: *mut c_char) {
debug!("Connected! {:?}", context);
if !context.is_null() {
let cli = AsyncClient::from_raw(context);
if let Some(ref mut cb) = cli.inner.callback_context.lock().unwrap().on_connected {
trace!("Invoking connected callback");
cb(&cli);
}
let _ = cli.into_raw();
}
}
// Low-level callback from the C library when the connection is lost.
// We pass the call on to the handler registered with the client, if any.
unsafe extern "C" fn on_connection_lost(context: *mut c_void, _cause: *mut c_char) {
warn!("Connection lost. Context: {:?}", context);
if !context.is_null() {
let cli = AsyncClient::from_raw(context);
{
let mut cbctx = cli.inner.callback_context.lock().unwrap();
// Push a None into the message stream to cleanly
// shutdown any consumers.
if let Some(ref mut cb) = cbctx.on_message_arrived {
trace!("Invoking message callback with None");
cb(&cli, None);
}
if let Some(ref mut cb) = cbctx.on_connection_lost {
trace!("Invoking connection lost callback");
cb(&cli);
}
}
let _ = cli.into_raw();
}
}
// Low-level callback from the C library for when a disconnect packet arrives.
unsafe extern "C" fn on_disconnected(
context: *mut c_void,
cprops: *mut ffi::MQTTProperties,
reason: ffi::MQTTReasonCodes,
) {
debug!(
"Disconnected on context {:?}, with reason code: {}",
context, reason
);
if !context.is_null() {
let cli = AsyncClient::from_raw(context);
let reason_code = ReasonCode::from(reason);
let props = Properties::from_c_struct(&*cprops);
if let Some(ref mut cb) = cli.inner.callback_context.lock().unwrap().on_disconnected {
trace!("Invoking disconnected callback");
cb(&cli, props, reason_code);
}
let _ = cli.into_raw();
}
}
// Low-level callback from the C library when a message arrives from the broker.
// We pass the call on to the handler registered with the client, if any.
unsafe extern "C" fn on_message_arrived(
context: *mut c_void,
topic_name: *mut c_char,
topic_len: c_int,
mut cmsg: *mut ffi::MQTTAsync_message,
) -> c_int {
debug!(
"Message arrived. Context: {:?}, topic: {:?} len {:?} cmsg: {:?}: {:?}",
context, topic_name, topic_len, cmsg, *cmsg
);
if !context.is_null() {
let cli = AsyncClient::from_raw(context);
if let Some(ref mut cb) = cli
.inner
.callback_context
.lock()
.unwrap()
.on_message_arrived
{
let len = topic_len as usize;
let topic = if len == 0 {
// Zero-len topic means it's a NUL-terminated C string
CStr::from_ptr(topic_name).to_owned()
}
else {
// If we get a len for the topic, then there's no NUL terminator.
// TODO: Handle UTF-8 error(s)
let tp =
str::from_utf8(slice::from_raw_parts(topic_name as *mut u8, len)).unwrap();
CString::new(tp).unwrap()
};
let msg = Message::from_c_parts(topic, &*cmsg);
trace!("Invoking message callback");
cb(&cli, Some(msg));
}
let _ = cli.into_raw();
}
ffi::MQTTAsync_freeMessage(&mut cmsg);
ffi::MQTTAsync_free(topic_name as *mut c_void);
1
}
/// Gets the MQTT version for which the client was created.
pub fn mqtt_version(&self) -> u32 {
// TODO: It's getting this from the connect options, not the create options!
self.inner.opts.lock().unwrap().copts.MQTTVersion as u32
}
/// Get access to the user-defined data in the client.
///
/// This returns a reference to a read/write lock around the user data so
/// that the application can access the data, as needed from any outside
/// thread or a callback.
///
/// Note that it's up to the application to ensure that it doesn't
/// deadlock the callback thread when accessing the user data.
pub fn user_data(&self) -> Option<&UserData> {
self.inner.user_data.as_ref()
}
/// Connects to an MQTT broker using the specified connect options.
///
/// # Arguments
///
/// * `opts` The connect options
///
pub fn connect<T>(&self, opt_opts: T) -> ConnectToken
where
T: Into<Option<ConnectOptions>>,
{
let opts = opt_opts.into().unwrap_or_default();
debug!("Connecting handle: {:?}", self.inner.handle);
debug!("Connect options: {:?}", opts);
let tok = Token::from_request(ServerRequest::Connect);
let mut lkopts = self.inner.opts.lock().unwrap();
*lkopts = opts;
lkopts.set_token(tok.clone());
let rc = unsafe { ffi::MQTTAsync_connect(self.inner.handle, &lkopts.copts) };
if rc != 0 {
let _ = unsafe { Token::from_raw(lkopts.copts.context) };
return ConnectToken::from_error(rc)
}
tok
}
/// Connects to an MQTT broker using the specified connect options.
///
/// # Arguments
///
/// * `opts` The connect options
///
pub fn connect_with_callbacks<FS, FF>(
&self,
mut opts: ConnectOptions,
success_cb: FS,
failure_cb: FF,
) -> ConnectToken
where
FS: Fn(&AsyncClient, u16) + 'static,
FF: Fn(&AsyncClient, u16, i32) + 'static,
{
debug!("Connecting handle with callbacks: {:?}", self.inner.handle);
debug!("Connect opts: {:?}", opts);
unsafe {
if !opts.copts.will.is_null() {
debug!("Will: {:?}", *(opts.copts.will));
}
}
let tok = Token::from_client(self, ServerRequest::Connect, success_cb, failure_cb);
opts.set_token(tok.clone());
*self.inner.opts.lock().unwrap() = opts.clone();
let rc = unsafe { ffi::MQTTAsync_connect(self.inner.handle, &opts.copts) };
if rc != 0 {
let _ = unsafe { Token::from_raw(opts.copts.context) };
return ConnectToken::from_error(rc);
}
tok
}
/// Attempts to reconnect to the broker.
/// This can only be called after a connection was initially made or
/// attempted. It will retry with the same connect options.
///
pub fn reconnect(&self) -> ConnectToken {
let connopts = self.inner.opts.lock().unwrap().clone();
self.connect(connopts)
}
/// Attempts to reconnect to the broker, using callbacks to signal
/// completion.
/// This can only be called after a connection was initially made or
/// attempted. It will retry with the same connect options.
///
/// # Arguments
///
/// * `success_cb` The callback for a successful connection.
/// * `failure_cb` The callback for a failed connection attempt.
///
pub fn reconnect_with_callbacks<FS, FF>(&self, success_cb: FS, failure_cb: FF) -> ConnectToken
where
FS: Fn(&AsyncClient, u16) + 'static,
FF: Fn(&AsyncClient, u16, i32) + 'static,
{
let connopts = self.inner.opts.lock().unwrap().clone();
self.connect_with_callbacks(connopts, success_cb, failure_cb)
}
/// Disconnects from the MQTT broker.
///
/// # Arguments
///
/// `opt_opts` Optional disconnect options. Specifying `None` will use
/// default of immediate (zero timeout) disconnect.
///
pub fn disconnect<T>(&self, opt_opts: T) -> Token
where
T: Into<Option<DisconnectOptions>>,
{
let mut opts = opt_opts.into().unwrap_or_default();
debug!("Disconnecting");
trace!("Disconnect options: {:?}", opts);
let tok = Token::new();
opts.set_token(tok.clone());
let rc = unsafe { ffi::MQTTAsync_disconnect(self.inner.handle, &opts.copts) };
if rc != 0 {
let _ = unsafe { Token::from_raw(opts.copts.context) };
return Token::from_error(rc);
}
// Push a None into the message stream to cleanly
// shutdown any consumers.
if let Some(ref mut cb) = self
.inner
.callback_context
.lock()
.unwrap()
.on_message_arrived
{
trace!("Invoking message callback with None");
cb(self, None);
}
tok
}
/// Disconnect from the MQTT broker with a timeout.
/// This will delay the disconnect for up to the specified timeout to
/// allow in-flight messages to complete.
/// This is the same as calling disconnect with options specifying a
/// timeout.
///
/// # Arguments
///
/// `timeout` The amount of time to wait for the disconnect. This has
/// a resolution in milliseconds.
///
pub fn disconnect_after(&self, timeout: Duration) -> Token {
let disconn_opts = DisconnectOptionsBuilder::new().timeout(timeout).finalize();
self.disconnect(disconn_opts)
}
/// Determines if this client is currently connected to an MQTT broker.
pub fn is_connected(&self) -> bool {
unsafe { ffi::MQTTAsync_isConnected(self.inner.handle) != 0 }
}
/// Sets the callback for when the connection is established with the broker.
///
/// # Arguments
///
/// * `cb` The callback to register with the library. This can be a
/// function or a closure.
pub fn set_connected_callback<F>(&mut self, cb: F)
where
F: FnMut(&AsyncClient) + 'static,
{
// A pointer to the inner client will serve as the callback context
let ctx: &InnerAsyncClient = &self.inner;
// This should be protected by a mutex if we'll have a thread-safe client
ctx.callback_context.lock().unwrap().on_connected = Some(Box::new(cb));
unsafe {
ffi::MQTTAsync_setConnected(
self.inner.handle,
ctx as *const _ as *mut c_void,
Some(AsyncClient::on_connected),
);
}
}
/// Sets the callback for when the connection is lost with the broker.
///
/// # Arguments
///
/// * `cb` The callback to register with the library. This can be a
/// function or a closure.
pub fn set_connection_lost_callback<F>(&mut self, cb: F)
where
F: FnMut(&AsyncClient) + 'static,
{
// A pointer to the inner client will serve as the callback context
let ctx: &InnerAsyncClient = &self.inner;
// This should be protected by a mutex if we'll have a thread-safe client
ctx.callback_context.lock().unwrap().on_connection_lost = Some(Box::new(cb));
unsafe {
ffi::MQTTAsync_setConnectionLostCallback(
self.inner.handle,
ctx as *const _ as *mut c_void,
Some(AsyncClient::on_connection_lost),
);
}
}
/// Sets the callback for when a disconnect message arrives from the broker.
///
/// # Arguments
///
/// * `cb` The callback to register with the library. This can be a
/// function or a closure.
pub fn set_disconnected_callback<F>(&mut self, cb: F)
where
F: FnMut(&AsyncClient, Properties, ReasonCode) + 'static,
{
// A pointer to the inner client will serve as the callback context
let ctx: &InnerAsyncClient = &self.inner;
// This should be protected by a mutex if we'll have a thread-safe client
ctx.callback_context.lock().unwrap().on_disconnected = Some(Box::new(cb));
unsafe {
ffi::MQTTAsync_setDisconnected(
self.inner.handle,
ctx as *const _ as *mut c_void,
Some(AsyncClient::on_disconnected),
);
}
}
/// Sets the callback for when a message arrives from the broker.
///
/// # Arguments
///
/// * `cb` The callback to register with the library. This can be a
/// function or a closure.
///
pub fn set_message_callback<F>(&mut self, cb: F)
where
F: FnMut(&AsyncClient, Option<Message>) + 'static,
{
// A pointer to the inner client will serve as the callback context
let ctx: &InnerAsyncClient = &self.inner;
// This should be protected by a mutex if we'll have a thread-safe client
ctx.callback_context.lock().unwrap().on_message_arrived = Some(Box::new(cb));
unsafe {
ffi::MQTTAsync_setMessageArrivedCallback(
self.inner.handle,
ctx as *const _ as *mut c_void,
Some(AsyncClient::on_message_arrived),
);
}
}
/// Attempts to publish a message to the MQTT broker, but returns an
/// error immediately if there's a problem creating or queuing the
/// message.
///
/// Returns a Publish Error on failure so that the original message
/// can be recovered and sent again.
pub fn try_publish(&self, msg: Message) -> Result<DeliveryToken> {
debug!("Publish: {:?}", msg);
let ver = self.mqtt_version();
let tok = DeliveryToken::new(msg);
let mut rsp_opts = ResponseOptions::new(ver, tok.clone());
let rc = unsafe {
let msg = tok.message();
ffi::MQTTAsync_sendMessage(
self.inner.handle,
msg.topic().as_ptr() as *const c_char,
&msg.cmsg,
&mut rsp_opts.copts,
)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
let msg: Message = tok.into();
return Err(Error::Publish(rc, msg));
}
tok.set_msgid(rsp_opts.copts.token as i16);
Ok(tok)
}
/// Publishes a message to the MQTT broker.
///
/// Returns a Delivery Token to track the progress of the operation.
///
pub fn publish(&self, msg: Message) -> DeliveryToken {
match self.try_publish(msg) {
Ok(tok) => tok,
Err(Error::Publish(rc, msg)) => DeliveryToken::from_error(msg, rc),
_ => panic!("Unknown publish error"),
}
}
/// Subscribes to a single topic.
///
/// # Arguments
///
/// `topic` The topic name
/// `qos` The quality of service requested for messages
///
pub fn subscribe<S>(&self, topic: S, qos: i32) -> SubscribeToken
where
S: Into<String>,
{
let ver = self.mqtt_version();
let tok = Token::from_request(ServerRequest::Subscribe);
let mut rsp_opts = ResponseOptions::new(ver, tok.clone());
let topic = CString::new(topic.into()).unwrap();
debug!("Subscribe to '{:?}' @ QOS {}", topic, qos);
let rc = unsafe {
ffi::MQTTAsync_subscribe(self.inner.handle, topic.as_ptr(), qos, &mut rsp_opts.copts)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return SubscribeToken::from_error(rc);
}
tok
}
/// Subscribes to a single topic with v5 options
///
/// # Arguments
///
/// `topic` The topic name
/// `qos` The quality of service requested for messages
/// `opts` Options for the subscription
/// `props` MQTT v5 properties
///
pub fn subscribe_with_options<S, T, P>(
&self,
topic: S,
qos: i32,
opts: T,
props: P,
) -> SubscribeToken
where
S: Into<String>,
T: Into<SubscribeOptions>,
P: Into<Option<Properties>>,
{
debug_assert!(self.mqtt_version() >= ffi::MQTTVERSION_5);
let tok = Token::from_request(ServerRequest::Subscribe);
let mut rsp_opts = ResponseOptionsBuilder::new()
.token(tok.clone())
.subscribe_options(opts.into())
.properties(props.into().unwrap_or_default())
.finalize();
let topic = CString::new(topic.into()).unwrap();
debug!("Subscribe to '{:?}' @ QOS {}", topic, qos);
let rc = unsafe {
ffi::MQTTAsync_subscribe(self.inner.handle, topic.as_ptr(), qos, &mut rsp_opts.copts)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return SubscribeToken::from_error(rc);
}
tok
}
/// Subscribes to multiple topics simultaneously.
///
/// # Arguments
///
/// `topics` The collection of topic names
/// `qos` The quality of service requested for messages
///
pub fn subscribe_many<T>(&self, topics: &[T], qos: &[i32]) -> SubscribeManyToken
where
T: AsRef<str>,
{
let n = topics.len();
let ver = self.mqtt_version();
// TOOD: Make sure topics & qos are same length (or use min)
let tok = Token::from_request(ServerRequest::SubscribeMany(n));
let mut rsp_opts = ResponseOptions::new(ver, tok.clone());
let topics = StringCollection::new(topics);
debug!("Subscribe to '{:?}' @ QOS {:?}", topics, qos);
let rc = unsafe {
ffi::MQTTAsync_subscribeMany(
self.inner.handle,
n as c_int,
topics.as_c_arr_mut_ptr(),
// C lib takes mutable QoS ptr, but doesn't mutate
mem::transmute(qos.as_ptr()),
&mut rsp_opts.copts,
)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return SubscribeManyToken::from_error(rc);
}
tok
}
/// Subscribes to multiple topics simultaneously with options.
///
/// # Arguments
///
/// `topics` The collection of topic names
/// `qos` The quality of service requested for messages
/// `opts` Subscribe options (one per topic)
/// `props` MQTT v5 properties
///
pub fn subscribe_many_with_options<T, P>(
&self,
topics: &[T],
qos: &[i32],
opts: &[SubscribeOptions],
props: P,
) -> SubscribeManyToken
where
T: AsRef<str>,
P: Into<Option<Properties>>,
{
debug_assert!(self.mqtt_version() >= ffi::MQTTVERSION_5);
let n = topics.len();
// TOOD: Make sure topics & qos are same length (or use min)
let tok = Token::from_request(ServerRequest::SubscribeMany(n));
let mut rsp_opts = ResponseOptionsBuilder::new()
.token(tok.clone())
.subscribe_many_options(opts)
.properties(props.into().unwrap_or_default())
.finalize();
let topics = StringCollection::new(topics);
debug!("Subscribe to '{:?}' @ QOS {:?}", topics, qos);
let rc = unsafe {
ffi::MQTTAsync_subscribeMany(
self.inner.handle,
n as c_int,
topics.as_c_arr_mut_ptr(),
// C lib takes mutable QoS ptr, but doesn't mutate
mem::transmute(qos.as_ptr()),
&mut rsp_opts.copts,
)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return SubscribeManyToken::from_error(rc);
}
tok
}
/// Unsubscribes from a single topic.
///
/// # Arguments
///
/// `topic` The topic to unsubscribe. It must match a topic from a
/// previous subscribe.
///
pub fn unsubscribe<S>(&self, topic: S) -> Token
where
S: Into<String>,
{
let ver = self.mqtt_version();
let tok = Token::from_request(ServerRequest::Unsubscribe);
let mut rsp_opts = ResponseOptions::new(ver, tok.clone());
let topic = CString::new(topic.into()).unwrap();
debug!("Unsubscribe from '{:?}'", topic);
let rc = unsafe {
ffi::MQTTAsync_unsubscribe(self.inner.handle, topic.as_ptr(), &mut rsp_opts.copts)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return Token::from_error(rc);
}
tok
}
/// Unsubscribes from a single topic.
///
/// # Arguments
///
/// `topic` The topic to unsubscribe. It must match a topic from a
/// previous subscribe.
/// `props` MQTT v5 properties for the unsubscribe.
///
pub fn unsubscribe_with_options<S>(&self, topic: S, props: Properties) -> Token
where
S: Into<String>,
{
debug_assert!(self.mqtt_version() >= ffi::MQTTVERSION_5);
let tok = Token::from_request(ServerRequest::Unsubscribe);
let mut rsp_opts = ResponseOptionsBuilder::new()
.token(tok.clone())
.properties(props)
.finalize();
let topic = CString::new(topic.into()).unwrap();
debug!("Unsubscribe from '{:?}'", topic);
let rc = unsafe {
ffi::MQTTAsync_unsubscribe(self.inner.handle, topic.as_ptr(), &mut rsp_opts.copts)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return Token::from_error(rc);
}
tok
}
/// Unsubscribes from multiple topics simultaneously.
///
/// # Arguments
///
/// `topic` The topics to unsubscribe. Each must match a topic from a
/// previous subscribe.
///
pub fn unsubscribe_many<T>(&self, topics: &[T]) -> Token
where
T: AsRef<str>,
{
let ver = self.mqtt_version();
let n = topics.len();
let tok = Token::from_request(ServerRequest::UnsubscribeMany(n));
let mut rsp_opts = ResponseOptions::new(ver, tok.clone());
let topics = StringCollection::new(topics);
debug!("Unsubscribe from '{:?}'", topics);
let rc = unsafe {
ffi::MQTTAsync_unsubscribeMany(
self.inner.handle,
n as c_int,
topics.as_c_arr_mut_ptr(),
&mut rsp_opts.copts,
)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return Token::from_error(rc);
}
tok
}
/// Unsubscribes from multiple topics simultaneously.
///
/// # Arguments
///
/// `topic` The topics to unsubscribe. Each must match a topic from a
/// previous subscribe.
/// `props` MQTT v5 properties for the unsubscribe.
///
pub fn unsubscribe_many_with_options<T>(&self, topics: &[T], props: Properties) -> Token
where
T: AsRef<str>,
{
debug_assert!(self.mqtt_version() >= ffi::MQTTVERSION_5);
let n = topics.len();
let tok = Token::from_request(ServerRequest::UnsubscribeMany(n));
let mut rsp_opts = ResponseOptionsBuilder::new()
.token(tok.clone())
.properties(props)
.finalize();
let topics = StringCollection::new(topics);
debug!("Unsubscribe from '{:?}'", topics);
let rc = unsafe {
ffi::MQTTAsync_unsubscribeMany(
self.inner.handle,
n as c_int,
topics.as_c_arr_mut_ptr(),
&mut rsp_opts.copts,
)
};
if rc != 0 {
let _ = unsafe { Token::from_raw(rsp_opts.copts.context) };
return Token::from_error(rc);
}
tok
}
/// Starts the client consuming messages for a blocking (non-async) app.
///
/// This starts the client receiving messages and placing them into an
/// mpsc queue. It returns the receiving-end of the queue for the
/// application to get the messages.
/// This can be called at any time after the client is created, but it
/// should be called before subscribing to any topics, otherwise messages
/// can be lost.
//
pub fn start_consuming(&mut self) -> Receiver<Option<Message>> {
let (tx, rx) = channel::unbounded::<Option<Message>>();
// Make sure at least the low-level connection_lost handler is in
// place to notify us when the connection is lost (sends a 'None' to
// the receiver).
let ctx: &InnerAsyncClient = &self.inner;
unsafe {
ffi::MQTTAsync_setConnectionLostCallback(
self.inner.handle,
ctx as *const _ as *mut c_void,
Some(AsyncClient::on_connection_lost),
);
}
// Message callback just queues incoming messages.
self.set_message_callback(move |_, msg| {
tx.send(msg).unwrap();
});
rx
}
/// Stops the client from consuming messages.
pub fn stop_consuming(&self) {