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
|
// Copyright 2022 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// 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.
/**
* @file AdvancedConfigurationSubscriber.cpp
*
*/
#include <csignal>
#include <fastdds/dds/domain/DomainParticipantFactory.hpp>
#include <fastdds/dds/subscriber/DataReader.hpp>
#include <fastdds/dds/subscriber/qos/DataReaderQos.hpp>
#include <fastdds/dds/subscriber/SampleInfo.hpp>
#include <fastdds/dds/subscriber/Subscriber.hpp>
#include <fastdds/rtps/transport/shared_mem/SharedMemTransportDescriptor.h>
#include <fastdds/rtps/transport/UDPv4TransportDescriptor.h>
#include <fastdds/rtps/transport/UDPv6TransportDescriptor.h>
#include <fastrtps/attributes/ParticipantAttributes.h>
#include <fastrtps/attributes/SubscriberAttributes.h>
#include "AdvancedConfigurationSubscriber.h"
using namespace eprosima::fastdds::dds;
using namespace eprosima::fastdds::rtps;
std::atomic<bool> HelloWorldSubscriber::stop_(false);
std::mutex HelloWorldSubscriber::terminate_cv_mtx_;
std::condition_variable HelloWorldSubscriber::terminate_cv_;
HelloWorldSubscriber::HelloWorldSubscriber()
: participant_(nullptr)
, subscriber_(nullptr)
, topic_(nullptr)
, reader_(nullptr)
, type_(new HelloWorldPubSubType())
{
}
bool HelloWorldSubscriber::is_stopped()
{
return stop_;
}
void HelloWorldSubscriber::stop()
{
stop_ = true;
terminate_cv_.notify_all();
}
bool HelloWorldSubscriber::init(
const std::string& topic_name,
uint32_t max_messages,
uint32_t domain,
TransportType transport,
bool reliable,
bool transient,
int hops,
const std::string& partitions,
bool use_ownership)
{
DomainParticipantQos pqos;
pqos.name("Participant_sub");
// TRANSPORT CONFIG
// If it is set, not use default and set the transport
if (transport != DEFAULT || hops > 0 )
{
pqos.transport().use_builtin_transports = false;
switch ( transport )
{
case SHM:
{
auto shm_transport = std::make_shared<SharedMemTransportDescriptor>();
pqos.transport().user_transports.push_back(shm_transport);
}
break;
case UDPv4:
{
auto udp_transport = std::make_shared<UDPv4TransportDescriptor>();
pqos.transport().user_transports.push_back(udp_transport);
}
break;
case UDPv6:
{
auto udp_transport = std::make_shared<UDPv6TransportDescriptor>();
pqos.transport().user_transports.push_back(udp_transport);
}
break;
case DEFAULT:
default:
{
// mimick default transport selection
auto udp_transport = std::make_shared<UDPv4TransportDescriptor>();
pqos.transport().user_transports.push_back(udp_transport);
#ifdef SHM_TRANSPORT_BUILTIN
auto shm_transport = std::make_shared<SharedMemTransportDescriptor>();
pqos.transport().user_transports.push_back(shm_transport);
#endif // SHM_TRANSPORT_BUILTIN
}
}
if ( hops > 0 )
{
for (auto& transportDescriptor : pqos.transport().user_transports)
{
SocketTransportDescriptor* pT = dynamic_cast<SocketTransportDescriptor*>(transportDescriptor.get());
if (pT)
{
pT->TTL = (uint8_t)std::min(hops, 255);
}
}
}
}
// CREATE THE PARTICIPANT
participant_ = DomainParticipantFactory::get_instance()->create_participant(domain, pqos);
if (participant_ == nullptr)
{
return false;
}
// REGISTER THE TYPE
type_.register_type(participant_);
// CREATE THE SUBSCRIBER
SubscriberQos sqos;
if (!partitions.empty())
{
// Divide in partitions by ;
std::stringstream spartitions(partitions);
std::string partition_cut;
while (std::getline(spartitions, partition_cut, ';'))
{
sqos.partition().push_back(partition_cut.c_str());
}
}
subscriber_ = participant_->create_subscriber(sqos, nullptr);
if (subscriber_ == nullptr)
{
return false;
}
// CREATE THE TOPIC
topic_ = participant_->create_topic(
topic_name,
"HelloWorld",
TOPIC_QOS_DEFAULT);
if (topic_ == nullptr)
{
return false;
}
// CREATE THE READER
if (max_messages > 0)
{
listener_.set_max_messages(max_messages);
}
DataReaderQos rqos = DATAREADER_QOS_DEFAULT;
// Data sharing set in endpoint. If it is not default, set it to off
if (transport != DEFAULT)
{
rqos.data_sharing().off();
}
else
{
rqos.data_sharing().automatic(); // default
}
if (reliable)
{
rqos.reliability().kind = RELIABLE_RELIABILITY_QOS;
rqos.history().kind = KEEP_ALL_HISTORY_QOS;
}
else
{
rqos.reliability().kind = BEST_EFFORT_RELIABILITY_QOS; // default
}
if (transient)
{
rqos.durability().kind = TRANSIENT_LOCAL_DURABILITY_QOS;
}
else
{
rqos.durability().kind = VOLATILE_DURABILITY_QOS; // default
}
// Set ownership
if (use_ownership)
{
rqos.ownership().kind = OwnershipQosPolicyKind::EXCLUSIVE_OWNERSHIP_QOS;
}
reader_ = subscriber_->create_datareader(topic_, rqos, &listener_);
if (reader_ == nullptr)
{
return false;
}
std::cout << "Subscriber Participant created with DataReader Guid [ " << reader_->guid() << " ]." << std::endl;
return true;
}
HelloWorldSubscriber::~HelloWorldSubscriber()
{
if (participant_ != nullptr)
{
if (topic_ != nullptr)
{
participant_->delete_topic(topic_);
}
if (subscriber_ != nullptr)
{
if (reader_ != nullptr)
{
subscriber_->delete_datareader(reader_);
}
participant_->delete_subscriber(subscriber_);
}
DomainParticipantFactory::get_instance()->delete_participant(participant_);
}
}
void HelloWorldSubscriber::SubListener::set_max_messages(
uint32_t max_messages)
{
max_messages_ = max_messages;
}
void HelloWorldSubscriber::SubListener::on_subscription_matched(
DataReader*,
const SubscriptionMatchedStatus& info)
{
if (info.current_count_change == 1)
{
matched_ = info.current_count;
std::cout << "Subscriber matched [ " << iHandle2GUID(info.last_publication_handle) << " ]." << std::endl;
}
else if (info.current_count_change == -1)
{
matched_ = info.current_count;
std::cout << "Subscriber unmatched [ " << iHandle2GUID(info.last_publication_handle) << " ]." << std::endl;
}
else
{
std::cout << info.current_count_change
<< " is not a valid value for SubscriptionMatchedStatus current count change" << std::endl;
}
}
void HelloWorldSubscriber::SubListener::on_data_available(
DataReader* reader)
{
SampleInfo info;
while ((reader->take_next_sample(&hello_, &info) == ReturnCode_t::RETCODE_OK) && !is_stopped())
{
if (info.instance_state == ALIVE_INSTANCE_STATE)
{
samples_++;
// Print your structure data here.
std::cout << "Message " << hello_.message().data() << " " << hello_.index() << " RECEIVED" << std::endl;
if (max_messages_ > 0 && (samples_ >= max_messages_))
{
stop();
}
}
}
}
void HelloWorldSubscriber::run(
uint32_t samples)
{
stop_ = false;
if (samples > 0)
{
std::cout << "Subscriber running until " << samples <<
" samples have been received. Please press CTRL+C to stop the Subscriber at any time." << std::endl;
}
else
{
std::cout << "Subscriber running. Please press CTRL+C to stop the Subscriber." << std::endl;
}
signal(SIGINT, [](int signum)
{
std::cout << "SIGINT received, stopping Subscriber execution." << std::endl;
static_cast<void>(signum); HelloWorldSubscriber::stop();
});
std::unique_lock<std::mutex> lck(terminate_cv_mtx_);
terminate_cv_.wait(lck, []
{
return is_stopped();
});
}
|