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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
/***
* Use Case Demonstrator for eProsima Fast RTPS
* --------------------------------------------
*
* This is an interactive program designed to show the effect of different configuration parameters on the behaviour of eProsima Fast RTPS
*
***/
#include <iostream>
#include <string>
#include <fastdds/dds/domain/DomainParticipant.hpp>
#include <fastdds/dds/domain/DomainParticipantFactory.hpp>
#include <fastdds/dds/subscriber/Subscriber.hpp>
#include <fastdds/dds/subscriber/DataReader.hpp>
#include <fastdds/dds/subscriber/DataReaderListener.hpp>
#include <fastdds/dds/subscriber/SampleInfo.hpp>
#include <fastdds/dds/subscriber/qos/DataReaderQos.hpp>
#include <fastdds/dds/topic/Topic.hpp>
#include "samplePubSubTypes.h"
using namespace eprosima::fastdds::dds;
using namespace eprosima::fastrtps::rtps;
//Enums and configuration structure
enum Reliability_type
{
Best_Effort, Reliable
};
enum Durability_type
{
Transient_Local, Volatile
};
enum HistoryKind_type
{
Keep_Last, Keep_All
};
struct example_configuration
{
Reliability_type reliability;
Durability_type durability;
HistoryKind_type historykind;
uint16_t history_size = 1;
uint8_t depth = 1;
uint8_t no_keys = 1;
uint16_t max_samples_per_key = 1;
};
int main()
{
std::string userchoice;
bool validinput;
example_configuration user_configuration = {};
std::cout << "Welcome to eProsima Fast DDS Configurability Example" << std::endl;
std::cout << "----------------------------------------------------" << std::endl;
std::cout << "Choose your desired reliability type:" << std::endl;
std::cout <<
"1 - Best Effort: Messages are sent with no arrival confirmation. If a sample is lost it cannot be recovered"
<< std::endl;
std::cout << "2 - Reliable: The Publisher asks for arrival confirmation. Lost samples are re-sent" << std::endl;
std::cout << "Make your choice (1 or 2): " << std::endl;
validinput = false;
while (!validinput)
{
std::cin >> userchoice;
int choice;
try
{
choice = std::stoi(userchoice);
}
catch (std::invalid_argument&)
{
std::cout << "Please input a valid argument" << std::endl;
continue;
}
if (choice == 1)
{
user_configuration.reliability = Best_Effort;
validinput = true;
}
else if (choice == 2)
{
user_configuration.reliability = Reliable;
validinput = true;
}
else
{
std::cout << "Please enter a valid option" << std::endl;
}
}
std::cout << "---------------------------------------------------" << std::endl;
std::cout << "Choose your desired Durability Type:" << std::endl;
std::cout << "1 - Transient Local: The Subscriber will receive samples that have been sent before it came online" <<
std::endl;
std::cout << "2 - Volatile: The Subscriber receives samples from the moment it comes online, not before:" <<
std::endl;
std::cout << "Make your choice (1 or 2): " << std::endl;
validinput = false;
while (!validinput)
{
std::cin >> userchoice;
int choice;
try
{
choice = std::stoi(userchoice);
}
catch (std::invalid_argument&)
{
std::cout << "Please input a valid argument" << std::endl;
continue;
}
if (choice == 1)
{
user_configuration.durability = Transient_Local;
validinput = true;
}
else if (choice == 2)
{
user_configuration.durability = Volatile;
validinput = true;
}
else
{
std::cout << "Please enter a valid option" << std::endl;
}
}
std::cout << "---------------------------------------------------" << std::endl;
std::cout << "Choose your desired History Kind:" << std::endl;
std::cout <<
"1 - Keep last: The History stores the last \"k\" received samples. \"k\" is configured as the \"depth\" parameter of the history."
<< std::endl;
std::cout << "2 - Keep all: The History stores all incoming samples until it is full." << std::endl;
std::cout << "Make your choice (1 or 2): " << std::endl;
validinput = false;
while (!validinput)
{
std::cin >> userchoice;
int choice;
try
{
choice = std::stoi(userchoice);
}
catch (std::invalid_argument&)
{
std::cout << "Please input a valid argument" << std::endl;
continue;
}
if (choice == 1)
{
user_configuration.historykind = Keep_Last;
validinput = true;
}
else if (choice == 2)
{
user_configuration.historykind = Keep_All;
validinput = true;
}
else
{
std::cout << "Please enter a valid option" << std::endl;
}
}
if (user_configuration.historykind == Keep_Last)
{
std::cout << "---------------------------------------------------" << std::endl;
std::cout <<
"The 'depth' parameter of the History defines how many samples are stored before starting to overwrite them with newer ones."
<< std::endl;
std::cout << "Select your desired History depth (enter a number)" << std::endl;
validinput = false;
while (!validinput)
{
std::cin >> userchoice;
int choice;
try
{
choice = std::stoi(userchoice);
}
catch (std::invalid_argument&)
{
std::cout << "Please input a valid argument" << std::endl;
continue;
}
user_configuration.depth = (uint8_t)choice;
validinput = true;
}
}
std::cout << "---------------------------------------------------" << std::endl;
std::cout <<
"You can split your History in 'Instances', which act as separate data sinks that end up mapping to 'Keys' on the Publisher side. If you want to use keys, choose a number bigger than one here."
<< std::endl;
std::cout << "Select your desired maximum number of instances (enter a number)" << std::endl;
validinput = false;
while (!validinput)
{
std::cin >> userchoice;
int choice;
try
{
choice = std::stoi(userchoice);
}
catch (std::invalid_argument&)
{
std::cout << "Please input a valid argument" << std::endl;
continue;
}
if (choice > 0)
{
user_configuration.no_keys = (uint8_t)choice;
}
else
{
user_configuration.no_keys = 1;
std::cout << "Defaulting to 1 instance..." << std::endl;
}
validinput = true;
}
if (user_configuration.no_keys > 1)
{
std::cout << "---------------------------------------------------" << std::endl;
std::cout <<
"If using more than one instance in the history, you can define the 'depth' on a 'per instance' level (Max Samples per Instance). Otherwise, this parameter does not take effect"
<< std::endl;
std::cout << "Select your desired instance depth (enter a number)" << std::endl;
validinput = false;
while (!validinput)
{
std::cin >> userchoice;
int choice;
try
{
choice = std::stoi(userchoice);
}
catch (std::invalid_argument&)
{
std::cout << "Please input a valid argument" << std::endl;
continue;
}
user_configuration.max_samples_per_key = (uint16_t)choice;
validinput = true;
}
}
std::cout << "---------------------------------------------------" << std::endl;
std::cout <<
"Lastly, you must define a global maximum size of the History (Max Samples). You must choose a size big enough to hold the amount of samples your previous choices indicate."
<< std::endl;
std::cout << "Select your desired history size (enter a number)" << std::endl;
validinput = false;
while (!validinput)
{
std::cin >> userchoice;
int choice;
try
{
choice = std::stoi(userchoice);
}
catch (std::invalid_argument&)
{
std::cout << "Please input a valid argument" << std::endl;
continue;
}
user_configuration.history_size = (uint16_t)choice;
validinput = true;
}
TypeSupport sampleType(new samplePubSubType());
DomainParticipantQos pqos;
pqos.wire_protocol().builtin.discovery_config.leaseDuration = eprosima::fastrtps::c_TimeInfinite;
pqos.name("SubscriberParticipant");
DomainParticipant* SubParticipant = DomainParticipantFactory::get_instance()->create_participant(0, pqos);
if (SubParticipant == nullptr)
{
std::cout << " Something went wrong while creating the Subscriber Participant..." << std::endl;
return 1;
}
//Register the type
sampleType.register_type(SubParticipant);
//Create Subscriber
Subscriber* EarlySubscriber = SubParticipant->create_subscriber(SUBSCRIBER_QOS_DEFAULT);
if (EarlySubscriber == nullptr)
{
std::cout << "Something went wrong while creating the Subscriber..." << std::endl;
return 1;
}
//Create Topic
Topic* SubTopic = SubParticipant->create_topic("samplePubSubTopic", sampleType.get_type_name(), TOPIC_QOS_DEFAULT);
if (SubTopic == nullptr)
{
std::cout << "Something went wrong while creating the Subscriber Topic..." << std::endl;
return 1;
}
//Create DataReader
DataReaderQos rqos;
rqos.endpoint().history_memory_policy = DYNAMIC_RESERVE_MEMORY_MODE;
if (user_configuration.historykind == Keep_Last)
{
rqos.history().kind = KEEP_LAST_HISTORY_QOS;
}
else
{
rqos.history().kind = KEEP_ALL_HISTORY_QOS;
}
if (user_configuration.durability == Transient_Local)
{
rqos.durability().kind = TRANSIENT_LOCAL_DURABILITY_QOS;
}
else
{
rqos.durability().kind = VOLATILE_DURABILITY_QOS;
}
if (user_configuration.reliability == Reliable)
{
rqos.reliability().kind = RELIABLE_RELIABILITY_QOS;
}
else
{
rqos.reliability().kind = BEST_EFFORT_RELIABILITY_QOS;
}
rqos.history().depth = user_configuration.depth;
rqos.resource_limits().max_samples = user_configuration.history_size;
rqos.resource_limits().max_instances = user_configuration.no_keys;
rqos.resource_limits().max_samples_per_instance = user_configuration.no_keys > 1 ?
user_configuration.max_samples_per_key : user_configuration.history_size;
DataReader* EarlyReader = EarlySubscriber->create_datareader(SubTopic, rqos);
if (EarlyReader == nullptr)
{
std::cout << "Something went wrong while creating the Subscriber DataReader..." << std::endl;
return 1;
}
std::cout << "Subscriber online" << std::endl;
std::string c;
bool condition = true;
sample my_sample;
SampleInfo sample_info;
while (condition)
{
std::cout << "Press 'r' to read Messages from the History or 'q' to quit" << std::endl;
std::cin >> c;
if ( c == std::string("q"))
{
condition = false;
}
else if ( c == std::string("r"))
{
while (EarlyReader->read_next_sample(&my_sample, &sample_info) == ReturnCode_t::RETCODE_OK)
{
std::cout << "Sample Received! Index:" << std::to_string(my_sample.index()) << " Key:" <<
std::to_string(my_sample.key_value()) << std::endl;
}
}
}
EarlySubscriber->delete_datareader(EarlyReader);
SubParticipant->delete_subscriber(EarlySubscriber);
SubParticipant->delete_topic(SubTopic);
DomainParticipantFactory::get_instance()->delete_participant(SubParticipant);
return 0;
}
|