dimas_core/
traits.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
// Copyright © 2024 Stephan Kunz

//! Core traits of `DiMAS`
//!

#[doc(hidden)]
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

// region:		--- modules
use crate::{
	enums::{OperationState, TaskSignal},
	error::Result,
	message_types::{Message, QueryableMsg}, utils::selector_from,
};
use core::fmt::Debug;
#[cfg(feature = "std")]
use std::prelude::rust_2021::*;
use alloc::sync::Arc;
use tokio::sync::mpsc::Sender;
use zenoh::Session;
// endregion:	--- modules

// region:		--- Context
/// Typedef for simplified usage
pub type Context<P> = Arc<dyn ContextAbstraction<Props = P>>;

/// Commonalities for the context
pub trait ContextAbstraction: Debug + Send + Sync {
	/// The properties structure
	type Props;

	/// Get the name
	#[must_use]
	fn name(&self) -> Option<&String>;

	/// Get the fully qualified name
	#[must_use]
	fn fq_name(&self) -> Option<String>;

	/// Get the [`Context`]s state
	/// # Panics
	#[must_use]
	fn state(&self) -> OperationState;

	/// Set the [`OperationState`].<br>
	/// Setting new state is done step by step
	/// # Errors
	fn set_state(&self, state: OperationState) -> Result<()>;

	/// Get the uuid
	#[must_use]
	fn uuid(&self) -> String;

	/// Get prefix
	#[must_use]
	fn prefix(&self) -> Option<&String>;

	/// Get session mode
	#[must_use]
	fn mode(&self) -> &String;

	/// Get zenoh session reference
	#[must_use]
	fn session(&self) -> Arc<Session>;

	/// Get sender reference
	#[must_use]
	fn sender(&self) -> &Sender<TaskSignal>;

	/// Gives read access to the properties
	///
	/// # Errors
	fn read(&self) -> Result<std::sync::RwLockReadGuard<'_, Self::Props>>;

	/// Gives write access to the properties
	///
	/// # Errors
	fn write(&self) -> Result<std::sync::RwLockWriteGuard<'_, Self::Props>>;

	/// Method to do a publishing for a `topic`
	/// The `topic` will be enhanced with the prefix.
	/// If there is a publisher stored, it will be used
	/// otherwise an ad-hoc publishing will be done
	///
	/// # Errors
	fn put(&self, topic: &str, message: Message) -> Result<()> {
		let selector = selector_from(topic, self.prefix());
		self.put_with(&selector, message)
	}

	/// Method to do a publishing for a `selector`
	/// If there is a publisher stored, it will be used
	/// otherwise an ad-hoc publishing will be done
	///
	/// # Errors
	fn put_with(&self, selector: &str, message: Message) -> Result<()>;

	/// Method to do a deletion for a `topic`
	/// The `topic` will be enhanced with the prefix.
	/// If there is a publisher stored, it will be used
	/// otherwise an ad-hoc deletion will be done
	///
	/// # Errors
	fn delete(&self, topic: &str) -> Result<()> {
		let selector = selector_from(topic, self.prefix());
		self.delete_with(&selector)
	}

	/// Method to do a deletion for a `selector`
	/// If there is a publisher stored, it will be used
	/// otherwise an ad-hoc deletion will be done
	///
	/// # Errors
	fn delete_with(&self, selector: &str) -> Result<()>;

	/// Send a query for a `topic` with an optional [`Message`].
	/// The `topic` will be enhanced with the prefix.
	/// If there is a query stored, it will be used
	/// otherwise an ad-hoc query will be done
	/// If a callback is given for a stored query,
	/// it will be called instead of the stored callback
	///
	/// # Errors
	fn get(
		&self,
		topic: &str,
		message: Option<Message>,
		callback: Option<&dyn Fn(QueryableMsg) -> Result<()>>,
	) -> Result<()> {
		let selector = selector_from(topic, self.prefix());
		self.get_with(&selector, message, callback)
	}

	/// Send a query for a `selector` with an optional [`Message`].
	/// The `topic` will be enhanced with the prefix.
	/// If there is a query stored, it will be used
	/// otherwise an ad-hoc query will be done
	/// If a callback is given for a stored query,
	/// it will be called instead of the stored callback
	///
	/// # Errors
	fn get_with(
		&self,
		selector: &str,
		message: Option<Message>,
		callback: Option<&dyn Fn(QueryableMsg) -> Result<()>>,
	) -> Result<()>;

	/// Send an observation request for a `topic` with a [`Message`].
	/// The `topic` will be enhanced with the prefix.
	///
	/// # Errors
	fn observe(&self, topic: &str, message: Option<Message>) -> Result<()> {
		let selector = selector_from(topic, self.prefix());
		self.observe_with(&selector, message)
	}

	/// Send an observation request for a `selector` with a [`Message`].
	///
	/// # Errors
	fn observe_with(&self, selector: &str, message: Option<Message>) -> Result<()>;

	/// Cancel an observation request for a `topic`.
	/// The `topic` will be enhanced with the prefix.
	///
	/// # Errors
	fn cancel_observe(&self, topic: &str) -> Result<()> {
		let selector = selector_from(topic, self.prefix());
		self.cancel_observe_with(&selector)
	}

	/// Cancel an observation request for a `selector`.
	///
	/// # Errors
	fn cancel_observe_with(&self, selector: &str) -> Result<()>;
}
// endregion:	--- Context

// region:		--- Capability
/// Commonalities for capability components
pub trait Capability: Debug {
	/// Checks whether state of capability component is appropriate for the given [`OperationState`].
	/// If not, implementation has to adjusts components state to needs.
	/// # Errors
	fn manage_operation_state(&mut self, state: &OperationState) -> Result<()>;
}
// endregion:	--- Capability