/******************************************************************************* (c) 2005-2015 Copyright, Real-Time Innovations, Inc. All rights reserved. RTI grants Licensee a license to use, modify, compile, and create derivative works of the Software. Licensee has the right to distribute object form only for use with RTI products. The Software is provided "as is", with no warranty of any type, including any warranty for fitness for any purpose. RTI is under no obligation to maintain or support the Software. RTI shall not be liable for any incidental or consequential damages arising out of the use or inability to use the software. ******************************************************************************/ #include #include #include "hello_world.hpp" #include using namespace dds::core; using namespace dds::domain; using namespace dds::topic; using namespace dds::pub; using namespace dds::pub::qos; void publisher_main( int domain_id, int sample_count, int initial_value, bool use_durable_writer_history, int sleep) { // Create a DomainParticipant with default Qos DomainParticipant participant(domain_id); // Create a Topic -- and automatically register the type Topic topic(participant, "Example hello_world"); // If you use Durable Writer History, you need to set several properties. // These properties are set in the USER_QOS_PROFILE.xml file, // "durable_writer_history_Profile" profile. See that file for further // details. std::string qos_libname = "persistence_example_Library"; DataWriterQos writer_qos = use_durable_writer_history ? QosProvider::Default().datawriter_qos( qos_libname + "::durable_writer_history_Profile") : QosProvider::Default().datawriter_qos( qos_libname + "::persistence_service_Profile"); // Create a DataWriter (Publisher created in-line) DataWriter writer(Publisher(participant), topic, writer_qos); hello_world sample; for (int count = 0; count < sample_count || sample_count == 0; count++) { std::cout << "Writing hello_world, count " << count << std::endl; sample.data(initial_value++); writer.write(sample); rti::util::sleep(Duration(1)); } while (sleep != 0) { rti::util::sleep(Duration(1)); sleep--; } } int main(int argc, char *argv[]) { int domain_id = 0; int sample_count = 0; // Infinite loop int initial_value = 0; bool use_durable_writer_history = false; int sleep = 0; for (int i = 1; i < argc;) { const std::string ¶m = argv[i++]; if (param == "-sleep" && i < argc) { sleep = atoi(argv[i++]); } else if (param == "-domain_id" && i < argc) { domain_id = atoi(argv[i++]); } else if (param == "-sample_count" && i < argc) { sample_count = atoi(argv[i++]); } else if (param == "-initial_value" && i < argc) { initial_value = atoi(argv[i++]); } else if (param == "-dwh" && i < argc) { use_durable_writer_history = (atoi(argv[i++]) == 1); } else { std::cout << argv[0] << " [options]" << std::endl << "\t-domain_id (default: 0)" << std::endl << "\t-sample_count " << "(default: 0 (infinite))" << std::endl << "\t-initial_value (default: 0)" << std::endl << "\t-sleep " << "(default: 0)" << std::endl << "\t-dwh <1|0> Enable/Disable durable writer history " << "(default: 0)" << std::endl; return -1; } } // To turn on additional logging, include and // uncomment the following line: // rti::config::Logger::instance().verbosity(rti::config::Verbosity::STATUS_ALL); try { publisher_main( domain_id, sample_count, initial_value, use_durable_writer_history, sleep); } catch (const std::exception &ex) { // This will catch DDS exceptions std::cerr << "Exception in publisher_main: " << ex.what() << std::endl; return -1; } return 0; }