#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include "HelloWorld.h"
#include "HelloWorldSupport.h"
#include "ndds/ndds_cpp.h"
#include "application.h"
using namespace application;
static int shutdown_participant(
const char *shutdown_message,
int status);
unsigned int process_data(HelloWorldDataReader *typed_reader)
{
HelloWorldSeq data_seq;
unsigned int samples_read = 0;
typed_reader->take(
data_seq,
info_seq,
for (int i = 0; i < data_seq.length(); ++i) {
if (info_seq[i].valid_data) {
std::cout << "Received data" << std::endl;
HelloWorldTypeSupport::print_data(&data_seq[i]);
samples_read++;
} else {
std::cout << "Received instance state notification" << std::endl;
}
}
std::cerr << "return loan error " << retcode << std::endl;
}
return samples_read;
}
int run_subscriber_application(unsigned int domain_id, unsigned int sample_count)
{
domain_id,
NULL ,
if (participant == NULL) {
return shutdown_participant(participant, "create_participant error", EXIT_FAILURE);
}
NULL ,
if (subscriber == NULL) {
return shutdown_participant(participant, "create_subscriber error", EXIT_FAILURE);
}
const char *type_name = HelloWorldTypeSupport::get_type_name();
HelloWorldTypeSupport::register_type(participant, type_name);
return shutdown_participant(participant, "register_type error", EXIT_FAILURE);
}
"Example HelloWorld",
type_name,
NULL ,
if (topic == NULL) {
return shutdown_participant(participant, "create_topic error", EXIT_FAILURE);
}
topic,
NULL,
if (untyped_reader == NULL) {
return shutdown_participant(participant, "create_datareader error", EXIT_FAILURE);
}
HelloWorldDataReader *typed_reader =
HelloWorldDataReader::narrow(untyped_reader);
if (typed_reader == NULL) {
return shutdown_participant(participant, "DataReader narrow error", EXIT_FAILURE);
}
if (read_condition == NULL) {
return shutdown_participant(participant, "create_readcondition error", EXIT_FAILURE);
}
return shutdown_participant(participant, "attach_condition error", EXIT_FAILURE);
}
unsigned int samples_read = 0;
while (!shutdown_requested && samples_read < sample_count) {
retcode = waitset.
wait(active_conditions_seq, wait_timeout);
samples_read += process_data(typed_reader);
} else {
std::cout << "No data after 1 second" << std::endl;
}
}
}
return shutdown_participant(participant, "Shutting down", 0);
}
static int shutdown_participant(
const char *shutdown_message,
int status)
{
std::cout << shutdown_message << std::endl;
if (participant != NULL) {
std::cerr << "delete_contained_entities error" << retcode
<< std::endl;
status = EXIT_FAILURE;
}
std::cerr << "delete_participant error" << retcode << std::endl;
status = EXIT_FAILURE;
}
}
return status;
}
int main(int argc, char *argv[])
{
ApplicationArguments arguments;
parse_arguments(arguments, argc, argv);
if (arguments.parse_result == PARSE_RETURN_EXIT) {
return EXIT_SUCCESS;
} else if (arguments.parse_result == PARSE_RETURN_FAILURE) {
return EXIT_FAILURE;
}
setup_signal_handlers();
int status = run_subscriber_application(arguments.domain_id, arguments.sample_count);
std::cerr << "finalize_instance error" << retcode << std::endl;
status = EXIT_FAILURE;
}
return status;
}
<<interface>> Allows the application to: (1) declare the data it wishes to receive (i....
Definition: subscription.ifcxx:565
static DDS_ReturnCode_t finalize_instance()
<<extension>> Destroys the singleton instance of this class.
<<interface>> Container for all DDSDomainEntity objects.
Definition: domain.ifcxx:191
virtual DDS_ReturnCode_t delete_contained_entities()=0
Delete all the entities that were created by means of the "create" operations on the DDSDomainPartici...
virtual DDSTopic * create_topic(const char *topic_name, const char *type_name, const DDS_TopicQos &qos, DDSTopicListener *listener, DDS_StatusMask mask)=0
Creates a DDSTopic with the desired QoS policies and attaches to it the specified DDSTopicListener.
virtual DDSSubscriber * create_subscriber(const DDS_SubscriberQos &qos, DDSSubscriberListener *listener, DDS_StatusMask mask)=0
Creates a DDSSubscriber with the desired QoS policies and attaches to it the specified DDSSubscriberL...
<<interface>> Conditions specifically dedicated to read operations and attached to one DDSDataReader.
Definition: subscription.ifcxx:247
<<interface>> A subscriber is the object responsible for actually receiving data from a subscription.
Definition: subscription.ifcxx:366
virtual DDSDataReader * create_datareader(DDSTopicDescription *topic, const DDS_DataReaderQos &qos, DDSDataReaderListener *listener, DDS_StatusMask mask)=0
Creates a DDSDataReader that will be attached and belong to the DDSSubscriber.
<<interface>> The most basic description of the data to be published and subscribed.
Definition: topic.ifcxx:257
<<interface>> Allows an application to wait until one or more of the attached DDSCondition objects ha...
Definition: dds_cpp.1.0/interface/infrastructure.ifcxx:281
virtual DDS_ReturnCode_t attach_condition(DDSCondition *cond)
Attaches a DDSCondition to the DDSWaitSet.
virtual DDS_ReturnCode_t wait(DDSConditionSeq &active_conditions, const DDS_Duration_t &timeout)
Allows an application thread to wait for the occurrence of certain conditions.
static NDDSConfigLogger * get_instance()
Get the singleton instance of this type.
void set_verbosity(NDDS_Config_LogVerbosity verbosity)
Set the verbosity at which RTI Connext will log diagnostic information.
const struct DDS_DomainParticipantQos DDS_PARTICIPANT_QOS_DEFAULT
Special value for creating a DomainParticipant with default QoS.
#define DDSTheParticipantFactory
Can be used as an alias for the singleton factory returned by the operation DDSDomainParticipantFacto...
Definition: domain.ifcxx:1228
const struct DDS_SubscriberQos DDS_SUBSCRIBER_QOS_DEFAULT
Special value for creating a DDSSubscriber with default QoS.
const struct DDS_TopicQos DDS_TOPIC_QOS_DEFAULT
Special value for creating a DDSTopic with default QoS.
const DDS_InstanceStateMask DDS_ANY_INSTANCE_STATE
Any instance state ALIVE_INSTANCE_STATE | NOT_ALIVE_DISPOSED_INSTANCE_STATE | NOT_ALIVE_NO_WRITERS_IN...
const DDS_Long DDS_LENGTH_UNLIMITED
A special value indicating an unlimited quantity.
DDS_ReturnCode_t
Type for return codes.
Definition: infrastructure.ifc:1351
@ DDS_RETCODE_OK
Successful return.
Definition: infrastructure.ifc:1354
@ DDS_RETCODE_TIMEOUT
The operation timed out.
Definition: infrastructure.ifc:1394
const DDS_SampleStateMask DDS_ANY_SAMPLE_STATE
Any sample state DDS_READ_SAMPLE_STATE | DDS_NOT_READ_SAMPLE_STATE.
@ DDS_NOT_READ_SAMPLE_STATE
Sample has not been read.
Definition: subscription.ifc:1050
#define DDS_STATUS_MASK_NONE
No bits are set.
Definition: infrastructure.ifc:1425
const struct DDS_DataReaderQos DDS_DATAREADER_QOS_DEFAULT
Special value for creating data reader with default QoS.
const DDS_ViewStateMask DDS_ANY_VIEW_STATE
Any view state DDS_NEW_VIEW_STATE | DDS_NOT_NEW_VIEW_STATE.
Instantiates FooSeq < DDSCondition >
Definition: dds_cpp.1.0/interface/infrastructure.ifcxx:126
Type for duration representation.
Definition: infrastructure.ifc:444
Declares IDL sequence < DDS_SampleInfo > .
Definition: subscription.ifc:1348