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
|
// Copyright 2024 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 ClientPublisherApp.cpp
*
*/
#include "ClientPublisherApp.hpp"
#include <condition_variable>
#include <stdexcept>
#include <fastdds/dds/domain/DomainParticipantFactory.hpp>
#include <fastdds/dds/publisher/DataWriter.hpp>
#include <fastdds/dds/publisher/Publisher.hpp>
#include <fastdds/dds/publisher/qos/DataWriterQos.hpp>
#include <fastdds/dds/publisher/qos/PublisherQos.hpp>
#include <fastdds/rtps/transport/TCPv4TransportDescriptor.hpp>
#include <fastdds/rtps/transport/TCPv6TransportDescriptor.hpp>
#include <fastdds/rtps/transport/UDPv4TransportDescriptor.hpp>
#include <fastdds/rtps/transport/UDPv6TransportDescriptor.hpp>
#include "HelloWorldPubSubTypes.hpp"
using namespace eprosima::fastdds::dds;
namespace eprosima {
namespace fastdds {
namespace examples {
namespace discovery_server {
ClientPublisherApp::ClientPublisherApp(
const CLIParser::client_publisher_config& config)
: participant_(nullptr)
, publisher_(nullptr)
, topic_(nullptr)
, writer_(nullptr)
, type_(new HelloWorldPubSubType())
, matched_(0)
, samples_(config.samples)
, stop_(false)
, period_ms_(config.interval)
{
// Set up the data type with initial values
hello_.index(0);
hello_.message("Hello world");
// Configure Participant QoS
DomainParticipantQos pqos;
pqos.name("DS-Client_pub");
pqos.transport().use_builtin_transports = false;
uint16_t server_port = config.connection_port;
std::string ip_server_address(config.connection_address);
// Check if DNS is required
if (!is_ip(config.connection_address))
{
ip_server_address = get_ip_from_dns(config.connection_address, config.transport_kind);
}
if (ip_server_address.empty())
{
throw std::runtime_error("Invalid connection address");
}
// Create DS locator
eprosima::fastdds::rtps::Locator server_locator;
eprosima::fastdds::rtps::IPLocator::setPhysicalPort(server_locator, server_port);
std::shared_ptr<eprosima::fastdds::rtps::TransportDescriptorInterface> descriptor;
switch (config.transport_kind)
{
case TransportKind::UDPv4:
{
auto descriptor_tmp = std::make_shared<eprosima::fastdds::rtps::UDPv4TransportDescriptor>();
// descriptor_tmp->interfaceWhiteList.push_back(ip_server_address);
descriptor = descriptor_tmp;
server_locator.kind = LOCATOR_KIND_UDPv4;
eprosima::fastdds::rtps::IPLocator::setIPv4(server_locator, ip_server_address);
break;
}
case TransportKind::UDPv6:
{
auto descriptor_tmp = std::make_shared<eprosima::fastdds::rtps::UDPv6TransportDescriptor>();
// descriptor_tmp->interfaceWhiteList.push_back(ip_server_address);
descriptor = descriptor_tmp;
server_locator.kind = LOCATOR_KIND_UDPv6;
eprosima::fastdds::rtps::IPLocator::setIPv6(server_locator, ip_server_address);
break;
}
case TransportKind::TCPv4:
{
auto descriptor_tmp = std::make_shared<eprosima::fastdds::rtps::TCPv4TransportDescriptor>();
descriptor_tmp->add_listener_port(0);
descriptor = descriptor_tmp;
server_locator.kind = LOCATOR_KIND_TCPv4;
eprosima::fastdds::rtps::IPLocator::setLogicalPort(server_locator, server_port);
eprosima::fastdds::rtps::IPLocator::setIPv4(server_locator, ip_server_address);
break;
}
case TransportKind::TCPv6:
{
auto descriptor_tmp = std::make_shared<eprosima::fastdds::rtps::TCPv6TransportDescriptor>();
descriptor_tmp->add_listener_port(0);
descriptor = descriptor_tmp;
server_locator.kind = LOCATOR_KIND_TCPv6;
eprosima::fastdds::rtps::IPLocator::setLogicalPort(server_locator, server_port);
eprosima::fastdds::rtps::IPLocator::setIPv6(server_locator, ip_server_address);
break;
}
default:
break;
}
// Set participant as DS CLIENT
pqos.wire_protocol().builtin.discovery_config.discoveryProtocol =
eprosima::fastdds::rtps::DiscoveryProtocol::CLIENT;
// Add remote SERVER to CLIENT's list of SERVERs
pqos.wire_protocol().builtin.discovery_config.m_DiscoveryServers.push_back(server_locator);
// Add descriptor
pqos.transport().user_transports.push_back(descriptor);
// Create Domainparticipant
participant_ = DomainParticipantFactory::get_instance()->create_participant(0, pqos, nullptr);
if (participant_ == nullptr)
{
throw std::runtime_error("Participant initialization failed");
}
std::cout <<
"Publisher Participant " << pqos.name() <<
" created with GUID " << participant_->guid() <<
" connecting to server <" << server_locator << "> " <<
std::endl;
// Regsiter type
type_.register_type(participant_);
// Create the publisher
publisher_ = participant_->create_publisher(PUBLISHER_QOS_DEFAULT, nullptr);
if (publisher_ == nullptr)
{
throw std::runtime_error("Publisher initialization failed");
}
// Create the topic
topic_ = participant_->create_topic(config.topic_name, type_.get_type_name(), TOPIC_QOS_DEFAULT);
if (topic_ == nullptr)
{
throw std::runtime_error("Topic initialization failed");
}
// Create de data writer
DataWriterQos wqos = DATAWRITER_QOS_DEFAULT;
if (!config.reliable)
{
wqos.reliability().kind = BEST_EFFORT_RELIABILITY_QOS;
}
if (!config.transient_local)
{
wqos.durability().kind = VOLATILE_DURABILITY_QOS;
}
// So as not to overwriter the first sample
// if we publish inmediately after the discovery
// and the suscription is not prepared yet
wqos.history().depth = 5;
writer_ = publisher_->create_datawriter(topic_, wqos, this);
if (writer_ == nullptr)
{
throw std::runtime_error("DataWriter initialization failed");
}
}
ClientPublisherApp::~ClientPublisherApp()
{
if (nullptr != participant_)
{
// Delete DDS entities contained within the DomainParticipant
participant_->delete_contained_entities();
// Delete DomainParticipant
DomainParticipantFactory::get_instance()->delete_participant(participant_);
}
}
void ClientPublisherApp::on_publication_matched(
DataWriter* /*writer*/,
const PublicationMatchedStatus& info)
{
if (info.current_count_change == 1)
{
matched_ = static_cast<int16_t>(info.current_count);
std::cout << "Publisher matched." << std::endl;
cv_.notify_one();
}
else if (info.current_count_change == -1)
{
matched_ = static_cast<int16_t>(info.current_count);
std::cout << "Publisher unmatched." << std::endl;
}
else
{
std::cout << info.current_count_change
<< " is not a valid value for PublicationMatchedStatus current count change" << std::endl;
}
}
void ClientPublisherApp::run()
{
while (!is_stopped() && ((samples_ == 0) || (hello_.index() < samples_)))
{
if (publish())
{
std::cout << "Message: '" << hello_.message() << "' with index: '" << hello_.index()
<< "' SENT" << std::endl;
if (hello_.index() == 1u)
{
ReturnCode_t acked = RETCODE_ERROR;
do
{
dds::Duration_t acked_wait{1, 0};
acked = writer_->wait_for_acknowledgments(acked_wait);
}
while (acked != RETCODE_OK);
}
}
// Wait for period or stop event
std::unique_lock<std::mutex> period_lock(mutex_);
cv_.wait_for(period_lock, std::chrono::milliseconds(period_ms_), [&]()
{
return is_stopped();
});
}
}
bool ClientPublisherApp::publish()
{
bool ret = false;
// Wait for the data endpoints discovery
std::unique_lock<std::mutex> matched_lock(mutex_);
cv_.wait(matched_lock, [&]()
{
// at least one has been discovered
return ((matched_ > 0) || is_stopped());
});
if (!is_stopped())
{
hello_.index(hello_.index() + 1);
ret = (RETCODE_OK == writer_->write(&hello_));
}
return ret;
}
bool ClientPublisherApp::is_stopped()
{
return stop_.load();
}
void ClientPublisherApp::stop()
{
stop_.store(true);
cv_.notify_one();
}
} // namespace discovery_server
} // namespace examples
} // namespace fastdds
} // namespace eprosima
|