[$(HOME)/rti_workspace//examples/connext_dds/c++/hello_world_wan/HelloWorld_subscriber.cxx]
#include <stdio.h>
#include <stdlib.h>
#include "ndds/ndds_cpp.h"
#include "HelloWorld.h"
#include "HelloWorldSupport.h"
#define WAN_SERVER "127.0.0.1"
#define WAN_ID "2"
class HelloWorldListener : public DDSDataReaderListener {
public:
virtual void on_requested_deadline_missed(
DDSDataReader* ,
virtual void on_requested_incompatible_qos(
DDSDataReader* ,
virtual void on_sample_rejected(
DDSDataReader* ,
virtual void on_liveliness_changed(
DDSDataReader* ,
virtual void on_sample_lost(
DDSDataReader* ,
virtual void on_subscription_matched(
DDSDataReader* ,
virtual void on_data_available(DDSDataReader* reader);
};
void HelloWorldListener::on_data_available(DDSDataReader* reader)
{
HelloWorldDataReader *HelloWorld_reader = NULL;
HelloWorldSeq data_seq;
int i;
HelloWorld_reader = HelloWorldDataReader::narrow(reader);
if (HelloWorld_reader == NULL) {
fprintf(stderr, "DataReader narrow error\n");
return;
}
retcode = HelloWorld_reader->take(
return;
fprintf(stderr, "take error %d\n", retcode);
return;
}
for (i = 0; i < data_seq.length(); ++i) {
if (info_seq[i].valid_data) {
HelloWorldTypeSupport::print_data(&data_seq[i]);
fflush(stdout);
}
}
retcode = HelloWorld_reader->return_loan(data_seq, info_seq);
fprintf(stderr, "return loan error %d\n", retcode);
}
}
static int subscriber_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 subscriber_main(int domainId, int sample_count)
{
DDSDomainParticipant *participant = NULL;
DDSSubscriber *subscriber = NULL;
DDSTopic *topic = NULL;
HelloWorldListener *reader_listener = NULL;
DDSDataReader *reader = NULL;
const char *type_name = NULL;
int count = 0;
int status = 0;
retcode = DDSDomainParticipantFactory::get_instance()->get_default_participant_qos(
participant_qos);
fprintf(stderr, "Failed to get default participant qos\n");
subscriber_shutdown(participant);
return -1;
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.load_plugins", "dds.transport.wan_plugin.wan",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.load_plugins\n");
subscriber_shutdown(participant);
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.wan_plugin.wan.library",
"nddstransportwan",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.wan_plugin.wan.library\n");
subscriber_shutdown(participant);
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.wan_plugin.wan.create_function",
"NDDS_Transport_WAN_create",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.wan_plugin.wan.create_function\n");
subscriber_shutdown(participant);
}
#ifdef USE_SECURITY
fprintf(stderr, "Enabling secure WAN transport\n");
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.wan_plugin.wan.enable_security", "1",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.wan_plugin.wan.enable_security\n");
subscriber_shutdown(participant);
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.wan_plugin.wan.tls.verify.ca_file", "cacert.pem",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.wan_plugin.wan.tls.verify.ca_file\n");
subscriber_shutdown(participant);
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.wan_plugin.wan.tls.identity.certificate_chain_file",
"peer2.pem", DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.wan_plugin.wan.tls.identity.certificate_chain_file\n");
subscriber_shutdown(participant);
}
#endif
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.wan_plugin.wan.server", WAN_SERVER,
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.wan_plugin.wan.server\n");
subscriber_shutdown(participant);
}
retcode = DDSPropertyQosPolicyHelper::add_property(
"dds.transport.wan_plugin.wan.transport_instance_id", WAN_ID,
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.wan_plugin.wan.transport_instance_id\n");
subscriber_shutdown(participant);
}
participant = DDSTheParticipantFactory->create_participant(
domainId, participant_qos,
if (participant == NULL) {
fprintf(stderr, "create_participant error\n");
subscriber_shutdown(participant);
return -1;
}
subscriber = participant->create_subscriber(
if (subscriber == NULL) {
fprintf(stderr, "create_subscriber error\n");
subscriber_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);
subscriber_shutdown(participant);
return -1;
}
topic = participant->create_topic(
"Example HelloWorld",
if (topic == NULL) {
fprintf(stderr, "create_topic error\n");
subscriber_shutdown(participant);
return -1;
}
reader_listener = new HelloWorldListener();
if (reader_listener == NULL) {
fprintf(stderr, "listener instantiation error\n");
subscriber_shutdown(participant);
return -1;
}
reader = subscriber->create_datareader(
if (reader == NULL) {
fprintf(stderr, "create_datareader error\n");
subscriber_shutdown(participant);
delete reader_listener;
return -1;
}
for (count=0; (sample_count == 0) || (count < sample_count); ++count) {
printf("HelloWorld subscriber sleeping for %d sec...\n",
fflush(stdout);
NDDSUtility::sleep(receive_period);
}
status = subscriber_shutdown(participant);
delete reader_listener;
return status;
}
#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 subscriber_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 subscriber_main(domainId, sample_count);
}
#endif