VirtualBox

source: vbox/trunk/src/VBox/Main/SystemPropertiesImpl.cpp@ 1711

Last change on this file since 1711 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.4 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung 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 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#include "SystemPropertiesImpl.h"
23#include "VirtualBoxImpl.h"
24#include "MachineImpl.h"
25#include "Logging.h"
26
27// generated header
28#include "SchemaDefs.h"
29
30#include <iprt/path.h>
31#include <iprt/dir.h>
32#include <VBox/param.h>
33#include <VBox/err.h>
34
35// defines
36/////////////////////////////////////////////////////////////////////////////
37
38// constructor / destructor
39/////////////////////////////////////////////////////////////////////////////
40
41HRESULT SystemProperties::FinalConstruct()
42{
43 return S_OK;
44}
45
46void SystemProperties::FinalRelease()
47{
48 if (isReady())
49 uninit ();
50}
51
52// public methods only for internal purposes
53/////////////////////////////////////////////////////////////////////////////
54
55/**
56 * Initializes the system information object.
57 *
58 * @returns COM result indicator
59 */
60HRESULT SystemProperties::init (VirtualBox *aParent)
61{
62 LogFlowMember (("SystemProperties::init()\n"));
63
64 ComAssertRet (aParent, E_FAIL);
65
66 AutoLock alock (this);
67 ComAssertRet (!isReady(), E_UNEXPECTED);
68
69 mParent = aParent;
70
71 setDefaultVDIFolder (NULL);
72 setDefaultMachineFolder (NULL);
73 setRemoteDisplayAuthLibrary (NULL);
74
75 mHWVirtExEnabled = false;
76
77 setReady(true);
78 return S_OK;
79}
80
81/**
82 * Uninitializes the instance and sets the ready flag to FALSE.
83 * Called either from FinalRelease() or by the parent when it gets destroyed.
84 */
85void SystemProperties::uninit()
86{
87 LogFlowMember (("SystemProperties::uninit()\n"));
88
89 AutoLock alock (this);
90 AssertReturn (isReady(), (void) 0);
91
92 setReady (false);
93}
94
95// ISystemProperties properties
96/////////////////////////////////////////////////////////////////////////////
97
98
99STDMETHODIMP SystemProperties::COMGETTER(MinGuestRAM)(ULONG *minRAM)
100{
101 if (!minRAM)
102 return E_POINTER;
103 AutoLock lock(this);
104 CHECK_READY();
105
106 *minRAM = SchemaDefs::MinGuestRAM;
107
108 return S_OK;
109}
110
111STDMETHODIMP SystemProperties::COMGETTER(MaxGuestRAM)(ULONG *maxRAM)
112{
113 if (!maxRAM)
114 return E_POINTER;
115 AutoLock lock(this);
116 CHECK_READY();
117
118 *maxRAM = SchemaDefs::MaxGuestRAM;
119
120 return S_OK;
121}
122
123STDMETHODIMP SystemProperties::COMGETTER(MinGuestVRAM)(ULONG *minVRAM)
124{
125 if (!minVRAM)
126 return E_POINTER;
127 AutoLock lock(this);
128 CHECK_READY();
129
130 *minVRAM = SchemaDefs::MinGuestVRAM;
131
132 return S_OK;
133}
134
135STDMETHODIMP SystemProperties::COMGETTER(MaxGuestVRAM)(ULONG *maxVRAM)
136{
137 if (!maxVRAM)
138 return E_POINTER;
139 AutoLock lock(this);
140 CHECK_READY();
141
142 *maxVRAM = SchemaDefs::MaxGuestVRAM;
143
144 return S_OK;
145}
146
147STDMETHODIMP SystemProperties::COMGETTER(MaxVDISize)(ULONG64 *maxVDISize)
148{
149 if (!maxVDISize)
150 return E_POINTER;
151 AutoLock lock(this);
152 CHECK_READY();
153
154 /** The BIOS supports currently 32 bit LBA numbers (implementing the full
155 * 48 bit range is in theory trivial, but the crappy compiler makes things
156 * more difficult). This translates to almost 2 TBytes (to be on the safe
157 * side, the reported limit is 1 MiByte less than that, as the total number
158 * of sectors should fit in 32 bits, too), which should bei enough for
159 * the moment. The virtual ATA disks support complete LBA48 (although for
160 * example iSCSI is also currently limited to 32 bit LBA), so the
161 * theoretical maximum disk size is 128 PiByte. The user interface cannot
162 * cope with this in a reasonable way yet. */
163 *maxVDISize = 2048 * 1024 - 1;
164
165 return S_OK;
166}
167
168STDMETHODIMP SystemProperties::COMGETTER(NetworkAdapterCount)(ULONG *count)
169{
170 if (!count)
171 return E_POINTER;
172 AutoLock lock (this);
173 CHECK_READY();
174
175 *count = SchemaDefs::NetworkAdapterCount;
176
177 return S_OK;
178}
179
180
181STDMETHODIMP SystemProperties::COMGETTER(MaxBootPosition)(ULONG *aMaxBootPosition)
182{
183 if (!aMaxBootPosition)
184 return E_POINTER;
185 AutoLock lock (this);
186 CHECK_READY();
187
188 *aMaxBootPosition = SchemaDefs::MaxBootPosition;
189
190 return S_OK;
191}
192
193STDMETHODIMP SystemProperties::COMGETTER(DefaultVDIFolder) (BSTR *aDefaultVDIFolder)
194{
195 if (!aDefaultVDIFolder)
196 return E_POINTER;
197
198 AutoLock alock (this);
199 CHECK_READY();
200
201 mDefaultVDIFolderFull.cloneTo (aDefaultVDIFolder);
202
203 return S_OK;
204}
205
206STDMETHODIMP SystemProperties::COMSETTER(DefaultVDIFolder) (INPTR BSTR aDefaultVDIFolder)
207{
208 AutoLock alock (this);
209 CHECK_READY();
210
211 HRESULT rc = setDefaultVDIFolder (aDefaultVDIFolder);
212 if (FAILED (rc))
213 return rc;
214
215 alock.unlock();
216 return mParent->saveSettings();
217}
218
219STDMETHODIMP SystemProperties::COMGETTER(DefaultMachineFolder) (BSTR *aDefaultMachineFolder)
220{
221 if (!aDefaultMachineFolder)
222 return E_POINTER;
223
224 AutoLock alock (this);
225 CHECK_READY();
226
227 mDefaultMachineFolderFull.cloneTo (aDefaultMachineFolder);
228
229 return S_OK;
230}
231
232STDMETHODIMP SystemProperties::COMSETTER(DefaultMachineFolder) (INPTR BSTR aDefaultMachineFolder)
233{
234 AutoLock alock (this);
235 CHECK_READY();
236
237 HRESULT rc = setDefaultMachineFolder (aDefaultMachineFolder);
238 if (FAILED (rc))
239 return rc;
240
241 alock.unlock();
242 return mParent->saveSettings();
243}
244
245STDMETHODIMP SystemProperties::COMGETTER(RemoteDisplayAuthLibrary) (BSTR *aRemoteDisplayAuthLibrary)
246{
247 if (!aRemoteDisplayAuthLibrary)
248 return E_POINTER;
249
250 AutoLock alock (this);
251 CHECK_READY();
252
253 mRemoteDisplayAuthLibrary.cloneTo (aRemoteDisplayAuthLibrary);
254
255 return S_OK;
256}
257
258STDMETHODIMP SystemProperties::COMSETTER(RemoteDisplayAuthLibrary) (INPTR BSTR aRemoteDisplayAuthLibrary)
259{
260 AutoLock alock (this);
261 CHECK_READY();
262
263 HRESULT rc = setRemoteDisplayAuthLibrary (aRemoteDisplayAuthLibrary);
264 if (FAILED (rc))
265 return rc;
266
267 alock.unlock();
268 return mParent->saveSettings();
269}
270
271STDMETHODIMP SystemProperties::COMGETTER(HWVirtExEnabled) (BOOL *enabled)
272{
273 if (!enabled)
274 return E_POINTER;
275
276 AutoLock alock (this);
277 CHECK_READY();
278
279 *enabled = mHWVirtExEnabled;
280
281 return S_OK;
282}
283
284STDMETHODIMP SystemProperties::COMSETTER(HWVirtExEnabled) (BOOL enabled)
285{
286 AutoLock alock (this);
287 CHECK_READY();
288
289 mHWVirtExEnabled = enabled;
290
291 alock.unlock();
292 return mParent->saveSettings();
293}
294
295// public methods only for internal purposes
296/////////////////////////////////////////////////////////////////////////////
297
298HRESULT SystemProperties::loadSettings (CFGNODE aGlobal)
299{
300 AutoLock lock (this);
301 CHECK_READY();
302
303 ComAssertRet (aGlobal, E_FAIL);
304
305 CFGNODE properties = NULL;
306 CFGLDRGetChildNode (aGlobal, "SystemProperties", 0, &properties);
307 ComAssertRet (properties, E_FAIL);
308
309 HRESULT rc = E_FAIL;
310
311 do
312 {
313 Bstr bstr;
314
315 CFGLDRQueryBSTR (properties, "defaultVDIFolder",
316 bstr.asOutParam());
317 rc = setDefaultVDIFolder (bstr);
318 if (FAILED (rc))
319 break;
320
321 CFGLDRQueryBSTR (properties, "defaultMachineFolder",
322 bstr.asOutParam());
323 rc = setDefaultMachineFolder (bstr);
324 if (FAILED (rc))
325 break;
326
327 CFGLDRQueryBSTR (properties, "remoteDisplayAuthLibrary",
328 bstr.asOutParam());
329 rc = setRemoteDisplayAuthLibrary (bstr);
330 if (FAILED (rc))
331 break;
332
333 CFGLDRQueryBool (properties, "HWVirtExEnabled", (bool*)&mHWVirtExEnabled);
334
335 }
336 while (0);
337
338 CFGLDRReleaseNode (properties);
339
340 return rc;
341}
342
343HRESULT SystemProperties::saveSettings (CFGNODE aGlobal)
344{
345 AutoLock lock (this);
346 CHECK_READY();
347
348 ComAssertRet (aGlobal, E_FAIL);
349
350 // first, delete the entry
351 CFGNODE properties = NULL;
352 int vrc = CFGLDRGetChildNode (aGlobal, "SystemProperties", 0, &properties);
353 if (VBOX_SUCCESS (vrc))
354 {
355 vrc = CFGLDRDeleteNode (properties);
356 ComAssertRCRet (vrc, E_FAIL);
357 }
358 // then, recreate it
359 vrc = CFGLDRCreateChildNode (aGlobal, "SystemProperties", &properties);
360 ComAssertRCRet (vrc, E_FAIL);
361
362 if (mDefaultVDIFolder)
363 CFGLDRSetBSTR (properties, "defaultVDIFolder",
364 mDefaultVDIFolder);
365
366 if (mDefaultMachineFolder)
367 CFGLDRSetBSTR (properties, "defaultMachineFolder",
368 mDefaultMachineFolder);
369
370 if (mRemoteDisplayAuthLibrary)
371 CFGLDRSetBSTR (properties, "remoteDisplayAuthLibrary",
372 mRemoteDisplayAuthLibrary);
373
374 CFGLDRSetBool (properties, "HWVirtExEnabled", !!mHWVirtExEnabled);
375
376 return S_OK;
377}
378
379// private methods
380/////////////////////////////////////////////////////////////////////////////
381
382HRESULT SystemProperties::setDefaultVDIFolder (const BSTR aPath)
383{
384 Utf8Str path;
385 if (aPath && *aPath)
386 path = aPath;
387 else
388 path = "VDI";
389
390 // get the full file name
391 char folder [RTPATH_MAX];
392 int vrc = RTPathAbsEx (mParent->homeDir(), path, folder, sizeof (folder));
393 if (VBOX_FAILURE (vrc))
394 return setError (E_FAIL,
395 tr ("Cannot set the default VDI folder to '%ls' (%Vrc)"),
396 path.raw(), vrc);
397
398 mDefaultVDIFolder = path;
399 mDefaultVDIFolderFull = folder;
400
401 return S_OK;
402}
403
404HRESULT SystemProperties::setDefaultMachineFolder (const BSTR aPath)
405{
406 Utf8Str path;
407 if (aPath && *aPath)
408 path = aPath;
409 else
410 path = "Machines";
411
412 // get the full file name
413 char folder [RTPATH_MAX];
414 int vrc = RTPathAbsEx (mParent->homeDir(), path, folder, sizeof (folder));
415 if (VBOX_FAILURE (vrc))
416 return setError (E_FAIL,
417 tr ("Cannot set the default machines folder to '%ls' (%Vrc)"),
418 path.raw(), vrc);
419
420 mDefaultMachineFolder = path;
421 mDefaultMachineFolderFull = folder;
422
423 return S_OK;
424}
425
426HRESULT SystemProperties::setRemoteDisplayAuthLibrary (const BSTR aPath)
427{
428 Utf8Str path;
429 if (aPath && *aPath)
430 path = aPath;
431 else
432 path = "VRDPAuth";
433
434 mRemoteDisplayAuthLibrary = path;
435
436 return S_OK;
437}
438
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