VirtualBox

source: vbox/trunk/src/VBox/Main/GuestImpl.cpp@ 5528

Last change on this file since 5528 was 4685, checked in by vboxsync, 17 years ago

Sample number added for guest statistics

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.6 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include "GuestImpl.h"
19#include "ConsoleImpl.h"
20#include "VMMDev.h"
21
22#include "Logging.h"
23
24#include <VBox/VBoxDev.h>
25#include <iprt/cpputils.h>
26
27// defines
28/////////////////////////////////////////////////////////////////////////////
29
30// constructor / destructor
31/////////////////////////////////////////////////////////////////////////////
32
33DEFINE_EMPTY_CTOR_DTOR (Guest)
34
35HRESULT Guest::FinalConstruct()
36{
37 return S_OK;
38}
39
40void Guest::FinalRelease()
41{
42 uninit ();
43}
44
45// public methods only for internal purposes
46/////////////////////////////////////////////////////////////////////////////
47
48/**
49 * Initializes the guest object.
50 */
51HRESULT Guest::init (Console *aParent)
52{
53 LogFlowThisFunc (("aParent=%p\n", aParent));
54
55 ComAssertRet (aParent, E_INVALIDARG);
56
57 /* Enclose the state transition NotReady->InInit->Ready */
58 AutoInitSpan autoInitSpan (this);
59 AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
60
61 unconst (mParent) = aParent;
62
63 /* mData.mAdditionsActive is FALSE */
64
65 /* Confirm a successful initialization when it's the case */
66 autoInitSpan.setSucceeded();
67
68 ULONG aMemoryBalloonSize;
69 HRESULT ret = mParent->machine()->COMGETTER(MemoryBalloonSize)(&aMemoryBalloonSize);
70 if (ret == S_OK)
71 mMemoryBalloonSize = aMemoryBalloonSize;
72 else
73 mMemoryBalloonSize = 0; /* Default is no ballooning */
74
75 ULONG aStatUpdateInterval;
76 ret = mParent->machine()->COMGETTER(StatisticsUpdateInterval)(&aStatUpdateInterval);
77 if (ret == S_OK)
78 mStatUpdateInterval = aStatUpdateInterval;
79 else
80 mStatUpdateInterval = 0; /* Default is not to report guest statistics at all */
81
82 /* invalidate all stats */
83 for (int i=0;i<GuestStatisticType_MaxVal;i++)
84 mCurrentGuestStat[i] = GUEST_STAT_INVALID;
85
86 /* start with sample 0 */
87 mCurrentGuestStat[GuestStatisticType_SampleNumber] = 0;
88 return S_OK;
89}
90
91/**
92 * Uninitializes the instance and sets the ready flag to FALSE.
93 * Called either from FinalRelease() or by the parent when it gets destroyed.
94 */
95void Guest::uninit()
96{
97 LogFlowThisFunc (("\n"));
98
99 /* Enclose the state transition Ready->InUninit->NotReady */
100 AutoUninitSpan autoUninitSpan (this);
101 if (autoUninitSpan.uninitDone())
102 return;
103
104 unconst (mParent).setNull();
105}
106
107// IGuest properties
108/////////////////////////////////////////////////////////////////////////////
109
110STDMETHODIMP Guest::COMGETTER(OSTypeId) (BSTR *aOSTypeId)
111{
112 if (!aOSTypeId)
113 return E_POINTER;
114
115 AutoCaller autoCaller (this);
116 CheckComRCReturnRC (autoCaller.rc());
117
118 AutoReaderLock alock (this);
119
120 // redirect the call to IMachine if no additions are installed
121 if (mData.mAdditionsVersion.isNull())
122 return mParent->machine()->COMGETTER(OSTypeId) (aOSTypeId);
123
124 mData.mOSTypeId.cloneTo (aOSTypeId);
125
126 return S_OK;
127}
128
129STDMETHODIMP Guest::COMGETTER(AdditionsActive) (BOOL *aAdditionsActive)
130{
131 if (!aAdditionsActive)
132 return E_POINTER;
133
134 AutoCaller autoCaller (this);
135 CheckComRCReturnRC (autoCaller.rc());
136
137 AutoReaderLock alock (this);
138
139 *aAdditionsActive = mData.mAdditionsActive;
140
141 return S_OK;
142}
143
144STDMETHODIMP Guest::COMGETTER(AdditionsVersion) (BSTR *aAdditionsVersion)
145{
146 if (!aAdditionsVersion)
147 return E_POINTER;
148
149 AutoCaller autoCaller (this);
150 CheckComRCReturnRC (autoCaller.rc());
151
152 AutoReaderLock alock (this);
153
154 mData.mAdditionsVersion.cloneTo (aAdditionsVersion);
155
156 return S_OK;
157}
158
159STDMETHODIMP Guest::COMGETTER(SupportsSeamless) (BOOL *aSupportsSeamless)
160{
161 if (!aSupportsSeamless)
162 return E_POINTER;
163
164 AutoCaller autoCaller (this);
165 CheckComRCReturnRC (autoCaller.rc());
166
167 AutoReaderLock alock (this);
168
169 *aSupportsSeamless = mData.mSupportsSeamless;
170
171 return S_OK;
172}
173
174STDMETHODIMP Guest::COMGETTER(MemoryBalloonSize) (ULONG *aMemoryBalloonSize)
175{
176 if (!aMemoryBalloonSize)
177 return E_POINTER;
178
179 AutoCaller autoCaller (this);
180 CheckComRCReturnRC (autoCaller.rc());
181
182 AutoReaderLock alock (this);
183
184 *aMemoryBalloonSize = mMemoryBalloonSize;
185
186 return S_OK;
187}
188
189STDMETHODIMP Guest::COMSETTER(MemoryBalloonSize) (ULONG aMemoryBalloonSize)
190{
191 AutoCaller autoCaller (this);
192 CheckComRCReturnRC (autoCaller.rc());
193
194 AutoLock alock (this);
195
196 HRESULT ret = mParent->machine()->COMSETTER(MemoryBalloonSize)(aMemoryBalloonSize);
197 if (ret == S_OK)
198 {
199 mMemoryBalloonSize = aMemoryBalloonSize;
200 /* forward the information to the VMM device */
201 VMMDev *vmmDev = mParent->getVMMDev();
202 if (vmmDev)
203 vmmDev->getVMMDevPort()->pfnSetMemoryBalloon(vmmDev->getVMMDevPort(), aMemoryBalloonSize);
204 }
205
206 return ret;
207}
208
209STDMETHODIMP Guest::COMGETTER(StatisticsUpdateInterval) (ULONG *aUpdateInterval)
210{
211 if (!aUpdateInterval)
212 return E_POINTER;
213
214 AutoCaller autoCaller (this);
215 CheckComRCReturnRC (autoCaller.rc());
216
217 AutoReaderLock alock (this);
218
219 *aUpdateInterval = mStatUpdateInterval;
220
221 return S_OK;
222}
223
224STDMETHODIMP Guest::COMSETTER(StatisticsUpdateInterval) (ULONG aUpdateInterval)
225{
226 AutoCaller autoCaller (this);
227 CheckComRCReturnRC (autoCaller.rc());
228
229 AutoLock alock (this);
230
231 HRESULT ret = mParent->machine()->COMSETTER(StatisticsUpdateInterval)(aUpdateInterval);
232 if (ret == S_OK)
233 {
234 mStatUpdateInterval = aUpdateInterval;
235 /* forward the information to the VMM device */
236 VMMDev *vmmDev = mParent->getVMMDev();
237 if (vmmDev)
238 vmmDev->getVMMDevPort()->pfnSetStatisticsInterval(vmmDev->getVMMDevPort(), aUpdateInterval);
239 }
240
241 return ret;
242}
243
244STDMETHODIMP Guest::SetCredentials(INPTR BSTR aUserName, INPTR BSTR aPassword,
245 INPTR BSTR aDomain, BOOL aAllowInteractiveLogon)
246{
247 if (!aUserName || !aPassword || !aDomain)
248 return E_INVALIDARG;
249
250 AutoCaller autoCaller (this);
251 CheckComRCReturnRC (autoCaller.rc());
252
253 /* forward the information to the VMM device */
254 VMMDev *vmmDev = mParent->getVMMDev();
255 if (vmmDev)
256 {
257 uint32_t u32Flags = VMMDEV_SETCREDENTIALS_GUESTLOGON;
258 if (!aAllowInteractiveLogon)
259 u32Flags = VMMDEV_SETCREDENTIALS_NOLOCALLOGON;
260
261 vmmDev->getVMMDevPort()->pfnSetCredentials(vmmDev->getVMMDevPort(),
262 Utf8Str(aUserName).raw(), Utf8Str(aPassword).raw(),
263 Utf8Str(aDomain).raw(), u32Flags);
264 return S_OK;
265 }
266
267 return setError (E_FAIL,
268 tr ("VMM device is not available (is the VM running?)"));
269}
270
271STDMETHODIMP Guest::GetStatistic(ULONG aCpuId, GuestStatisticType_T aStatistic, ULONG *aStatVal)
272{
273 if (!aStatVal)
274 return E_INVALIDARG;
275
276 if (aCpuId != 0)
277 return E_INVALIDARG;
278
279 if (aStatistic >= GuestStatisticType_MaxVal)
280 return E_INVALIDARG;
281
282 /* not available or not yet reported? */
283 if (mCurrentGuestStat[aStatistic] == GUEST_STAT_INVALID)
284 return E_INVALIDARG;
285
286 *aStatVal = mCurrentGuestStat[aStatistic];
287 return S_OK;
288}
289
290STDMETHODIMP Guest::SetStatistic(ULONG aCpuId, GuestStatisticType_T aStatistic, ULONG aStatVal)
291{
292 if (aCpuId != 0)
293 return E_INVALIDARG;
294
295 if (aStatistic >= GuestStatisticType_MaxVal)
296 return E_INVALIDARG;
297
298 /* internal method assumes that the caller known what he's doing (no boundary checks) */
299 mCurrentGuestStat[aStatistic] = aStatVal;
300 return S_OK;
301}
302
303// public methods only for internal purposes
304/////////////////////////////////////////////////////////////////////////////
305
306void Guest::setAdditionsVersion (Bstr aVersion)
307{
308 AssertReturnVoid (!aVersion.isEmpty());
309
310 AutoCaller autoCaller (this);
311 AssertComRCReturnVoid (autoCaller.rc());
312
313 AutoLock alock (this);
314
315 mData.mAdditionsVersion = aVersion;
316 /* this implies that Additions are active */
317 mData.mAdditionsActive = TRUE;
318}
319
320void Guest::setSupportsSeamless (BOOL aSupportsSeamless)
321{
322 AutoCaller autoCaller (this);
323 AssertComRCReturnVoid (autoCaller.rc());
324
325 AutoLock alock (this);
326
327 mData.mSupportsSeamless = aSupportsSeamless;
328}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette