// 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 #include "MsgHandler.hpp" 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(std::shared_ptr handler); //! Trigger the end of execution void stop(); 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* topic_; eprosima::fastdds::dds::DataWriter* writer_; eprosima::fastdds::dds::TypeSupport 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