1use heapless::Vec;
4use nros_core::RosMessage;
5use nros_rmw::{QoSProfile, TopicInfo};
6
7use crate::{publisher::PublisherHandle, subscriber::SubscriptionHandle};
8
9#[derive(Debug, Clone)]
11pub struct NodeConfig<'a> {
12 pub name: &'a str,
14 pub namespace: &'a str,
16 pub domain_id: u32,
18}
19
20impl<'a> NodeConfig<'a> {
21 pub const fn new(name: &'a str, namespace: &'a str) -> Self {
23 Self {
24 name,
25 namespace,
26 domain_id: 0,
27 }
28 }
29
30 pub const fn with_domain(mut self, domain_id: u32) -> Self {
32 self.domain_id = domain_id;
33 self
34 }
35}
36
37impl Default for NodeConfig<'_> {
38 fn default() -> Self {
39 Self::new("nros_node", "/")
40 }
41}
42
43#[derive(Debug, Clone, Copy, PartialEq, Eq)]
45pub enum NodeError {
46 MaxPublishersReached,
48 MaxSubscribersReached,
50 InvalidPublisherHandle,
52 InvalidSubscriberHandle,
54 SerializationFailed,
56 DeserializationFailed,
58 BufferTooSmall,
60 TransportError,
62 NotConnected,
64 TopicNameTooLong,
67 NameTooLong,
69 NamespaceTooLong,
71}
72
73pub const NODE_TX_BUF_LEN: usize = 1024;
77pub const NODE_RX_BUF_LEN: usize = 1024;
79
80#[derive(Debug, Clone)]
82#[allow(dead_code)] struct PublisherInfo {
84 topic_name: heapless::String<64>,
86 type_name: &'static str,
88 type_hash: &'static str,
90 qos: QoSProfile,
92 active: bool,
94}
95
96#[derive(Debug, Clone)]
98#[allow(dead_code)] struct SubscriberInfo {
100 topic_name: heapless::String<64>,
102 type_name: &'static str,
104 type_hash: &'static str,
106 qos: QoSProfile,
108 active: bool,
110}
111
112pub struct Node<const MAX_PUBS: usize = 8, const MAX_SUBS: usize = 8> {
123 name: heapless::String<64>,
125 namespace: heapless::String<64>,
127 domain_id: u32,
129 publishers: Vec<PublisherInfo, MAX_PUBS>,
131 subscribers: Vec<SubscriberInfo, MAX_SUBS>,
133 tx_buffer: [u8; NODE_TX_BUF_LEN],
135 #[allow(dead_code)] rx_buffer: [u8; NODE_RX_BUF_LEN],
138}
139
140#[derive(Debug, Clone)]
142pub struct PublisherOptions<'a> {
143 pub topic: &'a str,
145 pub qos: QoSProfile,
147}
148
149impl<'a> PublisherOptions<'a> {
150 pub fn new(topic: &'a str) -> Self {
152 Self {
153 topic,
154 qos: QoSProfile::default(),
155 }
156 }
157
158 pub fn qos(mut self, qos: QoSProfile) -> Self {
160 self.qos = qos;
161 self
162 }
163}
164
165#[derive(Debug, Clone)]
167pub struct SubscriptionOptions<'a> {
168 pub topic: &'a str,
170 pub qos: QoSProfile,
172}
173
174impl<'a> SubscriptionOptions<'a> {
175 pub fn new(topic: &'a str) -> Self {
177 Self {
178 topic,
179 qos: QoSProfile::default(),
180 }
181 }
182
183 pub fn qos(mut self, qos: QoSProfile) -> Self {
185 self.qos = qos;
186 self
187 }
188}
189
190impl<const MAX_PUBS: usize, const MAX_SUBS: usize> Node<MAX_PUBS, MAX_SUBS> {
191 pub fn new(config: NodeConfig) -> Result<Self, NodeError> {
193 let mut name = heapless::String::new();
196 name.push_str(config.name)
197 .map_err(|_| NodeError::NameTooLong)?;
198
199 let mut namespace = heapless::String::new();
200 namespace
201 .push_str(config.namespace)
202 .map_err(|_| NodeError::NamespaceTooLong)?;
203
204 Ok(Self {
205 name,
206 namespace,
207 domain_id: config.domain_id,
208 publishers: Vec::new(),
209 subscribers: Vec::new(),
210 tx_buffer: [0u8; NODE_TX_BUF_LEN],
211 rx_buffer: [0u8; NODE_RX_BUF_LEN],
212 })
213 }
214
215 pub fn name(&self) -> &str {
217 &self.name
218 }
219
220 pub fn namespace(&self) -> &str {
222 &self.namespace
223 }
224
225 pub fn domain_id(&self) -> u32 {
227 self.domain_id
228 }
229
230 pub fn fully_qualified_name(&self) -> Result<heapless::String<128>, NodeError> {
236 let mut fqn = heapless::String::new();
237 fqn.push_str(&self.namespace)
238 .map_err(|_| NodeError::NamespaceTooLong)?;
239 if !self.namespace.ends_with('/') {
240 fqn.push('/').map_err(|_| NodeError::NamespaceTooLong)?;
241 }
242 fqn.push_str(&self.name)
243 .map_err(|_| NodeError::NameTooLong)?;
244 Ok(fqn)
245 }
246
247 pub fn create_publisher<M: RosMessage>(
249 &mut self,
250 options: PublisherOptions,
251 ) -> Result<PublisherHandle<M>, NodeError> {
252 if self.publishers.len() >= MAX_PUBS {
253 return Err(NodeError::MaxPublishersReached);
254 }
255
256 let mut topic_name = heapless::String::new();
257 topic_name
260 .push_str(options.topic)
261 .map_err(|_| NodeError::TopicNameTooLong)?;
262
263 let info = PublisherInfo {
264 topic_name,
265 type_name: M::TYPE_NAME,
266 type_hash: M::TYPE_HASH,
267 qos: options.qos,
268 active: true,
269 };
270
271 let index = self.publishers.len();
272 self.publishers
273 .push(info)
274 .map_err(|_| NodeError::MaxPublishersReached)?;
275
276 Ok(PublisherHandle::new(index))
277 }
278
279 pub fn create_subscription<M: RosMessage>(
281 &mut self,
282 options: SubscriptionOptions,
283 ) -> Result<SubscriptionHandle<M>, NodeError> {
284 if self.subscribers.len() >= MAX_SUBS {
285 return Err(NodeError::MaxSubscribersReached);
286 }
287
288 let mut topic_name = heapless::String::new();
289 topic_name
291 .push_str(options.topic)
292 .map_err(|_| NodeError::TopicNameTooLong)?;
293
294 let info = SubscriberInfo {
295 topic_name,
296 type_name: M::TYPE_NAME,
297 type_hash: M::TYPE_HASH,
298 qos: options.qos,
299 active: true,
300 };
301
302 let index = self.subscribers.len();
303 self.subscribers
304 .push(info)
305 .map_err(|_| NodeError::MaxSubscribersReached)?;
306
307 Ok(SubscriptionHandle::new(index))
308 }
309
310 pub fn publisher_topic_info(&self, handle: PublisherHandle<()>) -> Option<TopicInfo<'_>> {
312 self.publishers.get(handle.index()).map(|info| {
313 TopicInfo::new(&info.topic_name, info.type_name, info.type_hash)
314 .with_domain(self.domain_id)
315 })
316 }
317
318 pub fn subscription_topic_info(&self, handle: SubscriptionHandle<()>) -> Option<TopicInfo<'_>> {
320 self.subscribers.get(handle.index()).map(|info| {
321 TopicInfo::new(&info.topic_name, info.type_name, info.type_hash)
322 .with_domain(self.domain_id)
323 })
324 }
325
326 pub fn serialize_message<M: RosMessage>(
331 &mut self,
332 _handle: &PublisherHandle<M>,
333 msg: &M,
334 ) -> Result<&[u8], NodeError> {
335 let mut writer =
336 crate::tx_writer(&mut self.tx_buffer).map_err(|_| NodeError::BufferTooSmall)?;
337 msg.serialize(&mut writer)
338 .map_err(|_| NodeError::SerializationFailed)?;
339 let len = writer.position();
340
341 Ok(&self.tx_buffer[..len])
342 }
343
344 pub fn deserialize_message<M: RosMessage>(
348 &self,
349 _handle: &SubscriptionHandle<M>,
350 data: &[u8],
351 ) -> Result<M, NodeError> {
352 use nros_core::CdrReader;
353
354 let mut reader =
355 CdrReader::new_with_header(data).map_err(|_| NodeError::DeserializationFailed)?;
356 M::deserialize(&mut reader).map_err(|_| NodeError::DeserializationFailed)
357 }
358
359 pub fn publisher_count(&self) -> usize {
361 self.publishers.iter().filter(|p| p.active).count()
362 }
363
364 pub fn subscription_count(&self) -> usize {
366 self.subscribers.iter().filter(|s| s.active).count()
367 }
368}
369
370impl<const MAX_PUBS: usize, const MAX_SUBS: usize> Default for Node<MAX_PUBS, MAX_SUBS> {
371 fn default() -> Self {
372 Self::new(NodeConfig::default())
375 .expect("default NodeConfig fits the bounded name/namespace")
376 }
377}
378
379#[cfg(test)]
380mod tests {
381 use super::*;
382
383 #[derive(Debug, Clone, Default)]
385 struct TestMessage {
386 data: i32,
387 }
388
389 impl RosMessage for TestMessage {
390 const TYPE_NAME: &'static str = "test_msgs::msg::TestMessage";
391 const TYPE_HASH: &'static str = "abc123";
392 }
393
394 impl nros_core::Serialize for TestMessage {
395 fn serialize(&self, writer: &mut nros_core::CdrWriter) -> Result<(), nros_core::SerError> {
396 self.data.serialize(writer)
397 }
398 }
399
400 impl nros_core::Deserialize for TestMessage {
401 fn deserialize(reader: &mut nros_core::CdrReader) -> Result<Self, nros_core::DeserError> {
402 Ok(Self {
403 data: i32::deserialize(reader)?,
404 })
405 }
406 }
407
408 #[test]
409 fn test_node_creation() {
410 let config = NodeConfig::new("test_node", "/test");
411 let node = Node::<4, 4>::new(config).unwrap();
412
413 assert_eq!(node.name(), "test_node");
414 assert_eq!(node.namespace(), "/test");
415 assert_eq!(node.domain_id(), 0);
416 }
417
418 #[test]
419 fn test_fully_qualified_name() {
420 let config = NodeConfig::new("my_node", "/my_ns");
421 let node = Node::<4, 4>::new(config).unwrap();
422
423 assert_eq!(
424 node.fully_qualified_name().unwrap().as_str(),
425 "/my_ns/my_node"
426 );
427 }
428
429 #[test]
430 fn test_create_publisher() {
431 let mut node = Node::<4, 4>::default();
432 let handle = node.create_publisher::<TestMessage>(PublisherOptions::new("/test_topic"));
433
434 assert!(handle.is_ok());
435 assert_eq!(node.publisher_count(), 1);
436 }
437
438 #[test]
439 fn test_create_subscriber() {
440 let mut node = Node::<4, 4>::default();
441 let handle =
442 node.create_subscription::<TestMessage>(SubscriptionOptions::new("/test_topic"));
443
444 assert!(handle.is_ok());
445 assert_eq!(node.subscription_count(), 1);
446 }
447
448 #[test]
449 fn test_max_publishers() {
450 let mut node = Node::<2, 2>::default();
451
452 let _ = node.create_publisher::<TestMessage>(PublisherOptions::new("/topic1"));
453 let _ = node.create_publisher::<TestMessage>(PublisherOptions::new("/topic2"));
454 let result = node.create_publisher::<TestMessage>(PublisherOptions::new("/topic3"));
455
456 assert_eq!(result, Err(NodeError::MaxPublishersReached));
457 }
458
459 #[test]
460 fn test_serialize_deserialize() {
461 let mut node = Node::<4, 4>::default();
462 let pub_handle = node
463 .create_publisher::<TestMessage>(PublisherOptions::new("/test"))
464 .unwrap();
465 let sub_handle = node
466 .create_subscription::<TestMessage>(SubscriptionOptions::new("/test"))
467 .unwrap();
468
469 let msg = TestMessage { data: 42 };
470
471 let mut buf = [0u8; 128];
473 let bytes = node.serialize_message(&pub_handle, &msg).unwrap();
474 let len = bytes.len();
475 buf[..len].copy_from_slice(bytes);
476
477 let received: TestMessage = node.deserialize_message(&sub_handle, &buf[..len]).unwrap();
478 assert_eq!(received.data, 42);
479 }
480}