VirtualBox

source: vbox/trunk/src/VBox/Main/include/PerformanceImpl.h@ 25414

Last change on this file since 25414 was 23223, checked in by vboxsync, 15 years ago

API: big medium handling change and lots of assorted other cleanups and fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1/* $Id: PerformanceImpl.h 23223 2009-09-22 15:50:03Z vboxsync $ */
2
3/** @file
4 *
5 * VBox Performance COM class implementation.
6 */
7
8/*
9 * Copyright (C) 2008-2009 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24#ifndef ____H_PERFORMANCEIMPL
25#define ____H_PERFORMANCEIMPL
26
27#include "VirtualBoxBase.h"
28
29#include <VBox/com/com.h>
30#include <VBox/com/array.h>
31//#ifdef VBOX_WITH_RESOURCE_USAGE_API
32#include <iprt/timer.h>
33//#endif /* VBOX_WITH_RESOURCE_USAGE_API */
34
35#include <list>
36
37namespace pm
38{
39 class Metric;
40 class BaseMetric;
41 class CollectorHAL;
42}
43
44#undef min
45#undef max
46
47/* Each second we obtain new CPU load stats. */
48#define VBOX_USAGE_SAMPLER_MIN_INTERVAL 1000
49
50class Machine;
51class HostUSBDevice;
52
53class ATL_NO_VTABLE PerformanceMetric :
54 public VirtualBoxBase,
55 public VirtualBoxSupportTranslation<PerformanceMetric>,
56 VBOX_SCRIPTABLE_IMPL(IPerformanceMetric)
57{
58public:
59
60 DECLARE_NOT_AGGREGATABLE (PerformanceMetric)
61
62 DECLARE_PROTECT_FINAL_CONSTRUCT()
63
64 BEGIN_COM_MAP (PerformanceMetric)
65 COM_INTERFACE_ENTRY (IPerformanceMetric)
66 COM_INTERFACE_ENTRY (IDispatch)
67 END_COM_MAP()
68
69 DECLARE_EMPTY_CTOR_DTOR (PerformanceMetric)
70
71 HRESULT FinalConstruct();
72 void FinalRelease();
73
74 // public initializer/uninitializer for internal purposes only
75 HRESULT init (pm::Metric *aMetric);
76 HRESULT init (pm::BaseMetric *aMetric);
77 void uninit();
78
79 // IPerformanceMetric properties
80 STDMETHOD(COMGETTER(MetricName)) (BSTR *aMetricName);
81 STDMETHOD(COMGETTER(Object)) (IUnknown **anObject);
82 STDMETHOD(COMGETTER(Description)) (BSTR *aDescription);
83 STDMETHOD(COMGETTER(Period)) (ULONG *aPeriod);
84 STDMETHOD(COMGETTER(Count)) (ULONG *aCount);
85 STDMETHOD(COMGETTER(Unit)) (BSTR *aUnit);
86 STDMETHOD(COMGETTER(MinimumValue)) (LONG *aMinValue);
87 STDMETHOD(COMGETTER(MaximumValue)) (LONG *aMaxValue);
88
89 // IPerformanceMetric methods
90
91 // public methods only for internal purposes
92
93 // public methods for internal purposes only
94 // (ensure there is a caller and a read lock before calling them!)
95
96private:
97
98 struct Data
99 {
100 /* Constructor. */
101 Data()
102 : period(0), count(0), min(0), max(0)
103 {
104 }
105
106 Bstr name;
107 ComPtr<IUnknown> object;
108 Bstr description;
109 ULONG period;
110 ULONG count;
111 Bstr unit;
112 LONG min;
113 LONG max;
114 };
115
116 Data m;
117};
118
119
120class ATL_NO_VTABLE PerformanceCollector :
121 public VirtualBoxBase,
122 public VirtualBoxSupportErrorInfoImpl<PerformanceCollector, IPerformanceCollector>,
123 public VirtualBoxSupportTranslation<PerformanceCollector>,
124 VBOX_SCRIPTABLE_IMPL(IPerformanceCollector)
125{
126public:
127
128 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (PerformanceCollector)
129
130 DECLARE_NOT_AGGREGATABLE (PerformanceCollector)
131
132 DECLARE_PROTECT_FINAL_CONSTRUCT()
133
134 BEGIN_COM_MAP(PerformanceCollector)
135 COM_INTERFACE_ENTRY(ISupportErrorInfo)
136 COM_INTERFACE_ENTRY(IPerformanceCollector)
137 COM_INTERFACE_ENTRY(IDispatch)
138 END_COM_MAP()
139
140 DECLARE_EMPTY_CTOR_DTOR (PerformanceCollector)
141
142 HRESULT FinalConstruct();
143 void FinalRelease();
144
145 // public initializers/uninitializers only for internal purposes
146 HRESULT init();
147 void uninit();
148
149 // IPerformanceCollector properties
150 STDMETHOD(COMGETTER(MetricNames)) (ComSafeArrayOut (BSTR, metricNames));
151
152 // IPerformanceCollector methods
153 STDMETHOD(GetMetrics) (ComSafeArrayIn (IN_BSTR, metricNames),
154 ComSafeArrayIn (IUnknown *, objects),
155 ComSafeArrayOut (IPerformanceMetric *, outMetrics));
156 STDMETHOD(SetupMetrics) (ComSafeArrayIn (IN_BSTR, metricNames),
157 ComSafeArrayIn (IUnknown *, objects),
158 ULONG aPeriod, ULONG aCount,
159 ComSafeArrayOut (IPerformanceMetric *,
160 outMetrics));
161 STDMETHOD(EnableMetrics) (ComSafeArrayIn (IN_BSTR, metricNames),
162 ComSafeArrayIn (IUnknown *, objects),
163 ComSafeArrayOut (IPerformanceMetric *,
164 outMetrics));
165 STDMETHOD(DisableMetrics) (ComSafeArrayIn (IN_BSTR, metricNames),
166 ComSafeArrayIn (IUnknown *, objects),
167 ComSafeArrayOut (IPerformanceMetric *,
168 outMetrics));
169 STDMETHOD(QueryMetricsData) (ComSafeArrayIn (IN_BSTR, metricNames),
170 ComSafeArrayIn (IUnknown *, objects),
171 ComSafeArrayOut (BSTR, outMetricNames),
172 ComSafeArrayOut (IUnknown *, outObjects),
173 ComSafeArrayOut (BSTR, outUnits),
174 ComSafeArrayOut (ULONG, outScales),
175 ComSafeArrayOut (ULONG, outSequenceNumbers),
176 ComSafeArrayOut (ULONG, outDataIndices),
177 ComSafeArrayOut (ULONG, outDataLengths),
178 ComSafeArrayOut (LONG, outData));
179
180 // public methods only for internal purposes
181
182 void registerBaseMetric (pm::BaseMetric *baseMetric);
183 void registerMetric (pm::Metric *metric);
184 void unregisterBaseMetricsFor (const ComPtr<IUnknown> &object);
185 void unregisterMetricsFor (const ComPtr<IUnknown> &object);
186
187 void suspendSampling();
188 void resumeSampling();
189
190 // public methods for internal purposes only
191 // (ensure there is a caller and a read lock before calling them!)
192
193 pm::CollectorHAL *getHAL() { return m.hal; };
194
195 // for VirtualBoxSupportErrorInfoImpl
196 static const wchar_t *getComponentName() { return L"PerformanceCollector"; }
197
198private:
199 HRESULT toIPerformanceMetric(pm::Metric *src, IPerformanceMetric **dst);
200 HRESULT toIPerformanceMetric(pm::BaseMetric *src, IPerformanceMetric **dst);
201
202 static void staticSamplerCallback (RTTIMERLR hTimerLR, void *pvUser, uint64_t iTick);
203 void samplerCallback();
204
205 typedef std::list<pm::Metric*> MetricList;
206 typedef std::list<pm::BaseMetric*> BaseMetricList;
207
208 enum
209 {
210 MAGIC = 0xABBA1972u
211 };
212
213 unsigned int mMagic;
214
215 struct Data
216 {
217 Data() : hal(0) {};
218
219 BaseMetricList baseMetrics;
220 MetricList metrics;
221 RTTIMERLR sampler;
222 pm::CollectorHAL *hal;
223 };
224
225 Data m;
226};
227
228#endif //!____H_PERFORMANCEIMPL
229/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use