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).
168 lines
5.5 KiB
C++
168 lines
5.5 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" *
|
|
********************************************************************************/
|
|
/**
|
|
* runProxy.cxx
|
|
*
|
|
* @since 2013-10-07
|
|
* @author A. Rybalchenko
|
|
*/
|
|
|
|
#include <iostream>
|
|
|
|
#include "boost/program_options.hpp"
|
|
|
|
#include "FairMQLogger.h"
|
|
#include "FairMQProxy.h"
|
|
|
|
#ifdef NANOMSG
|
|
#include "FairMQTransportFactoryNN.h"
|
|
#else
|
|
#include "FairMQTransportFactoryZMQ.h"
|
|
#endif
|
|
|
|
using namespace std;
|
|
|
|
typedef struct DeviceOptions
|
|
{
|
|
DeviceOptions() :
|
|
id(), ioThreads(0),
|
|
inputSocketType(), inputBufSize(0), inputMethod(), inputAddress(),
|
|
outputSocketType(), outputBufSize(0), outputMethod(), outputAddress() {}
|
|
|
|
string id;
|
|
int ioThreads;
|
|
string inputSocketType;
|
|
int inputBufSize;
|
|
string inputMethod;
|
|
string inputAddress;
|
|
string outputSocketType;
|
|
int outputBufSize;
|
|
string outputMethod;
|
|
string outputAddress;
|
|
} DeviceOptions_t;
|
|
|
|
inline bool parse_cmd_line(int _argc, char* _argv[], DeviceOptions* _options)
|
|
{
|
|
if (_options == NULL)
|
|
throw runtime_error("Internal error: options' container is empty.");
|
|
|
|
namespace bpo = boost::program_options;
|
|
bpo::options_description desc("Options");
|
|
desc.add_options()
|
|
("id", bpo::value<string>()->required(), "Device ID")
|
|
("io-threads", bpo::value<int>()->default_value(1), "Number of I/O threads")
|
|
("input-socket-type", bpo::value<string>()->required(), "Input socket type: sub/pull")
|
|
("input-buff-size", bpo::value<int>()->default_value(1000), "Input buffer size in number of messages (ZeroMQ)/bytes(nanomsg)")
|
|
("input-method", bpo::value<string>()->required(), "Input method: bind/connect")
|
|
("input-address", bpo::value<string>()->required(), "Input address, e.g.: \"tcp://localhost:5555\"")
|
|
("output-socket-type", bpo::value<string>()->required(), "Output socket type: pub/push")
|
|
("output-buff-size", bpo::value<int>()->default_value(1000), "Output buffer size in number of messages (ZeroMQ)/bytes(nanomsg)")
|
|
("output-method", bpo::value<string>()->required(), "Output method: bind/connect")
|
|
("output-address", bpo::value<string>()->required(), "Output address, e.g.: \"tcp://localhost:5555\"")
|
|
("help", "Print help messages");
|
|
|
|
bpo::variables_map vm;
|
|
bpo::store(bpo::parse_command_line(_argc, _argv, desc), vm);
|
|
|
|
if ( vm.count("help") )
|
|
{
|
|
LOG(INFO) << "FairMQ Proxy" << endl << desc;
|
|
return false;
|
|
}
|
|
|
|
bpo::notify(vm);
|
|
|
|
if ( vm.count("id") )
|
|
_options->id = vm["id"].as<string>();
|
|
|
|
if ( vm.count("io-threads") )
|
|
_options->ioThreads = vm["io-threads"].as<int>();
|
|
|
|
if ( vm.count("input-socket-type") )
|
|
_options->inputSocketType = vm["input-socket-type"].as<string>();
|
|
|
|
if ( vm.count("input-buff-size") )
|
|
_options->inputBufSize = vm["input-buff-size"].as<int>();
|
|
|
|
if ( vm.count("input-method") )
|
|
_options->inputMethod = vm["input-method"].as<string>();
|
|
|
|
if ( vm.count("input-address") )
|
|
_options->inputAddress = vm["input-address"].as<string>();
|
|
|
|
if ( vm.count("output-socket-type") )
|
|
_options->outputSocketType = vm["output-socket-type"].as<string>();
|
|
|
|
if ( vm.count("output-buff-size") )
|
|
_options->outputBufSize = vm["output-buff-size"].as<int>();
|
|
|
|
if ( vm.count("output-method") )
|
|
_options->outputMethod = vm["output-method"].as<string>();
|
|
|
|
if ( vm.count("output-address") )
|
|
_options->outputAddress = vm["output-address"].as<string>();
|
|
|
|
return true;
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
FairMQProxy proxy;
|
|
proxy.CatchSignals();
|
|
|
|
DeviceOptions_t options;
|
|
try
|
|
{
|
|
if (!parse_cmd_line(argc, argv, &options))
|
|
return 0;
|
|
}
|
|
catch (exception& e)
|
|
{
|
|
LOG(ERROR) << e.what();
|
|
return 1;
|
|
}
|
|
|
|
LOG(INFO) << "PID: " << getpid();
|
|
|
|
#ifdef NANOMSG
|
|
FairMQTransportFactory* transportFactory = new FairMQTransportFactoryNN();
|
|
#else
|
|
FairMQTransportFactory* transportFactory = new FairMQTransportFactoryZMQ();
|
|
#endif
|
|
|
|
proxy.SetTransport(transportFactory);
|
|
|
|
FairMQChannel inputChannel(options.inputSocketType, options.inputMethod, options.inputAddress);
|
|
inputChannel.UpdateSndBufSize(options.inputBufSize);
|
|
inputChannel.UpdateRcvBufSize(options.inputBufSize);
|
|
inputChannel.UpdateRateLogging(1);
|
|
|
|
proxy.fChannels["data-in"].push_back(inputChannel);
|
|
|
|
FairMQChannel outputChannel(options.outputSocketType, options.outputMethod, options.outputAddress);
|
|
outputChannel.UpdateSndBufSize(options.outputBufSize);
|
|
outputChannel.UpdateRcvBufSize(options.outputBufSize);
|
|
outputChannel.UpdateRateLogging(1);
|
|
|
|
proxy.fChannels["data-out"].push_back(outputChannel);
|
|
|
|
proxy.SetProperty(FairMQProxy::Id, options.id);
|
|
proxy.SetProperty(FairMQProxy::NumIoThreads, options.ioThreads);
|
|
|
|
proxy.ChangeState("INIT_DEVICE");
|
|
proxy.WaitForEndOfState("INIT_DEVICE");
|
|
|
|
proxy.ChangeState("INIT_TASK");
|
|
proxy.WaitForEndOfState("INIT_TASK");
|
|
|
|
proxy.ChangeState("RUN");
|
|
proxy.InteractiveStateLoop();
|
|
|
|
return 0;
|
|
}
|