Go to the documentation of this file.00001 #ifndef MessageService_ELadministrator_h
00002 #define MessageService_ELadministrator_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 #include "FWCore/MessageService/interface/ELdestControl.h"
00053
00054 #include "FWCore/MessageLogger/interface/ELstring.h"
00055 #include "FWCore/MessageLogger/interface/ELlist.h"
00056 #include "FWCore/MessageLogger/interface/ELseverityLevel.h"
00057 #include "FWCore/MessageLogger/interface/ErrorObj.h"
00058
00059 #include "boost/shared_ptr.hpp"
00060
00061 namespace edm {
00062 namespace service {
00063
00064
00065
00066
00067
00068
00069 class ELcontextSupplier;
00070 class ELdestination;
00071 class ELadminDestroyer;
00072 class ErrorLog;
00073 class ELtsErrorLog;
00074 class ELcout;
00075
00076
00077
00078
00079
00080
00081 class ELadministrator {
00082
00083 friend class ELadminDestroyer;
00084 friend class ErrorLog;
00085 friend class ELcout;
00086 friend class ELtsErrorLog;
00087
00088
00089
00090 public:
00091
00092
00093
00094 static ELadministrator * instance();
00095
00096
00097
00098 void setProcess( const ELstring & process );
00099 ELstring swapProcess( const ELstring & process );
00100 void setContextSupplier( const ELcontextSupplier & supplier );
00101 const ELcontextSupplier & getContextSupplier() const;
00102 ELcontextSupplier & swapContextSupplier( ELcontextSupplier & cs );
00103 void setAbortThreshold( const ELseverityLevel & sev );
00104 void setExitThreshold ( const ELseverityLevel & sev );
00105
00106
00107
00108 ELdestControl attach( const ELdestination & sink );
00109 ELdestControl attach( const ELdestination & sink, const ELstring & name );
00110 bool getELdestControl ( const ELstring & name, ELdestControl & theControl );
00111
00112
00113
00114 ELseverityLevel checkSeverity();
00115 int severityCount( const ELseverityLevel & sev ) const;
00116 int severityCount( const ELseverityLevel & from,
00117 const ELseverityLevel & to ) const;
00118 void resetSeverityCount( const ELseverityLevel & sev );
00119 void resetSeverityCount( const ELseverityLevel & from,
00120 const ELseverityLevel & to );
00121 void resetSeverityCount();
00122
00123
00124
00125 void setThresholds( const ELseverityLevel & sev );
00126 void setLimits ( const ELstring & id, int limit );
00127 void setLimits ( const ELseverityLevel & sev, int limit );
00128 void setIntervals ( const ELstring & id, int interval );
00129 void setIntervals ( const ELseverityLevel & sev, int interval );
00130 void setTimespans ( const ELstring & id, int seconds );
00131 void setTimespans ( const ELseverityLevel & sev, int seconds );
00132 void wipe();
00133 void finish();
00134
00135 protected:
00136
00137
00138 const ELstring & process() const;
00139 ELcontextSupplier & context() const;
00140 const ELseverityLevel & abortThreshold() const;
00141 const ELseverityLevel & exitThreshold() const;
00142 std::list<boost::shared_ptr<ELdestination> > & sinks();
00143 const ELseverityLevel & highSeverity() const;
00144 int severityCounts( int lev ) const;
00145
00146
00147
00148 void finishMsg();
00149 void clearMsg();
00150
00151 protected:
00152
00153
00154 ELadministrator();
00155 virtual ~ELadministrator();
00156
00157 private:
00158
00159
00160
00161 static ELadministrator* instance_;
00162
00163
00164
00165 ELstring process_;
00166 boost::shared_ptr<ELcontextSupplier> context_;
00167 ELseverityLevel abortThreshold_;
00168 ELseverityLevel exitThreshold_;
00169 std::list<boost::shared_ptr<ELdestination> > sinks_;
00170 ELseverityLevel highSeverity_;
00171 int severityCounts_[ ELseverityLevel::nLevels ];
00172 edm::ErrorObj msg;
00173 bool msgIsActive;
00174
00175 std::map < ELstring, boost::shared_ptr<ELdestination> > attachedDestinations;
00176
00177 };
00178
00179
00180
00181
00182
00183
00184 class ELadminDestroyer {
00185
00186 public:
00187
00188
00189 ELadminDestroyer( ELadministrator * ad = 0 );
00190 ~ELadminDestroyer();
00191
00192
00193
00194 void setELadmin( ELadministrator * ad );
00195
00196 private:
00197
00198
00199 ELadministrator * admin_;
00200
00201 };
00202
00203
00204
00205
00206
00207 }
00208 }
00209
00210
00211 #endif // MessageService_ELadministrator_h