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
/********************************************************************************
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
mod umessagebuilder;
mod umessagetype;
use bytes::Bytes;
use protobuf::{well_known_types::any::Any, Message, MessageFull};
pub use umessagebuilder::*;
pub use crate::up_core_api::umessage::UMessage;
use crate::{UAttributesError, UPayloadFormat};
#[derive(Debug)]
pub enum UMessageError {
AttributesValidationError(UAttributesError),
DataSerializationError(protobuf::Error),
PayloadError(String),
}
impl std::fmt::Display for UMessageError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::AttributesValidationError(e) => f.write_fmt(format_args!(
"Builder state is not consistent with message type: {}",
e
)),
Self::DataSerializationError(e) => {
f.write_fmt(format_args!("Failed to serialize payload: {}", e))
}
Self::PayloadError(e) => f.write_fmt(format_args!("UMessage payload error: {}", e)),
}
}
}
impl std::error::Error for UMessageError {}
impl From<UAttributesError> for UMessageError {
fn from(value: UAttributesError) -> Self {
Self::AttributesValidationError(value)
}
}
impl From<protobuf::Error> for UMessageError {
fn from(value: protobuf::Error) -> Self {
Self::DataSerializationError(value)
}
}
impl From<&str> for UMessageError {
fn from(value: &str) -> Self {
Self::PayloadError(value.into())
}
}
impl UMessage {
/// Checks if this is a Publish message.
///
/// # Examples
///
/// ```rust
/// use up_rust::{UAttributes, UMessage, UMessageType};
///
/// let attribs = UAttributes {
/// type_: UMessageType::UMESSAGE_TYPE_PUBLISH.into(),
/// ..Default::default()
/// };
/// let msg = UMessage {
/// attributes: Some(attribs).into(),
/// ..Default::default()
/// };
/// assert!(msg.is_publish());
/// ```
pub fn is_publish(&self) -> bool {
self.attributes
.as_ref()
.map_or(false, |attribs| attribs.is_publish())
}
/// Checks if this is an RPC Request message.
///
/// # Examples
///
/// ```rust
/// use up_rust::{UAttributes, UMessage, UMessageType};
///
/// let attribs = UAttributes {
/// type_: UMessageType::UMESSAGE_TYPE_REQUEST.into(),
/// ..Default::default()
/// };
/// let msg = UMessage {
/// attributes: Some(attribs).into(),
/// ..Default::default()
/// };
/// assert!(msg.is_request());
/// ```
pub fn is_request(&self) -> bool {
self.attributes
.as_ref()
.map_or(false, |attribs| attribs.is_request())
}
/// Checks if this is an RPC Response message.
///
/// # Examples
///
/// ```rust
/// use up_rust::{UAttributes, UMessage, UMessageType};
///
/// let attribs = UAttributes {
/// type_: UMessageType::UMESSAGE_TYPE_RESPONSE.into(),
/// ..Default::default()
/// };
/// let msg = UMessage {
/// attributes: Some(attribs).into(),
/// ..Default::default()
/// };
/// assert!(msg.is_response());
/// ```
pub fn is_response(&self) -> bool {
self.attributes
.as_ref()
.map_or(false, |attribs| attribs.is_response())
}
/// Checks if this is a Notification message.
///
/// # Examples
///
/// ```rust
/// use up_rust::{UAttributes, UMessage, UMessageType};
///
/// let attribs = UAttributes {
/// type_: UMessageType::UMESSAGE_TYPE_NOTIFICATION.into(),
/// ..Default::default()
/// };
/// let msg = UMessage {
/// attributes: Some(attribs).into(),
/// ..Default::default()
/// };
/// assert!(msg.is_notification());
/// ```
pub fn is_notification(&self) -> bool {
self.attributes
.as_ref()
.map_or(false, |attribs| attribs.is_notification())
}
/// If `UMessage` payload is available, deserialize it as a protobuf `Message`.
///
/// This function is used to extract strongly-typed data from a `UMessage` object,
/// taking into account the payload format (will only succeed if payload format is
/// `UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF` or `UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF_WRAPPED_IN_ANY`)
///
/// # Type Parameters
///
/// * `T`: The target type of the data to be unpacked.
///
/// # Returns
///
/// * `Ok(T)`: The deserialized protobuf message contained in the payload.
///
/// # Errors
///
/// * Err(`UMessageError`) if the unpacking process fails, for example if the payload could
/// not be deserialized into the target type `T`.
pub fn extract_protobuf<T: MessageFull + Default>(&self) -> Result<T, UMessageError> {
if let Some(payload) = &self.payload {
let payload_format = self.attributes.payload_format.enum_value_or_default();
deserialize_protobuf_bytes(payload, &payload_format)
} else {
Err(UMessageError::PayloadError(
"No embedded payload".to_string(),
))
}
}
}
/// Deserializes a protobuf message from a byte array.
///
/// Will only succeed if payload format is one of
/// - `UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF`
/// - `UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF_WRAPPED_IN_ANY`
pub(crate) fn deserialize_protobuf_bytes<T: MessageFull + Default>(
payload: &Bytes,
payload_format: &UPayloadFormat,
) -> Result<T, UMessageError> {
match payload_format {
UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF => {
T::parse_from_tokio_bytes(payload).map_err(UMessageError::DataSerializationError)
}
UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF_WRAPPED_IN_ANY => {
Any::parse_from_tokio_bytes(payload)
.map_err(UMessageError::DataSerializationError)
.and_then(|any| match any.unpack() {
Ok(Some(v)) => Ok(v),
Ok(None) => Err(UMessageError::PayloadError(
"cannot deserialize payload, message type mismatch".to_string(),
)),
Err(e) => Err(UMessageError::DataSerializationError(e)),
})
}
_ => Err(UMessageError::from(
"Unknown/invalid/unsupported payload format",
)),
}
}
#[cfg(test)]
mod test {
use protobuf::well_known_types::{any::Any, wrappers::StringValue};
use crate::UStatus;
use super::*;
#[test]
fn test_deserialize_protobuf_bytes_succeeds() {
let mut data = StringValue::new();
data.value = "hello world".to_string();
let any = Any::pack(&data).unwrap();
let buf: Bytes = any.write_to_bytes().unwrap().into();
let result = deserialize_protobuf_bytes::<StringValue>(
&buf,
&UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF_WRAPPED_IN_ANY,
);
assert!(result.is_ok_and(|v| v.value == *"hello world"));
}
#[test]
fn test_deserialize_protobuf_bytes_fails_for_payload_type_mismatch() {
let mut data = StringValue::new();
data.value = "hello world".to_string();
let any = Any::pack(&data).unwrap();
let buf: Bytes = any.write_to_bytes().unwrap().into();
let result = deserialize_protobuf_bytes::<UStatus>(
&buf,
&UPayloadFormat::UPAYLOAD_FORMAT_PROTOBUF_WRAPPED_IN_ANY,
);
assert!(result.is_err_and(|e| matches!(e, UMessageError::PayloadError(_))));
}
}