mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
Fix Weffc++ warnings - Add missing copy constructors and assignment operators . - Hide the warning from FairMQStateMachine.h where it is produced by boost and/or is intended. - Some code cleanup.
222 lines
9.6 KiB
C++
222 lines
9.6 KiB
C++
/********************************************************************************
|
|
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
|
* *
|
|
* This software is distributed under the terms of the *
|
|
* GNU Lesser General Public Licence version 3 (LGPL) version 3, *
|
|
* copied verbatim in the file "LICENSE" *
|
|
********************************************************************************/
|
|
/**
|
|
* FairMQChannel.h
|
|
*
|
|
* @since 2015-06-02
|
|
* @author A. Rybalchenko
|
|
*/
|
|
|
|
#ifndef FAIRMQCHANNEL_H_
|
|
#define FAIRMQCHANNEL_H_
|
|
|
|
#include <string>
|
|
#include <memory> // unique_ptr
|
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
#include "FairMQTransportFactory.h"
|
|
#include "FairMQSocket.h"
|
|
#include "FairMQPoller.h"
|
|
|
|
class FairMQPoller;
|
|
class FairMQTransportFactory;
|
|
|
|
class FairMQChannel
|
|
{
|
|
friend class FairMQDevice;
|
|
|
|
public:
|
|
/// Default constructor
|
|
FairMQChannel();
|
|
|
|
/// Constructor
|
|
/// @param type Socket type (push/pull/pub/sub/spub/xsub/pair/req/rep/dealer/router/)
|
|
/// @param method Socket method (bind/connect)
|
|
/// @param address Network address to bind/connect to (e.g. "tcp://127.0.0.1:5555" or "ipc://abc")
|
|
FairMQChannel(const std::string& type, const std::string& method, const std::string& address);
|
|
|
|
/// Copy Constructor
|
|
FairMQChannel(const FairMQChannel&);
|
|
|
|
/// Assignment operator
|
|
FairMQChannel& operator=(const FairMQChannel&);
|
|
|
|
/// Default destructor
|
|
virtual ~FairMQChannel();
|
|
|
|
/// Get socket type
|
|
/// @return Returns socket type (push/pull/pub/sub/spub/xsub/pair/req/rep/dealer/router/)
|
|
std::string GetType() const;
|
|
/// Get socket method
|
|
/// @return Returns socket method (bind/connect)
|
|
std::string GetMethod() const;
|
|
/// Get socket address (e.g. "tcp://127.0.0.1:5555" or "ipc://abc")
|
|
/// @return Returns socket type (e.g. "tcp://127.0.0.1:5555" or "ipc://abc")
|
|
std::string GetAddress() const;
|
|
/// Get socket send buffer size (in number of messages)
|
|
/// @return Returns socket send buffer size (in number of messages)
|
|
int GetSndBufSize() const;
|
|
/// Get socket receive buffer size (in number of messages)
|
|
/// @return Returns socket receive buffer size (in number of messages)
|
|
int GetRcvBufSize() const;
|
|
/// Get socket rate logging setting (1/0)
|
|
/// @return Returns socket rate logging setting (1/0)
|
|
int GetRateLogging() const;
|
|
|
|
/// Set socket type
|
|
/// @param type Socket type (push/pull/pub/sub/spub/xsub/pair/req/rep/dealer/router/)
|
|
void UpdateType(const std::string& type);
|
|
/// Set socket method
|
|
/// @param method Socket method (bind/connect)
|
|
void UpdateMethod(const std::string& method);
|
|
/// Set socket address
|
|
/// @param address Socket address (e.g. "tcp://127.0.0.1:5555" or "ipc://abc")
|
|
void UpdateAddress(const std::string& address);
|
|
/// Set socket send buffer size
|
|
/// @param sndBufSize Socket send buffer size (in number of messages)
|
|
void UpdateSndBufSize(const int sndBufSize);
|
|
/// Set socket receive buffer size
|
|
/// @param rcvBufSize Socket receive buffer size (in number of messages)
|
|
void UpdateRcvBufSize(const int rcvBufSize);
|
|
/// Set socket rate logging setting
|
|
/// @param rateLogging Socket rate logging setting (1/0)
|
|
void UpdateRateLogging(const int rateLogging);
|
|
|
|
/// Checks if the configured channel settings are valid (checks the validity parameter, without running full validation (as oposed to ValidateChannel()))
|
|
/// @return true if channel settings are valid, false otherwise.
|
|
bool IsValid() const;
|
|
|
|
/// Validates channel configuration
|
|
/// @return true if channel settings are valid, false otherwise.
|
|
bool ValidateChannel();
|
|
|
|
/// Resets the channel (requires validation to be used again).
|
|
void ResetChannel();
|
|
|
|
FairMQSocket* fSocket;
|
|
|
|
/// Sends a message to the socket queue.
|
|
/// @details Send method attempts to send a message by
|
|
/// putting it in the output queue. If the queue is full or queueing is not possible
|
|
/// for some other reason (e.g. no peers connected for a binding socket), the method blocks.
|
|
///
|
|
/// @param msg Constant reference of unique_ptr to a FairMQMessage
|
|
/// @return Number of bytes that have been queued. -2 If queueing was not possible or timed out. In case of errors, returns -1.
|
|
int Send(const std::unique_ptr<FairMQMessage>& msg) const;
|
|
|
|
/// Sends a message in non-blocking mode.
|
|
/// @details SendAsync method attempts to send a message without blocking by
|
|
/// putting it in the queue. If the queue is full or queueing is not possible
|
|
/// for some other reason (e.g. no peers connected for a binding socket), the method returns 0.
|
|
///
|
|
/// @param msg Constant reference of unique_ptr to a FairMQMessage
|
|
/// @return Returns the number of bytes that have been queued. If queueing failed due to
|
|
/// full queue or no connected peers (when binding), returns -2. In case of errors, returns -1.
|
|
int SendAsync(const std::unique_ptr<FairMQMessage>& msg) const;
|
|
|
|
/// Queues the current message as a part of a multi-part message
|
|
/// @details SendPart method queues the provided message as a part of a multi-part message.
|
|
/// The actual transfer over the network is initiated once final part has been queued with the Send() or SendAsync() methods.
|
|
///
|
|
/// @param msg Constant reference of unique_ptr to a FairMQMessage
|
|
/// @return Returns the number of bytes that have been queued. -2 If queueing was not possible. In case of errors, returns -1.
|
|
int SendPart(const std::unique_ptr<FairMQMessage>& msg) const;
|
|
|
|
/// Queues the current message as a part of a multi-part message without blocking
|
|
/// @details SendPart method queues the provided message as a part of a multi-part message without blocking.
|
|
/// The actual transfer over the network is initiated once final part has been queued with the Send() or SendAsync() methods.
|
|
///
|
|
/// @param msg Constant reference of unique_ptr to a FairMQMessage
|
|
/// @return Returns the number of bytes that have been queued. -2 If queueing was not possible. In case of errors, returns -1.
|
|
int SendPartAsync(const std::unique_ptr<FairMQMessage>& msg) const;
|
|
|
|
// /// Sends the messages provided as arguments as a multi-part message.
|
|
// ///
|
|
// /// @param partsList Initializer list of FairMQMessages
|
|
// /// @return Returns the number of bytes that have been queued. -2 If queueing was not possible. In case of errors, returns -1.
|
|
// int SendParts(std::initializer_list<std::unique_ptr<FairMQMessage>> partsList) const;
|
|
|
|
/// Receives a message from the socket queue.
|
|
/// @details Receive method attempts to receive a message from the input queue.
|
|
/// If the queue is empty the method blocks.
|
|
///
|
|
/// @param msg Constant reference of unique_ptr to a FairMQMessage
|
|
/// @return Returns the number of bytes that have been received. -2 If reading from the queue was not possible or timed out. In case of errors, returns -1.
|
|
int Receive(const std::unique_ptr<FairMQMessage>& msg) const;
|
|
|
|
/// Receives a message in non-blocking mode.
|
|
/// @details ReceiveAsync method attempts to receive a message without blocking from the input queue.
|
|
/// If the queue is empty the method returns 0.
|
|
///
|
|
/// @param msg Constant reference of unique_ptr to a FairMQMessage
|
|
/// @return Returns the number of bytes that have been received. If queue is empty, returns -2.
|
|
/// In case of errors, returns -1.
|
|
int ReceiveAsync(const std::unique_ptr<FairMQMessage>& msg) const;
|
|
|
|
// DEPRECATED socket method wrappers with raw pointers and flag checks
|
|
int Send(FairMQMessage* msg, const std::string& flag = "") const;
|
|
int Send(FairMQMessage* msg, const int flags) const;
|
|
int Receive(FairMQMessage* msg, const std::string& flag = "") const;
|
|
int Receive(FairMQMessage* msg, const int flags) const;
|
|
|
|
/// Sets a timeout on the (blocking) Send method
|
|
/// @param timeout timeout value in milliseconds
|
|
void SetSendTimeout(const int timeout);
|
|
|
|
/// Gets the current value of the timeout on the (blocking) Send method
|
|
/// @return Timeout value in milliseconds. -1 for no timeout.
|
|
int GetSendTimeout() const;
|
|
|
|
/// Sets a timeout on the (blocking) Receive method
|
|
/// @param timeout timeout value in milliseconds
|
|
void SetReceiveTimeout(const int timeout);
|
|
|
|
/// Gets the current value of the timeout on the (blocking) Receive method
|
|
/// @return Timeout value in milliseconds. -1 for no timeout.
|
|
int GetReceiveTimeout() const;
|
|
|
|
/// Checks if the socket is expecting to receive another part of a multipart message.
|
|
/// @return Return true if the socket expects another part of a multipart message and false otherwise.
|
|
bool ExpectsAnotherPart() const;
|
|
|
|
private:
|
|
std::string fType;
|
|
std::string fMethod;
|
|
std::string fAddress;
|
|
int fSndBufSize;
|
|
int fRcvBufSize;
|
|
int fRateLogging;
|
|
|
|
std::string fChannelName;
|
|
bool fIsValid;
|
|
|
|
FairMQPoller* fPoller;
|
|
FairMQSocket* fCmdSocket;
|
|
|
|
FairMQTransportFactory* fTransportFactory;
|
|
|
|
int fNoBlockFlag;
|
|
int fSndMoreFlag;
|
|
|
|
int fSndTimeoutInMs;
|
|
int fRcvTimeoutInMs;
|
|
|
|
bool InitCommandInterface(FairMQTransportFactory* factory, int numIoThreads);
|
|
|
|
bool HandleUnblock() const;
|
|
|
|
// use static mutex to make the class easily copyable
|
|
// implication: same mutex is used for all instances of the class
|
|
// this does not hurt much, because mutex is used only during initialization with very low contention
|
|
// possible TODO: improve this
|
|
static boost::mutex fChannelMutex;
|
|
};
|
|
|
|
#endif /* FAIRMQCHANNEL_H_ */
|