mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
Several FairMQ fixes and improvements:
- 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).
This commit is contained in:
committed by
Mohammad Al-Turany
parent
d1bba61939
commit
1302e77a16
@@ -9,11 +9,10 @@
|
||||
* runBuffer.cxx
|
||||
*
|
||||
* @since 2012-10-26
|
||||
* @author: D. Klein, A. Rybalchenko
|
||||
* @author D. Klein, A. Rybalchenko
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <csignal>
|
||||
|
||||
#include "boost/program_options.hpp"
|
||||
|
||||
@@ -28,28 +27,6 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
FairMQBuffer buffer;
|
||||
|
||||
static void s_signal_handler(int signal)
|
||||
{
|
||||
LOG(INFO) << "Caught signal " << signal;
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::END);
|
||||
|
||||
LOG(INFO) << "Shutdown complete";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
static void s_catch_signals(void)
|
||||
{
|
||||
struct sigaction action;
|
||||
action.sa_handler = s_signal_handler;
|
||||
action.sa_flags = 0;
|
||||
sigemptyset(&action.sa_mask);
|
||||
sigaction(SIGINT, &action, NULL);
|
||||
sigaction(SIGTERM, &action, NULL);
|
||||
}
|
||||
|
||||
typedef struct DeviceOptions
|
||||
{
|
||||
DeviceOptions() :
|
||||
@@ -135,7 +112,8 @@ inline bool parse_cmd_line(int _argc, char* _argv[], DeviceOptions* _options)
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
s_catch_signals();
|
||||
FairMQBuffer buffer;
|
||||
buffer.CatchSignals();
|
||||
|
||||
DeviceOptions_t options;
|
||||
try
|
||||
@@ -176,24 +154,14 @@ int main(int argc, char** argv)
|
||||
buffer.SetProperty(FairMQBuffer::Id, options.id);
|
||||
buffer.SetProperty(FairMQBuffer::NumIoThreads, options.ioThreads);
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::INIT_DEVICE);
|
||||
buffer.WaitForEndOfState(FairMQBuffer::INIT_DEVICE);
|
||||
buffer.ChangeState("INIT_DEVICE");
|
||||
buffer.WaitForEndOfState("INIT_DEVICE");
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::INIT_TASK);
|
||||
buffer.WaitForEndOfState(FairMQBuffer::INIT_TASK);
|
||||
buffer.ChangeState("INIT_TASK");
|
||||
buffer.WaitForEndOfState("INIT_TASK");
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::RUN);
|
||||
buffer.WaitForEndOfState(FairMQBuffer::RUN);
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::STOP);
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::RESET_TASK);
|
||||
buffer.WaitForEndOfState(FairMQBuffer::RESET_TASK);
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::RESET_DEVICE);
|
||||
buffer.WaitForEndOfState(FairMQBuffer::RESET_DEVICE);
|
||||
|
||||
buffer.ChangeState(FairMQBuffer::END);
|
||||
buffer.ChangeState("RUN");
|
||||
buffer.InteractiveStateLoop();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user