1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
// ----------------------------------------------------------------------
//
// ELdestination.cc
//
// History:
//
// 7/5/98 mf Created
// 6/16/99 jvr Allow suppress/include options on destinations
// 7/2/99 jvr Added separate/attachTime, Epilogue, and Serial
// options
// 6/7/00 web Consolidate ELdestination/X; add filterModule()
// 8/22/00 web Fix omitted .getSymbol() call
// 10/4/00 mf excludeModule()
// 1/15/01 mf setLineLength()
// 2/13/01 mf fix written by pc to accomodate NT problem with
// static init { $001$ }. Corresponding fix is in
// .h file.
// 3/13/01 mf statisticsMap()
// 4/05/01 mf multi-module filtering
// 4/12/01 mf repair multi-module filtering
// 6/23/03 mf changeFile(), flush()
// 1/10/06 mf finish()
// 6/19/08 mf summaryForJobReport()
//
// ----------------------------------------------------------------------
#include <iostream>
#include <fstream>
#include "FWCore/MessageService/src/ELdestination.h"
// Possible Traces:
// #define ELdestinationCONSTRUCTOR_TRACE
using namespace edm::messagelogger;
namespace edm {
namespace service {
// Fix $001 2/13/01 mf
#ifdef DEFECT_NO_STATIC_CONST_INIT
const int ELdestination::defaultLineLength = 80;
#endif
ELdestination::ELdestination()
: threshold(ELzeroSeverity),
traceThreshold(ELhighestSeverity),
limits(),
preamble("%MSG"),
newline("\n"),
indent(" "),
lineLength(defaultLineLength),
respondToMostModules(false),
ignoreMostModules(false),
respondToThese(),
ignoreThese() {
#ifdef ELdestinationCONSTRUCTOR_TRACE
std::cerr << "Constructor for ELdestination\n";
#endif
} // ELdestination()
ELdestination::~ELdestination() {
#ifdef ELdestinationCONSTRUCTOR_TRACE
std::cerr << "Destructor for ELdestination\n";
#endif
} // ~ELdestination()
// ----------------------------------------------------------------------
// Methods invoked by the ELadministrator:
// ----------------------------------------------------------------------
bool ELdestination::log(const edm::ErrorObj&) { return false; }
// ----------------------------------------------------------------------
// Methods invoked through the ELdestControl handle:
// ----------------------------------------------------------------------
// Each of these must be overridden by any destination for which they make
// sense. In this base class, where they are all no-ops, the methods which
// generate data to a destination, stream or stream will warn at that place,
// and all the no-op methods will issue an ELwarning2 at their own destination.
static const std::string hereMsg = "available via this destination";
static const std::string noosMsg = "No ostream";
static const std::string notELoutputMsg = "This destination is not an ELoutput";
// ----------------------------------------------------------------------
// Behavior control methods invoked by the framework
// ----------------------------------------------------------------------
void ELdestination::setThreshold(const ELseverityLevel& sv) { threshold = sv; }
void ELdestination::setTraceThreshold(const ELseverityLevel& sv) { traceThreshold = sv; }
void ELdestination::setLimit(const std::string& s, int n) { limits.setLimit(s, n); }
void ELdestination::setInterval(const ELseverityLevel& sv, int interval) { limits.setInterval(sv, interval); }
void ELdestination::setInterval(const std::string& s, int interval) { limits.setInterval(s, interval); }
void ELdestination::setLimit(const ELseverityLevel& sv, int n) { limits.setLimit(sv, n); }
void ELdestination::setTimespan(const std::string& s, int n) { limits.setTimespan(s, n); }
void ELdestination::setTimespan(const ELseverityLevel& sv, int n) { limits.setTimespan(sv, n); }
void ELdestination::wipe() { limits.wipe(); }
void ELdestination::zero() { limits.zero(); }
void ELdestination::respondToModule(std::string const& moduleName) {
if (moduleName == "*") {
ignoreMostModules = false;
respondToMostModules = true;
ignoreThese.clear();
respondToThese.clear();
} else {
respondToThese.insert(moduleName);
ignoreThese.erase(moduleName);
}
}
void ELdestination::ignoreModule(std::string const& moduleName) {
if (moduleName == "*") {
respondToMostModules = false;
ignoreMostModules = true;
respondToThese.clear();
ignoreThese.clear();
} else {
ignoreThese.insert(moduleName);
respondToThese.erase(moduleName);
}
}
void ELdestination::filterModule(std::string const& moduleName) {
ignoreModule("*");
respondToModule(moduleName);
}
void ELdestination::excludeModule(std::string const& moduleName) {
respondToModule("*");
ignoreModule(moduleName);
}
void ELdestination::finish() {}
void ELdestination::setTableLimit(int n) { limits.setTableLimit(n); }
void ELdestination::changeFile(std::ostream& /*unused*/) {
edm::ErrorObj msg(ELwarning, noosMsg);
msg << notELoutputMsg;
log(msg);
}
void ELdestination::changeFile(const std::string& filename) {
edm::ErrorObj msg(ELwarning, noosMsg);
msg << notELoutputMsg << newline << "file requested is" << filename;
log(msg);
}
void ELdestination::flush() {
edm::ErrorObj msg(ELwarning, noosMsg);
msg << "cannot flush()";
log(msg);
}
// ----------------------------------------------------------------------
// Output format options:
// ----------------------------------------------------------------------
void ELdestination::suppressText() { ; } // $$ jvr
void ELdestination::includeText() { ; }
void ELdestination::suppressModule() { ; }
void ELdestination::includeModule() { ; }
void ELdestination::suppressSubroutine() { ; }
void ELdestination::includeSubroutine() { ; }
void ELdestination::suppressTime() { ; }
void ELdestination::includeTime() { ; }
void ELdestination::suppressContext() { ; }
void ELdestination::includeContext() { ; }
void ELdestination::suppressSerial() { ; }
void ELdestination::includeSerial() { ; }
void ELdestination::useFullContext() { ; }
void ELdestination::useContext() { ; }
void ELdestination::separateTime() { ; }
void ELdestination::attachTime() { ; }
void ELdestination::separateEpilogue() { ; }
void ELdestination::attachEpilogue() { ; }
std::string ELdestination::getNewline() const { return newline; }
int ELdestination::setLineLength(int len) {
int temp = lineLength;
lineLength = len;
return temp;
}
int ELdestination::getLineLength() const { return lineLength; }
// ----------------------------------------------------------------------
// Protected helper methods:
// ----------------------------------------------------------------------
bool ELdestination::thisShouldBeIgnored(std::string const& s) const {
if (respondToMostModules) {
return (ignoreThese.find(s) != ignoreThese.end());
} else if (ignoreMostModules) {
return (respondToThese.find(s) == respondToThese.end());
} else {
return false;
}
}
void close_and_delete::operator()(std::ostream* os) const {
std::ofstream* p = static_cast<std::ofstream*>(os);
p->close();
delete os;
}
} // end of namespace service
} // end of namespace edm
|