azure_iot_operations_protocol/telemetry/receiver.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
use std::{collections::HashMap, fmt::Display, marker::PhantomData, str::FromStr, sync::Arc};
use azure_iot_operations_mqtt::{
control_packet::QoS,
interface::{AckToken, ManagedClient, PubReceiver},
};
use chrono::{DateTime, Utc};
use tokio_util::sync::CancellationToken;
use crate::{
ProtocolVersion,
application::{ApplicationContext, ApplicationHybridLogicalClock},
common::{
aio_protocol_error::{AIOProtocolError, Value},
hybrid_logical_clock::HybridLogicalClock,
payload_serialize::{FormatIndicator, PayloadSerialize},
topic_processor::TopicPattern,
user_properties::UserProperty,
},
telemetry::{
DEFAULT_TELEMETRY_PROTOCOL_VERSION,
cloud_event::{CloudEventFields, DEFAULT_CLOUD_EVENT_SPEC_VERSION},
},
};
const SUPPORTED_PROTOCOL_VERSIONS: &[u16] = &[1];
/// Cloud Event struct used by the [`Receiver`].
///
/// Implements the cloud event spec 1.0 for the telemetry receiver.
/// See [CloudEvents Spec](https://github.com/cloudevents/spec/blob/main/cloudevents/spec.md).
#[derive(Builder, Clone)]
#[builder(setter(into), build_fn(validate = "Self::validate"))]
pub struct CloudEvent {
/// Identifies the event. Producers MUST ensure that source + id is unique for each distinct
/// event. If a duplicate event is re-sent (e.g. due to a network error) it MAY have the same
/// id. Consumers MAY assume that Events with identical source and id are duplicates.
pub id: String,
/// Identifies the context in which an event happened. Often this will include information such
/// as the type of the event source, the organization publishing the event or the process that
/// produced the event. The exact syntax and semantics behind the data encoded in the URI is
/// defined by the event producer.
pub source: String,
/// The version of the cloud events specification which the event uses. This enables the
/// interpretation of the context. Compliant event producers MUST use a value of 1.0 when
/// referring to this version of the specification.
pub spec_version: String,
/// Contains a value describing the type of event related to the originating occurrence. Often
/// this attribute is used for routing, observability, policy enforcement, etc. The format of
/// this is producer defined and might include information such as the version of the type.
pub event_type: String,
/// Identifies the subject of the event in the context of the event producer (identified by
/// source). In publish-subscribe scenarios, a subscriber will typically subscribe to events
/// emitted by a source, but the source identifier alone might not be sufficient as a qualifier
/// for any specific event if the source context has internal sub-structure.
#[builder(default = "None")]
pub subject: Option<String>,
/// Identifies the schema that data adheres to. Incompatible changes to the schema SHOULD be
/// reflected by a different URI.
#[builder(default = "None")]
pub data_schema: Option<String>,
/// Content type of data value. This attribute enables data to carry any type of content,
/// whereby format and encoding might differ from that of the chosen event format.
#[builder(default = "None")]
pub data_content_type: Option<String>,
/// Timestamp of when the occurrence happened. If the time of the occurrence cannot be
/// determined then this attribute MAY be set to some other time (such as the current time) by
/// the cloud event producer, however all producers for the same source MUST be consistent in
/// this respect. In other words, either they all use the actual time of the occurrence or they
/// all use the same algorithm to determine the value used.
#[builder(setter(skip))]
pub time: Option<DateTime<Utc>>,
/// time as a string so that it can be validated during build
#[builder(default = "None")]
builder_time: Option<String>,
}
impl CloudEventBuilder {
// now that spec version is known, all fields can be validated against that spec version
fn validate(&self) -> Result<(), String> {
let mut spec_version = DEFAULT_CLOUD_EVENT_SPEC_VERSION.to_string();
if let Some(sv) = &self.spec_version {
CloudEventFields::SpecVersion.validate(sv, &spec_version)?;
spec_version = sv.to_string();
}
if let Some(id) = &self.id {
CloudEventFields::Id.validate(id, &spec_version)?;
}
if let Some(source) = &self.source {
CloudEventFields::Source.validate(source, &spec_version)?;
}
if let Some(event_type) = &self.event_type {
CloudEventFields::EventType.validate(event_type, &spec_version)?;
}
if let Some(Some(subject)) = &self.subject {
CloudEventFields::Subject.validate(subject, &spec_version)?;
}
if let Some(Some(data_schema)) = &self.data_schema {
CloudEventFields::DataSchema.validate(data_schema, &spec_version)?;
}
if let Some(Some(data_content_type)) = &self.data_content_type {
CloudEventFields::DataContentType.validate(data_content_type, &spec_version)?;
}
if let Some(Some(builder_time)) = &self.builder_time {
CloudEventFields::Time.validate(builder_time, &spec_version)?;
}
Ok(())
}
}
// implementing display because debug prints private fields
impl Display for CloudEvent {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"CloudEvent {{ id: {id}, source: {source}, spec_version: {spec_version}, event_type: {event_type}, subject: {subject}, data_schema: {data_schema}, data_content_type: {data_content_type}, time: {time:?} }}",
id = self.id,
source = self.source,
spec_version = self.spec_version,
event_type = self.event_type,
subject = self.subject.as_deref().unwrap_or("None"),
data_schema = self.data_schema.as_deref().unwrap_or("None"),
data_content_type = self.data_content_type.as_deref().unwrap_or("None"),
time = self.time,
)
}
}
impl CloudEvent {
/// Parse a [`CloudEvent`] from a [`Message`].
/// Note that this will return an error if the [`Message`] does not contain the required fields for a [`CloudEvent`].
///
/// # Errors
/// [`CloudEventBuilderError::UninitializedField`] if the [`Message`] does not contain the required fields for a [`CloudEvent`].
///
/// [`CloudEventBuilderError::ValidationError`] if any of the field values are not valid for a [`CloudEvent`].
pub fn from_telemetry<T: PayloadSerialize>(
telemetry: &Message<T>,
) -> Result<Self, CloudEventBuilderError> {
// use builder so that all fields can be validated together
let mut cloud_event_builder = CloudEventBuilder::default();
if let Some(content_type) = &telemetry.content_type {
cloud_event_builder.data_content_type(content_type.clone());
}
for (key, value) in &telemetry.custom_user_data {
match CloudEventFields::from_str(key) {
Ok(CloudEventFields::Id) => {
cloud_event_builder.id(value);
}
Ok(CloudEventFields::Source) => {
cloud_event_builder.source(value);
}
Ok(CloudEventFields::SpecVersion) => {
cloud_event_builder.spec_version(value);
}
Ok(CloudEventFields::EventType) => {
cloud_event_builder.event_type(value);
}
Ok(CloudEventFields::Subject) => {
cloud_event_builder.subject(Some(value.into()));
}
Ok(CloudEventFields::DataSchema) => {
cloud_event_builder.data_schema(Some(value.into()));
}
Ok(CloudEventFields::Time) => {
cloud_event_builder.builder_time(Some(value.into()));
}
_ => {}
}
}
let mut cloud_event = cloud_event_builder.build()?;
// now that everything is validated, update the time field to its correct typing
// NOTE: If the spec_version changes in the future, that may need to be taken into account here.
// For now, the builder validates spec version 1.0
if let Some(ref time_str) = cloud_event.builder_time {
match DateTime::parse_from_rfc3339(time_str) {
Ok(parsed_time) => {
let time = parsed_time.with_timezone(&Utc);
cloud_event.time = Some(time);
}
Err(_) => {
// Builder should have already caught this error
unreachable!()
}
}
}
Ok(cloud_event)
}
}
/// Telemetry message struct.
/// Used by the [`Receiver`].
#[derive(Debug)]
pub struct Message<T: PayloadSerialize> {
/// Payload of the telemetry message. Must implement [`PayloadSerialize`].
pub payload: T,
/// Content Type of the telemetry message.
pub content_type: Option<String>,
/// Format Indicator of the telemetry message.
pub format_indicator: FormatIndicator,
/// Custom user data set as custom MQTT User Properties on the telemetry message.
pub custom_user_data: Vec<(String, String)>,
/// If present, contains the client ID of the sender of the telemetry message.
pub sender_id: Option<String>,
/// Timestamp of the telemetry message.
pub timestamp: Option<HybridLogicalClock>,
/// Resolved static and dynamic topic tokens from the incoming message's topic.
pub topic_tokens: HashMap<String, String>,
}
/// Telemetry Receiver Options struct
#[derive(Builder, Clone)]
#[builder(setter(into, strip_option))]
pub struct Options {
/// Topic pattern for the telemetry message.
/// Must align with [topic-structure.md](https://github.com/Azure/iot-operations-sdks/blob/main/doc/reference/topic-structure.md)
topic_pattern: String,
/// Optional Topic namespace to be prepended to the topic pattern
#[builder(default = "None")]
topic_namespace: Option<String>,
/// Topic token keys/values to be permanently replaced in the topic pattern
#[builder(default)]
topic_token_map: HashMap<String, String>,
/// If true, telemetry messages are auto-acknowledged
#[builder(default = "true")]
auto_ack: bool,
/// Service group ID
#[allow(unused)]
#[builder(default = "None")]
service_group_id: Option<String>,
}
/// Telemetry Receiver struct
/// # Example
/// ```
/// # use tokio_test::block_on;
/// # use azure_iot_operations_mqtt::MqttConnectionSettingsBuilder;
/// # use azure_iot_operations_mqtt::session::{Session, SessionOptionsBuilder};
/// # use azure_iot_operations_protocol::telemetry;
/// # use azure_iot_operations_protocol::application::ApplicationContextBuilder;
/// # let mut connection_settings = MqttConnectionSettingsBuilder::default()
/// # .client_id("test_server")
/// # .hostname("mqtt://localhost")
/// # .tcp_port(1883u16)
/// # .build().unwrap();
/// # let mut session_options = SessionOptionsBuilder::default()
/// # .connection_settings(connection_settings)
/// # .build().unwrap();
/// # let mqtt_session = Session::new(session_options).unwrap();
/// # let application_context = ApplicationContextBuilder::default().build().unwrap();;
/// let receiver_options = telemetry::receiver::OptionsBuilder::default()
/// .topic_pattern("test/telemetry")
/// .build().unwrap();
/// let mut receiver: telemetry::Receiver<Vec<u8>, _> = telemetry::Receiver::new(application_context, mqtt_session.create_managed_client(), receiver_options).unwrap();
/// // let telemetry_message = receiver.recv().await.unwrap();
/// ```
pub struct Receiver<T, C>
where
T: PayloadSerialize + Send + Sync + 'static,
C: ManagedClient + Clone + Send + Sync + 'static,
C::PubReceiver: Send + Sync + 'static,
{
// Static properties of the receiver
application_hlc: Arc<ApplicationHybridLogicalClock>,
mqtt_client: C,
mqtt_receiver: C::PubReceiver,
telemetry_topic: String,
topic_pattern: TopicPattern,
message_payload_type: PhantomData<T>,
// Describes state
receiver_state: State,
// Information to manage state
receiver_cancellation_token: CancellationToken,
// User autoack setting
auto_ack: bool,
}
/// Describes state of receiver
#[derive(PartialEq)]
enum State {
New,
Subscribed,
ShutdownSuccessful,
}
/// Implementation of a Telemetry Sender
impl<T, C> Receiver<T, C>
where
T: PayloadSerialize + Send + Sync + 'static,
C: ManagedClient + Clone + Send + Sync + 'static,
C::PubReceiver: Send + Sync + 'static,
{
/// Creates a new [`Receiver`].
///
/// # Arguments
/// * `application_context` - [`ApplicationContext`] that the telemetry receiver is part of.
/// * `client` - [`ManagedClient`] to use for telemetry communication.
/// * `receiver_options` - [`Options`] to configure the telemetry receiver.
///
/// Returns Ok([`Receiver`]) on success, otherwise returns[`AIOProtocolError`].
///
/// # Errors
/// [`AIOProtocolError`] of kind [`ConfigurationInvalid`](crate::common::aio_protocol_error::AIOProtocolErrorKind::ConfigurationInvalid)
/// - [`topic_pattern`](OptionsBuilder::topic_pattern),
/// [`topic_namespace`](OptionsBuilder::topic_namespace), are Some and invalid
/// or contain a token with no valid replacement
/// - [`topic_token_map`](OptionsBuilder::topic_token_map) is not empty
/// and contains invalid key(s) and/or token(s)
#[allow(clippy::needless_pass_by_value)]
pub fn new(
application_context: ApplicationContext,
client: C,
receiver_options: Options,
) -> Result<Self, AIOProtocolError> {
// Validation for topic pattern and related options done in
// [`TopicPattern::new`]
let topic_pattern = TopicPattern::new(
&receiver_options.topic_pattern,
None,
receiver_options.topic_namespace.as_deref(),
&receiver_options.topic_token_map,
)
.map_err(|e| {
AIOProtocolError::config_invalid_from_topic_pattern_error(
e,
"receiver_options.topic_pattern",
)
})?;
// Get the telemetry topic
let telemetry_topic = topic_pattern.as_subscribe_topic();
let mqtt_receiver = match client.create_filtered_pub_receiver(&telemetry_topic) {
Ok(receiver) => receiver,
Err(e) => {
return Err(AIOProtocolError::new_configuration_invalid_error(
Some(Box::new(e)),
"topic_pattern",
Value::String(telemetry_topic),
Some("Could not parse subscription topic pattern".to_string()),
None,
));
}
};
Ok(Self {
application_hlc: application_context.application_hlc,
mqtt_client: client,
mqtt_receiver,
telemetry_topic,
topic_pattern,
message_payload_type: PhantomData,
receiver_state: State::New,
receiver_cancellation_token: CancellationToken::new(),
auto_ack: receiver_options.auto_ack,
})
}
/// Shutdown the [`Receiver`]. Unsubscribes from the telemetry topic if subscribed.
///
/// Note: If this method is called, the [`Receiver`] will no longer receive telemetry messages
/// from the MQTT client, any messages that have not been processed can still be received by the
/// receiver. If the method returns an error, it may be called again to attempt the unsubscribe again.
///
/// Returns Ok(()) on success, otherwise returns [`AIOProtocolError`].
/// # Errors
/// [`AIOProtocolError`] of kind [`ClientError`](crate::common::aio_protocol_error::AIOProtocolErrorKind::ClientError) if the unsubscribe fails or if the unsuback reason code doesn't indicate success.
pub async fn shutdown(&mut self) -> Result<(), AIOProtocolError> {
// Close the receiver, no longer receive messages
self.mqtt_receiver.close();
match self.receiver_state {
State::New | State::ShutdownSuccessful => {
// If subscribe has not been called or shutdown was successful, do not unsubscribe
self.receiver_state = State::ShutdownSuccessful;
}
State::Subscribed => {
let unsubscribe_result = self.mqtt_client.unsubscribe(&self.telemetry_topic).await;
match unsubscribe_result {
Ok(unsub_ct) => match unsub_ct.await {
Ok(()) => {
self.receiver_state = State::ShutdownSuccessful;
}
Err(e) => {
log::error!("Unsuback error: {e}");
return Err(AIOProtocolError::new_mqtt_error(
Some("MQTT error on telemetry receiver unsuback".to_string()),
Box::new(e),
None,
));
}
},
Err(e) => {
log::error!("Client error while unsubscribing: {e}");
return Err(AIOProtocolError::new_mqtt_error(
Some("Client error on telemetry receiver unsubscribe".to_string()),
Box::new(e),
None,
));
}
}
}
}
log::info!("Telemetry receiver shutdown");
Ok(())
}
/// Subscribe to the telemetry topic.
///
/// Returns Ok(()) on success, otherwise returns [`AIOProtocolError`].
/// # Errors
/// [`AIOProtocolError`] of kind [`ClientError`](crate::common::aio_protocol_error::AIOProtocolErrorKind::ClientError) if the subscribe fails or if the suback reason code doesn't indicate success.
async fn try_subscribe(&mut self) -> Result<(), AIOProtocolError> {
let subscribe_result = self
.mqtt_client
.subscribe(&self.telemetry_topic, QoS::AtLeastOnce)
.await;
match subscribe_result {
Ok(sub_ct) => match sub_ct.await {
Ok(()) => { /* Success */ }
Err(e) => {
log::error!("Suback error: {e}");
return Err(AIOProtocolError::new_mqtt_error(
Some("MQTT error on telemetry receiver suback".to_string()),
Box::new(e),
None,
));
}
},
Err(e) => {
log::error!("Client error while subscribing: {e}");
return Err(AIOProtocolError::new_mqtt_error(
Some("Client error on telemetry receiver subscribe".to_string()),
Box::new(e),
None,
));
}
}
Ok(())
}
/// Receives a telemetry message or [`None`] if there will be no more messages.
/// If there are messages:
/// - Returns Ok([`Message`], [`Option<AckToken>`]) on success
/// - If the message is received with Quality of Service 1 an [`AckToken`] is returned.
/// - Returns [`AIOProtocolError`] on error.
///
/// A received message can be acknowledged via the [`AckToken`] by calling [`AckToken::ack`] or dropping the [`AckToken`].
///
/// Will also subscribe to the telemetry topic if not already subscribed.
///
/// # Errors
/// [`AIOProtocolError`] of kind [`ClientError`](crate::common::aio_protocol_error::AIOProtocolErrorKind::ClientError) if the subscribe fails or if the suback reason code doesn't indicate success.
pub async fn recv(
&mut self,
) -> Option<Result<(Message<T>, Option<AckToken>), AIOProtocolError>> {
// Subscribe to the telemetry topic if not already subscribed
if self.receiver_state == State::New {
if let Err(e) = self.try_subscribe().await {
return Some(Err(e));
}
self.receiver_state = State::Subscribed;
}
loop {
match self.mqtt_receiver.recv_manual_ack().await {
Some((m, mut ack_token)) => {
// Drop the ack token if the user does not desire it
// TODO: change API around this receive to simplify
if self.auto_ack {
// Replace the token with None (if Some)
ack_token.take();
}
// Process the received message
log::info!("[pkid: {}] Received message", m.pkid);
'process_message: {
// Clone properties
let properties = m.properties.clone();
let mut custom_user_data = Vec::new();
let mut timestamp = None;
let mut sender_id = None;
let mut content_type = None;
let mut format_indicator = FormatIndicator::UnspecifiedBytes;
if let Some(properties) = properties {
// Get content type
content_type = properties.content_type;
// Get format indicator
format_indicator = match properties.payload_format_indicator.try_into()
{
Ok(format_indicator) => format_indicator,
Err(e) => {
log::error!(
"[pkid: {}] Received invalid payload format indicator: {e}. This should not be possible to receive from the broker.",
m.pkid
);
// Use default format indicator
FormatIndicator::default()
}
};
// unused beyond validation, but may be used in the future to determine how to handle other fields.
let mut message_protocol_version = DEFAULT_TELEMETRY_PROTOCOL_VERSION; // assume default version if none is provided
if let Some((_, protocol_version)) =
properties.user_properties.iter().find(|(key, _)| {
UserProperty::from_str(key) == Ok(UserProperty::ProtocolVersion)
})
{
if let Some(message_version) =
ProtocolVersion::parse_protocol_version(protocol_version)
{
message_protocol_version = message_version;
} else {
log::error!(
"[pkid: {}] Unparsable protocol version value provided: {protocol_version}.",
m.pkid
);
break 'process_message;
}
}
// Check that the version (or the default version if one isn't provided) is supported
if !message_protocol_version.is_supported(SUPPORTED_PROTOCOL_VERSIONS) {
log::error!(
"[pkid: {}] Unsupported Protocol Version '{message_protocol_version}'. Only major protocol versions '{SUPPORTED_PROTOCOL_VERSIONS:?}' are supported.",
m.pkid
);
break 'process_message;
}
for (key, value) in properties.user_properties {
match UserProperty::from_str(&key) {
Ok(UserProperty::Timestamp) => {
match HybridLogicalClock::from_str(&value) {
Ok(ts) => {
// Update application HLC against received __ts
if let Err(e) = self.application_hlc.update(&ts) {
log::error!(
"[pkid: {}] Failure updating application HLC against {value}: {e}",
m.pkid
);
break 'process_message;
}
timestamp = Some(ts);
}
Err(e) => {
log::error!(
"[pkid: {}] Invalid timestamp {value}: {e}",
m.pkid
);
break 'process_message;
}
}
}
Ok(UserProperty::ProtocolVersion) => {
// skip, already processed
}
Ok(UserProperty::SourceId) => {
sender_id = Some(value);
}
Err(()) => {
custom_user_data.push((key, value));
}
_ => {
log::warn!(
"[pkid: {}] Telemetry message should not contain MQTT user property {key}. Value is {value}",
m.pkid
);
custom_user_data.push((key, value));
}
}
}
}
let topic = match std::str::from_utf8(&m.topic) {
Ok(topic) => topic,
Err(e) => {
// This should never happen as the topic is always a valid UTF-8 string from the MQTT client
log::error!(
"[pkid: {}] Topic deserialization error: {e:?}",
m.pkid
);
break 'process_message;
}
};
let topic_tokens = self.topic_pattern.parse_tokens(topic);
// Deserialize payload
let payload = match T::deserialize(
&m.payload,
content_type.as_ref(),
&format_indicator,
) {
Ok(p) => p,
Err(e) => {
log::error!(
"[pkid: {}] Payload deserialization error: {e:?}",
m.pkid
);
break 'process_message;
}
};
let telemetry_message = Message {
payload,
content_type,
format_indicator,
custom_user_data,
sender_id,
timestamp,
topic_tokens,
};
return Some(Ok((telemetry_message, ack_token)));
}
// Occurs on an error processing the message, ack to prevent redelivery
if let Some(ack_token) = ack_token {
tokio::spawn({
let receiver_cancellation_token_clone =
self.receiver_cancellation_token.clone();
async move {
tokio::select! {
() = receiver_cancellation_token_clone.cancelled() => { /* Received loop cancelled */ },
ack_res = ack_token.ack() => {
match ack_res {
Ok(_) => { /* Success */ }
Err(e) => {
log::error!("[pkid: {}] Ack error {e}", m.pkid);
}
}
}
}
}
});
}
}
_ => {
// There will be no more messages
return None;
}
}
}
}
}
impl<T, C> Drop for Receiver<T, C>
where
T: PayloadSerialize + Send + Sync + 'static,
C: ManagedClient + Clone + Send + Sync + 'static,
C::PubReceiver: Send + Sync + 'static,
{
fn drop(&mut self) {
// Cancel all tasks awaiting responses
self.receiver_cancellation_token.cancel();
// Close the receiver
self.mqtt_receiver.close();
// If the receiver has not unsubscribed, attempt to unsubscribe
if State::Subscribed == self.receiver_state {
tokio::spawn({
let telemetry_topic = self.telemetry_topic.clone();
let mqtt_client = self.mqtt_client.clone();
async move {
match mqtt_client.unsubscribe(telemetry_topic.clone()).await {
Ok(_) => {
log::debug!(
"Unsubscribe sent on topic {telemetry_topic}. Unsuback may still be pending."
);
}
Err(e) => {
log::error!("Unsubscribe error on topic {telemetry_topic}: {e}");
}
}
}
});
}
log::info!("Telemetry receiver dropped");
}
}
#[cfg(test)]
mod tests {
use test_case::test_case;
use super::*;
use crate::{
application::ApplicationContextBuilder,
common::{aio_protocol_error::AIOProtocolErrorKind, payload_serialize::MockPayload},
telemetry::receiver::{OptionsBuilder, Receiver},
};
use azure_iot_operations_mqtt::{
MqttConnectionSettingsBuilder,
session::{Session, SessionOptionsBuilder},
};
// TODO: This should return a mock Session instead
fn get_session() -> Session {
// TODO: Make a real mock that implements Session
let connection_settings = MqttConnectionSettingsBuilder::default()
.hostname("localhost")
.client_id("test_server")
.build()
.unwrap();
let session_options = SessionOptionsBuilder::default()
.connection_settings(connection_settings)
.build()
.unwrap();
Session::new(session_options).unwrap()
}
fn create_topic_tokens() -> HashMap<String, String> {
HashMap::from([("telemetryName".to_string(), "test_telemetry".to_string())])
}
#[test]
fn test_new_defaults() {
let session = get_session();
let receiver_options = OptionsBuilder::default()
.topic_pattern("test/receiver")
.build()
.unwrap();
Receiver::<MockPayload, _>::new(
ApplicationContextBuilder::default().build().unwrap(),
session.create_managed_client(),
receiver_options,
)
.unwrap();
}
#[test]
fn test_new_override_defaults() {
let session = get_session();
let receiver_options = OptionsBuilder::default()
.topic_pattern("test/{telemetryName}/receiver")
.topic_namespace("test_namespace")
.topic_token_map(create_topic_tokens())
.build()
.unwrap();
Receiver::<MockPayload, _>::new(
ApplicationContextBuilder::default().build().unwrap(),
session.create_managed_client(),
receiver_options,
)
.unwrap();
}
#[test_case(""; "new_empty_topic_pattern")]
#[test_case(" "; "new_whitespace_topic_pattern")]
fn test_new_empty_topic_pattern(topic_pattern: &str) {
let session = get_session();
let receiver_options = OptionsBuilder::default()
.topic_pattern(topic_pattern)
.build()
.unwrap();
let result: Result<Receiver<MockPayload, _>, _> = Receiver::new(
ApplicationContextBuilder::default().build().unwrap(),
session.create_managed_client(),
receiver_options,
);
match result {
Ok(_) => panic!("Expected error"),
Err(e) => {
assert_eq!(e.kind, AIOProtocolErrorKind::ConfigurationInvalid);
assert!(e.is_shallow);
assert!(!e.is_remote);
assert_eq!(
e.property_name,
Some("receiver_options.topic_pattern".to_string())
);
assert_eq!(
e.property_value,
Some(Value::String(topic_pattern.to_string()))
);
}
}
}
#[tokio::test]
async fn test_shutdown_without_subscribe() {
let session = get_session();
let receiver_options = OptionsBuilder::default()
.topic_pattern("test/receiver")
.build()
.unwrap();
let mut receiver: Receiver<MockPayload, _> = Receiver::new(
ApplicationContextBuilder::default().build().unwrap(),
session.create_managed_client(),
receiver_options,
)
.unwrap();
assert!(receiver.shutdown().await.is_ok());
}
}
// Test cases for recv telemetry
// Tests failure:
// if properties are missing, the message is not processed and is acked
// if content type is not supported, the message is not processed and is acked
// if timestamp is invalid, the message is not processed and is acked
// if payload deserialization fails, the message is not processed and is acked
//
// Test cases for telemetry message processing
// Tests success:
// QoS 1 message is processed and AckToken is used, message is acked