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
|
#include <iostream>
#include <string>
#include <fastdds/dds/domain/DomainParticipant.hpp>
#include <fastdds/dds/domain/DomainParticipantFactory.hpp>
#include <fastdds/dds/publisher/Publisher.hpp>
#include <fastdds/dds/publisher/DataWriter.hpp>
#include <fastdds/dds/publisher/DataWriterListener.hpp>
#include <fastdds/dds/subscriber/Subscriber.hpp>
#include <fastdds/dds/subscriber/SampleInfo.hpp>
#include <fastdds/dds/subscriber/DataReader.hpp>
#include <fastdds/dds/subscriber/DataReaderListener.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;
void safest();
int main()
{
safest();
return 0;
}
void safest()
{
TypeSupport sampleType(new samplePubSubType());
sample my_sample;
SampleInfo sample_info;
//Create Publisher Participant
DomainParticipantQos ppqos;
ppqos.wire_protocol().builtin.discovery_config.leaseDuration = eprosima::fastrtps::c_TimeInfinite;
ppqos.name("PublisherParticipant");
DomainParticipant* PubParticipant = DomainParticipantFactory::get_instance()->create_participant(0, ppqos);
if (PubParticipant == nullptr)
{
std::cout << " Something went wrong while creating the Publisher Participant..." << std::endl;
return;
}
//Register Type
sampleType.register_type(PubParticipant);
//Create Publisher
std::cout << "Creating Reliable Publisher..." << std::endl;
Publisher* myPub = PubParticipant->create_publisher(PUBLISHER_QOS_DEFAULT);
if (myPub == nullptr)
{
std::cout << "Something went wrong while creating the Publisher..." << std::endl;
return;
}
//Create Topic
Topic* PubTopic = PubParticipant->create_topic("samplePubSubTopic", sampleType.get_type_name(), TOPIC_QOS_DEFAULT);
if (PubTopic == nullptr)
{
std::cout << " Something went wrong while creating the Publisher Topic..." << std::endl;
return;
}
//Create DataWriter
DataWriterQos wqos;
wqos.endpoint().history_memory_policy = DYNAMIC_RESERVE_MEMORY_MODE;
wqos.history().kind = KEEP_LAST_HISTORY_QOS;
wqos.durability().kind = TRANSIENT_LOCAL_DURABILITY_QOS;
wqos.reliability().kind = RELIABLE_RELIABILITY_QOS;
wqos.history().depth = 50;
DataWriter* myWriter = myPub->create_datawriter(PubTopic, wqos);
if (myWriter == nullptr)
{
std::cout << " Something went wrong while creating the Publisher DataWriter..." << std::endl;
return;
}
//Create Subscriber Participant
DomainParticipantQos psqos;
psqos.wire_protocol().builtin.discovery_config.leaseDuration = eprosima::fastrtps::c_TimeInfinite;
psqos.name("SubscriberParticipant");
DomainParticipant* SubParticipant = DomainParticipantFactory::get_instance()->create_participant(0, psqos);
if (SubParticipant == nullptr)
{
std::cout << " Something went wrong while creating the Subscriber Participant..." << std::endl;
return;
}
//Register Type
sampleType.register_type(SubParticipant);
//Create Subscriber
std::cout << "Creating Subscriber..." << std::endl;
Subscriber* mySub = SubParticipant->create_subscriber(SUBSCRIBER_QOS_DEFAULT);
if (mySub == nullptr)
{
std::cout << "something went wrong while creating the Subscriber..." << std::endl;
return;
}
//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;
}
//Create DataReader
DataReaderQos rqos;
rqos.endpoint().history_memory_policy = DYNAMIC_RESERVE_MEMORY_MODE;
rqos.history().kind = KEEP_LAST_HISTORY_QOS;
rqos.durability().kind = TRANSIENT_LOCAL_DURABILITY_QOS;
rqos.reliability().kind = RELIABLE_RELIABILITY_QOS;
rqos.history().depth = 50;
DataReader* myReader = mySub->create_datareader(SubTopic, rqos);
if (myReader == nullptr)
{
std::cout << " Something went wrong while creating the Subscriber DataReader..." << std::endl;
return;
}
//Send 4 samples on 2 keys
std::cout << "Publishing 8 samples distributed on 2 keys..." << std::endl;
my_sample.key_value(1);
for (uint8_t j = 1; j <= 4; j++)
{
my_sample.index(j);
myWriter->write(&my_sample);
}
my_sample.key_value(2);
for (uint8_t j = 5; j <= 8; j++)
{
my_sample.index(j);
myWriter->write(&my_sample);
}
std::this_thread::sleep_for(std::chrono::milliseconds(1500));
//Read the contents of both histories:
std::cout << "The Reliable Subscriber holds: " << std::endl;
while (myReader->read_next_sample(&my_sample, &sample_info) == ReturnCode_t::RETCODE_OK)
{
std::cout << std::to_string(my_sample.index()) << " (key " << static_cast<int>(my_sample.key_value()) << ")" <<
std::endl;
}
std::cout << std::endl;
myPub->delete_datawriter(myWriter);
PubParticipant->delete_publisher(myPub);
PubParticipant->delete_topic(PubTopic);
DomainParticipantFactory::get_instance()->delete_participant(PubParticipant);
mySub->delete_datareader(myReader);
SubParticipant->delete_subscriber(mySub);
SubParticipant->delete_topic(SubTopic);
DomainParticipantFactory::get_instance()->delete_participant(SubParticipant);
}
|