mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
- FairMQ: add possibility to poll on multiple channels. - FairMQ: include command channel when polling on blocking calls (for unblocking without termination). - FairMQ: move signal handler inside of FairMQDevice class (call FairMQDevice::CatchSignals() in the main function). - FairMQ: add 'bool CheckCurrentState(statename)' (instead of 'GetCurrentState() == statename' that cannot be thread safe). - FairMQDevice: add 'InteractiveStateLoop()' method that can be used to change states from the command line. - FairMQDevice: add automatic transition to IDLE state if Run() exits without an external event. - FairMQDevice: implement device reset. - FairMQDevice: use unordered_map for device channels. - FairMQChannel: improve address validation for channels. - FairMQChannel: add ExpectsAnotherPart() method to check if another msg part is expected (old approach still works). - FairMQ: remove invalid transition from the run files. - FairMQFileSink: disable ROOT termination signal handler. - Tutorial3: spawn xterm windows from start scripts without overlapping for better visibility. - FairMQ Examples: update protobuf test and move its files to a common directory. - FairMQStateMachine: improve feedback on invalid transitions (more readable).
198 lines
5.0 KiB
C++
198 lines
5.0 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" *
|
|
********************************************************************************/
|
|
/**
|
|
* FairMQPollerZMQ.cxx
|
|
*
|
|
* @since 2014-01-23
|
|
* @author A. Rybalchenko
|
|
*/
|
|
|
|
#include <zmq.h>
|
|
|
|
#include "FairMQPollerZMQ.h"
|
|
#include "FairMQLogger.h"
|
|
|
|
using namespace std;
|
|
|
|
FairMQPollerZMQ::FairMQPollerZMQ(const vector<FairMQChannel>& channels)
|
|
: items()
|
|
, fNumItems(0)
|
|
, fOffsetMap()
|
|
{
|
|
fNumItems = channels.size();
|
|
items = new zmq_pollitem_t[fNumItems];
|
|
|
|
for (int i = 0; i < fNumItems; ++i)
|
|
{
|
|
items[i].socket = channels.at(i).fSocket->GetSocket();
|
|
items[i].fd = 0;
|
|
items[i].events = ZMQ_POLLIN;
|
|
items[i].revents = 0;
|
|
}
|
|
}
|
|
|
|
FairMQPollerZMQ::FairMQPollerZMQ(map< string,vector<FairMQChannel> >& channelsMap, initializer_list<string> channelList)
|
|
: items()
|
|
, fNumItems(0)
|
|
, fOffsetMap()
|
|
{
|
|
int offset = 0;
|
|
|
|
try
|
|
{
|
|
// calculate offsets and the total size of the poll item set
|
|
for (string channel : channelList)
|
|
{
|
|
fOffsetMap[channel] = offset;
|
|
offset += channelsMap.at(channel).size();
|
|
fNumItems += channelsMap.at(channel).size();
|
|
}
|
|
|
|
items = new zmq_pollitem_t[fNumItems];
|
|
|
|
int index = 0;
|
|
for (string channel : channelList)
|
|
{
|
|
for (int i = 0; i < channelsMap.at(channel).size(); ++i)
|
|
{
|
|
index = fOffsetMap[channel] + i;
|
|
items[index].socket = channelsMap.at(channel).at(i).fSocket->GetSocket();
|
|
items[index].fd = 0;
|
|
items[index].events = ZMQ_POLLIN;
|
|
items[index].revents = 0;
|
|
}
|
|
}
|
|
}
|
|
catch (const std::out_of_range& oor)
|
|
{
|
|
LOG(ERROR) << "At least one of the provided channel keys for poller initialization is invalid";
|
|
LOG(ERROR) << "Out of Range error: " << oor.what() << '\n';
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
FairMQPollerZMQ::FairMQPollerZMQ(FairMQSocket& dataSocket, FairMQSocket& cmdSocket)
|
|
: items()
|
|
, fNumItems(2)
|
|
, fOffsetMap()
|
|
{
|
|
items = new zmq_pollitem_t[fNumItems];
|
|
|
|
items[0].socket = cmdSocket.GetSocket();
|
|
items[0].fd = 0;
|
|
items[0].events = ZMQ_POLLIN;
|
|
items[0].revents = 0;
|
|
|
|
items[1].socket = dataSocket.GetSocket();
|
|
items[1].fd = 0;
|
|
items[1].revents = 0;
|
|
|
|
int type = 0;
|
|
size_t size = sizeof(type);
|
|
zmq_getsockopt (dataSocket.GetSocket(), ZMQ_TYPE, &type, &size);
|
|
|
|
if (type == ZMQ_REQ || type == ZMQ_REP || type == ZMQ_PAIR || type == ZMQ_DEALER || type == ZMQ_ROUTER)
|
|
{
|
|
items[1].events = ZMQ_POLLIN|ZMQ_POLLOUT;
|
|
}
|
|
else if (type == ZMQ_PUSH || type == ZMQ_PUB || type == ZMQ_XPUB)
|
|
{
|
|
items[1].events = ZMQ_POLLOUT;
|
|
}
|
|
else if (type == ZMQ_PULL || type == ZMQ_SUB || type == ZMQ_XSUB)
|
|
{
|
|
items[1].events = ZMQ_POLLIN;
|
|
}
|
|
else
|
|
{
|
|
LOG(ERROR) << "invalid poller configuration, exiting.";
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
void FairMQPollerZMQ::Poll(const int timeout)
|
|
{
|
|
if (zmq_poll(items, fNumItems, timeout) < 0)
|
|
{
|
|
if (errno == ETERM)
|
|
{
|
|
LOG(DEBUG) << "polling exited, reason: " << zmq_strerror(errno);
|
|
}
|
|
else
|
|
{
|
|
LOG(ERROR) << "polling failed, reason: " << zmq_strerror(errno);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool FairMQPollerZMQ::CheckInput(const int index)
|
|
{
|
|
if (items[index].revents & ZMQ_POLLIN)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool FairMQPollerZMQ::CheckOutput(const int index)
|
|
{
|
|
if (items[index].revents & ZMQ_POLLOUT)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool FairMQPollerZMQ::CheckInput(const string channelKey, const int index)
|
|
{
|
|
try
|
|
{
|
|
if (items[fOffsetMap.at(channelKey) + index].revents & ZMQ_POLLIN)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
catch (const std::out_of_range& oor)
|
|
{
|
|
LOG(ERROR) << "Invalid channel key: \"" << channelKey << "\"";
|
|
LOG(ERROR) << "Out of Range error: " << oor.what() << '\n';
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
bool FairMQPollerZMQ::CheckOutput(const string channelKey, const int index)
|
|
{
|
|
try
|
|
{
|
|
if (items[fOffsetMap.at(channelKey) + index].revents & ZMQ_POLLOUT)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
catch (const std::out_of_range& oor)
|
|
{
|
|
LOG(ERROR) << "Invalid channel key: \"" << channelKey << "\"";
|
|
LOG(ERROR) << "Out of Range error: " << oor.what() << '\n';
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
FairMQPollerZMQ::~FairMQPollerZMQ()
|
|
{
|
|
if (items != NULL)
|
|
{
|
|
delete[] items;
|
|
}
|
|
}
|