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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
|
/* $Id: Performance.h 28800 2010-04-27 08:22:32Z vboxsync $ */
/** @file
*
* VBox Performance Classes declaration.
*/
/*
* Copyright (C) 2008 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ___performance_h
#define ___performance_h
#include <VBox/com/defs.h>
#include <VBox/com/ptr.h>
#include <VBox/com/string.h>
#include <VBox/com/VirtualBox.h>
#include <iprt/types.h>
#include <iprt/err.h>
#include <algorithm>
#include <functional> /* For std::fun_ptr in testcase */
#include <list>
#include <vector>
/* Forward decl. */
class Machine;
namespace pm
{
/* CPU load is measured in 1/1000 of per cent. */
const uint64_t PM_CPU_LOAD_MULTIPLIER = UINT64_C(100000);
/* Sub Metrics **********************************************************/
class CircularBuffer
{
public:
CircularBuffer() : mData(0), mLength(0), mEnd(0), mWrapped(false) {};
void init(ULONG length);
ULONG length();
ULONG getSequenceNumber() { return mSequenceNumber; }
void put(ULONG value);
void copyTo(ULONG *data);
private:
ULONG *mData;
ULONG mLength;
ULONG mEnd;
ULONG mSequenceNumber;
bool mWrapped;
};
class SubMetric : public CircularBuffer
{
public:
SubMetric(const char *name, const char *description)
: mName(name), mDescription(description) {};
void query(ULONG *data);
const char *getName() { return mName; };
const char *getDescription() { return mDescription; };
private:
const char *mName;
const char *mDescription;
};
/* Collector Hardware Abstraction Layer *********************************/
enum {
COLLECT_NONE = 0x0,
COLLECT_CPU_LOAD = 0x1,
COLLECT_RAM_USAGE = 0x2
};
typedef int HintFlags;
typedef std::pair<RTPROCESS, HintFlags> ProcessFlagsPair;
class CollectorHints
{
public:
typedef std::list<ProcessFlagsPair> ProcessList;
CollectorHints() : mHostFlags(COLLECT_NONE) {}
void collectHostCpuLoad()
{ mHostFlags |= COLLECT_CPU_LOAD; }
void collectHostRamUsage()
{ mHostFlags |= COLLECT_RAM_USAGE; }
void collectProcessCpuLoad(RTPROCESS process)
{ findProcess(process).second |= COLLECT_CPU_LOAD; }
void collectProcessRamUsage(RTPROCESS process)
{ findProcess(process).second |= COLLECT_RAM_USAGE; }
bool isHostCpuLoadCollected() const
{ return (mHostFlags & COLLECT_CPU_LOAD) != 0; }
bool isHostRamUsageCollected() const
{ return (mHostFlags & COLLECT_RAM_USAGE) != 0; }
bool isProcessCpuLoadCollected(RTPROCESS process)
{ return (findProcess(process).second & COLLECT_CPU_LOAD) != 0; }
bool isProcessRamUsageCollected(RTPROCESS process)
{ return (findProcess(process).second & COLLECT_RAM_USAGE) != 0; }
void getProcesses(std::vector<RTPROCESS>& processes) const
{
processes.clear();
processes.reserve(mProcesses.size());
for (ProcessList::const_iterator it = mProcesses.begin(); it != mProcesses.end(); it++)
processes.push_back(it->first);
}
const ProcessList& getProcessFlags() const
{
return mProcesses;
}
private:
HintFlags mHostFlags;
ProcessList mProcesses;
ProcessFlagsPair& findProcess(RTPROCESS process)
{
ProcessList::iterator it;
for (it = mProcesses.begin(); it != mProcesses.end(); it++)
if (it->first == process)
return *it;
/* Not found -- add new */
mProcesses.push_back(ProcessFlagsPair(process, COLLECT_NONE));
return mProcesses.back();
}
};
class CollectorHAL
{
public:
CollectorHAL() : mMemAllocVMM(0), mMemFreeVMM(0), mMemBalloonedVMM(0) {};
virtual ~CollectorHAL() { };
virtual int preCollect(const CollectorHints& /* hints */, uint64_t /* iTick */) { return VINF_SUCCESS; }
/** Returns averaged CPU usage in 1/1000th per cent across all host's CPUs. */
virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle);
/** Returns the average frequency in MHz across all host's CPUs. */
virtual int getHostCpuMHz(ULONG *mhz);
/** Returns the amount of physical memory in kilobytes. */
virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available);
/** Returns CPU usage in 1/1000th per cent by a particular process. */
virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel);
/** Returns the amount of memory used by a process in kilobytes. */
virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used);
/** Returns CPU usage counters in platform-specific units. */
virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
/** Returns process' CPU usage counter in platform-specific units. */
virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
/** Enable metrics collecting (if applicable) */
virtual int enable();
/** Disable metrics collecting (if applicable) */
virtual int disable();
virtual int setMemHypervisorStats(ULONG memAlloc, ULONG memFree, ULONG memBallooned)
{
mMemAllocVMM = memAlloc;
mMemFreeVMM = memFree;
mMemBalloonedVMM = memBallooned;
return S_OK;
}
virtual void getMemHypervisorStats(ULONG *pMemAlloc, ULONG *pMemFree, ULONG *pMemBallooned)
{
*pMemAlloc = mMemAllocVMM;
*pMemFree = mMemFreeVMM;
*pMemBallooned = mMemBalloonedVMM;
}
private:
ULONG mMemAllocVMM;
ULONG mMemFreeVMM;
ULONG mMemBalloonedVMM;
};
class CollectorGuestHAL : public CollectorHAL
{
public:
CollectorGuestHAL(Machine *machine, CollectorHAL *hostHAL) : CollectorHAL(), cEnabled(0), mMachine(machine), mConsole(NULL), mGuest(NULL),
mLastTick(0), mHostHAL(hostHAL), mCpuUser(0), mCpuKernel(0), mCpuIdle(0), mMemTotal(0), mMemFree(0),
mMemBalloon(0), mMemCache(0), mPageTotal(0) {};
~CollectorGuestHAL();
virtual int preCollect(const CollectorHints& hints, uint64_t iTick);
/** Enable metrics collecting (if applicable) */
virtual int enable();
/** Disable metrics collecting (if applicable) */
virtual int disable();
/** Return guest cpu absolute load values (0-100). */
void getGuestCpuLoad(ULONG *pulCpuUser, ULONG *pulCpuKernel, ULONG *pulCpuIdle)
{
*pulCpuUser = mCpuUser;
*pulCpuKernel = mCpuKernel;
*pulCpuIdle = mCpuIdle;
}
/** Return guest memory information in KB. */
void getGuestMemLoad(ULONG *pulMemTotal, ULONG *pulMemFree, ULONG *pulMemBalloon, ULONG *pulMemCache, ULONG *pulPageTotal)
{
*pulMemTotal = mMemTotal;
*pulMemFree = mMemFree;
*pulMemBalloon = mMemBalloon;
*pulMemCache = mMemCache;
*pulPageTotal = mPageTotal;
}
protected:
uint32_t cEnabled;
Machine *mMachine;
ComPtr<IConsole> mConsole;
ComPtr<IGuest> mGuest;
uint64_t mLastTick;
CollectorHAL *mHostHAL;
ULONG mCpuUser;
ULONG mCpuKernel;
ULONG mCpuIdle;
ULONG mMemTotal;
ULONG mMemFree;
ULONG mMemBalloon;
ULONG mMemCache;
ULONG mPageTotal;
};
extern CollectorHAL *createHAL();
/* Base Metrics *********************************************************/
class BaseMetric
{
public:
BaseMetric(CollectorHAL *hal, const char *name, ComPtr<IUnknown> object)
: mPeriod(0), mLength(0), mHAL(hal), mName(name), mObject(object), mLastSampleTaken(0), mEnabled(false) {};
virtual ~BaseMetric() {};
virtual void init(ULONG period, ULONG length) = 0;
virtual void preCollect(CollectorHints& hints, uint64_t iTick) = 0;
virtual void collect() = 0;
virtual const char *getUnit() = 0;
virtual ULONG getMinValue() = 0;
virtual ULONG getMaxValue() = 0;
virtual ULONG getScale() = 0;
bool collectorBeat(uint64_t nowAt);
void enable()
{
mEnabled = true;
mHAL->enable();
};
void disable()
{
mHAL->disable();
mEnabled = false;
};
bool isEnabled() { return mEnabled; };
ULONG getPeriod() { return mPeriod; };
ULONG getLength() { return mLength; };
const char *getName() { return mName; };
ComPtr<IUnknown> getObject() { return mObject; };
bool associatedWith(ComPtr<IUnknown> object) { return mObject == object; };
protected:
ULONG mPeriod;
ULONG mLength;
CollectorHAL *mHAL;
const char *mName;
ComPtr<IUnknown> mObject;
uint64_t mLastSampleTaken;
bool mEnabled;
};
class HostCpuLoad : public BaseMetric
{
public:
HostCpuLoad(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle)
: BaseMetric(hal, "CPU/Load", object), mUser(user), mKernel(kernel), mIdle(idle) {};
~HostCpuLoad() { delete mUser; delete mKernel; delete mIdle; };
void init(ULONG period, ULONG length);
void collect();
const char *getUnit() { return "%"; };
ULONG getMinValue() { return 0; };
ULONG getMaxValue() { return PM_CPU_LOAD_MULTIPLIER; };
ULONG getScale() { return PM_CPU_LOAD_MULTIPLIER / 100; }
protected:
SubMetric *mUser;
SubMetric *mKernel;
SubMetric *mIdle;
};
class HostCpuLoadRaw : public HostCpuLoad
{
public:
HostCpuLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle)
: HostCpuLoad(hal, object, user, kernel, idle), mUserPrev(0), mKernelPrev(0), mIdlePrev(0) {};
void preCollect(CollectorHints& hints, uint64_t iTick);
void collect();
private:
uint64_t mUserPrev;
uint64_t mKernelPrev;
uint64_t mIdlePrev;
};
class HostCpuMhz : public BaseMetric
{
public:
HostCpuMhz(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *mhz)
: BaseMetric(hal, "CPU/MHz", object), mMHz(mhz) {};
~HostCpuMhz() { delete mMHz; };
void init(ULONG period, ULONG length);
void preCollect(CollectorHints& /* hints */, uint64_t /* iTick */) {}
void collect();
const char *getUnit() { return "MHz"; };
ULONG getMinValue() { return 0; };
ULONG getMaxValue() { return INT32_MAX; };
ULONG getScale() { return 1; }
private:
SubMetric *mMHz;
};
class HostRamUsage : public BaseMetric
{
public:
HostRamUsage(CollectorHAL *hal, ComPtr<IUnknown> object, SubMetric *total, SubMetric *used, SubMetric *available, SubMetric *allocVMM, SubMetric *freeVMM, SubMetric *balloonVMM)
: BaseMetric(hal, "RAM/Usage", object), mTotal(total), mUsed(used), mAvailable(available), mAllocVMM(allocVMM), mFreeVMM(freeVMM), mBalloonVMM(balloonVMM) {};
~HostRamUsage() { delete mTotal; delete mUsed; delete mAvailable; delete mAllocVMM; delete mFreeVMM; delete mBalloonVMM; };
void init(ULONG period, ULONG length);
void preCollect(CollectorHints& hints, uint64_t iTick);
void collect();
const char *getUnit() { return "kB"; };
ULONG getMinValue() { return 0; };
ULONG getMaxValue() { return INT32_MAX; };
ULONG getScale() { return 1; }
private:
SubMetric *mTotal;
SubMetric *mUsed;
SubMetric *mAvailable;
SubMetric *mAllocVMM;
SubMetric *mFreeVMM;
SubMetric *mBalloonVMM;
};
class MachineCpuLoad : public BaseMetric
{
public:
MachineCpuLoad(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *user, SubMetric *kernel)
: BaseMetric(hal, "CPU/Load", object), mProcess(process), mUser(user), mKernel(kernel) {};
~MachineCpuLoad() { delete mUser; delete mKernel; };
void init(ULONG period, ULONG length);
void collect();
const char *getUnit() { return "%"; };
ULONG getMinValue() { return 0; };
ULONG getMaxValue() { return PM_CPU_LOAD_MULTIPLIER; };
ULONG getScale() { return PM_CPU_LOAD_MULTIPLIER / 100; }
protected:
RTPROCESS mProcess;
SubMetric *mUser;
SubMetric *mKernel;
};
class MachineCpuLoadRaw : public MachineCpuLoad
{
public:
MachineCpuLoadRaw(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *user, SubMetric *kernel)
: MachineCpuLoad(hal, object, process, user, kernel), mHostTotalPrev(0), mProcessUserPrev(0), mProcessKernelPrev(0) {};
void preCollect(CollectorHints& hints, uint64_t iTick);
void collect();
private:
uint64_t mHostTotalPrev;
uint64_t mProcessUserPrev;
uint64_t mProcessKernelPrev;
};
class MachineRamUsage : public BaseMetric
{
public:
MachineRamUsage(CollectorHAL *hal, ComPtr<IUnknown> object, RTPROCESS process, SubMetric *used)
: BaseMetric(hal, "RAM/Usage", object), mProcess(process), mUsed(used) {};
~MachineRamUsage() { delete mUsed; };
void init(ULONG period, ULONG length);
void preCollect(CollectorHints& hints, uint64_t iTick);
void collect();
const char *getUnit() { return "kB"; };
ULONG getMinValue() { return 0; };
ULONG getMaxValue() { return INT32_MAX; };
ULONG getScale() { return 1; }
private:
RTPROCESS mProcess;
SubMetric *mUsed;
};
class GuestCpuLoad : public BaseMetric
{
public:
GuestCpuLoad(CollectorGuestHAL *hal, ComPtr<IUnknown> object, SubMetric *user, SubMetric *kernel, SubMetric *idle)
: BaseMetric(hal, "CPU/Load", object), mUser(user), mKernel(kernel), mIdle(idle), mGuestHAL(hal) {};
~GuestCpuLoad() { delete mUser; delete mKernel; delete mIdle; };
void init(ULONG period, ULONG length);
void preCollect(CollectorHints& hints, uint64_t iTick);
void collect();
const char *getUnit() { return "%"; };
ULONG getMinValue() { return 0; };
ULONG getMaxValue() { return PM_CPU_LOAD_MULTIPLIER; };
ULONG getScale() { return PM_CPU_LOAD_MULTIPLIER / 100; }
protected:
SubMetric *mUser;
SubMetric *mKernel;
SubMetric *mIdle;
CollectorGuestHAL *mGuestHAL;
};
class GuestRamUsage : public BaseMetric
{
public:
GuestRamUsage(CollectorGuestHAL *hal, ComPtr<IUnknown> object, SubMetric *total, SubMetric *free, SubMetric *balloon, SubMetric *cache, SubMetric *pagedtotal)
: BaseMetric(hal, "RAM/Usage", object), mTotal(total), mFree(free), mBallooned(balloon), mCache(cache), mPagedTotal(pagedtotal), mGuestHAL(hal) {};
~GuestRamUsage() { delete mTotal; delete mFree; delete mBallooned; delete mCache; delete mPagedTotal; };
void init(ULONG period, ULONG length);
void preCollect(CollectorHints& hints, uint64_t iTick);
void collect();
const char *getUnit() { return "kB"; };
ULONG getMinValue() { return 0; };
ULONG getMaxValue() { return INT32_MAX; };
ULONG getScale() { return 1; }
private:
SubMetric *mTotal, *mFree, *mBallooned, *mCache, *mPagedTotal;
CollectorGuestHAL *mGuestHAL;
};
/* Aggregate Functions **************************************************/
class Aggregate
{
public:
virtual ULONG compute(ULONG *data, ULONG length) = 0;
virtual const char *getName() = 0;
};
class AggregateAvg : public Aggregate
{
public:
virtual ULONG compute(ULONG *data, ULONG length);
virtual const char *getName();
};
class AggregateMin : public Aggregate
{
public:
virtual ULONG compute(ULONG *data, ULONG length);
virtual const char *getName();
};
class AggregateMax : public Aggregate
{
public:
virtual ULONG compute(ULONG *data, ULONG length);
virtual const char *getName();
};
/* Metric Class *********************************************************/
class Metric
{
public:
Metric(BaseMetric *baseMetric, SubMetric *subMetric, Aggregate *aggregate) :
mName(subMetric->getName()), mBaseMetric(baseMetric), mSubMetric(subMetric), mAggregate(aggregate)
{
if (mAggregate)
{
mName.append(":");
mName.append(mAggregate->getName());
}
}
~Metric()
{
delete mAggregate;
}
bool associatedWith(ComPtr<IUnknown> object) { return getObject() == object; };
const char *getName() { return mName.c_str(); };
ComPtr<IUnknown> getObject() { return mBaseMetric->getObject(); };
const char *getDescription()
{ return mAggregate ? "" : mSubMetric->getDescription(); };
const char *getUnit() { return mBaseMetric->getUnit(); };
ULONG getMinValue() { return mBaseMetric->getMinValue(); };
ULONG getMaxValue() { return mBaseMetric->getMaxValue(); };
ULONG getPeriod() { return mBaseMetric->getPeriod(); };
ULONG getLength()
{ return mAggregate ? 1 : mBaseMetric->getLength(); };
ULONG getScale() { return mBaseMetric->getScale(); }
void query(ULONG **data, ULONG *count, ULONG *sequenceNumber);
private:
iprt::MiniString mName;
BaseMetric *mBaseMetric;
SubMetric *mSubMetric;
Aggregate *mAggregate;
};
/* Filter Class *********************************************************/
class Filter
{
public:
Filter(ComSafeArrayIn(IN_BSTR, metricNames),
ComSafeArrayIn(IUnknown * , objects));
static bool patternMatch(const char *pszPat, const char *pszName,
bool fSeenColon = false);
bool match(const ComPtr<IUnknown> object, const iprt::MiniString &name) const;
private:
void init(ComSafeArrayIn(IN_BSTR, metricNames),
ComSafeArrayIn(IUnknown * , objects));
typedef std::pair<const ComPtr<IUnknown>, const iprt::MiniString> FilterElement;
typedef std::list<FilterElement> ElementList;
ElementList mElements;
void processMetricList(const com::Utf8Str &name, const ComPtr<IUnknown> object);
};
}
#endif /* ___performance_h */
/* vi: set tabstop=4 shiftwidth=4 expandtab: */
|