// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima). // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /*! * @file PublisherApp.hpp * This header file contains the declaration of the publisher functions. * * This file was generated by the tool fastddsgen. */ #ifndef FAST_DDS_GENERATED__PUBLISHERAPP_HPP #define FAST_DDS_GENERATED__PUBLISHERAPP_HPP #include #include #include #include #include class PublisherApp : public eprosima::fastdds::dds::DataWriterListener { public: PublisherApp( const int& domain_id); ~PublisherApp(); //! Publisher matched method void on_publication_matched( eprosima::fastdds::dds::DataWriter* writer, const eprosima::fastdds::dds::PublicationMatchedStatus& info) override; //! Run publisher void run(); //! Trigger the end of execution void stop(); bool bar_ctrl(const std::map& ctrl); bool light_ctrl(const std::map& ctrl); bool print_receipt(const std::map& msg); private: //! Return the current state of execution bool is_stopped(); //! Publish a sample bool publish(); std::shared_ptr factory_; eprosima::fastdds::dds::DomainParticipant* participant_; eprosima::fastdds::dds::Publisher* publisher_; eprosima::fastdds::dds::Topic* bar_topic_; eprosima::fastdds::dds::DataWriter* bar_writer_; eprosima::fastdds::dds::TypeSupport bar_type_; eprosima::fastdds::dds::Topic* light_topic_; eprosima::fastdds::dds::DataWriter* light_writer_; eprosima::fastdds::dds::TypeSupport light_type_; eprosima::fastdds::dds::Topic* summary_topic_; eprosima::fastdds::dds::DataWriter* summary_writer_; eprosima::fastdds::dds::TypeSupport summary_type_; eprosima::fastdds::dds::Topic* print_topic_; eprosima::fastdds::dds::DataWriter* print_writer_; eprosima::fastdds::dds::TypeSupport print_type_; std::condition_variable cv_; int32_t matched_; std::mutex mutex_; const uint32_t period_ms_ = 100; // in ms uint16_t samples_sent_; std::atomic stop_; }; #endif // FAST_DDS_GENERATED__PUBLISHERAPP_HPP