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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
|
#ifndef EVF_FASTMONITORINGTHREAD
#define EVF_FASTMONITORINGTHREAD
#include "EventFilter/Utilities/interface/FastMonitor.h"
#include "EventFilter/Utilities/interface/FastMonitoringService.h" //state enums?
#include <iostream>
#include <memory>
#include <vector>
#include <thread>
#include <mutex>
namespace evf {
//namespace FastMonState {
// enum Macrostate;
//}
class FastMonitoringService;
template <typename T>
struct ContainableAtomic {
ContainableAtomic() : m_value{} {}
ContainableAtomic(T iValue) : m_value(iValue) {}
ContainableAtomic(ContainableAtomic<T> const& iOther) : m_value(iOther.m_value.load()) {}
ContainableAtomic<T>& operator=(T iValue) {
m_value.store(iValue, std::memory_order_relaxed);
return *this;
}
operator T() { return m_value.load(std::memory_order_relaxed); }
std::atomic<T> m_value;
};
struct FastMonEncoding {
FastMonEncoding(unsigned int res) : reserved_(res), current_(reserved_), currentReserved_(0) {
if (reserved_)
dummiesForReserved_ = new edm::ModuleDescription[reserved_];
// completeReservedWithDummies();
}
~FastMonEncoding() {
if (reserved_)
delete[] dummiesForReserved_;
}
//trick: only encode state when sending it over (i.e. every sec)
int encode(const void* add) const {
std::unordered_map<const void*, int>::const_iterator it = quickReference_.find(add);
return (it != quickReference_.end()) ? (*it).second : 0;
}
//this allows to init path list in beginJob, but strings used later are not in the same memory
//position. Therefore path address lookup will be updated when snapshot (encode) is called
//with this we can remove ugly path legend update in preEventPath, but will still need a check
//that any event has been processed (any path will do)
int encodeString(const std::string* add) {
std::unordered_map<const void*, int>::const_iterator it = quickReference_.find((void*)add);
if (it == quickReference_.end()) {
//try to match by string content (encode only used
auto it = quickReferencePreinit_.find(*add);
if (it == quickReferencePreinit_.end())
return 0;
else {
//overwrite pointer in decoder and add to reference
decoder_[(*it).second] = (void*)add;
quickReference_[(void*)add] = (*it).second;
quickReferencePreinit_.erase(it);
return encode((void*)add);
}
}
return (*it).second;
}
const void* decode(unsigned int index) { return decoder_[index]; }
void fillReserved(const void* add, unsigned int i) {
// translation_[*name]=current_;
quickReference_[add] = i;
if (decoder_.size() <= i)
decoder_.push_back(add);
else
decoder_[currentReserved_] = add;
}
void updateReserved(const void* add) {
fillReserved(add, currentReserved_);
currentReserved_++;
}
void completeReservedWithDummies() {
for (unsigned int i = currentReserved_; i < reserved_; i++)
fillReserved(dummiesForReserved_ + i, i);
}
void update(const void* add) {
// translation_[*name]=current_;
quickReference_[add] = current_;
decoder_.push_back(add);
current_++;
}
void updatePreinit(std::string const& add) {
// translation_[*name]=current_;
quickReferencePreinit_[add] = current_;
decoder_.push_back((void*)&add);
current_++;
}
unsigned int vecsize() { return decoder_.size(); }
std::unordered_map<const void*, int> quickReference_;
std::unordered_map<std::string, int> quickReferencePreinit_;
std::vector<const void*> decoder_;
unsigned int reserved_;
int current_;
int currentReserved_;
edm::ModuleDescription* dummiesForReserved_;
};
class FastMonitoringThread {
public:
struct MonitorData {
//fastpath global monitorables
jsoncollector::IntJ fastMacrostateJ_;
jsoncollector::DoubleJ fastThroughputJ_;
jsoncollector::DoubleJ fastAvgLeadTimeJ_;
jsoncollector::IntJ fastFilesProcessedJ_;
jsoncollector::DoubleJ fastLockWaitJ_;
jsoncollector::IntJ fastLockCountJ_;
jsoncollector::IntJ fastEventsProcessedJ_;
unsigned int varIndexThrougput_;
//per stream
std::vector<unsigned int> tmicrostateEncoded_;
std::vector<unsigned int> microstateEncoded_;
std::vector<jsoncollector::AtomicMonUInt*> processed_;
jsoncollector::IntJ fastPathProcessedJ_;
std::vector<unsigned int> inputState_;
//tracking luminosity of a stream
std::vector<unsigned int> streamLumi_;
//N bins for histograms
unsigned int macrostateBins_;
unsigned int microstateBins_;
unsigned int inputstateBins_;
//global state
std::atomic<FastMonState::Macrostate> macrostate_;
FastMonEncoding encModule_;
std::vector<FastMonEncoding> encPath_;
//unsigned int prescaleindex_; // ditto
MonitorData() : encModule_(nReservedModules) {
fastMacrostateJ_ = FastMonState::sInit;
fastThroughputJ_ = 0;
fastAvgLeadTimeJ_ = 0;
fastFilesProcessedJ_ = 0;
fastLockWaitJ_ = 0;
fastLockCountJ_ = 0;
fastMacrostateJ_.setName("Macrostate");
fastThroughputJ_.setName("Throughput");
fastAvgLeadTimeJ_.setName("AverageLeadTime");
fastFilesProcessedJ_.setName("FilesProcessed");
fastLockWaitJ_.setName("LockWaitUs");
fastLockCountJ_.setName("LockCount");
fastPathProcessedJ_ = 0;
fastPathProcessedJ_.setName("Processed");
}
//to be called after fast monitor is constructed
void registerVariables(jsoncollector::FastMonitor* fm,
unsigned nMaxSlices,
unsigned nMaxStreams,
unsigned nMaxThreads) {
//tell FM to track these global variables(for fast and slow monitoring)
fm->registerGlobalMonitorable(&fastMacrostateJ_, true, ¯ostateBins_);
fm->registerGlobalMonitorable(&fastThroughputJ_, false);
fm->registerGlobalMonitorable(&fastAvgLeadTimeJ_, false);
fm->registerGlobalMonitorable(&fastFilesProcessedJ_, false);
fm->registerGlobalMonitorable(&fastLockWaitJ_, false);
fm->registerGlobalMonitorable(&fastLockCountJ_, false);
for (unsigned int i = 0; i < nMaxSlices; i++) {
jsoncollector::AtomicMonUInt* p = new jsoncollector::AtomicMonUInt;
*p = 0;
processed_.push_back(p);
streamLumi_.push_back(0);
}
tmicrostateEncoded_.resize(nMaxSlices, FastMonState::mInvalid);
for (unsigned int i = nMaxThreads; i < nMaxSlices; i++) {
tmicrostateEncoded_[i] = FastMonState::mIgnore;
}
microstateEncoded_.resize(nMaxSlices, FastMonState::mInvalid);
inputState_.resize(nMaxSlices, FastMonState::inInit);
for (unsigned int i = nMaxStreams; i < nMaxSlices; i++) {
microstateEncoded_[i] = FastMonState::mIgnore;
inputState_[i] = FastMonState::inIgnore;
}
//for (unsigned int j = 0; j < nMaxStreams; j++)
// inputState_[j] = 0;
//tell FM to track these int vectors
fm->registerStreamMonitorableUIntVec("tMicrostate", &tmicrostateEncoded_, true, µstateBins_);
fm->registerStreamMonitorableUIntVec("Microstate", µstateEncoded_, true, µstateBins_);
fm->registerStreamMonitorableUIntVecAtomic("Processed", &processed_, false, nullptr);
//input source state tracking (not stream, but other than first item in vector is set to Ignore state)
fm->registerStreamMonitorableUIntVec("Inputstate", &inputState_, true, &inputstateBins_);
//global cumulative event counter is used for fast path
fm->registerFastGlobalMonitorable(&fastPathProcessedJ_);
//provide vector with updated per stream lumis and let it finish initialization
fm->commit(&streamLumi_);
}
};
//constructor
FastMonitoringThread() : m_stoprequest(false) {}
void resetFastMonitor(std::string const& microStateDefPath, std::string const& fastMicroStateDefPath) {
std::string defGroup = "data";
jsonMonitor_ = std::make_unique<jsoncollector::FastMonitor>(microStateDefPath, defGroup, false);
if (!fastMicroStateDefPath.empty())
jsonMonitor_->addFastPathDefinition(fastMicroStateDefPath, defGroup, false);
}
void start(void (FastMonitoringService::*fp)(), FastMonitoringService* cp) {
assert(!m_thread);
m_thread = std::make_shared<std::thread>(fp, cp);
}
void stop() {
if (m_thread.get()) {
m_stoprequest = true;
m_thread->join();
m_thread.reset();
}
}
~FastMonitoringThread() { stop(); }
private:
std::atomic<bool> m_stoprequest;
std::shared_ptr<std::thread> m_thread;
MonitorData m_data;
std::mutex monlock_;
std::unique_ptr<jsoncollector::FastMonitor> jsonMonitor_;
friend class FastMonitoringService;
};
} //end namespace evf
#endif
|