[$(HOME)/rti_workspace//examples/connext_dds/c++/hello_world_dtls/HelloWorld_publisher.cxx]
#include <stdio.h>
#include <stdlib.h>
#include "ndds/ndds_cpp.h"
#include "HelloWorld.h"
#include "HelloWorldSupport.h"
#ifdef USE_STATIC_LINK
#include "transport_tls/transport_tls_plugin.h"
#endif
#define MSG_LENGTH 128
#ifdef RTI_WIN32
#define RTI_SNPRINTF sprintf_s
#else
#define RTI_SNPRINTF snprintf
#endif
static int publisher_shutdown(
DDSDomainParticipant *participant)
{
int status = 0;
if (participant != NULL) {
retcode = participant->delete_contained_entities();
fprintf(stderr, "delete_contained_entities error %d\n", retcode);
status = -1;
}
retcode = DDSTheParticipantFactory->delete_participant(participant);
fprintf(stderr, "delete_participant error %d\n", retcode);
status = -1;
}
}
return status;
}
extern "C" int publisher_main(int domainId, int sample_count)
{
DDSDomainParticipant *participant = NULL;
DDSPublisher *publisher = NULL;
DDSTopic *topic = NULL;
DDSDataWriter *writer = NULL;
HelloWorldDataWriter *HelloWorld_writer = NULL;
HelloWorld *instance = NULL;
const char *type_name = NULL;
int count = 0;
retcode = DDSDomainParticipantFactory::get_instance()->get_default_participant_qos(
participant_qos);
fprintf(stderr, "Failed to get default participant qos\n");
publisher_shutdown(participant);
return -1;
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.load_plugins", "dds.transport.DTLS.dtls1",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.load_plugins\n");
publisher_shutdown(participant);
}
#ifdef USE_STATIC_LINK
retcode = DDSPropertyQosPolicyHelper::add_pointer_property(
"dds.transport.DTLS.dtls1.create_function_ptr",
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.create_function_ptr\n");
publisher_shutdown(participant);
}
#else
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.DTLS.dtls1.library",
"nddstransporttls",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.library\n");
publisher_shutdown(participant);
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.DTLS.dtls1.create_function",
"NDDS_Transport_DTLS_create",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.create_function\n");
publisher_shutdown(participant);
}
#endif
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.DTLS.dtls1.tls.verify.ca_file", "cacert.pem",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.tls.verify.ca_file\n");
publisher_shutdown(participant);
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.DTLS.dtls1.tls.identity.certificate_chain_file",
"peer1.pem", DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.tls.identity.certificate_chain_file\n");
publisher_shutdown(participant);
}
participant = DDSTheParticipantFactory->create_participant(
domainId, participant_qos,
if (participant == NULL) {
fprintf(stderr, "create_participant error\n");
publisher_shutdown(participant);
return -1;
}
publisher = participant->create_publisher(
if (publisher == NULL) {
fprintf(stderr, "create_publisher error\n");
publisher_shutdown(participant);
return -1;
}
type_name = HelloWorldTypeSupport::get_type_name();
retcode = HelloWorldTypeSupport::register_type(
participant, type_name);
fprintf(stderr, "register_type error %d\n", retcode);
publisher_shutdown(participant);
return -1;
}
topic = participant->create_topic(
"Example HelloWorld",
if (topic == NULL) {
fprintf(stderr, "create_topic error\n");
publisher_shutdown(participant);
return -1;
}
writer = publisher->create_datawriter(
if (writer == NULL) {
fprintf(stderr, "create_datawriter error\n");
publisher_shutdown(participant);
return -1;
}
HelloWorld_writer = HelloWorldDataWriter::narrow(writer);
if (HelloWorld_writer == NULL) {
fprintf(stderr, "DataWriter narrow error\n");
publisher_shutdown(participant);
return -1;
}
instance = HelloWorldTypeSupport::create_data();
if (instance == NULL) {
fprintf(stderr, "HelloWorldTypeSupport::create_data error\n");
publisher_shutdown(participant);
return -1;
}
for (count=0; (sample_count == 0) || (count < sample_count); ++count) {
printf("Writing HelloWorld to DTLS, count %d\n", count);
fflush(stdout);
RTI_SNPRINTF(
instance->msg,
MSG_LENGTH,
"Hello Secure World! (%d)",
count);
instance->msg[MSG_LENGTH-1] = '\0';
retcode = HelloWorld_writer->write(*instance, instance_handle);
fprintf(stderr, "write error %d\n", retcode);
}
NDDSUtility::sleep(send_period);
}
retcode = HelloWorldTypeSupport::delete_data(instance);
fprintf(stderr, "HelloWorldTypeSupport::delete_data error %d\n", retcode);
}
return publisher_shutdown(participant);
}
#if defined(RTI_WINCE)
int wmain(int argc, wchar_t** argv)
{
int domainId = 0;
int sample_count = 0;
if (argc >= 2) {
domainId = _wtoi(argv[1]);
}
if (argc >= 3) {
sample_count = _wtoi(argv[2]);
}
return publisher_main(domainId, sample_count);
}
#elif !(defined(RTI_VXWORKS) && !defined(__RTP__)) && !defined(RTI_PSOS)
int main(int argc, char *argv[])
{
int domainId = 0;
int sample_count = 0;
if (argc >= 2) {
domainId = atoi(argv[1]);
}
if (argc >= 3) {
sample_count = atoi(argv[2]);
}
return publisher_main(domainId, sample_count);
}
#endif