/* * Copyright 2015 Institut Laue-Langevin * * Licensed under the EUPL, Version 1.1 only (the "License"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * * http://joinup.ec.europa.eu/software/page/eupl * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. */ #ifndef CAMEO_PUBLISHERIMPL_H_ #define CAMEO_PUBLISHERIMPL_H_ #include "GenericWaitingImpl.h" #include "zmq.hpp" #include #include namespace cameo { namespace application { class This; } class PublisherImpl { public: PublisherImpl(application::This * application, int publisherPort, int synchronizerPort, const std::string& name, int numberOfSubscribers); ~PublisherImpl(); const std::string& getName() const; const std::string& getApplicationName() const; int getApplicationId() const; const std::string& getApplicationEndpoint() const; bool waitForSubscribers(); void cancelWaitForSubscribers(); WaitingImpl * waiting(); void sendBinary(const std::string& data); void send(const std::string& data); void sendTwoBinaryParts(const std::string& data1, const std::string& data2); void setEnd(); bool isEnded(); void terminate(); void publish(const std::string& header, const char* data, std::size_t size); void publishTwoParts(const std::string& header, const char* data1, std::size_t size1, const char* data2, std::size_t size2); zmq::message_t * processInitCommand(); zmq::message_t * processSubscribePublisherCommand(); zmq::message_t * processCancelPublisherSyncCommand(); application::This * m_application; int m_publisherPort; int m_synchronizerPort; std::string m_name; int m_numberOfSubscribers; std::unique_ptr m_publisher; bool m_ended; }; } #endif