The Gaudi Framework  v29r0 (ff2e7097)
ChronoStatSvc.h
Go to the documentation of this file.
1 #ifndef GAUDISVC_CHRONOSTATSVC_H__
2 #define GAUDISVC_CHRONOSTATSVC_H__
3 // ============================================================================
4 // include files
5 // ============================================================================
6 // STD & STL
7 // ============================================================================
8 #include <fstream>
9 #include <functional>
10 #include <map>
11 #include <string>
12 // ============================================================================
13 // GaudiKernel
14 // ============================================================================
17 #include "GaudiKernel/Kernel.h"
18 #include "GaudiKernel/Service.h"
19 // ============================================================================
21 // ============================================================================
22 class ISvcLocator;
23 class IMessageSvc;
24 // ============================================================================
33 class ChronoStatSvc : public extends<Service, IChronoStatSvc, IIncidentListener>
34 {
35 public:
36  // ============================================================================
40  // ============================================================================
41 public:
42  // ============================================================================
44  StatusCode initialize() override;
46  StatusCode finalize() override;
47  // ============================================================================
48 public:
49  // ============================================================================
53  virtual ChronoEntity* chronoStart( const IChronoStatSvc::ChronoTag& chronoTag ) override;
54  // ============================================================================
58  virtual const ChronoEntity* chronoStop( const IChronoStatSvc::ChronoTag& chronoTag ) override;
59  // ============================================================================
63  virtual IChronoStatSvc::ChronoTime chronoDelta( const IChronoStatSvc::ChronoTag& chronoTag,
64  IChronoStatSvc::ChronoType theType ) override;
65  // ============================================================================
69  virtual void chronoPrint( const IChronoStatSvc::ChronoTag& chronoTag ) override;
70  // ============================================================================
74  virtual ChronoStatus chronoStatus( const IChronoStatSvc::ChronoTag& chronoTag ) override;
75  // ============================================================================
80  virtual void stat( const IChronoStatSvc::StatTag& statTag, const IChronoStatSvc::StatFlag& statFlag ) override;
81  // ============================================================================
86  virtual void statPrint( const IChronoStatSvc::ChronoTag& statTag ) override;
87  // ============================================================================
93  virtual const ChronoEntity* chrono( const IChronoStatSvc::ChronoTag& t ) const override;
94  // ============================================================================
100  virtual const StatEntity* stat( const IChronoStatSvc::StatTag& t ) const override;
101  // ============================================================================
106  ChronoStatSvc( const std::string& name, ISvcLocator* svcloc );
108  void merge( const ChronoStatSvc& css );
110  ~ChronoStatSvc() override = default;
111  // ============================================================================
112 
113 public:
114  void handle( const Incident& incident ) override;
115 
116 protected:
117  // ============================================================================
118  // print the "Stat" part of the ChronoStatSvc
119  void printStats();
120  // ============================================================================
121 private:
122  // ============================================================================
123  // default/copy constructor and assignment are disabled
124  ChronoStatSvc() = delete;
125  ChronoStatSvc( const ChronoStatSvc& ) = delete;
126  ChronoStatSvc& operator=( const ChronoStatSvc& ) = delete;
127  // ============================================================================
129  void saveStats();
130  // ============================================================================
131 private:
132  // ============================================================================
134  ChronoMap m_chronoEntities;
137 
139  StatMap m_statEntities;
142 
143  Gaudi::Property<bool> m_chronoTableFlag{this, "ChronoPrintOutTable", true,
144  "decide if the final printout should be performed"};
145  Gaudi::Property<bool> m_chronoCoutFlag{this, "ChronoDestinationCout", false,
146  "define the destination of the table to be printed"};
147  Gaudi::Property<int> m_intChronoPrintLevel{this, "ChronoPrintLevel", MSG::INFO, "print level"};
148  Gaudi::Property<bool> m_chronoOrderFlag{this, "ChronoTableToBeOrdered", true, "should the printout be ordered"};
149  Gaudi::Property<bool> m_printUserTime{this, "PrintUserTime", true};
150  Gaudi::Property<bool> m_printSystemTime{this, "PrintSystemTime", false};
151  Gaudi::Property<bool> m_printEllapsedTime{this, "PrintEllapsedTime", false};
152  Gaudi::Property<bool> m_statTableFlag{this, "StatPrintOutTable", true,
153  "decide if the final printout should be performed"};
154  Gaudi::Property<bool> m_statCoutFlag{this, "StatDestinationCout", false,
155  "define the destination of the table to be printed"};
156  Gaudi::Property<int> m_intStatPrintLevel{this, "StatPrintLevel", MSG::INFO, "print level"};
157  Gaudi::Property<bool> m_statOrderFlag{this, "StatTableToBeOrdered", true, "should the printout be ordered"};
158 
160  this, "NumberOfSkippedEventsForMemStat", -1,
161  "specify the number of events to be skipped by the memory auditor in order to better spot memory leak"};
162 
164  this, "AsciiStatsOutputFile", "",
165  "Name of the output file storing the stats. If empty, no statistics will be saved (default)"};
166 
168  this, "StatTableHeader",
169  " Counter | # | sum | mean/eff^* | rms/err^* | min | max |",
170  "The header row for the output Stat-table"};
172  this, "RegularRowFormat", " %|-15.15s|%|17t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |",
173  "The format for the regular row in the output Stat-table"};
175  this, "EfficiencyRowFormat",
176  "*%|-15.15s|%|17t||%|10d| |%|11.5g| |(%|#9.7g| +- %|-#9.7g|)%%| ------- | ------- |",
177  "The format for the regular row in the output Stat-table"};
178  Gaudi::Property<bool> m_useEffFormat{this, "UseEfficiencyRowFormat", true,
179  "Use the special format for printout of efficiency counters"};
180 
181  Gaudi::Property<std::string> m_perEventFile{this, "PerEventFile", "", "File name for per-event deltas"};
182 
184  TimeMap m_perEvtTime;
186 
187  // ============================================================================
188 };
189 // ============================================================================
190 // The END
191 // ============================================================================
192 #endif // GAUDISVC_CHRONOSTATSVC_H
193 // ============================================================================
Gaudi::Property< int > m_intStatPrintLevel
ChronoStatSvc & operator=(const ChronoStatSvc &)=delete
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:289
virtual ChronoStatus chronoStatus(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoStatus.
Gaudi::Property< std::string > m_header
Implementation of property with value of concrete type.
Definition: Property.h:319
StatMap m_statEntities
stat part
a small helper class for implementation of ChronoStatSvc service, It also could be used as some local...
Definition: ChronoEntity.h:21
Gaudi::Property< bool > m_statCoutFlag
virtual IChronoStatSvc::ChronoTime chronoDelta(const IChronoStatSvc::ChronoTag &chronoTag, IChronoStatSvc::ChronoType theType) override
Implementation of IchronoStatSvc::chronoDelta.
Gaudi::Property< long > m_numberOfSkippedEventsForMemStat
Gaudi::Property< bool > m_chronoOrderFlag
Gaudi::Property< bool > m_printUserTime
virtual void stat(const IChronoStatSvc::StatTag &statTag, const IChronoStatSvc::StatFlag &statFlag) override
Implementation of IChronoStatSvc::stat add statistical information to the entity , tagged by its name.
std::map< IChronoStatSvc::ChronoTag, ChronoEntity > ChronoMap
some useful typedefs
Definition: ChronoStatSvc.h:38
virtual void statPrint(const IChronoStatSvc::ChronoTag &statTag) override
prints (using message service) info about statistical entity, tagged by its name
STL class.
virtual const ChronoEntity * chrono(const IChronoStatSvc::ChronoTag &t) const override
extract the chrono entity for the given tag (name)
STL class.
void merge(const ChronoStatSvc &css)
Compound assignment operator.
std::map< ChronoTag, std::vector< IChronoSvc::ChronoTime > > TimeMap
ChronoStatSvc()=delete
Gaudi::Property< bool > m_useEffFormat
void saveStats()
dump the statistics into an ASCII file for offline processing
Gaudi::Property< int > m_intChronoPrintLevel
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
TimeMap m_perEvtTime
Gaudi::Property< std::string > m_format2
The IMessage is the interface implemented by the message service.
Definition: IMessageSvc.h:38
virtual const ChronoEntity * chronoStop(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoStop.
Gaudi::Property< bool > m_statOrderFlag
~ChronoStatSvc() override=default
Destructor.
Gaudi::Property< bool > m_chronoTableFlag
std::ofstream m_ofd
Gaudi::Property< std::string > m_format1
MSG::Level m_chronoPrintLevel
level of info printing
StatusCode initialize() override
Implementation of IService::initialize()
Gaudi::Property< bool > m_printEllapsedTime
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
void handle(const Incident &incident) override
Gaudi::Property< bool > m_statTableFlag
Base class for all Incidents (computing events).
Definition: Incident.h:17
virtual ChronoEntity * chronoStart(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoStart.
Gaudi::Property< std::string > m_statsOutFileName
MSG::Level m_statPrintLevel
level of info printing
Gaudi::Property< bool > m_chronoCoutFlag
The basic counter used for Monitoring purposes.
Definition: StatEntity.h:65
virtual void chronoPrint(const IChronoStatSvc::ChronoTag &chronoTag) override
Implementation of IChronoStatSvc::chronoPrint.
std::map< IChronoStatSvc::StatTag, StatEntity > StatMap
Definition: ChronoStatSvc.h:39
The Chrono & Stat Sservice: service implements the IChronoStatSvc interface and provides the basic ch...
Definition: ChronoStatSvc.h:33
ChronoMap m_chronoEntities
chrono part
Gaudi::Property< bool > m_printSystemTime
StatusCode finalize() override
Implementation of IService::finalize()
Gaudi::Property< std::string > m_perEventFile