VirtualBox

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

Last change on this file since 8083 was 8083, checked in by vboxsync, 16 years ago

Main: Renamed AutoLock => AutoWriteLock; AutoReaderLock => AutoReadLock.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.3 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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include "SystemPropertiesImpl.h"
19#include "VirtualBoxImpl.h"
20#include "MachineImpl.h"
21#include "Logging.h"
22
23// generated header
24#include "SchemaDefs.h"
25
26#include <iprt/path.h>
27#include <iprt/dir.h>
28#include <VBox/param.h>
29#include <VBox/err.h>
30
31// defines
32/////////////////////////////////////////////////////////////////////////////
33
34// constructor / destructor
35/////////////////////////////////////////////////////////////////////////////
36
37HRESULT SystemProperties::FinalConstruct()
38{
39 return S_OK;
40}
41
42void SystemProperties::FinalRelease()
43{
44 if (isReady())
45 uninit ();
46}
47
48// public methods only for internal purposes
49/////////////////////////////////////////////////////////////////////////////
50
51/**
52 * Initializes the system information object.
53 *
54 * @returns COM result indicator
55 */
56HRESULT SystemProperties::init (VirtualBox *aParent)
57{
58 LogFlowMember (("SystemProperties::init()\n"));
59
60 ComAssertRet (aParent, E_FAIL);
61
62 AutoWriteLock alock (this);
63 ComAssertRet (!isReady(), E_UNEXPECTED);
64
65 mParent = aParent;
66
67 setDefaultVDIFolder (NULL);
68 setDefaultMachineFolder (NULL);
69 setRemoteDisplayAuthLibrary (NULL);
70
71 mHWVirtExEnabled = false;
72 mLogHistoryCount = 3;
73
74 setReady(true);
75 return S_OK;
76}
77
78/**
79 * Uninitializes the instance and sets the ready flag to FALSE.
80 * Called either from FinalRelease() or by the parent when it gets destroyed.
81 */
82void SystemProperties::uninit()
83{
84 LogFlowMember (("SystemProperties::uninit()\n"));
85
86 AutoWriteLock alock (this);
87 AssertReturn (isReady(), (void) 0);
88
89 setReady (false);
90}
91
92// ISystemProperties properties
93/////////////////////////////////////////////////////////////////////////////
94
95
96STDMETHODIMP SystemProperties::COMGETTER(MinGuestRAM)(ULONG *minRAM)
97{
98 if (!minRAM)
99 return E_POINTER;
100 AutoWriteLock alock (this);
101 CHECK_READY();
102
103 *minRAM = SchemaDefs::MinGuestRAM;
104
105 return S_OK;
106}
107
108STDMETHODIMP SystemProperties::COMGETTER(MaxGuestRAM)(ULONG *maxRAM)
109{
110 if (!maxRAM)
111 return E_POINTER;
112 AutoWriteLock alock (this);
113 CHECK_READY();
114
115 *maxRAM = SchemaDefs::MaxGuestRAM;
116
117 return S_OK;
118}
119
120STDMETHODIMP SystemProperties::COMGETTER(MinGuestVRAM)(ULONG *minVRAM)
121{
122 if (!minVRAM)
123 return E_POINTER;
124 AutoWriteLock alock (this);
125 CHECK_READY();
126
127 *minVRAM = SchemaDefs::MinGuestVRAM;
128
129 return S_OK;
130}
131
132STDMETHODIMP SystemProperties::COMGETTER(MaxGuestVRAM)(ULONG *maxVRAM)
133{
134 if (!maxVRAM)
135 return E_POINTER;
136 AutoWriteLock alock (this);
137 CHECK_READY();
138
139 *maxVRAM = SchemaDefs::MaxGuestVRAM;
140
141 return S_OK;
142}
143
144STDMETHODIMP SystemProperties::COMGETTER(MaxGuestMonitors)(ULONG *maxMonitors)
145{
146 if (!maxMonitors)
147 return E_POINTER;
148 AutoWriteLock alock (this);
149 CHECK_READY();
150
151 *maxMonitors = SchemaDefs::MaxGuestMonitors;
152
153 return S_OK;
154}
155
156STDMETHODIMP SystemProperties::COMGETTER(MaxVDISize)(ULONG64 *maxVDISize)
157{
158 if (!maxVDISize)
159 return E_POINTER;
160 AutoWriteLock alock (this);
161 CHECK_READY();
162
163 /** The BIOS supports currently 32 bit LBA numbers (implementing the full
164 * 48 bit range is in theory trivial, but the crappy compiler makes things
165 * more difficult). This translates to almost 2 TBytes (to be on the safe
166 * side, the reported limit is 1 MiByte less than that, as the total number
167 * of sectors should fit in 32 bits, too), which should bei enough for
168 * the moment. The virtual ATA disks support complete LBA48 (although for
169 * example iSCSI is also currently limited to 32 bit LBA), so the
170 * theoretical maximum disk size is 128 PiByte. The user interface cannot
171 * cope with this in a reasonable way yet. */
172 *maxVDISize = 2048 * 1024 - 1;
173
174 return S_OK;
175}
176
177STDMETHODIMP SystemProperties::COMGETTER(NetworkAdapterCount)(ULONG *count)
178{
179 if (!count)
180 return E_POINTER;
181 AutoWriteLock alock (this);
182 CHECK_READY();
183
184 *count = SchemaDefs::NetworkAdapterCount;
185
186 return S_OK;
187}
188
189STDMETHODIMP SystemProperties::COMGETTER(SerialPortCount)(ULONG *count)
190{
191 if (!count)
192 return E_POINTER;
193 AutoWriteLock alock (this);
194 CHECK_READY();
195
196 *count = SchemaDefs::SerialPortCount;
197
198 return S_OK;
199}
200
201STDMETHODIMP SystemProperties::COMGETTER(ParallelPortCount)(ULONG *count)
202{
203 if (!count)
204 return E_POINTER;
205 AutoWriteLock alock (this);
206 CHECK_READY();
207
208 *count = SchemaDefs::ParallelPortCount;
209
210 return S_OK;
211}
212
213STDMETHODIMP SystemProperties::COMGETTER(MaxBootPosition)(ULONG *aMaxBootPosition)
214{
215 if (!aMaxBootPosition)
216 return E_POINTER;
217 AutoWriteLock alock (this);
218 CHECK_READY();
219
220 *aMaxBootPosition = SchemaDefs::MaxBootPosition;
221
222 return S_OK;
223}
224
225STDMETHODIMP SystemProperties::COMGETTER(DefaultVDIFolder) (BSTR *aDefaultVDIFolder)
226{
227 if (!aDefaultVDIFolder)
228 return E_POINTER;
229
230 AutoWriteLock alock (this);
231 CHECK_READY();
232
233 mDefaultVDIFolderFull.cloneTo (aDefaultVDIFolder);
234
235 return S_OK;
236}
237
238STDMETHODIMP SystemProperties::COMSETTER(DefaultVDIFolder) (INPTR BSTR aDefaultVDIFolder)
239{
240 AutoWriteLock alock (this);
241 CHECK_READY();
242
243 HRESULT rc = setDefaultVDIFolder (aDefaultVDIFolder);
244 if (FAILED (rc))
245 return rc;
246
247 alock.unlock();
248 return mParent->saveSettings();
249}
250
251STDMETHODIMP SystemProperties::COMGETTER(DefaultMachineFolder) (BSTR *aDefaultMachineFolder)
252{
253 if (!aDefaultMachineFolder)
254 return E_POINTER;
255
256 AutoWriteLock alock (this);
257 CHECK_READY();
258
259 mDefaultMachineFolderFull.cloneTo (aDefaultMachineFolder);
260
261 return S_OK;
262}
263
264STDMETHODIMP SystemProperties::COMSETTER(DefaultMachineFolder) (INPTR BSTR aDefaultMachineFolder)
265{
266 AutoWriteLock alock (this);
267 CHECK_READY();
268
269 HRESULT rc = setDefaultMachineFolder (aDefaultMachineFolder);
270 if (FAILED (rc))
271 return rc;
272
273 alock.unlock();
274 return mParent->saveSettings();
275}
276
277STDMETHODIMP SystemProperties::COMGETTER(RemoteDisplayAuthLibrary) (BSTR *aRemoteDisplayAuthLibrary)
278{
279 if (!aRemoteDisplayAuthLibrary)
280 return E_POINTER;
281
282 AutoWriteLock alock (this);
283 CHECK_READY();
284
285 mRemoteDisplayAuthLibrary.cloneTo (aRemoteDisplayAuthLibrary);
286
287 return S_OK;
288}
289
290STDMETHODIMP SystemProperties::COMSETTER(RemoteDisplayAuthLibrary) (INPTR BSTR aRemoteDisplayAuthLibrary)
291{
292 AutoWriteLock alock (this);
293 CHECK_READY();
294
295 HRESULT rc = setRemoteDisplayAuthLibrary (aRemoteDisplayAuthLibrary);
296 if (FAILED (rc))
297 return rc;
298
299 alock.unlock();
300 return mParent->saveSettings();
301}
302
303STDMETHODIMP SystemProperties::COMGETTER(WebServiceAuthLibrary) (BSTR *aWebServiceAuthLibrary)
304{
305 if (!aWebServiceAuthLibrary)
306 return E_POINTER;
307
308 AutoWriteLock alock (this);
309 CHECK_READY();
310
311 mWebServiceAuthLibrary.cloneTo (aWebServiceAuthLibrary);
312
313 return S_OK;
314}
315
316STDMETHODIMP SystemProperties::COMSETTER(WebServiceAuthLibrary) (INPTR BSTR aWebServiceAuthLibrary)
317{
318 AutoWriteLock alock (this);
319 CHECK_READY();
320
321 HRESULT rc = setWebServiceAuthLibrary (aWebServiceAuthLibrary);
322 if (FAILED (rc))
323 return rc;
324
325 alock.unlock();
326 return mParent->saveSettings();
327}
328
329STDMETHODIMP SystemProperties::COMGETTER(HWVirtExEnabled) (BOOL *enabled)
330{
331 if (!enabled)
332 return E_POINTER;
333
334 AutoWriteLock alock (this);
335 CHECK_READY();
336
337 *enabled = mHWVirtExEnabled;
338
339 return S_OK;
340}
341
342STDMETHODIMP SystemProperties::COMSETTER(HWVirtExEnabled) (BOOL enabled)
343{
344 AutoWriteLock alock (this);
345 CHECK_READY();
346
347 mHWVirtExEnabled = enabled;
348
349 alock.unlock();
350 return mParent->saveSettings();
351}
352
353STDMETHODIMP SystemProperties::COMGETTER(LogHistoryCount) (ULONG *count)
354{
355 if (!count)
356 return E_POINTER;
357
358 AutoWriteLock alock (this);
359 CHECK_READY();
360
361 *count = mLogHistoryCount;
362
363 return S_OK;
364}
365
366STDMETHODIMP SystemProperties::COMSETTER(LogHistoryCount) (ULONG count)
367{
368 AutoWriteLock alock (this);
369 CHECK_READY();
370
371 mLogHistoryCount = count;
372
373 alock.unlock();
374 return mParent->saveSettings();
375}
376
377// public methods only for internal purposes
378/////////////////////////////////////////////////////////////////////////////
379
380HRESULT SystemProperties::loadSettings (const settings::Key &aGlobal)
381{
382 using namespace settings;
383
384 AutoWriteLock alock (this);
385 CHECK_READY();
386
387 AssertReturn (!aGlobal.isNull(), E_FAIL);
388
389 HRESULT rc = S_OK;
390
391 Key properties = aGlobal.key ("SystemProperties");
392
393 Bstr bstr;
394
395 bstr = properties.stringValue ("defaultVDIFolder");
396 rc = setDefaultVDIFolder (bstr);
397 CheckComRCReturnRC (rc);
398
399 bstr = properties.stringValue ("defaultMachineFolder");
400 rc = setDefaultMachineFolder (bstr);
401 CheckComRCReturnRC (rc);
402
403 bstr = properties.stringValue ("remoteDisplayAuthLibrary");
404 rc = setRemoteDisplayAuthLibrary (bstr);
405 CheckComRCReturnRC (rc);
406
407 bstr = properties.stringValue ("webServiceAuthLibrary");
408 rc = setWebServiceAuthLibrary (bstr);
409 CheckComRCReturnRC (rc);
410
411 /* Note: not <BOOL> because Win32 defines BOOL as int */
412 mHWVirtExEnabled = properties.valueOr <bool> ("HWVirtExEnabled", false);
413
414 mLogHistoryCount = properties.valueOr <ULONG> ("LogHistoryCount", 3);
415
416 return S_OK;
417}
418
419HRESULT SystemProperties::saveSettings (settings::Key &aGlobal)
420{
421 using namespace settings;
422
423 AutoWriteLock alock (this);
424 CHECK_READY();
425
426 ComAssertRet (!aGlobal.isNull(), E_FAIL);
427
428 /* first, delete the entry */
429 Key properties = aGlobal.findKey ("SystemProperties");
430 if (!properties.isNull())
431 properties.zap();
432 /* then, recreate it */
433 properties = aGlobal.createKey ("SystemProperties");
434
435 if (mDefaultVDIFolder)
436 properties.setValue <Bstr> ("defaultVDIFolder", mDefaultVDIFolder);
437
438 if (mDefaultMachineFolder)
439 properties.setValue <Bstr> ("defaultMachineFolder", mDefaultMachineFolder);
440
441 if (mRemoteDisplayAuthLibrary)
442 properties.setValue <Bstr> ("remoteDisplayAuthLibrary", mRemoteDisplayAuthLibrary);
443
444 if (mWebServiceAuthLibrary)
445 properties.setValue <Bstr> ("webServiceAuthLibrary", mWebServiceAuthLibrary);
446
447 properties.setValue <bool> ("HWVirtExEnabled", !!mHWVirtExEnabled);
448
449 properties.setValue <ULONG> ("LogHistoryCount", mLogHistoryCount);
450
451 return S_OK;
452}
453
454// private methods
455/////////////////////////////////////////////////////////////////////////////
456
457HRESULT SystemProperties::setDefaultVDIFolder (const BSTR aPath)
458{
459 Utf8Str path;
460 if (aPath && *aPath)
461 path = aPath;
462 else
463 path = "VDI";
464
465 // get the full file name
466 char folder [RTPATH_MAX];
467 int vrc = RTPathAbsEx (mParent->homeDir(), path, folder, sizeof (folder));
468 if (VBOX_FAILURE (vrc))
469 return setError (E_FAIL,
470 tr ("Cannot set the default VDI folder to '%ls' (%Vrc)"),
471 path.raw(), vrc);
472
473 mDefaultVDIFolder = path;
474 mDefaultVDIFolderFull = folder;
475
476 return S_OK;
477}
478
479HRESULT SystemProperties::setDefaultMachineFolder (const BSTR aPath)
480{
481 Utf8Str path;
482 if (aPath && *aPath)
483 path = aPath;
484 else
485 path = "Machines";
486
487 // get the full file name
488 char folder [RTPATH_MAX];
489 int vrc = RTPathAbsEx (mParent->homeDir(), path, folder, sizeof (folder));
490 if (VBOX_FAILURE (vrc))
491 return setError (E_FAIL,
492 tr ("Cannot set the default machines folder to '%ls' (%Vrc)"),
493 path.raw(), vrc);
494
495 mDefaultMachineFolder = path;
496 mDefaultMachineFolderFull = folder;
497
498 return S_OK;
499}
500
501HRESULT SystemProperties::setRemoteDisplayAuthLibrary (const BSTR aPath)
502{
503 Utf8Str path;
504 if (aPath && *aPath)
505 path = aPath;
506 else
507 path = "VRDPAuth";
508
509 mRemoteDisplayAuthLibrary = path;
510
511 return S_OK;
512}
513
514HRESULT SystemProperties::setWebServiceAuthLibrary (const BSTR aPath)
515{
516 Utf8Str path;
517 if (aPath && *aPath)
518 path = aPath;
519 else
520 path = "VRDPAuth";
521
522 mWebServiceAuthLibrary = path;
523
524 return S_OK;
525}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use