-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathsubscription.h
executable file
·114 lines (106 loc) · 3.36 KB
/
subscription.h
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
// Copyright (c) 2019 - for information on the respective copyright owner
// see the NOTICE file and/or the repository https://github.com/ros2/rclc.
// Copyright 2014 Open Source Robotics Foundation, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RCLC__SUBSCRIPTION_H_
#define RCLC__SUBSCRIPTION_H_
#if __cplusplus
extern "C"
{
#endif
#include <rcl/subscription.h>
#include <rclc/types.h>
#include <rclc/init.h>
#include "rclc/visibility_control.h"
/**
* Creates an rcl subscription.
*
* * <hr>
* Attribute | Adherence
* ------------------ | -------------
* Allocates Memory | Yes (in RCL)
* Thread-Safe | No
* Uses Atomics | No
* Lock-Free | Yes
*
* \param[inout] subscription - a zero-initialized rcl_subscription_t
* \param[in] node the rcl node
* \param[in] type_support the message data type
* \param[in] topic_name the name of subscribed topic
* \return `RCL_RET_OK` if successful
* \return `RCL_ERROR` (or other error code) if an error occurred
*/
RCLC_PUBLIC
rcl_ret_t
rclc_subscription_init_default(
rcl_subscription_t * subscription,
rcl_node_t * node,
const rosidl_message_type_support_t * type_support,
const char * topic_name);
/**
* Creates an rcl subscription with quality of service option best effort
*
* * <hr>
* Attribute | Adherence
* ------------------ | -------------
* Allocates Memory | Yes (in RCL)
* Thread-Safe | No
* Uses Atomics | No
* Lock-Free | Yes
*
* \param[inout] subscription - a zero-initialized rcl_subscription_t
* \param[in] node the rcl node
* \param[in] type_support the message data type
* \param[in] topic_name the name of subscribed topic
* \return `RCL_RET_OK` if successful
* \return `RCL_ERROR` (or other error code) if an error occurred
*/
RCLC_PUBLIC
rcl_ret_t
rclc_subscription_init_best_effort(
rcl_subscription_t * subscription,
rcl_node_t * node,
const rosidl_message_type_support_t * type_support,
const char * topic_name);
/**
* Creates an rcl subscription with defined QoS
*
* * <hr>
* Attribute | Adherence
* ------------------ | -------------
* Allocates Memory | Yes (in RCL)
* Thread-Safe | No
* Uses Atomics | No
* Lock-Free | Yes
*
* \param[inout] subscription - a zero-initialized rcl_subscription_t
* \param[in] node the rcl node
* \param[in] type_support the message data type
* \param[in] topic_name the name of subscribed topic
* \param[in] qos_profile the qos of the topic
* \return `RCL_RET_OK` if successful
* \return `RCL_ERROR` (or other error code) if an error occurred
*/
RCLC_PUBLIC
rcl_ret_t
rclc_subscription_init(
rcl_subscription_t * subscription,
rcl_node_t * node,
const rosidl_message_type_support_t * type_support,
const char * topic_name,
const rmw_qos_profile_t * qos_profile);
#if __cplusplus
}
#endif
#endif // RCLC__SUBSCRIPTION_H_