rclrs/node/
node_options.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
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
use std::{
    borrow::Borrow,
    ffi::{CStr, CString},
    sync::{atomic::AtomicBool, Arc, Mutex},
};

use crate::{
    rcl_bindings::*, ClockType, ContextHandle, Logger, Node, NodeHandle, ParameterInterface,
    QoSProfile, RclrsError, TimeSource, ToResult, ENTITY_LIFECYCLE_MUTEX, QOS_PROFILE_CLOCK,
};

/// This trait helps to build [`NodeOptions`] which can be passed into
/// [`Executor::create_node`][1].
///
/// [1]: crate::Executor::create_node
pub trait IntoNodeOptions<'a>: Sized {
    /// Conver the object into [`NodeOptions`] with default settings.
    fn into_node_options(self) -> NodeOptions<'a>;

    /// Sets the node namespace.
    ///
    /// See the [`Node` docs][1] for general information on namespaces.
    ///
    /// # Rules for valid namespaces
    ///
    /// The rules for a valid node namespace are based on the [rules for a valid topic][2]
    /// and are checked by the [`rmw_validate_namespace()`][3] function. However, a namespace
    /// without a leading forward slash is automatically changed to have a leading forward slash
    /// before it is checked with this function.
    ///
    /// Thus, the effective rules are:
    /// - Must contain only the `a-z`, `A-Z`, `0-9`, `_`, and `/` characters
    /// - Must not have a number at the beginning, or after a `/`
    /// - Must not contain two or more `/` characters in a row
    /// - Must not have a `/` character at the end, except if `/` is the full namespace
    ///
    /// Note that namespace validation is delayed until [`Executor::create_node`][4].
    ///
    /// # Example
    /// ```
    /// # use rclrs::*;
    /// let executor = Context::default().create_basic_executor();
    /// // This is a valid namespace
    /// let options_ok_ns = "my_node".namespace("/some/nested/namespace");
    /// assert!(executor.create_node(options_ok_ns).is_ok());
    /// // This is an invalid namespace
    /// assert!(matches!(
    ///     executor.create_node(
    ///         "my_node"
    ///         .namespace("/10_percent_luck/20_percent_skill")
    ///     ).unwrap_err(),
    ///     RclrsError::RclError { code: RclReturnCode::NodeInvalidNamespace, .. }
    /// ));
    /// // A missing forward slash at the beginning is automatically added
    /// assert_eq!(
    ///     executor.create_node(
    ///         "my_node"
    ///         .namespace("foo")
    ///     )?.namespace(),
    ///     "/foo"
    /// );
    /// # Ok::<(), RclrsError>(())
    /// ```
    ///
    /// [1]: crate::Node#naming
    /// [2]: http://design.ros2.org/articles/topic_and_service_names.html
    /// [3]: https://docs.ros2.org/latest/api/rmw/validate__namespace_8h.html#a043f17d240cf13df01321b19a469ee49
    /// [4]: crate::Executor::create_node
    fn namespace(self, namespace: &'a str) -> NodeOptions<'a> {
        let mut options = self.into_node_options();
        options.namespace = namespace;
        options
    }

    /// Enables or disables using global arguments.
    ///
    /// The "global" arguments are those used in [creating the context][1].
    ///
    /// # Example
    /// ```
    /// # use rclrs::*;
    /// let context_args = ["--ros-args", "--remap", "__node:=your_node"]
    ///   .map(String::from);
    /// let executor = Context::new(context_args, InitOptions::default())?.create_basic_executor();
    /// // Ignore the global arguments:
    /// let node_without_global_args = executor.create_node(
    ///     "my_node"
    ///     .use_global_arguments(false)
    /// )?;
    /// assert_eq!(node_without_global_args.name(), "my_node");
    /// // Do not ignore the global arguments:
    /// let node_with_global_args = executor.create_node(
    ///     "my_other_node"
    ///     .use_global_arguments(true)
    /// )?;
    /// assert_eq!(node_with_global_args.name(), "your_node");
    /// # Ok::<(), RclrsError>(())
    /// ```
    ///
    /// [1]: crate::Context::new
    fn use_global_arguments(self, enable: bool) -> NodeOptions<'a> {
        let mut options = self.into_node_options();
        options.use_global_arguments = enable;
        options
    }

    /// Sets node-specific command line arguments.
    ///
    /// These arguments are parsed the same way as those for [`Context::new()`][1].
    /// However, the node-specific command line arguments have higher precedence than the arguments
    /// used in creating the context.
    ///
    /// For more details about command line arguments, see [here][2].
    ///
    /// # Example
    /// ```
    /// # use rclrs::*;
    /// // Usually, this would change the name of "my_node" to "context_args_node":
    /// let context_args = ["--ros-args", "--remap", "my_node:__node:=context_args_node"]
    ///   .map(String::from);
    /// let executor = Context::new(context_args, InitOptions::default())?.create_basic_executor();
    /// // But the node arguments will change it to "node_args_node":
    /// let node_args = ["--ros-args", "--remap", "my_node:__node:=node_args_node"]
    ///   .map(String::from);
    /// let node = executor.create_node(
    ///     "my_node"
    ///     .arguments(node_args)
    /// )?;
    /// assert_eq!(node.name(), "node_args_node");
    /// # Ok::<(), RclrsError>(())
    /// ```
    ///
    /// [1]: crate::Context::new
    /// [2]: https://design.ros2.org/articles/ros_command_line_arguments.html
    fn arguments<Args: IntoIterator>(self, arguments: Args) -> NodeOptions<'a>
    where
        Args::Item: ToString,
    {
        let mut options = self.into_node_options();
        options.arguments = arguments.into_iter().map(|item| item.to_string()).collect();
        options
    }

    /// Enables or disables logging to rosout.
    ///
    /// When enabled, log messages are published to the `/rosout` topic in addition to
    /// standard output.
    ///
    /// This option is currently unused in `rclrs`.
    fn enable_rosout(self, enable: bool) -> NodeOptions<'a> {
        let mut options = self.into_node_options();
        options.enable_rosout = enable;
        options
    }

    /// Enables or disables parameter services.
    ///
    /// Parameter services can be used to allow external nodes to list, get and set
    /// parameters for this node.
    fn start_parameter_services(self, start: bool) -> NodeOptions<'a> {
        let mut options = self.into_node_options();
        options.start_parameter_services = start;
        options
    }

    /// Sets the node's clock type.
    fn clock_type(self, clock_type: ClockType) -> NodeOptions<'a> {
        let mut options = self.into_node_options();
        options.clock_type = clock_type;
        options
    }

    /// Sets the QoSProfile for the clock subscription.
    fn clock_qos(self, clock_qos: QoSProfile) -> NodeOptions<'a> {
        let mut options = self.into_node_options();
        options.clock_qos = clock_qos;
        options
    }
}

/// A set of options for creating a [`Node`][1].
///
/// The builder pattern, implemented through [`IntoNodeOptions`], allows
/// selectively setting some fields, and leaving all others at their default values.
///
/// The default values for optional fields are:
/// - `namespace: "/"`
/// - `use_global_arguments: true`
/// - `arguments: []`
/// - `enable_rosout: true`
/// - `start_parameter_services: true`
/// - `clock_type: ClockType::RosTime`
/// - `clock_qos: QOS_PROFILE_CLOCK`
///
/// # Example
/// ```
/// # use rclrs::*;
/// let executor = Context::default().create_basic_executor();
///
/// // Building a node with default options
/// let node = executor.create_node("foo_node");
///
/// // Building a node with a namespace
/// let node = executor.create_node("bar_node".namespace("/bar"))?;
/// assert_eq!(node.name(), "bar_node");
/// assert_eq!(node.namespace(), "/bar");
///
/// // Building a node with a namespace and no parameter services
/// let node = executor.create_node(
///     "baz"
///     .namespace("qux")
///     .start_parameter_services(false)
/// )?;
///
/// // Building node options step-by-step
/// let mut options = NodeOptions::new("goose");
/// options = options.namespace("/duck/duck");
/// options = options.clock_type(ClockType::SteadyTime);
///
/// let node = executor.create_node(options)?;
/// assert_eq!(node.fully_qualified_name(), "/duck/duck/goose");
/// # Ok::<(), RclrsError>(())
/// ```
///
/// [1]: crate::Node
pub struct NodeOptions<'a> {
    name: &'a str,
    namespace: &'a str,
    use_global_arguments: bool,
    arguments: Vec<String>,
    enable_rosout: bool,
    start_parameter_services: bool,
    clock_type: ClockType,
    clock_qos: QoSProfile,
}

impl<'a> NodeOptions<'a> {
    /// Creates a builder for a node with the given name.
    ///
    /// See the [`Node` docs][1] for general information on node names.
    ///
    /// # Rules for valid node names
    ///
    /// The rules for a valid node name are checked by the [`rmw_validate_node_name()`][2]
    /// function. They are:
    /// - Must contain only the `a-z`, `A-Z`, `0-9`, and `_` characters
    /// - Must not be empty and not be longer than `RMW_NODE_NAME_MAX_NAME_LENGTH`
    /// - Must not start with a number
    ///
    /// Note that node name validation is delayed until [`Executor::create_node`][3].
    ///
    /// # Example
    /// ```
    /// # use rclrs::*;
    /// let executor = Context::default().create_basic_executor();
    /// // This is a valid node name
    /// assert!(executor.create_node(NodeOptions::new("my_node")).is_ok());
    /// // This is another valid node name (although not a good one)
    /// assert!(executor.create_node(NodeOptions::new("_______")).is_ok());
    /// // This is an invalid node name
    /// assert!(matches!(
    ///     executor.create_node(NodeOptions::new("röböt")).unwrap_err(),
    ///     RclrsError::RclError { code: RclReturnCode::NodeInvalidName, .. }
    /// ));
    /// # Ok::<(), RclrsError>(())
    /// ```
    ///
    /// [1]: crate::Node#naming
    /// [2]: https://docs.ros2.org/latest/api/rmw/validate__node__name_8h.html#a5690a285aed9735f89ef11950b6e39e3
    /// [3]: crate::Executor::create_node
    pub fn new(name: &'a str) -> NodeOptions<'a> {
        NodeOptions {
            name,
            namespace: "/",
            use_global_arguments: true,
            arguments: vec![],
            enable_rosout: true,
            start_parameter_services: true,
            clock_type: ClockType::RosTime,
            clock_qos: QOS_PROFILE_CLOCK,
        }
    }

    /// Builds the node instance.
    ///
    /// Only used internally. Downstream users should call
    /// [`Executor::create_node`].
    pub(crate) fn build(self, context: &Arc<ContextHandle>) -> Result<Arc<Node>, RclrsError> {
        let node_name = CString::new(self.name).map_err(|err| RclrsError::StringContainsNul {
            err,
            s: self.name.to_owned(),
        })?;
        let node_namespace =
            CString::new(self.namespace).map_err(|err| RclrsError::StringContainsNul {
                err,
                s: self.namespace.to_owned(),
            })?;
        let rcl_node_options = self.create_rcl_node_options()?;
        let rcl_context = &mut *context.rcl_context.lock().unwrap();

        let handle = Arc::new(NodeHandle {
            // SAFETY: Getting a zero-initialized value is always safe.
            rcl_node: Mutex::new(unsafe { rcl_get_zero_initialized_node() }),
            context_handle: Arc::clone(context),
            initialized: AtomicBool::new(false),
        });

        unsafe {
            // SAFETY:
            // * The rcl_node is zero-initialized as mandated by this function.
            // * The strings and node options are copied by this function, so we don't need to keep them alive.
            // * The rcl_context is kept alive by the ContextHandle because it is a dependency of the node.
            // * The entity lifecycle mutex is locked to protect against the risk of
            //   global variables in the rmw implementation being unsafely modified during cleanup.
            let _lifecycle_lock = ENTITY_LIFECYCLE_MUTEX.lock().unwrap();
            rcl_node_init(
                &mut *handle.rcl_node.lock().unwrap(),
                node_name.as_ptr(),
                node_namespace.as_ptr(),
                rcl_context,
                &rcl_node_options,
            )
            .ok()?;
        };

        handle
            .initialized
            .store(true, std::sync::atomic::Ordering::Release);

        let parameter = {
            let rcl_node = handle.rcl_node.lock().unwrap();
            ParameterInterface::new(
                &rcl_node,
                &rcl_node_options.arguments,
                &rcl_context.global_arguments,
            )?
        };

        let logger_name = {
            let rcl_node = handle.rcl_node.lock().unwrap();
            let logger_name_raw_ptr = unsafe { rcl_node_get_logger_name(&*rcl_node) };
            if logger_name_raw_ptr.is_null() {
                ""
            } else {
                // SAFETY: rcl_node_get_logger_name will either return a nullptr
                // if the provided node was invalid or provide a valid null-terminated
                // const char* if the provided node was valid. We have already
                // verified that it is not a nullptr. We are also preventing the
                // pointed-to value from being modified while we view it by locking
                // the mutex of rcl_node while we view it. This means all the
                // safety conditions of CStr::from_ptr are met.
                unsafe { CStr::from_ptr(logger_name_raw_ptr) }
                    .to_str()
                    .unwrap_or("")
            }
        };

        let node = Arc::new(Node {
            clients_mtx: Mutex::default(),
            guard_conditions_mtx: Mutex::default(),
            services_mtx: Mutex::default(),
            subscriptions_mtx: Mutex::default(),
            time_source: TimeSource::builder(self.clock_type)
                .clock_qos(self.clock_qos)
                .build(),
            parameter,
            logger: Logger::new(logger_name)?,
            handle,
        });
        node.time_source.attach_node(&node);

        if self.start_parameter_services {
            node.parameter.create_services(&node)?;
        }

        Ok(node)
    }

    /// Creates a rcl_node_options_t struct from this builder.
    ///
    /// Any fields not present in the builder will have their default value.
    /// For detail about default values, see [`NodeBuilder`][1] docs.
    ///
    /// [1]: crate::NodeBuilder
    fn create_rcl_node_options(&self) -> Result<rcl_node_options_t, RclrsError> {
        // SAFETY: No preconditions for this function.
        let mut rcl_node_options = unsafe { rcl_node_get_default_options() };

        let cstring_args = self
            .arguments
            .iter()
            .map(|s| match CString::new(s.as_str()) {
                Ok(cstr) => Ok(cstr),
                Err(err) => Err(RclrsError::StringContainsNul { s: s.clone(), err }),
            })
            .collect::<Result<Vec<_>, _>>()?;

        let cstring_arg_ptrs = cstring_args.iter().map(|s| s.as_ptr()).collect::<Vec<_>>();
        unsafe {
            // SAFETY: This function does not store the ephemeral cstring_args_ptrs
            // pointers. We are passing in a zero-initialized arguments struct as expected.
            rcl_parse_arguments(
                cstring_arg_ptrs.len() as i32,
                cstring_arg_ptrs.as_ptr(),
                rcutils_get_default_allocator(),
                &mut rcl_node_options.arguments,
            )
        }
        .ok()?;

        rcl_node_options.use_global_arguments = self.use_global_arguments;
        rcl_node_options.enable_rosout = self.enable_rosout;
        // SAFETY: No preconditions for this function.
        rcl_node_options.allocator = unsafe { rcutils_get_default_allocator() };

        Ok(rcl_node_options)
    }
}

impl<'a> IntoNodeOptions<'a> for NodeOptions<'a> {
    fn into_node_options(self) -> NodeOptions<'a> {
        self
    }
}

impl<'a, T: Borrow<str>> IntoNodeOptions<'a> for &'a T {
    fn into_node_options(self) -> NodeOptions<'a> {
        NodeOptions::new(self.borrow())
    }
}

impl<'a> IntoNodeOptions<'a> for &'a str {
    fn into_node_options(self) -> NodeOptions<'a> {
        NodeOptions::new(self)
    }
}

impl Drop for rcl_node_options_t {
    fn drop(&mut self) {
        // SAFETY: Do not finish this struct except here.
        unsafe {
            // This also finalizes the `rcl_arguments_t` contained in `rcl_node_options_t`.
            rcl_node_options_fini(self).ok().unwrap();
        }
    }
}