Skip to content
Snippets Groups Projects
Commit 6852f001 authored by Gerhard Raven's avatar Gerhard Raven
Browse files

Modernize GaudiUtils/src/component

   - simplify constructors
   - qualify implementations with 'override' instead of 'virtual'
   - replace trivial destructor with = default
   - avoid invoking std::unique_ptr<T>::get when not needed
parent 25d4841b
No related branches found
No related tags found
2 merge requests!15[WIP] Code Modernization ,!7C++11 modernization changes
......@@ -28,19 +28,18 @@ namespace {
bool autostart = false):
WatchdogThread(timeout, autostart),
log(msgSvc, name),
m_counter(0),
m_maxCount(maxCount),
m_stackTrace(stackTrace){}
virtual ~EventWatchdog() {}
~EventWatchdog() override = default;
private:
/// message stream used to report problems
MsgStream log;
/// internal counter of the occurrences of consecutive timeouts
long m_counter;
long m_counter = 0;
/// how many timeouts before aborting (0 means never abort)
long m_maxCount;
long m_maxCount = 0;
/// whether to dump a stack trace when the timeout is reached
bool m_stackTrace;
bool m_stackTrace = false;
/// main watchdog function
void action() {
if (!m_counter) {
......@@ -95,11 +94,6 @@ StalledEventMonitor::StalledEventMonitor(const std::string& name, ISvcLocator* s
"Whether to print the stack-trace on timeout.");
}
// Destructor
StalledEventMonitor::~StalledEventMonitor(){
}
// Initialization of the service.
StatusCode StalledEventMonitor::initialize() {
StatusCode sc = base_class::initialize();
......@@ -108,12 +102,11 @@ StatusCode StalledEventMonitor::initialize() {
if (m_eventTimeout) {
// create the watchdog thread
m_watchdog = std::unique_ptr<WatchdogThread>(
new EventWatchdog(msgSvc(),
"EventWatchdog",
boost::posix_time::seconds(m_eventTimeout),
m_stackTrace,
m_maxTimeoutCount));
m_watchdog.reset( new EventWatchdog(msgSvc(),
"EventWatchdog",
boost::posix_time::seconds(m_eventTimeout),
m_stackTrace,
m_maxTimeoutCount));
// register to the incident service
std::string serviceName = "IncidentSvc";
......@@ -134,18 +127,18 @@ StatusCode StalledEventMonitor::initialize() {
// Start the monitoring.
StatusCode StalledEventMonitor::start() {
if (m_watchdog.get()) m_watchdog->start();
if (m_watchdog) m_watchdog->start();
return StatusCode::SUCCESS;
}
// Notify the watchdog that a new event has been started
void StalledEventMonitor::handle(const Incident& /* incident */) {
if (m_watchdog.get()) m_watchdog->ping();
if (m_watchdog) m_watchdog->ping();
}
// Start the monitoring.
StatusCode StalledEventMonitor::stop() {
if (m_watchdog.get()) m_watchdog->stop();
if (m_watchdog) m_watchdog->stop();
return StatusCode::SUCCESS;
}
......
......@@ -32,23 +32,23 @@ public:
StalledEventMonitor(const std::string& name, ISvcLocator* svcLoc);
/// Destructor
virtual ~StalledEventMonitor();
~StalledEventMonitor() override = default;
/// Initialization of the service.
/// Prepare the watchdog thread and configures it.
virtual StatusCode initialize();
StatusCode initialize() override;
/// Start the watchdog thread (before entering the event loop).
virtual StatusCode start();
StatusCode start() override;
/// Notify the watchdog thread for a new event.
virtual void handle(const Incident& /* incident */);
void handle(const Incident& /* incident */) override;
/// Stop the watchdog thread (after the event loop).
virtual StatusCode stop();
StatusCode stop() override;
/// Finalization of the service.
virtual StatusCode finalize();
StatusCode finalize() override;
private:
/// Number of seconds allowed to process a single event.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment