dimas 0.5.1

dimas - a framework for Distributed Multi Agent Systems
Documentation
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
// Copyright © 2023 Stephan Kunz
#![allow(unused_imports)]
//! Implementation of an [`Agent`]'s internal and user defined properties [`ContextImpl`].
//!
//! Never use it directly but through the type [`Context`], which provides thread safe access.
//! A [`Context`] is handed into every callback function.
//!
//! # Examples
//! ```rust,no_run
//! # use dimas::prelude::*;
//! // The [`Agent`]s properties
//! #[derive(Debug)]
//! struct AgentProps {
//!   counter: i32,
//! }
//! // A [`Timer`] callback
//! fn timer_callback(context: Context<AgentProps>) -> Result<()> {
//!   // reading properties
//!   let mut value = context.read()?.counter;
//!   value +=1;
//!   // writing properties
//!   context.write()?.counter = value;
//!   Ok(())
//! }
//! # #[tokio::main(flavor = "multi_thread")]
//! # async fn main() -> Result<()> {
//! # Ok(())
//! # }
//! ```
//!

// region:		--- modules
// only for doc needed
#[cfg(doc)]
use crate::agent::Agent;
use crate::error::Error;
use core::fmt::Debug;
use dimas_com::traits::LivelinessSubscriber;
use dimas_com::traits::{
	Communicator, CommunicatorMethods, Observer, Publisher, Querier, Responder,
};
use dimas_config::Config;
#[cfg(doc)]
use dimas_core::traits::Context;
use dimas_core::{
	Result,
	enums::{OperationState, TaskSignal},
	message_types::{Message, QueryableMsg},
	traits::{Capability, ContextAbstraction},
};
use dimas_time::Timer;
use std::{
	collections::HashMap,
	sync::{Arc, RwLock},
};
use tokio::sync::mpsc::Sender;
use tracing::{Level, info, instrument};
use zenoh::Session;
// endregion:	--- modules

// region:		--- types
// the initial size of the HashMaps
const INITIAL_SIZE: usize = 9;
// endregion:	--- types

// region:		--- ContextImpl
/// [`ContextImpl`] makes all relevant data of the [`Agent`] accessible via accessor methods.
#[derive(Debug, Clone)]
#[allow(clippy::module_name_repetitions)]
pub struct ContextImpl<P>
where
	P: Send + Sync + 'static,
{
	/// The [`Agent`]s uuid
	uuid: String,
	/// The [`Agent`]s name
	/// Name must not, but should be unique.
	name: Option<String>,
	/// A prefix to separate communication for different groups
	prefix: Option<String>,
	/// The [`Agent`]s current operational state
	state: Arc<RwLock<OperationState>>,
	/// A sender for sending signals to owner of context
	sender: Sender<TaskSignal>,
	/// The [`Agent`]s property structure
	props: Arc<RwLock<P>>,
	/// The [`Agent`]s [`Communicator`]
	communicator: Arc<dyn Communicator>,
	/// Registered [`Timer`]
	timers: Arc<RwLock<HashMap<String, Timer<P>>>>,
}

impl<P> ContextAbstraction for ContextImpl<P>
where
	P: Debug + Send + Sync + 'static,
{
	type Props = P;
	/// Get the name
	fn name(&self) -> Option<&String> {
		self.name.as_ref()
	}

	fn fq_name(&self) -> Option<String> {
		if self.name().is_some() && self.prefix().is_some() {
			Some(format!(
				"{}/{}",
				self.prefix().expect("snh"),
				self.name().expect("snh")
			))
		} else if self.name().is_some() {
			Some(self.name().expect("snh").to_owned())
		} else {
			None
		}
	}

	fn state(&self) -> OperationState {
		self.state.read().expect("snh").clone()
	}

	fn uuid(&self) -> String {
		self.uuid.clone()
	}

	fn prefix(&self) -> Option<&String> {
		self.prefix.as_ref()
	}

	fn sender(&self) -> &Sender<TaskSignal> {
		&self.sender
	}

	fn read(&self) -> Result<std::sync::RwLockReadGuard<'_, P>> {
		self.props
			.read()
			.map_err(|_| Error::ReadAccess.into())
	}

	fn write(&self) -> Result<std::sync::RwLockWriteGuard<'_, P>> {
		self.props
			.write()
			.map_err(|_| Error::WriteAccess.into())
	}

	fn set_state(&self, state: OperationState) -> Result<()> {
		info!("changing state to {}", &state);
		let final_state = state;
		let mut next_state;
		// step up?
		while self.state() < final_state {
			match self.state() {
				OperationState::Error => {
					return Err(Error::ManageState.into());
				}
				OperationState::Created => {
					next_state = OperationState::Configured;
				}
				OperationState::Configured => {
					next_state = OperationState::Inactive;
				}
				OperationState::Inactive => {
					next_state = OperationState::Standby;
				}
				OperationState::Standby => {
					next_state = OperationState::Active;
				}
				OperationState::Active => {
					return self.modify_state_property(OperationState::Error);
				}
			}
			self.upgrade_registered_tasks(next_state)?;
		}

		// step down?
		while self.state() > final_state {
			match self.state() {
				OperationState::Active => {
					next_state = OperationState::Standby;
				}
				OperationState::Standby => {
					next_state = OperationState::Inactive;
				}
				OperationState::Inactive => {
					next_state = OperationState::Configured;
				}
				OperationState::Configured => {
					next_state = OperationState::Created;
				}
				OperationState::Created => {
					return self.modify_state_property(OperationState::Error);
				}
				OperationState::Error => {
					return Err(Error::ManageState.into());
				}
			}
			self.downgrade_registered_tasks(next_state)?;
		}

		Ok(())
	}

	#[instrument(level = Level::ERROR, skip_all)]
	fn put_with(&self, selector: &str, message: Message) -> Result<()> {
		if self
			.publishers()
			.read()
			.map_err(|_| Error::ReadContext("publishers".into()))?
			.get(selector)
			.is_some()
		{
			self.publishers()
				.read()
				.map_err(|_| Error::ReadContext("publishers".into()))?
				.get(selector)
				.ok_or_else(|| Error::Get("publishers".into()))?
				.put(message)?;
		} else {
			self.communicator.put(selector, message)?;
		}
		Ok(())
	}

	#[instrument(level = Level::ERROR, skip_all)]
	fn delete_with(&self, selector: &str) -> Result<()> {
		if self
			.publishers()
			.read()
			.map_err(|_| Error::ReadContext("publishers".into()))?
			.get(selector)
			.is_some()
		{
			self.publishers()
				.read()
				.map_err(|_| Error::ReadContext("publishers".into()))?
				.get(selector)
				.ok_or_else(|| Error::Get("publishers".into()))?
				.delete()?;
		} else {
			todo!(); //self.communicator.delete(selector)?;
		}
		Ok(())
	}

	#[instrument(level = Level::ERROR, skip_all)]
	fn get_with(
		&self,
		selector: &str,
		message: Option<Message>,
		callback: Option<&mut dyn FnMut(QueryableMsg) -> Result<()>>,
	) -> Result<()> {
		if self
			.queriers()
			.read()
			.map_err(|_| Error::ReadContext("queries".into()))?
			.get(selector)
			.is_some()
		{
			self.queriers()
				.read()
				.map_err(|_| Error::ReadContext("queries".into()))?
				.get(selector)
				.ok_or_else(|| Error::Get("queries".into()))?
				.get(message, callback)?;
		} else {
			self.communicator
				.get(selector, message, callback)?;
		}
		Ok(())
	}

	#[instrument(level = Level::ERROR, skip_all)]
	fn observe_with(&self, selector: &str, message: Option<Message>) -> Result<()> {
		self.observers()
			.read()
			.map_err(|_| Error::ReadContext("observers".into()))?
			.get(selector)
			.ok_or_else(|| Error::Get("observers".into()))?
			.request(message)?;
		Ok(())
	}

	#[instrument(level = Level::ERROR, skip_all)]
	fn cancel_observe_with(&self, selector: &str) -> Result<()> {
		self.observers()
			.read()
			.map_err(|_| Error::ReadContext("observers".into()))?
			.get(selector)
			.ok_or_else(|| Error::Get("observers".into()))?
			.cancel()?;
		Ok(())
	}

	fn mode(&self) -> &String {
		self.communicator.mode()
	}

	fn default_session(&self) -> Arc<Session> {
		self.communicator.default_session()
	}

	fn session(&self, session_id: &str) -> Option<Arc<Session>> {
		if session_id == "default" {
			Some(self.communicator.default_session())
		} else {
			self.communicator.session(session_id)
		}
	}
}

impl<P> ContextImpl<P>
where
	P: Send + Sync + 'static,
{
	/// Constructor for the [`ContextImpl`]
	/// # Errors
	pub fn new(
		config: &Config,
		props: P,
		name: Option<String>,
		sender: Sender<TaskSignal>,
		prefix: Option<String>,
	) -> Result<Self> {
		let communicator = dimas_com::communicator::from(config)?;
		let uuid = communicator.uuid();
		Ok(Self {
			uuid,
			name,
			prefix,
			state: Arc::new(RwLock::new(OperationState::Created)),
			sender,
			communicator,
			props: Arc::new(RwLock::new(props)),
			timers: Arc::new(RwLock::new(HashMap::with_capacity(INITIAL_SIZE))),
		})
	}

	/// Set the [`Context`]s state
	/// # Errors
	fn modify_state_property(&self, state: OperationState) -> Result<()> {
		*(self
			.state
			.write()
			.map_err(|_| Error::ModifyStruct("state".into()))?) = state;
		Ok(())
	}

	/// Get the liveliness subscribers
	#[must_use]
	pub fn liveliness_subscribers(
		&self,
	) -> Arc<RwLock<HashMap<String, Box<dyn LivelinessSubscriber>>>> {
		self.communicator.liveliness_subscribers()
	}

	/// Get the observers
	#[must_use]
	pub fn observers(&self) -> Arc<RwLock<HashMap<String, Box<dyn Observer>>>> {
		self.communicator.observers()
	}

	/// Get the publishers
	#[must_use]
	pub fn publishers(&self) -> Arc<RwLock<HashMap<String, Box<dyn Publisher>>>> {
		self.communicator.publishers()
	}

	/// Get the queries
	#[must_use]
	pub fn queriers(&self) -> Arc<RwLock<HashMap<String, Box<dyn Querier>>>> {
		self.communicator.queriers()
	}

	/// Get the responders
	#[must_use]
	pub fn responders(&self) -> Arc<RwLock<HashMap<String, Box<dyn Responder>>>> {
		self.communicator.responders()
	}

	/// Get the timers
	#[must_use]
	pub fn timers(&self) -> Arc<RwLock<HashMap<String, Timer<P>>>> {
		self.timers.clone()
	}

	/// Internal function for starting all registere)d tasks.
	///
	/// The tasks are started in the order
	/// - [`LivelinessSubscriber`]s
	/// - [`Queryable`]s
	/// - [`Observable`]s
	/// - [`Subscriber`]s  and last
	/// - [`Timer`]s
	///
	/// Beforehand of starting the [`Timer`]s there is the initialisation of the
	/// - [`Publisher`]s the
	/// - [`Observer`]s and the
	/// - [`Query`]s
	///
	/// # Errors
	/// Currently none
	fn upgrade_registered_tasks(&self, new_state: OperationState) -> Result<()> {
		// start communication
		self.communicator
			.manage_operation_state(&new_state)?;

		// start all registered timers
		self.timers
			.write()
			.map_err(|_| Error::ModifyStruct("timers".into()))?
			.iter_mut()
			.for_each(|timer| {
				let _ = timer.1.manage_operation_state(&new_state);
			});

		self.modify_state_property(new_state)?;
		Ok(())
	}

	/// Internal function for stopping all registered tasks.
	///
	/// The tasks are stopped in reverse order of their start in [`Context::start_registered_tasks()`]
	///
	/// # Errors
	/// Currently none
	fn downgrade_registered_tasks(&self, new_state: OperationState) -> Result<()> {
		// reverse order of start!
		// stop all registered timers
		self.timers
			.write()
			.map_err(|_| Error::ModifyStruct("timers".into()))?
			.iter_mut()
			.for_each(|timer| {
				let _ = timer.1.manage_operation_state(&new_state);
			});

		// start communication
		self.communicator
			.manage_operation_state(&new_state)?;

		self.modify_state_property(new_state)?;
		Ok(())
	}
}
// endregion:	--- ContextImpl

#[cfg(test)]
mod tests {
	use super::*;

	// check, that the auto traits are available
	const fn is_normal<T: Sized + Send + Sync>() {}

	#[derive(Debug)]
	struct Props {}

	#[test]
	const fn normal_types() {
		is_normal::<ContextImpl<Props>>();
	}
}