rcl  master
C API providing common ROS client library functionality.
publisher.h
Go to the documentation of this file.
1 // Copyright 2015 Open Source Robotics Foundation, Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef RCL__PUBLISHER_H_
16 #define RCL__PUBLISHER_H_
17 
18 #ifdef __cplusplus
19 extern "C"
20 {
21 #endif
22 
23 #include "rosidl_generator_c/message_type_support_struct.h"
24 
25 #include "rcl/macros.h"
26 #include "rcl/node.h"
27 #include "rcl/visibility_control.h"
28 
30 struct rcl_publisher_impl_t;
31 
33 typedef struct rcl_publisher_t
34 {
35  struct rcl_publisher_impl_t * impl;
37 
40 {
44 
47 
49 
57 
59 
147 rcl_ret_t
149  rcl_publisher_t * publisher,
150  const rcl_node_t * node,
151  const rosidl_message_type_support_t * type_support,
152  const char * topic_name,
153  const rcl_publisher_options_t * options);
154 
156 
181 rcl_ret_t
182 rcl_publisher_fini(rcl_publisher_t * publisher, rcl_node_t * node);
183 
185 
195 
197 
254 rcl_ret_t
255 rcl_publish(const rcl_publisher_t * publisher, const void * ros_message);
256 
258 
289 rcl_ret_t
291  const rcl_publisher_t * publisher, const rcl_serialized_message_t * serialized_message);
292 
294 
317 const char *
319 
321 
345 rcl_publisher_get_options(const rcl_publisher_t * publisher);
346 
348 
377 
379 
404 rcl_publisher_get_context(const rcl_publisher_t * publisher);
405 
407 
425 bool
426 rcl_publisher_is_valid(const rcl_publisher_t * publisher);
427 
429 
438 bool
440 
442 
463 rmw_ret_t
465  const rcl_publisher_t * publisher,
466  size_t * subscription_count);
467 
468 #ifdef __cplusplus
469 }
470 #endif
471 
472 #endif // RCL__PUBLISHER_H_
rcl_ret_t rcl_publisher_fini(rcl_publisher_t *publisher, rcl_node_t *node)
Finalize a rcl_publisher_t.
struct rcl_publisher_impl_t * impl
Definition: publisher.h:35
rmw_ret_t rcl_ret_t
Definition: types.h:20
rcl_ret_t rcl_publisher_init(rcl_publisher_t *publisher, const rcl_node_t *node, const rosidl_message_type_support_t *type_support, const char *topic_name, const rcl_publisher_options_t *options)
Initialize a rcl publisher.
rmw_qos_profile_t qos
Middleware quality of service settings for the publisher.
Definition: publisher.h:42
bool rcl_publisher_is_valid(const rcl_publisher_t *publisher)
Return true if the publisher is valid, otherwise false.
rmw_ret_t rcl_publisher_get_subscription_count(const rcl_publisher_t *publisher, size_t *subscription_count)
Get the number of subscriptions matched to a publisher.
struct rcl_publisher_options_t rcl_publisher_options_t
Options available for a rcl publisher.
rcl_publisher_t rcl_get_zero_initialized_publisher(void)
Return a rcl_publisher_t struct with members set to NULL.
#define RCL_WARN_UNUSED
Ignored return values of functions with this macro will emit a warning.
Definition: macros.h:25
rmw_publisher_t * rcl_publisher_get_rmw_handle(const rcl_publisher_t *publisher)
Return the rmw publisher handle.
#define RCL_PUBLIC
Definition: visibility_control.h:48
bool rcl_publisher_is_valid_except_context(const rcl_publisher_t *publisher)
Return true if the publisher is valid except the context, otherwise false.
rcl_allocator_t allocator
Custom allocator for the publisher, used for incidental allocations.
Definition: publisher.h:45
rcl_publisher_options_t rcl_publisher_get_default_options(void)
Return the default publisher options in a rcl_publisher_options_t.
struct rcl_publisher_t rcl_publisher_t
Structure which encapsulates a ROS Publisher.
rcl_ret_t rcl_publish_serialized_message(const rcl_publisher_t *publisher, const rcl_serialized_message_t *serialized_message)
Publish a serialized message on a topic using a publisher.
Structure which encapsulates a ROS Publisher.
Definition: publisher.h:33
const rcl_publisher_options_t * rcl_publisher_get_options(const rcl_publisher_t *publisher)
Return the rcl publisher options.
int32_t rmw_ret_t
Encapsulates the non-global state of an init/shutdown cycle.
Definition: context.h:108
const char * rcl_publisher_get_topic_name(const rcl_publisher_t *publisher)
Get the topic name for the publisher.
rcl_ret_t rcl_publish(const rcl_publisher_t *publisher, const void *ros_message)
Publish a ROS message on a topic using a publisher.
Structure which encapsulates a ROS Node.
Definition: node.h:39
rcl_context_t * rcl_publisher_get_context(const rcl_publisher_t *publisher)
Return the context associated with this publisher.
Options available for a rcl publisher.
Definition: publisher.h:39