Get the GUID from DDS and store it for future use. Which coul be handy for point-to-point connections over DDS.
This commit is contained in:
parent
89271e85a0
commit
9ae26d7f80
@ -84,7 +84,21 @@ SG_DDS_Topic::open(SGProtocolDir direction)
|
|||||||
bool
|
bool
|
||||||
SG_DDS_Topic::open(dds_entity_t p, SGProtocolDir direction)
|
SG_DDS_Topic::open(dds_entity_t p, SGProtocolDir direction)
|
||||||
{
|
{
|
||||||
|
dds_guid_t g;
|
||||||
|
int status = dds_get_guid(p, &g);
|
||||||
|
if (status < 0) {
|
||||||
|
SG_LOG(SG_IO, SG_ALERT, "dds_get_guid: "
|
||||||
|
<< dds_strretcode(-status));
|
||||||
|
}
|
||||||
|
return open(p, g, direction);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
SG_DDS_Topic::open(dds_entity_t p, dds_guid_t& g, SGProtocolDir direction)
|
||||||
|
{
|
||||||
|
guid = g;
|
||||||
participant = p;
|
participant = p;
|
||||||
|
|
||||||
if (topic < 0)
|
if (topic < 0)
|
||||||
{
|
{
|
||||||
topic = dds_create_topic(participant, descriptor,
|
topic = dds_create_topic(participant, descriptor,
|
||||||
@ -243,6 +257,12 @@ SG_DDS::SG_DDS(dds_domainid_t domain_id, const char *config)
|
|||||||
<< dds_strretcode(-participant));
|
<< dds_strretcode(-participant));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int status = dds_get_guid(participant, &guid);
|
||||||
|
if (status < 0) {
|
||||||
|
SG_LOG(SG_IO, SG_ALERT, "dds_get_guid: "
|
||||||
|
<< dds_strretcode(-status));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
waitset = dds_create_waitset(participant);
|
waitset = dds_create_waitset(participant);
|
||||||
@ -263,7 +283,7 @@ SG_DDS::~SG_DDS()
|
|||||||
bool
|
bool
|
||||||
SG_DDS::add(SG_DDS_Topic *topic, const SGProtocolDir d)
|
SG_DDS::add(SG_DDS_Topic *topic, const SGProtocolDir d)
|
||||||
{
|
{
|
||||||
bool result = topic->open(participant, d);
|
bool result = topic->open(participant, guid, d);
|
||||||
if (result)
|
if (result)
|
||||||
{
|
{
|
||||||
if (d == SG_IO_OUT || d == SG_IO_BI)
|
if (d == SG_IO_OUT || d == SG_IO_BI)
|
||||||
|
@ -57,6 +57,8 @@ private:
|
|||||||
dds_entity_t topic = -1;
|
dds_entity_t topic = -1;
|
||||||
dds_entity_t entry = -1;
|
dds_entity_t entry = -1;
|
||||||
|
|
||||||
|
dds_guid_t guid;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/** Create an instance of SG_DDS_Topic. */
|
/** Create an instance of SG_DDS_Topic. */
|
||||||
@ -64,9 +66,14 @@ public:
|
|||||||
|
|
||||||
SG_DDS_Topic(const char* topic, const dds_topic_descriptor_t *desc, size_t size);
|
SG_DDS_Topic(const char* topic, const dds_topic_descriptor_t *desc, size_t size);
|
||||||
|
|
||||||
|
// Store the pointer to the buffer to be able to call read() without
|
||||||
|
// any paramaters. Make sure the buffer is always available and of
|
||||||
|
// sufficient size to store a type T otherwise a segmentation fault
|
||||||
|
// will occur.
|
||||||
template<typename T>
|
template<typename T>
|
||||||
SG_DDS_Topic(T& type, const dds_topic_descriptor_t *desc) : SG_DDS_Topic() {
|
SG_DDS_Topic(T& buf, const dds_topic_descriptor_t *desc) : SG_DDS_Topic()
|
||||||
buffer = (char*)(&type);
|
{
|
||||||
|
buffer = reinterpret_cast<char*>(&buf);
|
||||||
setup<T>(desc);
|
setup<T>(desc);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,6 +84,17 @@ public:
|
|||||||
// a custom topic name.
|
// a custom topic name.
|
||||||
void setup(const char* topic, const dds_topic_descriptor_t *desc, size_t size);
|
void setup(const char* topic, const dds_topic_descriptor_t *desc, size_t size);
|
||||||
|
|
||||||
|
// Store the pointer to the buffer to be able to call read() without
|
||||||
|
// any paramaters. Make sure the buffer is always available and of
|
||||||
|
// sufficient size to store a type T otherwise a segmentation fault
|
||||||
|
// will occur.
|
||||||
|
template<typename T>
|
||||||
|
void setup(T& buf, const dds_topic_descriptor_t *desc) {
|
||||||
|
buffer = reinterpret_cast<char*>(&buf);
|
||||||
|
std::string type = simgear::getTypeName<T>();
|
||||||
|
setup(type.c_str(), desc, sizeof(T));
|
||||||
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
void setup(const dds_topic_descriptor_t *desc) {
|
void setup(const dds_topic_descriptor_t *desc) {
|
||||||
std::string type = simgear::getTypeName<T>();
|
std::string type = simgear::getTypeName<T>();
|
||||||
@ -85,22 +103,28 @@ public:
|
|||||||
|
|
||||||
// If specified as a server start a publishing participant.
|
// If specified as a server start a publishing participant.
|
||||||
// If specified as a client start a subscribing participant.
|
// If specified as a client start a subscribing participant.
|
||||||
|
// Create a new partipant and unique identifier and establish a connection.
|
||||||
bool open(const SGProtocolDir d);
|
bool open(const SGProtocolDir d);
|
||||||
|
|
||||||
// If specified as a server start publishing to a participant.
|
// Establish the connection using a shared participant.
|
||||||
// If specified as a client start subscribing to a participant.
|
// Create the unique identifier (GUID) from the shared participant.
|
||||||
bool open(dds_entity_t p, const SGProtocolDir d);
|
bool open(dds_entity_t p, const SGProtocolDir d);
|
||||||
|
|
||||||
|
// Establish the connection using a shared participant and shared GUID.
|
||||||
|
bool open(dds_entity_t p, dds_guid_t& g, const SGProtocolDir d);
|
||||||
|
|
||||||
// read data from the topic.
|
// read data from the topic.
|
||||||
int read(char *buf, int length);
|
int read(char *buf, int length);
|
||||||
|
|
||||||
|
// Calling read without any parameters requires to use de constructor
|
||||||
|
// with a buffer type.
|
||||||
int read() {
|
int read() {
|
||||||
return buffer ? read(buffer, packet_size) : 0;
|
return buffer ? read(buffer, packet_size) : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
bool read(T& sample) {
|
bool read(T& sample) {
|
||||||
return (read((char*)&sample, sizeof(T)) == sizeof(T)) ? true : false;
|
return (read(reinterpret_cast<char*>(&sample), sizeof(T)) == sizeof(T)) ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// write data to the topic.
|
// write data to the topic.
|
||||||
@ -108,13 +132,20 @@ public:
|
|||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
bool write(const T& sample) {
|
bool write(const T& sample) {
|
||||||
return (write((char*)&sample, sizeof(T)) == sizeof(T)) ? true : false;
|
return (write(reinterpret_cast<char*>(&sample), sizeof(T)) == sizeof(T)) ? true : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calling write without any parameters requires to use de constructor
|
||||||
|
// with a buffer type.
|
||||||
|
int write() {
|
||||||
|
return buffer ? write(buffer, packet_size) : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// close the participant.
|
// close the participant.
|
||||||
bool close();
|
bool close();
|
||||||
|
|
||||||
dds_entity_t get() { return entry; }
|
dds_entity_t get() { return entry; }
|
||||||
|
const dds_guid_t& get_guid() { return guid; }
|
||||||
};
|
};
|
||||||
|
|
||||||
// a class to manage multiple DDS topics
|
// a class to manage multiple DDS topics
|
||||||
@ -130,6 +161,8 @@ private:
|
|||||||
std::vector<SG_DDS_Topic*> readers;
|
std::vector<SG_DDS_Topic*> readers;
|
||||||
std::vector<SG_DDS_Topic*> writers;
|
std::vector<SG_DDS_Topic*> writers;
|
||||||
|
|
||||||
|
dds_guid_t guid;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SG_DDS(dds_domainid_t d = FG_DDS_DOMAIN, const char *c = "");
|
SG_DDS(dds_domainid_t d = FG_DDS_DOMAIN, const char *c = "");
|
||||||
|
|
||||||
@ -144,6 +177,8 @@ public:
|
|||||||
const std::vector<SG_DDS_Topic*>& get_writers() { return writers; }
|
const std::vector<SG_DDS_Topic*>& get_writers() { return writers; }
|
||||||
|
|
||||||
bool wait(float dt = std::numeric_limits<float>::max());
|
bool wait(float dt = std::numeric_limits<float>::max());
|
||||||
|
|
||||||
|
const dds_guid_t& get_guid() { return guid; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -63,24 +63,25 @@ const dds_topic_descriptor_t DDSMessageData_Msg_desc =
|
|||||||
|
|
||||||
void testSendReceive()
|
void testSendReceive()
|
||||||
{
|
{
|
||||||
|
DDSMessageData_Msg out = { 0, (char*)"testSendReceive" };
|
||||||
|
DDSMessageData_Msg in;
|
||||||
|
|
||||||
SG_DDS participant;
|
SG_DDS participant;
|
||||||
|
|
||||||
SG_DDS_Topic *writer = new SG_DDS_Topic();
|
// writer and reader store the pointer to the parsed buffers, so it knows
|
||||||
SG_DDS_Topic *reader = new SG_DDS_Topic();
|
// the buffer location and buffer size making it possible to call read()
|
||||||
|
// and write() without any parameters if the buffers remains available
|
||||||
writer->setup("DDS", &DDSMessageData_Msg_desc, sizeof(DDSMessageData_Msg));
|
// during it's lifetime.
|
||||||
reader->setup("DDS", &DDSMessageData_Msg_desc, sizeof(DDSMessageData_Msg));
|
SG_DDS_Topic *writer = new SG_DDS_Topic(out, &DDSMessageData_Msg_desc);
|
||||||
|
SG_DDS_Topic *reader = new SG_DDS_Topic(in, &DDSMessageData_Msg_desc);
|
||||||
|
|
||||||
participant.add(writer, SG_IO_OUT);
|
participant.add(writer, SG_IO_OUT);
|
||||||
participant.add(reader, SG_IO_IN);
|
participant.add(reader, SG_IO_IN);
|
||||||
|
|
||||||
DDSMessageData_Msg out = { 0, (char*)"testSendReceive" };
|
writer->write();
|
||||||
DDSMessageData_Msg in;
|
|
||||||
|
|
||||||
writer->write((char*)&out, sizeof(out));
|
|
||||||
|
|
||||||
participant.wait();
|
participant.wait();
|
||||||
reader->read((char*)&in, sizeof(in));
|
reader->read();
|
||||||
|
|
||||||
SG_VERIFY(in.userID == out.userID);
|
SG_VERIFY(in.userID == out.userID);
|
||||||
SG_VERIFY(!strcmp(in.message, out.message));
|
SG_VERIFY(!strcmp(in.message, out.message));
|
||||||
|
Loading…
Reference in New Issue
Block a user