The Gaudi Framework  v36r13 (995e4364)
Gaudi::Utils::StopSignalHandler Class Reference

Service that stop the processing if a signal is received. More...

Inheritance diagram for Gaudi::Utils::StopSignalHandler:
Collaboration diagram for Gaudi::Utils::StopSignalHandler:

Public Member Functions

StatusCode initialize () override
 
StatusCode finalize () override
 
void handle (const Incident &) override
 
- Public Member Functions inherited from extends< Service, IIncidentListener >
void * i_cast (const InterfaceID &tid) const override
 Implementation of IInterface::i_cast. More...
 
StatusCode queryInterface (const InterfaceID &ti, void **pp) override
 Implementation of IInterface::queryInterface. More...
 
std::vector< std::stringgetInterfaceNames () const override
 Implementation of IInterface::getInterfaceNames. More...
 
- Public Member Functions inherited from Service
const std::stringname () const override
 Retrieve name of the service
More...
 
StatusCode configure () override
 
StatusCode initialize () override
 
StatusCode start () override
 
StatusCode stop () override
 
StatusCode finalize () override
 
StatusCode terminate () override
 
Gaudi::StateMachine::State FSMState () const override
 
Gaudi::StateMachine::State targetFSMState () const override
 
StatusCode reinitialize () override
 
StatusCode restart () override
 
StatusCode sysInitialize () override
 Initialize Service
More...
 
StatusCode sysStart () override
 Initialize Service
More...
 
StatusCode sysStop () override
 Initialize Service
More...
 
StatusCode sysFinalize () override
 Finalize Service
More...
 
StatusCode sysReinitialize () override
 Re-initialize the Service. More...
 
StatusCode sysRestart () override
 Re-initialize the Service. More...
 
 Service (std::string name, ISvcLocator *svcloc)
 Standard Constructor
More...
 
SmartIF< ISvcLocator > & serviceLocator () const override
 Retrieve pointer to service locator
More...
 
template<class T >
StatusCode service (const std::string &name, const T *&psvc, bool createIf=true) const
 Access a service by name, creating it if it doesn't already exist. More...
 
template<class T >
StatusCode service (const std::string &name, T *&psvc, bool createIf=true) const
 
template<typename IFace = IService>
SmartIF< IFace > service (const std::string &name, bool createIf=true) const
 
template<class T >
StatusCode service (const std::string &svcType, const std::string &svcName, T *&psvc) const
 Access a service by name and type, creating it if it doesn't already exist. More...
 
template<class T >
Gaudi::Details::PropertyBasedeclareProperty (const std::string &name, ToolHandle< T > &hndl, const std::string &doc="none")
 
template<class T >
StatusCode declareTool (ToolHandle< T > &handle, bool createIf=true)
 
template<class T >
StatusCode declareTool (ToolHandle< T > &handle, std::string toolTypeAndName, bool createIf=true)
 Declare used tool. More...
 
template<class T >
Gaudi::Details::PropertyBasedeclareProperty (const std::string &name, ToolHandleArray< T > &hndlArr, const std::string &doc="none")
 
template<class T >
void addToolsArray (ToolHandleArray< T > &hndlArr)
 
const std::vector< IAlgTool * > & tools () const
 
SmartIF< IAuditorSvc > & auditorSvc () const
 The standard auditor service.May not be invoked before sysInitialize() has been invoked. More...
 
- Public Member Functions inherited from PropertyHolder< CommonMessaging< implements< IService, IProperty, IStateful > > >
 PropertyHolder ()=default
 
Gaudi::Details::PropertyBasedeclareProperty (Gaudi::Details::PropertyBase &prop)
 Declare a property. More...
 
Gaudi::Details::PropertyBasedeclareProperty (const std::string &name, TYPE &value, const std::string &doc="none")
 Helper to wrap a regular data member and use it as a regular property. More...
 
Gaudi::Details::PropertyBasedeclareProperty (const std::string &name, Gaudi::Property< TYPE, VERIFIER, HANDLERS > &prop, const std::string &doc="none")
 Declare a PropertyBase instance setting name and documentation. More...
 
Gaudi::Details::PropertyBasedeclareRemoteProperty (const std::string &name, IProperty *rsvc, const std::string &rname="")
 Declare a remote property. More...
 
StatusCode setProperty (const std::string &name, const Gaudi::Details::PropertyBase &p) override
 set the property from another property with a different name More...
 
StatusCode setProperty (const std::string &s) override
 set the property from the formatted string More...
 
StatusCode setProperty (const Gaudi::Details::PropertyBase &p)
 Set the property from a property. More...
 
virtual StatusCode setProperty (const std::string &name, const Gaudi::Details::PropertyBase &p)=0
 Set the property from a property with a different name. More...
 
virtual StatusCode setProperty (const std::string &s)=0
 Set the property by string. More...
 
StatusCode setProperty (const std::string &name, const char *v)
 Special case for string literals. More...
 
StatusCode setProperty (const std::string &name, const std::string &v)
 Special case for std::string. More...
 
StatusCode setProperty (const std::string &name, const TYPE &value)
 set the property form the value More...
 
StatusCode setPropertyRepr (const std::string &n, const std::string &r) override
 set the property from name and value string representation More...
 
StatusCode getProperty (Gaudi::Details::PropertyBase *p) const override
 get the property More...
 
const Gaudi::Details::PropertyBasegetProperty (std::string_view name) const override
 get the property by name More...
 
StatusCode getProperty (std::string_view n, std::string &v) const override
 convert the property to the string More...
 
const std::vector< Gaudi::Details::PropertyBase * > & getProperties () const override
 get all properties More...
 
bool hasProperty (std::string_view name) const override
 Return true if we have a property with the given name. More...
 
Gaudi::Details::PropertyBaseproperty (std::string_view name) const
 \fixme property and bindPropertiesTo should be protected More...
 
void bindPropertiesTo (Gaudi::Interfaces::IOptionsSvc &optsSvc)
 
 PropertyHolder (const PropertyHolder &)=delete
 
PropertyHolderoperator= (const PropertyHolder &)=delete
 
- Public Member Functions inherited from CommonMessaging< implements< IService, IProperty, IStateful > >
MSG::Level msgLevel () const
 get the cached level (originally extracted from the embedded MsgStream) More...
 
bool msgLevel (MSG::Level lvl) const
 get the output level from the embedded MsgStream More...
 

Private Member Functions

std::pair< int, bool > i_decodeSignal (const std::string &sig)
 Function to translate the signal name to the signal number. More...
 

Private Attributes

Gaudi::Property< std::vector< std::string > > m_usedSignals
 List of signal names or numbers (encoded as strings) to use to schedule a stop. More...
 
std::map< int, bool > m_signals
 Map of monitored signal numbers to the flag telling if they have to be propagated or not. More...
 
bool m_stopRequested = false
 Flag to remember if the stop has been requested because of a signal. More...
 
SmartIF< Gaudi::ISignalMonitorm_signalMonitor
 Pointer to the signal monitor service. More...
 
SmartIF< IIncidentSvcm_incidentSvc
 Pointer to the incident service. More...
 
SmartIF< IPropertym_appProperty
 Pointer to the interface to set the return code of the application. More...
 

Additional Inherited Members

- Public Types inherited from extends< Service, IIncidentListener >
using base_class = extends
 Typedef to this class. More...
 
using extend_interfaces_base = extend_interfaces< Interfaces... >
 Typedef to the base of this class. More...
 
- Public Types inherited from Service
using Factory = Gaudi::PluginService::Factory< IService *(const std::string &, ISvcLocator *)>
 
- Public Types inherited from PropertyHolder< CommonMessaging< implements< IService, IProperty, IStateful > > >
using PropertyHolderImpl = PropertyHolder< CommonMessaging< implements< IService, IProperty, IStateful > > >
 Typedef used to refer to this class from derived classes, as in. More...
 
- Public Types inherited from CommonMessaging< implements< IService, IProperty, IStateful > >
using base_class = CommonMessaging
 
- Public Types inherited from extend_interfaces< Interfaces... >
using ext_iids = typename Gaudi::interface_list_cat< typename Interfaces::ext_iids... >::type
 take union of the ext_iids of all Interfaces... More...
 
- Protected Member Functions inherited from Service
std::vector< IAlgTool * > & tools ()
 
 ~Service () override
 Standard Destructor
More...
 
int outputLevel () const
 get the Service's output level More...
 
- Protected Member Functions inherited from CommonMessaging< implements< IService, IProperty, IStateful > >
MSG::Level setUpMessaging () const
 Set up local caches. More...
 
MSG::Level resetMessaging ()
 Reinitialize internal states. More...
 
void updateMsgStreamOutputLevel (int level)
 Update the output level of the cached MsgStream. More...
 
- Protected Attributes inherited from Service
Gaudi::StateMachine::State m_state = Gaudi::StateMachine::OFFLINE
 Service state
More...
 
Gaudi::StateMachine::State m_targetState = Gaudi::StateMachine::OFFLINE
 Service state
More...
 
Gaudi::Property< int > m_outputLevel { this, "OutputLevel", MSG::NIL, "output level" }
 flag indicating whether ToolHandle tools have been added to m_tools More...
 
Gaudi::Property< bool > m_auditInit { this, "AuditServices", false, "[[deprecated]] unused" }
 
Gaudi::Property< bool > m_auditorInitialize { this, "AuditInitialize", false, "trigger auditor on initialize()" }
 
Gaudi::Property< bool > m_auditorStart { this, "AuditStart", false, "trigger auditor on start()" }
 
Gaudi::Property< bool > m_auditorStop { this, "AuditStop", false, "trigger auditor on stop()" }
 
Gaudi::Property< bool > m_auditorFinalize { this, "AuditFinalize", false, "trigger auditor on finalize()" }
 
Gaudi::Property< bool > m_auditorReinitialize { this, "AuditReinitialize", false, "trigger auditor on reinitialize()" }
 
Gaudi::Property< bool > m_auditorRestart { this, "AuditRestart", false, "trigger auditor on restart()" }
 
Gaudi::Property< bool > m_autoRetrieveTools
 
Gaudi::Property< bool > m_checkToolDeps
 
SmartIF< IAuditorSvcm_pAuditorSvc
 Auditor Service
More...
 

Detailed Description

Service that stop the processing if a signal is received.

The signals to be intercepted have to be declared in the property Signals as a list of strings (signal names or numbers). If '+' is appended to the signal name, then the signal is propagated to the signal handlers already registered when this service is initialized.

Definition at line 346 of file SignalMonitorSvc.cpp.

Member Function Documentation

◆ finalize()

StatusCode Gaudi::Utils::StopSignalHandler::finalize ( )
inlineoverride

Definition at line 390 of file SignalMonitorSvc.cpp.

390  {
391  m_incidentSvc->removeListener( this, IncidentType::BeginEvent );
393  // disable the monitoring of the signals
395  // tell the signal monitor that we are interested in these signals
396  m_signalMonitor->ignoreSignal( s.first );
397  } );
399  return Service::finalize();
400  }

◆ handle()

void Gaudi::Utils::StopSignalHandler::handle ( const Incident )
inlineoverride

Definition at line 402 of file SignalMonitorSvc.cpp.

402  {
403  if ( !m_stopRequested ) {
404  const SigMap& sigmap( SigMap::instance() );
405  for ( const auto& s : m_signals ) {
406  if ( !m_signalMonitor->gotSignal( s.first ) ) continue;
407  warning() << "Received signal '" << sigmap.name( s.first ) << "' (" << s.first;
408  const std::string& desc = sigmap.desc( s.first );
409  if ( !desc.empty() ) warning() << ", " << desc;
410  warning() << ")" << endmsg;
411  m_stopRequested = true;
412  // Report the termination by signal at the end of the application
415  error() << "Could not set return code of the application (" << SignalOffset + s.first << ")" << endmsg;
416  }
417  }
418  if ( m_stopRequested ) {
419  auto ep = serviceLocator()->as<IEventProcessor>();
420  if ( ep ) {
421  warning() << "Scheduling a stop" << endmsg;
422  ep->stopRun().ignore();
423  } else {
424  warning() << "Cannot stop the processing because the IEventProcessor interface cannot be retrieved."
425  << endmsg;
426  }
427  }
428  }
429  }

◆ i_decodeSignal()

std::pair<int, bool> Gaudi::Utils::StopSignalHandler::i_decodeSignal ( const std::string sig)
inlineprivate

Function to translate the signal name to the signal number.

Definition at line 451 of file SignalMonitorSvc.cpp.

451  {
452  debug() << "Decoding signal declaration '" << sig << "'" << endmsg;
453  if ( sig.empty() || sig == "+" ) {
454  debug() << "Empty signal, ignored" << endmsg;
455  return { -1, false }; // silently ignore empty strings
456  }
457  const SigMap& sigmap( SigMap::instance() );
458  std::string signal = sig;
459  bool propagate = false;
460  // Check if the signal must be propagated
461  if ( signal[signal.size() - 1] == '+' ) {
462  debug() << "Must be propagated to previously registered signal handlers" << endmsg;
463  propagate = true;
464  signal.erase( signal.size() - 1, 1 ); // remove the '+' at the end of the string
465  }
466  int signum = -1;
467  // check if the signal is a number
468  if ( std::isdigit( signal[0] ) ) {
469  std::istringstream ss( signal );
470  ss >> signum;
471  } else {
472  // try to find the signal name in the list of known signals
473  signum = sigmap.signum( signal );
474  }
475  if ( signum < 0 ) {
476  warning() << "Cannot understand signal identifier '" << sig << "', ignored" << endmsg;
477  } else {
478  verbose() << "Matched signal '" << sigmap.name( signum ) << "' (" << signum;
479  const std::string& desc = sigmap.desc( signum );
480  if ( !desc.empty() ) { verbose() << ", " << desc; }
481  verbose() << ")" << endmsg;
482  }
483  return { signum, propagate };
484  }

◆ initialize()

StatusCode Gaudi::Utils::StopSignalHandler::initialize ( )
inlineoverride

Definition at line 349 of file SignalMonitorSvc.cpp.

349  {
351  if ( sc.isFailure() ) { return sc; }
352  std::string serviceName( "Gaudi::Utils::SignalMonitorSvc" );
353  m_signalMonitor = serviceLocator()->service( serviceName );
354  if ( !m_signalMonitor ) {
355  error() << "Cannot retrieve " << serviceName << endmsg;
356  return StatusCode::FAILURE;
357  }
358  serviceName = "IncidentSvc";
359  m_incidentSvc = serviceLocator()->service( serviceName );
360  if ( !m_incidentSvc ) {
361  error() << "Cannot retrieve " << serviceName << endmsg;
362  return StatusCode::FAILURE;
363  }
364  // Get the IMainAppStatus interface of the ApplicationMgr
366  if ( !m_appProperty ) {
367  warning() << "Cannot retrieve IProperty interface of ApplicationMgr, "
368  "the return code will not be changed"
369  << endmsg;
370  }
371  // Decode the signal names
372  for ( const auto& signame : m_usedSignals ) {
373  auto sigid = i_decodeSignal( signame );
374  if ( sigid.first >= 0 ) { m_signals[sigid.first] = sigid.second; }
375  }
376  debug() << "Stopping on the signals:" << endmsg;
377  const SigMap& sigmap( SigMap::instance() );
378  for ( const auto& s : m_signals ) {
379  debug() << "\t" << sigmap.name( s.first ) << ": " << sigmap.desc( s.first ) << " (" << s.first << ")";
380  if ( s.second ) debug() << " propagated";
381  debug() << endmsg;
382  // tell the signal monitor that we are interested in these signals
383  m_signalMonitor->monitorSignal( s.first, s.second );
384  }
385  m_stopRequested = false;
386  debug() << "Register to the IncidentSvc" << endmsg;
387  m_incidentSvc->addListener( this, IncidentType::BeginEvent );
388  return StatusCode::SUCCESS;
389  }

Member Data Documentation

◆ m_appProperty

SmartIF<IProperty> Gaudi::Utils::StopSignalHandler::m_appProperty
private

Pointer to the interface to set the return code of the application.

Definition at line 449 of file SignalMonitorSvc.cpp.

◆ m_incidentSvc

SmartIF<IIncidentSvc> Gaudi::Utils::StopSignalHandler::m_incidentSvc
private

Pointer to the incident service.

Definition at line 447 of file SignalMonitorSvc.cpp.

◆ m_signalMonitor

SmartIF<Gaudi::ISignalMonitor> Gaudi::Utils::StopSignalHandler::m_signalMonitor
private

Pointer to the signal monitor service.

Definition at line 445 of file SignalMonitorSvc.cpp.

◆ m_signals

std::map<int, bool> Gaudi::Utils::StopSignalHandler::m_signals
private

Map of monitored signal numbers to the flag telling if they have to be propagated or not.

Definition at line 441 of file SignalMonitorSvc.cpp.

◆ m_stopRequested

bool Gaudi::Utils::StopSignalHandler::m_stopRequested = false
private

Flag to remember if the stop has been requested because of a signal.

Definition at line 443 of file SignalMonitorSvc.cpp.

◆ m_usedSignals

Gaudi::Property<std::vector<std::string> > Gaudi::Utils::StopSignalHandler::m_usedSignals
private
Initial value:
{
this,
"Signals",
{ "SIGINT", "SIGXCPU" },
"List of signal names or numbers to use to schedule a stop. "
"If the signal is followed by a '+' the signal is propagated the previously "
"registered handler (if any)." }

List of signal names or numbers (encoded as strings) to use to schedule a stop.

Definition at line 433 of file SignalMonitorSvc.cpp.


The documentation for this class was generated from the following file:
std::isdigit
T isdigit(T... args)
Gaudi::ReturnCode::SignalOffset
constexpr int SignalOffset
Definition: AppReturnCode.h:44
IEventProcessor
Definition: IEventProcessor.h:24
std::for_each
T for_each(T... args)
Service::initialize
StatusCode initialize() override
Definition: Service.cpp:118
std::string
STL class.
std::pair
Gaudi::Utils::StopSignalHandler::m_signals
std::map< int, bool > m_signals
Map of monitored signal numbers to the flag telling if they have to be propagated or not.
Definition: SignalMonitorSvc.cpp:441
gaudirun.s
string s
Definition: gaudirun.py:348
SmartIF::reset
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition: SmartIF.h:96
Gaudi::Utils::StopSignalHandler::m_usedSignals
Gaudi::Property< std::vector< std::string > > m_usedSignals
List of signal names or numbers (encoded as strings) to use to schedule a stop.
Definition: SignalMonitorSvc.cpp:433
std::istringstream
STL class.
Gaudi::Utils::StopSignalHandler::i_decodeSignal
std::pair< int, bool > i_decodeSignal(const std::string &sig)
Function to translate the signal name to the signal number.
Definition: SignalMonitorSvc.cpp:451
Service::finalize
StatusCode finalize() override
Definition: Service.cpp:222
Gaudi::Utils::StopSignalHandler::m_incidentSvc
SmartIF< IIncidentSvc > m_incidentSvc
Pointer to the incident service.
Definition: SignalMonitorSvc.cpp:447
StatusCode
Definition: StatusCode.h:65
Gaudi::setAppReturnCode
StatusCode setAppReturnCode(SmartIF< IProperty > &appmgr, int value, bool force=false)
Set the application return code.
Definition: AppReturnCode.h:59
genconfuser.verbose
verbose
Definition: genconfuser.py:29
endmsg
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:203
SmartIF::as
SmartIF< IFace > as() const
return a new SmartIF instance to another interface
Definition: SmartIF.h:117
std::signal
T signal(T... args)
StatusCode::isFailure
bool isFailure() const
Definition: StatusCode.h:129
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:100
std::begin
T begin(T... args)
Gaudi::Utils::StopSignalHandler::m_stopRequested
bool m_stopRequested
Flag to remember if the stop has been requested because of a signal.
Definition: SignalMonitorSvc.cpp:443
std::string::empty
T empty(T... args)
Gaudi::Utils::StopSignalHandler::m_appProperty
SmartIF< IProperty > m_appProperty
Pointer to the interface to set the return code of the application.
Definition: SignalMonitorSvc.cpp:449
std::end
T end(T... args)
StatusCode::FAILURE
constexpr static const auto FAILURE
Definition: StatusCode.h:101
Gaudi::Utils::StopSignalHandler::m_signalMonitor
SmartIF< Gaudi::ISignalMonitor > m_signalMonitor
Pointer to the signal monitor service.
Definition: SignalMonitorSvc.cpp:445
Service::serviceLocator
SmartIF< ISvcLocator > & serviceLocator() const override
Retrieve pointer to service locator
Definition: Service.cpp:335