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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
|
// **********************************************************************
//
// Copyright (c) 2003-2012 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef ICE_METRICSADMIN_I_H
#define ICE_METRICSADMIN_I_H
#include <Ice/Metrics.h>
#include <Ice/Properties.h>
#include <Ice/Initialize.h>
#ifdef _MSC_VER
# define ICE_CPP11_REGEXP
#endif
#ifdef ICE_CPP11_REGEXP
# include <regex>
#else
# include <regex.h>
#endif
namespace IceMX
{
class Updater;
typedef IceUtil::Handle<Updater> UpdaterPtr;
class MetricsHelper;
template<typename T> class MetricsHelperT;
class MetricsMapI : public IceUtil::Shared, public IceUtil::Mutex
{
public:
class RegExp : public IceUtil::Shared
{
public:
RegExp(const std::string&, const std::string&);
~RegExp();
bool match(const MetricsHelper&);
private:
const std::string _attribute;
#ifdef ICE_CPP11_REGEXP
std::regex _regex;
#else
regex_t _preg;
#endif
};
typedef IceUtil::Handle<RegExp> RegExpPtr;
class Entry : public Ice::LocalObject, public IceUtil::Mutex
{
public:
Entry(MetricsMapI* map, const MetricsPtr& object) : _object(object), _map(map)
{
}
template<typename T> IceInternal::Handle<T>
attach(const MetricsHelperT<T>& helper)
{
IceUtil::Mutex::Lock sync(*this);
++_object->total;
++_object->current;
IceInternal::Handle<T> obj = IceInternal::Handle<T>::dynamicCast(_object);
assert(obj);
helper.initMetrics(obj);
return obj;
}
void
failed(const std::string& exceptionName)
{
IceUtil::Mutex::Lock sync(*this);
++_failures[exceptionName];
}
MetricsFailures
getFailures() const
{
MetricsFailures f;
IceUtil::Mutex::Lock sync(*this);
f.id = _object->id;
f.failures = _failures;
return f;
}
template<typename Function, typename MetricsType> void
execute(Function func, const MetricsType& obj)
{
IceUtil::Mutex::Lock sync(*this);
func(obj);
}
void
detach(Ice::Long lifetime)
{
bool detached = false;
{
IceUtil::Mutex::Lock sync(*this);
detached = --_object->current == 0;
_object->totalLifetime += lifetime;
}
if(detached)
{
_map->detached(this);
}
}
virtual MetricsPtr
clone() const
{
IceUtil::Mutex::Lock sync(*this);
// TODO: Fix ice_clone to use a co-variant type.
return dynamic_cast<Metrics*>(_object->ice_clone().get());
}
const std::string&
id() const
{
return _object->id;
}
bool
isDetached() const
{
IceUtil::Mutex::Lock sync(*this);
return _object->current == 0;
}
virtual Entry*
getMatching(const std::string&, const MetricsHelper&)
{
return 0;
}
protected:
MetricsPtr _object;
private:
MetricsMapI* _map;
StringIntDict _failures;
};
typedef IceUtil::Handle<Entry> EntryPtr;
MetricsMapI(const std::string&, const Ice::PropertiesPtr&);
MetricsMapI(const MetricsMapI&);
MetricsFailuresSeq getFailures();
MetricsMap getMetrics() const;
EntryPtr getMatching(const MetricsHelper&);
protected:
virtual EntryPtr newEntry(const MetricsPtr& object)
{
return new Entry(this, object);
}
private:
friend class Entry;
void detached(Entry*);
std::vector<std::string> _groupByAttributes;
std::vector<std::string> _groupBySeparators;
const int _retain;
const std::vector<RegExpPtr> _accept;
const std::vector<RegExpPtr> _reject;
std::map<std::string, EntryPtr> _objects;
std::deque<Entry*> _detachedQueue;
};
typedef IceUtil::Handle<MetricsMapI> MetricsMapIPtr;
class MetricsMapFactory : public IceUtil::Shared
{
public:
virtual MetricsMapIPtr create(const std::string&, const Ice::PropertiesPtr&) = 0;
};
typedef IceUtil::Handle<MetricsMapFactory> MetricsMapFactoryPtr;
template<class MetricsType> class MetricsMapT : public MetricsMapI
{
public:
typedef MetricsType T;
typedef IceInternal::Handle<MetricsType> TPtr;
typedef MetricsMap MetricsType::*SubMapMember;
class EntryT : public MetricsMapI::Entry
{
public:
EntryT(MetricsMapT* map, const TPtr& object) : Entry(map, object), _map(map)
{
}
virtual Entry*
getMatching(const std::string& mapName, const MetricsHelper& helper)
{
typename std::map<std::string, std::pair<MetricsMapIPtr, SubMapMember> >::iterator p =
_subMaps.find(mapName);
if(p == _subMaps.end())
{
std::pair<MetricsMapIPtr, SubMapMember> map = _map->createSubMap(mapName);
if(map.first)
{
p = _subMaps.insert(make_pair(mapName, map)).first;
}
}
if(p == _subMaps.end())
{
return 0;
}
return p->second.first->getMatching(helper).get();
}
virtual MetricsPtr
clone() const
{
IceUtil::Mutex::Lock sync(*this);
TPtr metrics = TPtr::dynamicCast(_object->ice_clone());
for(typename std::map<std::string, std::pair<MetricsMapIPtr, SubMapMember> >::const_iterator p =
_subMaps.begin(); p != _subMaps.end(); ++p)
{
metrics.get()->*p->second.second = p->second.first->getMetrics();
}
return metrics;
}
private:
std::map<std::string, std::pair<MetricsMapIPtr, SubMapMember> > _subMaps;
MetricsMapT* _map;
};
typedef IceUtil::Handle<EntryT> EntryTPtr;
MetricsMapT(const std::string& mapPrefix,
const Ice::PropertiesPtr& properties,
const std::map<std::string, SubMapMember>& subMaps) :
MetricsMapI(mapPrefix, properties)
{
for(typename std::map<std::string, SubMapMember>::const_iterator p = subMaps.begin(); p != subMaps.end(); ++p)
{
const std::string subMapsPrefix = mapPrefix + ".Map.";
std::string subMapPrefix = subMapsPrefix + p->first;
if(properties->getPropertiesForPrefix(subMapPrefix).empty())
{
if(properties->getPropertiesForPrefix(subMapsPrefix).empty())
{
subMapPrefix = mapPrefix;
}
else
{
continue; // This sub-map isn't configured.
}
}
_subMaps.insert(std::make_pair(p->first,
std::make_pair(new MetricsMapI(subMapPrefix, properties), p->second)));
}
}
std::pair<MetricsMapIPtr, SubMapMember>
createSubMap(const std::string& subMapName)
{
typename std::map<std::string, std::pair<MetricsMapIPtr, SubMapMember> >::const_iterator p =
_subMaps.find(subMapName);
if(p != _subMaps.end())
{
return std::make_pair(new MetricsMapI(*p->second.first), p->second.second);
}
return std::make_pair(MetricsMapIPtr(), static_cast<SubMapMember>(0));
}
protected:
virtual EntryPtr newEntry(const MetricsPtr& object)
{
return new EntryT(this, TPtr::dynamicCast(object));
}
std::map<std::string, std::pair<MetricsMapIPtr, SubMapMember> > _subMaps;
};
class MetricsViewI : public IceUtil::Shared
{
public:
MetricsViewI();
void add(const std::string&, const MetricsMapIPtr&);
void remove(const std::string&);
MetricsView getMetrics();
MetricsFailuresSeq getFailures(const std::string&);
MetricsMapI::EntryPtr getMatching(const MetricsHelper&) const;
std::vector<std::string> getMaps() const;
private:
std::map<std::string, MetricsMapIPtr> _maps;
};
typedef IceUtil::Handle<MetricsViewI> MetricsViewIPtr;
class MetricsAdminI : public MetricsAdmin, public IceUtil::Mutex
{
public:
MetricsAdminI(const ::Ice::PropertiesPtr&);
std::vector<MetricsMapI::EntryPtr> getMatching(const MetricsHelper&) const;
void addUpdater(const std::string&, const UpdaterPtr&);
void addFactory(const std::string&, const MetricsMapFactoryPtr&);
virtual Ice::StringSeq getMetricsViewNames(const ::Ice::Current&);
virtual MetricsView getMetricsView(const std::string&, const ::Ice::Current&);
virtual MetricsFailuresSeq getMetricsFailures(const std::string&, const std::string&, const ::Ice::Current&);
private:
std::map<std::string, MetricsViewIPtr> _views;
std::map<std::string, UpdaterPtr> _updaters;
std::map<std::string, MetricsMapFactoryPtr> _factories;
Ice::PropertiesPtr _properties;
};
typedef IceUtil::Handle<MetricsAdminI> MetricsAdminIPtr;
};
#endif
|