-
Notifications
You must be signed in to change notification settings - Fork 227
/
publisher.cpp
200 lines (173 loc) · 5.66 KB
/
publisher.cpp
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
// Copyright (c) 2009, Willow Garage, Inc.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// * Neither the name of the Willow Garage nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include "image_transport/publisher.hpp"
#include <memory>
#include <set>
#include <string>
#include <utility>
#include <vector>
#include "rclcpp/expand_topic_or_service_name.hpp"
#include "rclcpp/logging.hpp"
#include "rclcpp/node.hpp"
#include "pluginlib/class_loader.hpp"
#include "image_transport/camera_common.hpp"
#include "image_transport/publisher_plugin.hpp"
namespace image_transport
{
struct Publisher::Impl
{
explicit Impl(rclcpp::Node * node)
: logger_(node->get_logger()),
unadvertised_(false)
{
}
~Impl()
{
shutdown();
}
size_t getNumSubscribers() const
{
size_t count = 0;
for (const auto & pub : publishers_) {
count += pub->getNumSubscribers();
}
return count;
}
std::string getTopic() const
{
return base_topic_;
}
bool isValid() const
{
return !unadvertised_;
}
void shutdown()
{
if (!unadvertised_) {
unadvertised_ = true;
for (auto & pub : publishers_) {
pub->shutdown();
}
publishers_.clear();
}
}
rclcpp::Logger logger_;
std::string base_topic_;
PubLoaderPtr loader_;
std::vector<std::shared_ptr<PublisherPlugin>> publishers_;
bool unadvertised_;
};
Publisher::Publisher(
rclcpp::Node * node, const std::string & base_topic,
PubLoaderPtr loader, rmw_qos_profile_t custom_qos)
: impl_(std::make_shared<Impl>(node))
{
// Resolve the name explicitly because otherwise the compressed topics don't remap
// properly (#3652).
std::string image_topic = rclcpp::expand_topic_or_service_name(
base_topic,
node->get_name(), node->get_namespace());
impl_->base_topic_ = image_topic;
impl_->loader_ = loader;
std::vector<std::string> blacklist_vec;
std::set<std::string> blacklist;
// nh.getParam(impl_->base_topic_ + "/disable_pub_plugins", blacklist_vec);
for (size_t i = 0; i < blacklist_vec.size(); ++i) {
blacklist.insert(blacklist_vec[i]);
}
for (const auto & lookup_name : loader->getDeclaredClasses()) {
const std::string transport_name = erase_last_copy(lookup_name, "_pub");
if (blacklist.count(transport_name)) {
continue;
}
try {
auto pub = loader->createUniqueInstance(lookup_name);
pub->advertise(node, image_topic, custom_qos);
impl_->publishers_.push_back(std::move(pub));
} catch (const std::runtime_error & e) {
RCLCPP_ERROR(
impl_->logger_, "Failed to load plugin %s, error string: %s\n",
lookup_name.c_str(), e.what());
}
}
if (impl_->publishers_.empty()) {
throw Exception(
"No plugins found! Does `rospack plugins --attrib=plugin "
"image_transport` find any packages?");
}
}
size_t Publisher::getNumSubscribers() const
{
if (impl_ && impl_->isValid()) {return impl_->getNumSubscribers();}
return 0;
}
std::string Publisher::getTopic() const
{
if (impl_) {return impl_->getTopic();}
return std::string();
}
void Publisher::publish(const sensor_msgs::msg::Image & message) const
{
if (!impl_ || !impl_->isValid()) {
// TODO(ros2) Switch to RCUTILS_ASSERT when ros2/rcutils#112 is merged
auto logger = impl_ ? impl_->logger_ : rclcpp::get_logger("image_transport");
RCLCPP_FATAL(logger, "Call to publish() on an invalid image_transport::Publisher");
return;
}
for (const auto & pub : impl_->publishers_) {
if (pub->getNumSubscribers() > 0) {
pub->publish(message);
}
}
}
void Publisher::publish(const sensor_msgs::msg::Image::ConstSharedPtr & message) const
{
if (!impl_ || !impl_->isValid()) {
// TODO(ros2) Switch to RCUTILS_ASSERT when ros2/rcutils#112 is merged
auto logger = impl_ ? impl_->logger_ : rclcpp::get_logger("image_transport");
RCLCPP_FATAL(logger, "Call to publish() on an invalid image_transport::Publisher");
return;
}
for (const auto & pub : impl_->publishers_) {
if (pub->getNumSubscribers() > 0) {
pub->publishPtr(message);
}
}
}
void Publisher::shutdown()
{
if (impl_) {
impl_->shutdown();
impl_.reset();
}
}
Publisher::operator void *() const
{
return (impl_ && impl_->isValid()) ? reinterpret_cast<void *>(1) : reinterpret_cast<void *>(0);
}
} // namespace image_transport