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
/********************************************************************************
* 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
********************************************************************************/
use std::fmt::{Debug, Formatter};
use std::hash::{Hash, Hasher};
use std::ops::Deref;
use std::sync::Arc;
use async_trait::async_trait;
#[cfg(test)]
use mockall::automock;
use crate::{UCode, UMessage, UStatus, UUri};
/// A factory for URIs representing this uEntity's resources.
///
/// Implementations may use arbitrary mechanisms to determine the information that
/// is necessary for creating URIs, e.g. environment variables, configuration files etc.
#[cfg_attr(test, automock)]
pub trait LocalUriProvider: Send + Sync {
/// Gets the _authority_ used for URIs representing this uEntity's resources.
fn get_authority(&self) -> String;
/// Gets a URI that represents a given resource of this uEntity.
fn get_resource_uri(&self, resource_id: u16) -> UUri;
/// Gets the URI that represents the resource that this uEntity expects
/// RPC responses and notifications to be sent to.
fn get_source_uri(&self) -> UUri;
}
/// A handler for processing uProtocol messages.
///
/// Implementations contain the details for what should occur when a message is received.
///
/// Please refer to the [uProtocol Transport Layer specification](https://github.com/eclipse-uprotocol/up-spec/blob/v1.6.0-alpha.2/up-l1/README.adoc)
/// for details.
#[cfg_attr(test, automock)]
#[async_trait]
pub trait UListener: Send + Sync {
/// Performs some action on receipt of a message.
///
/// # Parameters
///
/// * `msg` - The message to process.
///
/// # Implementation hints
///
/// This function is expected to return almost immediately. If it does not, it could potentially
/// block processing of succeeding messages. Long-running operations for processing a message should
/// therefore be run on a separate thread.
async fn on_receive(&self, msg: UMessage);
}
/// The uProtocol Transport Layer interface that provides a common API for uEntity developers to send and
/// receive messages.
///
/// Implementations contain the details for connecting to the underlying transport technology and
/// sending [`UMessage`]s using the configured technology.
///
/// Please refer to the [uProtocol Transport Layer specification](https://github.com/eclipse-uprotocol/up-spec/blob/v1.6.0-alpha.2/up-l1/README.adoc)
/// for details.
// [impl->req~up-language-transport-api~1]
#[async_trait]
pub trait UTransport: Send + Sync {
/// Sends a message using this transport's message exchange mechanism.
///
/// # Arguments
///
/// * `message` - The message to send. The `type`, `source` and `sink` properties of the
/// [UAttributes](https://github.com/eclipse-uprotocol/up-spec/blob/v1.6.0-alpha.2/basics/uattributes.adoc) contained
/// in the message determine the addressing semantics.
///
/// # Errors
///
/// Returns an error if the message could not be sent.
async fn send(&self, message: UMessage) -> Result<(), UStatus>;
/// Receives a message from the transport.
///
/// This default implementation returns an error with [`UCode::UNIMPLEMENTED`].
///
/// # Arguments
///
/// * `source_filter` - The _source_ address pattern that the message to receive needs to match.
/// * `sink_filter` - The _sink_ address pattern that the message to receive needs to match,
/// or `None` to indicate that the message must not contain any sink address.
///
/// # Errors
///
/// Returns an error if no message could be received, e.g. because no message matches the given addresses.
async fn receive(
&self,
_source_filter: &UUri,
_sink_filter: Option<&UUri>,
) -> Result<UMessage, UStatus> {
Err(UStatus::fail_with_code(
UCode::UNIMPLEMENTED,
"not implemented",
))
}
/// Registers a listener to be called for messages.
///
/// The listener will be invoked for each message that matches the given source and sink filter patterns
/// according to the rules defined by the [UUri specification](https://github.com/eclipse-uprotocol/up-spec/blob/v1.6.0-alpha.2/basics/uri.adoc).
///
/// This default implementation returns an error with [`UCode::UNIMPLEMENTED`].
///
/// # Arguments
///
/// * `source_filter` - The _source_ address pattern that messages need to match.
/// * `sink_filter` - The _sink_ address pattern that messages need to match,
/// or `None` to match messages that do not contain any sink address.
/// * `listener` - The listener to invoke.
/// The listener can be unregistered again using [`UTransport::unregister_listener`].
///
/// # Errors
///
/// Returns an error if the listener could not be registered.
async fn register_listener(
&self,
_source_filter: &UUri,
_sink_filter: Option<&UUri>,
_listener: Arc<dyn UListener>,
) -> Result<(), UStatus> {
Err(UStatus::fail_with_code(
UCode::UNIMPLEMENTED,
"not implemented",
))
}
/// Unregisters a message listener.
///
/// The listener will no longer be called for any (matching) messages after this function has
/// returned successfully.
///
/// This default implementation returns an error with [`UCode::UNIMPLEMENTED`].
///
/// # Arguments
///
/// * `source_filter` - The _source_ address pattern that the listener had been registered for.
/// * `sink_filter` - The _sink_ address pattern that the listener had been registered for.
/// * `listener` - The listener to unregister.
///
/// # Errors
///
/// Returns an error if the listener could not be unregistered, for example if the given listener does not exist.
async fn unregister_listener(
&self,
_source_filter: &UUri,
_sink_filter: Option<&UUri>,
_listener: Arc<dyn UListener>,
) -> Result<(), UStatus> {
Err(UStatus::fail_with_code(
UCode::UNIMPLEMENTED,
"not implemented",
))
}
}
#[cfg(test)]
mockall::mock! {
/// This extra struct is necessary in order to comply with mockall's requirements regarding the parameter lifetimes
/// see https://github.com/asomers/mockall/issues/571
pub Transport {
pub async fn do_send(&self, message: UMessage) -> Result<(), UStatus>;
pub async fn do_register_listener<'a>(&'a self, source_filter: &'a UUri, sink_filter: Option<&'a UUri>, listener: Arc<dyn UListener>) -> Result<(), UStatus>;
pub async fn do_unregister_listener<'a>(&'a self, source_filter: &'a UUri, sink_filter: Option<&'a UUri>, listener: Arc<dyn UListener>) -> Result<(), UStatus>;
}
}
#[cfg(test)]
#[async_trait]
/// This delegates the invocation of the UTransport functions to the mocked functions of the Transport struct.
/// see https://github.com/asomers/mockall/issues/571
impl UTransport for MockTransport {
async fn send(&self, message: UMessage) -> Result<(), UStatus> {
self.do_send(message).await
}
async fn register_listener(
&self,
source_filter: &UUri,
sink_filter: Option<&UUri>,
listener: Arc<dyn UListener>,
) -> Result<(), UStatus> {
self.do_register_listener(source_filter, sink_filter, listener)
.await
}
async fn unregister_listener(
&self,
source_filter: &UUri,
sink_filter: Option<&UUri>,
listener: Arc<dyn UListener>,
) -> Result<(), UStatus> {
self.do_unregister_listener(source_filter, sink_filter, listener)
.await
}
}
/// A wrapper type that allows comparing [`UListener`]s to each other.
///
/// # Note
///
/// Not necessary for end-user uEs to use. Primarily intended for `up-client-foo-rust` UPClient libraries
/// when implementing [`UTransport`].
///
/// # Rationale
///
/// The wrapper type is implemented such that it can be used in any location you may wish to
/// hold a type implementing [`UListener`].
///
/// Implements necessary traits to allow hashing, so that you may hold the wrapper type in
/// collections which require that, such as a `HashMap` or `HashSet`
#[derive(Clone)]
pub struct ComparableListener {
listener: Arc<dyn UListener>,
}
impl ComparableListener {
pub fn new(listener: Arc<dyn UListener>) -> Self {
Self { listener }
}
/// Gets a clone of the wrapped reference to the listener.
pub fn into_inner(&self) -> Arc<dyn UListener> {
self.listener.clone()
}
/// Allows us to get the pointer address of this `ComparableListener` on the heap
fn pointer_address(&self) -> usize {
// Obtain the raw pointer from the Arc
let ptr = Arc::as_ptr(&self.listener);
// Cast the fat pointer to a raw thin pointer to ()
let thin_ptr = ptr as *const ();
// Convert the thin pointer to a usize
thin_ptr as usize
}
}
impl Deref for ComparableListener {
type Target = dyn UListener;
fn deref(&self) -> &Self::Target {
&*self.listener
}
}
impl Hash for ComparableListener {
/// Feeds the pointer to the listener held by `self` into the given [`Hasher`].
///
/// This is consistent with the implementation of [`ComparableListener::eq`].
fn hash<H: Hasher>(&self, state: &mut H) {
Arc::as_ptr(&self.listener).hash(state);
}
}
impl PartialEq for ComparableListener {
/// Compares this listener to another listener.
///
/// # Returns
///
/// `true` if the pointer to the listener held by `self` is equal to the pointer held by `other`.
/// This is consistent with the implementation of [`ComparableListener::hash`].
fn eq(&self, other: &Self) -> bool {
Arc::ptr_eq(&self.listener, &other.listener)
}
}
impl Eq for ComparableListener {}
impl Debug for ComparableListener {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "ComparableListener: {}", self.pointer_address())
}
}
#[cfg(test)]
mod tests {
use crate::{ComparableListener, UListener, UMessage};
use std::{
hash::{DefaultHasher, Hash, Hasher},
ops::Deref,
sync::Arc,
};
use super::MockUListener;
#[tokio::test]
async fn test_deref_returns_wrapped_listener() {
let mut mock_listener = MockUListener::new();
mock_listener.expect_on_receive().once().return_const(());
let listener_one = Arc::new(mock_listener);
let comparable_listener_one = ComparableListener::new(listener_one);
comparable_listener_one
.deref()
.on_receive(UMessage::default())
.await;
}
#[tokio::test]
async fn test_to_inner_returns_reference_to_wrapped_listener() {
let mut mock_listener = MockUListener::new();
mock_listener.expect_on_receive().once().return_const(());
let listener_one = Arc::new(mock_listener);
let comparable_listener_one = ComparableListener::new(listener_one);
comparable_listener_one
.into_inner()
.on_receive(UMessage::default())
.await;
}
#[tokio::test]
async fn test_eq_and_hash_are_consistent_for_comparable_listeners_wrapping_same_listener() {
let mut mock_listener = MockUListener::new();
mock_listener.expect_on_receive().times(2).return_const(());
let listener_one = Arc::new(mock_listener);
let listener_two = listener_one.clone();
listener_one.on_receive(UMessage::default()).await;
listener_two.on_receive(UMessage::default()).await;
let comparable_listener_one = ComparableListener::new(listener_one);
let comparable_listener_two = ComparableListener::new(listener_two);
assert!(&comparable_listener_one.eq(&comparable_listener_two));
let mut hasher = DefaultHasher::new();
comparable_listener_one.hash(&mut hasher);
let hash_one = hasher.finish();
let mut hasher = DefaultHasher::new();
comparable_listener_two.hash(&mut hasher);
let hash_two = hasher.finish();
assert_eq!(hash_one, hash_two);
}
#[tokio::test]
async fn test_eq_and_hash_are_consistent_for_comparable_listeners_wrapping_different_listeners()
{
let mut mock_listener_one = MockUListener::new();
mock_listener_one
.expect_on_receive()
.once()
.return_const(());
let listener_one = Arc::new(mock_listener_one);
let mut mock_listener_two = MockUListener::new();
mock_listener_two
.expect_on_receive()
.once()
.return_const(());
let listener_two = Arc::new(mock_listener_two);
listener_one.on_receive(UMessage::default()).await;
listener_two.on_receive(UMessage::default()).await;
let comparable_listener_one = ComparableListener::new(listener_one);
let comparable_listener_two = ComparableListener::new(listener_two);
assert!(!&comparable_listener_one.eq(&comparable_listener_two));
let mut hasher = DefaultHasher::new();
comparable_listener_one.hash(&mut hasher);
let hash_one = hasher.finish();
let mut hasher = DefaultHasher::new();
comparable_listener_two.hash(&mut hasher);
let hash_two = hasher.finish();
assert_ne!(hash_one, hash_two);
}
#[test]
fn test_comparable_listener_pointer_address() {
let bar = Arc::new(MockUListener::new());
let comp_listener = ComparableListener::new(bar);
let comp_listener_thread = comp_listener.clone();
let handle = std::thread::spawn(move || comp_listener_thread.pointer_address());
let comp_listener_address_other_thread = handle.join().unwrap();
let comp_listener_address_this_thread = comp_listener.pointer_address();
assert_eq!(
comp_listener_address_this_thread,
comp_listener_address_other_thread
);
}
#[test]
fn test_comparable_listener_debug_outputs() {
let bar = Arc::new(MockUListener::new());
let comp_listener = ComparableListener::new(bar);
let debug_output = format!("{comp_listener:?}");
assert!(!debug_output.is_empty());
}
}