VirtualBox

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

Last change on this file since 26290 was 26235, checked in by vboxsync, 15 years ago

Main: coding style

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 24.1 KB
Line 
1/* $Id: SystemPropertiesImpl.cpp 26235 2010-02-04 13:55:00Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2008 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#include "SystemPropertiesImpl.h"
25#include "VirtualBoxImpl.h"
26#include "MachineImpl.h"
27#include "AutoCaller.h"
28#include "Logging.h"
29
30// generated header
31#include "SchemaDefs.h"
32
33#include <iprt/path.h>
34#include <iprt/dir.h>
35#include <iprt/process.h>
36#include <iprt/ldr.h>
37
38#include <VBox/err.h>
39#include <VBox/param.h>
40#include <VBox/settings.h>
41#include <VBox/VBoxHDD.h>
42
43// defines
44/////////////////////////////////////////////////////////////////////////////
45
46// constructor / destructor
47/////////////////////////////////////////////////////////////////////////////
48
49DEFINE_EMPTY_CTOR_DTOR (SystemProperties)
50
51HRESULT SystemProperties::FinalConstruct()
52{
53 return S_OK;
54}
55
56void SystemProperties::FinalRelease()
57{
58 uninit ();
59}
60
61// public methods only for internal purposes
62/////////////////////////////////////////////////////////////////////////////
63
64/**
65 * Initializes the system information object.
66 *
67 * @returns COM result indicator
68 */
69HRESULT SystemProperties::init (VirtualBox *aParent)
70{
71 LogFlowThisFunc(("aParent=%p\n", aParent));
72
73 ComAssertRet(aParent, E_FAIL);
74
75 /* Enclose the state transition NotReady->InInit->Ready */
76 AutoInitSpan autoInitSpan(this);
77 AssertReturn(autoInitSpan.isOk(), E_FAIL);
78
79 unconst(mParent) = aParent;
80
81 setDefaultMachineFolder(Utf8Str::Null);
82 setDefaultHardDiskFolder(Utf8Str::Null);
83 setDefaultHardDiskFormat(Utf8Str::Null);
84
85 setRemoteDisplayAuthLibrary(Utf8Str::Null);
86
87 mLogHistoryCount = 3;
88
89 HRESULT rc = S_OK;
90
91 /* Fetch info of all available hd backends. */
92
93 /// @todo NEWMEDIA VDBackendInfo needs to be improved to let us enumerate
94 /// any number of backends
95
96 /// @todo We currently leak memory because it's not actually clear what to
97 /// free in structures returned by VDBackendInfo. Must be fixed ASAP!
98
99 VDBACKENDINFO aVDInfo[100];
100 unsigned cEntries;
101 int vrc = VDBackendInfo(RT_ELEMENTS (aVDInfo), aVDInfo, &cEntries);
102 AssertRC(vrc);
103 if (RT_SUCCESS(vrc))
104 {
105 for (unsigned i = 0; i < cEntries; ++ i)
106 {
107 ComObjPtr<MediumFormat> hdf;
108 rc = hdf.createObject();
109 if (FAILED(rc)) break;
110
111 rc = hdf->init(&aVDInfo[i]);
112 if (FAILED(rc)) break;
113
114 mMediumFormats.push_back(hdf);
115 }
116 }
117
118 /* Driver defaults which are OS specific */
119#if defined (RT_OS_WINDOWS)
120# ifdef VBOX_WITH_WINMM
121 mDefaultAudioDriver = AudioDriverType_WinMM;
122# else /* VBOX_WITH_WINMM */
123 mDefaultAudioDriver = AudioDriverType_DirectSound;
124# endif /* !VBOX_WITH_WINMM */
125#elif defined (RT_OS_SOLARIS)
126 mDefaultAudioDriver = AudioDriverType_SolAudio;
127#elif defined (RT_OS_LINUX)
128# if defined (VBOX_WITH_PULSE)
129 /* Check for the pulse library & that the pulse audio daemon is running. */
130 if (RTProcIsRunningByName ("pulseaudio") &&
131 RTLdrIsLoadable ("libpulse.so.0"))
132 mDefaultAudioDriver = AudioDriverType_Pulse;
133 else
134# endif /* VBOX_WITH_PULSE */
135# if defined (VBOX_WITH_ALSA)
136 /* Check if we can load the ALSA library */
137 if (RTLdrIsLoadable ("libasound.so.2"))
138 mDefaultAudioDriver = AudioDriverType_ALSA;
139 else
140# endif /* VBOX_WITH_ALSA */
141 mDefaultAudioDriver = AudioDriverType_OSS;
142#elif defined (RT_OS_DARWIN)
143 mDefaultAudioDriver = AudioDriverType_CoreAudio;
144#elif defined (RT_OS_OS2)
145 mDefaultAudioDriver = AudioDriverType_MMP;
146#elif defined (RT_OS_FREEBSD)
147 mDefaultAudioDriver = AudioDriverType_OSS;
148#else
149 mDefaultAudioDriver = AudioDriverType_Null;
150#endif
151
152 /* Confirm a successful initialization */
153 if (SUCCEEDED(rc))
154 autoInitSpan.setSucceeded();
155
156 return rc;
157}
158
159/**
160 * Uninitializes the instance and sets the ready flag to FALSE.
161 * Called either from FinalRelease() or by the parent when it gets destroyed.
162 */
163void SystemProperties::uninit()
164{
165 LogFlowThisFunc(("\n"));
166
167 /* Enclose the state transition Ready->InUninit->NotReady */
168 AutoUninitSpan autoUninitSpan(this);
169 if (autoUninitSpan.uninitDone())
170 return;
171
172 unconst(mParent).setNull();
173}
174
175// ISystemProperties properties
176/////////////////////////////////////////////////////////////////////////////
177
178
179STDMETHODIMP SystemProperties::COMGETTER(MinGuestRAM)(ULONG *minRAM)
180{
181 if (!minRAM)
182 return E_POINTER;
183
184 AutoCaller autoCaller(this);
185 if (FAILED(autoCaller.rc())) return autoCaller.rc();
186
187 /* no need to lock, this is const */
188 AssertCompile(MM_RAM_MIN_IN_MB >= SchemaDefs::MinGuestRAM);
189 *minRAM = MM_RAM_MIN_IN_MB;
190
191 return S_OK;
192}
193
194STDMETHODIMP SystemProperties::COMGETTER(MaxGuestRAM)(ULONG *maxRAM)
195{
196 if (!maxRAM)
197 return E_POINTER;
198
199 AutoCaller autoCaller(this);
200 if (FAILED(autoCaller.rc())) return autoCaller.rc();
201
202 /* no need to lock, this is const */
203 AssertCompile(MM_RAM_MAX_IN_MB <= SchemaDefs::MaxGuestRAM);
204 ULONG maxRAMSys = MM_RAM_MAX_IN_MB;
205 ULONG maxRAMArch = maxRAMSys;
206#if HC_ARCH_BITS == 32 && !defined(RT_OS_DARWIN)
207# ifdef RT_OS_WINDOWS
208 maxRAMArch = UINT32_C(1500);
209# else
210 maxRAMArch = UINT32_C(2560);
211# endif
212#endif
213 *maxRAM = RT_MIN(maxRAMSys, maxRAMArch);
214
215 return S_OK;
216}
217
218STDMETHODIMP SystemProperties::COMGETTER(MinGuestVRAM)(ULONG *minVRAM)
219{
220 if (!minVRAM)
221 return E_POINTER;
222
223 AutoCaller autoCaller(this);
224 if (FAILED(autoCaller.rc())) return autoCaller.rc();
225
226 /* no need to lock, this is const */
227 *minVRAM = SchemaDefs::MinGuestVRAM;
228
229 return S_OK;
230}
231
232STDMETHODIMP SystemProperties::COMGETTER(MaxGuestVRAM)(ULONG *maxVRAM)
233{
234 if (!maxVRAM)
235 return E_POINTER;
236
237 AutoCaller autoCaller(this);
238 if (FAILED(autoCaller.rc())) return autoCaller.rc();
239
240 /* no need to lock, this is const */
241 *maxVRAM = SchemaDefs::MaxGuestVRAM;
242
243 return S_OK;
244}
245
246STDMETHODIMP SystemProperties::COMGETTER(MinGuestCPUCount)(ULONG *minCPUCount)
247{
248 if (!minCPUCount)
249 return E_POINTER;
250
251 AutoCaller autoCaller(this);
252 if (FAILED(autoCaller.rc())) return autoCaller.rc();
253
254 /* no need to lock, this is const */
255 *minCPUCount = SchemaDefs::MinCPUCount; // VMM_MIN_CPU_COUNT
256
257 return S_OK;
258}
259
260STDMETHODIMP SystemProperties::COMGETTER(MaxGuestCPUCount)(ULONG *maxCPUCount)
261{
262 if (!maxCPUCount)
263 return E_POINTER;
264
265 AutoCaller autoCaller(this);
266 if (FAILED(autoCaller.rc())) return autoCaller.rc();
267
268 /* no need to lock, this is const */
269 *maxCPUCount = SchemaDefs::MaxCPUCount; // VMM_MAX_CPU_COUNT
270
271 return S_OK;
272}
273
274STDMETHODIMP SystemProperties::COMGETTER(MaxGuestMonitors)(ULONG *maxMonitors)
275{
276 if (!maxMonitors)
277 return E_POINTER;
278
279 AutoCaller autoCaller(this);
280 if (FAILED(autoCaller.rc())) return autoCaller.rc();
281
282 /* no need to lock, this is const */
283 *maxMonitors = SchemaDefs::MaxGuestMonitors;
284
285 return S_OK;
286}
287
288STDMETHODIMP SystemProperties::COMGETTER(MaxVDISize)(ULONG64 *maxVDISize)
289{
290 if (!maxVDISize)
291 return E_POINTER;
292
293 AutoCaller autoCaller(this);
294 if (FAILED(autoCaller.rc())) return autoCaller.rc();
295
296 /** The BIOS supports currently 32 bit LBA numbers (implementing the full
297 * 48 bit range is in theory trivial, but the crappy compiler makes things
298 * more difficult). This translates to almost 2 TBytes (to be on the safe
299 * side, the reported limit is 1 MiByte less than that, as the total number
300 * of sectors should fit in 32 bits, too), which should bei enough for
301 * the moment. The virtual ATA disks support complete LBA48 (although for
302 * example iSCSI is also currently limited to 32 bit LBA), so the
303 * theoretical maximum disk size is 128 PiByte. The user interface cannot
304 * cope with this in a reasonable way yet. */
305 /* no need to lock, this is const */
306 *maxVDISize = 2048 * 1024 - 1;
307
308 return S_OK;
309}
310
311STDMETHODIMP SystemProperties::COMGETTER(NetworkAdapterCount)(ULONG *count)
312{
313 if (!count)
314 return E_POINTER;
315
316 AutoCaller autoCaller(this);
317 if (FAILED(autoCaller.rc())) return autoCaller.rc();
318
319 /* no need to lock, this is const */
320 *count = SchemaDefs::NetworkAdapterCount;
321
322 return S_OK;
323}
324
325STDMETHODIMP SystemProperties::COMGETTER(SerialPortCount)(ULONG *count)
326{
327 if (!count)
328 return E_POINTER;
329
330 AutoCaller autoCaller(this);
331 if (FAILED(autoCaller.rc())) return autoCaller.rc();
332
333 /* no need to lock, this is const */
334 *count = SchemaDefs::SerialPortCount;
335
336 return S_OK;
337}
338
339STDMETHODIMP SystemProperties::COMGETTER(ParallelPortCount)(ULONG *count)
340{
341 if (!count)
342 return E_POINTER;
343
344 AutoCaller autoCaller(this);
345 if (FAILED(autoCaller.rc())) return autoCaller.rc();
346
347 /* no need to lock, this is const */
348 *count = SchemaDefs::ParallelPortCount;
349
350 return S_OK;
351}
352
353STDMETHODIMP SystemProperties::COMGETTER(MaxBootPosition)(ULONG *aMaxBootPosition)
354{
355 CheckComArgOutPointerValid(aMaxBootPosition);
356
357 AutoCaller autoCaller(this);
358 if (FAILED(autoCaller.rc())) return autoCaller.rc();
359
360 /* no need to lock, this is const */
361 *aMaxBootPosition = SchemaDefs::MaxBootPosition;
362
363 return S_OK;
364}
365
366STDMETHODIMP SystemProperties::GetMaxDevicesPerPortForStorageBus (StorageBus_T aBus, ULONG *aMaxDevicesPerPort)
367{
368 CheckComArgOutPointerValid(aMaxDevicesPerPort);
369
370 AutoCaller autoCaller(this);
371 if (FAILED(autoCaller.rc())) return autoCaller.rc();
372
373 /* no need to lock, this is const */
374 switch (aBus)
375 {
376 case StorageBus_SATA:
377 case StorageBus_SCSI:
378 case StorageBus_SAS:
379 {
380 /* SATA and both SCSI controllers only support one device per port. */
381 *aMaxDevicesPerPort = 1;
382 break;
383 }
384 case StorageBus_IDE:
385 case StorageBus_Floppy:
386 {
387 /* The IDE and Floppy controllers support 2 devices. One as master
388 * and one as slave (or floppy drive 0 and 1). */
389 *aMaxDevicesPerPort = 2;
390 break;
391 }
392 default:
393 AssertMsgFailed(("Invalid bus type %d\n", aBus));
394 }
395
396 return S_OK;
397}
398
399STDMETHODIMP SystemProperties::GetMinPortCountForStorageBus (StorageBus_T aBus, ULONG *aMinPortCount)
400{
401 CheckComArgOutPointerValid(aMinPortCount);
402
403 AutoCaller autoCaller(this);
404 if (FAILED(autoCaller.rc())) return autoCaller.rc();
405
406 /* no need to lock, this is const */
407 switch (aBus)
408 {
409 case StorageBus_SATA:
410 {
411 *aMinPortCount = 1;
412 break;
413 }
414 case StorageBus_SCSI:
415 {
416 *aMinPortCount = 16;
417 break;
418 }
419 case StorageBus_IDE:
420 {
421 *aMinPortCount = 2;
422 break;
423 }
424 case StorageBus_Floppy:
425 {
426 *aMinPortCount = 1;
427 break;
428 }
429 case StorageBus_SAS:
430 {
431 *aMinPortCount = 8;
432 break;
433 }
434 default:
435 AssertMsgFailed(("Invalid bus type %d\n", aBus));
436 }
437
438 return S_OK;
439}
440
441STDMETHODIMP SystemProperties::GetMaxPortCountForStorageBus (StorageBus_T aBus, ULONG *aMaxPortCount)
442{
443 CheckComArgOutPointerValid(aMaxPortCount);
444
445 AutoCaller autoCaller(this);
446 if (FAILED(autoCaller.rc())) return autoCaller.rc();
447
448 /* no need to lock, this is const */
449 switch (aBus)
450 {
451 case StorageBus_SATA:
452 {
453 *aMaxPortCount = 30;
454 break;
455 }
456 case StorageBus_SCSI:
457 {
458 *aMaxPortCount = 16;
459 break;
460 }
461 case StorageBus_IDE:
462 {
463 *aMaxPortCount = 2;
464 break;
465 }
466 case StorageBus_Floppy:
467 {
468 *aMaxPortCount = 1;
469 break;
470 }
471 case StorageBus_SAS:
472 {
473 *aMaxPortCount = 8;
474 break;
475 }
476 default:
477 AssertMsgFailed(("Invalid bus type %d\n", aBus));
478 }
479
480 return S_OK;
481}
482
483STDMETHODIMP SystemProperties::GetMaxInstancesOfStorageBus(StorageBus_T aBus, ULONG *aMaxInstances)
484{
485 CheckComArgOutPointerValid(aMaxInstances);
486
487 AutoCaller autoCaller(this);
488 if (FAILED(autoCaller.rc())) return autoCaller.rc();
489
490 /* no need to lock, this is const */
491 switch (aBus)
492 {
493 case StorageBus_SATA:
494 case StorageBus_SCSI:
495 case StorageBus_IDE:
496 case StorageBus_SAS:
497 case StorageBus_Floppy:
498 {
499 /** @todo raise the limits ASAP, per bus type */
500 *aMaxInstances = 1;
501 break;
502 }
503 default:
504 AssertMsgFailed(("Invalid bus type %d\n", aBus));
505 }
506
507 return S_OK;
508}
509
510STDMETHODIMP SystemProperties::GetDeviceTypesForStorageBus(StorageBus_T aBus,
511 ComSafeArrayOut(DeviceType_T, aDeviceTypes))
512{
513 CheckComArgOutSafeArrayPointerValid(aDeviceTypes);
514
515 AutoCaller autoCaller(this);
516 if (FAILED(autoCaller.rc())) return autoCaller.rc();
517
518 /* no need to lock, this is const */
519 switch (aBus)
520 {
521 case StorageBus_IDE:
522 {
523 com::SafeArray<DeviceType_T> saDeviceTypes(2);
524 saDeviceTypes[0] = DeviceType_DVD;
525 saDeviceTypes[1] = DeviceType_HardDisk;
526 saDeviceTypes.detachTo(ComSafeArrayOutArg(aDeviceTypes));
527 break;
528 }
529 case StorageBus_SATA:
530 case StorageBus_SCSI:
531 case StorageBus_SAS:
532 {
533 com::SafeArray<DeviceType_T> saDeviceTypes(1);
534 saDeviceTypes[0] = DeviceType_HardDisk;
535 saDeviceTypes.detachTo(ComSafeArrayOutArg(aDeviceTypes));
536 break;
537 }
538 case StorageBus_Floppy:
539 {
540 com::SafeArray<DeviceType_T> saDeviceTypes(1);
541 saDeviceTypes[0] = DeviceType_Floppy;
542 saDeviceTypes.detachTo(ComSafeArrayOutArg(aDeviceTypes));
543 break;
544 }
545 default:
546 AssertMsgFailed(("Invalid bus type %d\n", aBus));
547 }
548
549 return S_OK;
550}
551
552STDMETHODIMP SystemProperties::COMGETTER(DefaultMachineFolder) (BSTR *aDefaultMachineFolder)
553{
554 CheckComArgOutPointerValid(aDefaultMachineFolder);
555
556 AutoCaller autoCaller(this);
557 if (FAILED(autoCaller.rc())) return autoCaller.rc();
558
559 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
560
561 m_strDefaultMachineFolderFull.cloneTo(aDefaultMachineFolder);
562
563 return S_OK;
564}
565
566STDMETHODIMP SystemProperties::COMSETTER(DefaultMachineFolder) (IN_BSTR aDefaultMachineFolder)
567{
568 AutoCaller autoCaller(this);
569 if (FAILED(autoCaller.rc())) return autoCaller.rc();
570
571 /* VirtualBox::saveSettings() needs a write lock */
572 AutoMultiWriteLock2 alock(mParent, this COMMA_LOCKVAL_SRC_POS);
573
574 HRESULT rc = setDefaultMachineFolder (aDefaultMachineFolder);
575 if (SUCCEEDED(rc))
576 rc = mParent->saveSettings();
577
578 return rc;
579}
580
581STDMETHODIMP SystemProperties::COMGETTER(DefaultHardDiskFolder) (BSTR *aDefaultHardDiskFolder)
582{
583 CheckComArgOutPointerValid(aDefaultHardDiskFolder);
584
585 AutoCaller autoCaller(this);
586 if (FAILED(autoCaller.rc())) return autoCaller.rc();
587
588 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
589
590 m_strDefaultHardDiskFolderFull.cloneTo(aDefaultHardDiskFolder);
591
592 return S_OK;
593}
594
595STDMETHODIMP SystemProperties::COMSETTER(DefaultHardDiskFolder) (IN_BSTR aDefaultHardDiskFolder)
596{
597 AutoCaller autoCaller(this);
598 if (FAILED(autoCaller.rc())) return autoCaller.rc();
599
600 /* VirtualBox::saveSettings() needs a write lock */
601 AutoMultiWriteLock2 alock(mParent, this COMMA_LOCKVAL_SRC_POS);
602
603 HRESULT rc = setDefaultHardDiskFolder (aDefaultHardDiskFolder);
604 if (SUCCEEDED(rc))
605 rc = mParent->saveSettings();
606
607 return rc;
608}
609
610STDMETHODIMP SystemProperties::
611COMGETTER(MediumFormats) (ComSafeArrayOut(IMediumFormat *, aMediumFormats))
612{
613 if (ComSafeArrayOutIsNull(aMediumFormats))
614 return E_POINTER;
615
616 AutoCaller autoCaller(this);
617 if (FAILED(autoCaller.rc())) return autoCaller.rc();
618
619 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
620
621 SafeIfaceArray<IMediumFormat> mediumFormats (mMediumFormats);
622 mediumFormats.detachTo(ComSafeArrayOutArg(aMediumFormats));
623
624 return S_OK;
625}
626
627STDMETHODIMP SystemProperties::COMGETTER(DefaultHardDiskFormat) (BSTR *aDefaultHardDiskFormat)
628{
629 CheckComArgOutPointerValid(aDefaultHardDiskFormat);
630
631 AutoCaller autoCaller(this);
632 if (FAILED(autoCaller.rc())) return autoCaller.rc();
633
634 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
635
636 m_strDefaultHardDiskFormat.cloneTo(aDefaultHardDiskFormat);
637
638 return S_OK;
639}
640
641STDMETHODIMP SystemProperties::COMSETTER(DefaultHardDiskFormat) (IN_BSTR aDefaultHardDiskFormat)
642{
643 AutoCaller autoCaller(this);
644 if (FAILED(autoCaller.rc())) return autoCaller.rc();
645
646 /* VirtualBox::saveSettings() needs a write lock */
647 AutoMultiWriteLock2 alock(mParent, this COMMA_LOCKVAL_SRC_POS);
648
649 HRESULT rc = setDefaultHardDiskFormat (aDefaultHardDiskFormat);
650 if (SUCCEEDED(rc))
651 rc = mParent->saveSettings();
652
653 return rc;
654}
655
656STDMETHODIMP SystemProperties::COMGETTER(RemoteDisplayAuthLibrary) (BSTR *aRemoteDisplayAuthLibrary)
657{
658 CheckComArgOutPointerValid(aRemoteDisplayAuthLibrary);
659
660 AutoCaller autoCaller(this);
661 if (FAILED(autoCaller.rc())) return autoCaller.rc();
662
663 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
664
665 m_strRemoteDisplayAuthLibrary.cloneTo(aRemoteDisplayAuthLibrary);
666
667 return S_OK;
668}
669
670STDMETHODIMP SystemProperties::COMSETTER(RemoteDisplayAuthLibrary) (IN_BSTR aRemoteDisplayAuthLibrary)
671{
672 AutoCaller autoCaller(this);
673 if (FAILED(autoCaller.rc())) return autoCaller.rc();
674
675 /* VirtualBox::saveSettings() needs a write lock */
676 AutoMultiWriteLock2 alock(mParent, this COMMA_LOCKVAL_SRC_POS);
677
678 HRESULT rc = setRemoteDisplayAuthLibrary (aRemoteDisplayAuthLibrary);
679 if (SUCCEEDED(rc))
680 rc = mParent->saveSettings();
681
682 return rc;
683}
684
685STDMETHODIMP SystemProperties::COMGETTER(WebServiceAuthLibrary) (BSTR *aWebServiceAuthLibrary)
686{
687 CheckComArgOutPointerValid(aWebServiceAuthLibrary);
688
689 AutoCaller autoCaller(this);
690 if (FAILED(autoCaller.rc())) return autoCaller.rc();
691
692 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
693
694 m_strWebServiceAuthLibrary.cloneTo(aWebServiceAuthLibrary);
695
696 return S_OK;
697}
698
699STDMETHODIMP SystemProperties::COMSETTER(WebServiceAuthLibrary) (IN_BSTR aWebServiceAuthLibrary)
700{
701 AutoCaller autoCaller(this);
702 if (FAILED(autoCaller.rc())) return autoCaller.rc();
703
704 /* VirtualBox::saveSettings() needs a write lock */
705 AutoMultiWriteLock2 alock(mParent, this COMMA_LOCKVAL_SRC_POS);
706
707 HRESULT rc = setWebServiceAuthLibrary (aWebServiceAuthLibrary);
708 if (SUCCEEDED(rc))
709 rc = mParent->saveSettings();
710
711 return rc;
712}
713
714STDMETHODIMP SystemProperties::COMGETTER(LogHistoryCount) (ULONG *count)
715{
716 if (!count)
717 return E_POINTER;
718
719 AutoCaller autoCaller(this);
720 if (FAILED(autoCaller.rc())) return autoCaller.rc();
721
722 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
723
724 *count = mLogHistoryCount;
725
726 return S_OK;
727}
728
729STDMETHODIMP SystemProperties::COMSETTER(LogHistoryCount) (ULONG count)
730{
731 AutoCaller autoCaller(this);
732 if (FAILED(autoCaller.rc())) return autoCaller.rc();
733
734 /* VirtualBox::saveSettings() needs a write lock */
735 AutoMultiWriteLock2 alock(mParent, this COMMA_LOCKVAL_SRC_POS);
736
737 mLogHistoryCount = count;
738
739 HRESULT rc = mParent->saveSettings();
740
741 return rc;
742}
743
744STDMETHODIMP SystemProperties::COMGETTER(DefaultAudioDriver) (AudioDriverType_T *aAudioDriver)
745{
746 if (!aAudioDriver)
747 return E_POINTER;
748
749 AutoCaller autoCaller(this);
750 if (FAILED(autoCaller.rc())) return autoCaller.rc();
751
752 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
753
754 *aAudioDriver = mDefaultAudioDriver;
755
756 return S_OK;
757}
758
759// public methods only for internal purposes
760/////////////////////////////////////////////////////////////////////////////
761
762HRESULT SystemProperties::loadSettings(const settings::SystemProperties &data)
763{
764 AutoCaller autoCaller(this);
765 if (FAILED(autoCaller.rc())) return autoCaller.rc();
766
767 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
768
769 HRESULT rc = S_OK;
770
771 rc = setDefaultMachineFolder(data.strDefaultMachineFolder);
772 if (FAILED(rc)) return rc;
773
774 rc = setDefaultHardDiskFolder(data.strDefaultHardDiskFolder);
775 if (FAILED(rc)) return rc;
776
777 rc = setDefaultHardDiskFormat(data.strDefaultHardDiskFormat);
778 if (FAILED(rc)) return rc;
779
780 rc = setRemoteDisplayAuthLibrary(data.strRemoteDisplayAuthLibrary);
781 if (FAILED(rc)) return rc;
782
783 rc = setWebServiceAuthLibrary(data.strWebServiceAuthLibrary);
784 if (FAILED(rc)) return rc;
785
786 mLogHistoryCount = data.ulLogHistoryCount;
787
788 return S_OK;
789}
790
791HRESULT SystemProperties::saveSettings(settings::SystemProperties &data)
792{
793 AutoCaller autoCaller(this);
794 if (FAILED(autoCaller.rc())) return autoCaller.rc();
795
796 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
797
798 data.strDefaultMachineFolder = m_strDefaultMachineFolder;
799 data.strDefaultHardDiskFolder = m_strDefaultHardDiskFolder;
800 data.strDefaultHardDiskFormat = m_strDefaultHardDiskFormat;
801 data.strRemoteDisplayAuthLibrary = m_strRemoteDisplayAuthLibrary;
802 data.strWebServiceAuthLibrary = m_strWebServiceAuthLibrary;
803 data.ulLogHistoryCount = mLogHistoryCount;
804
805 return S_OK;
806}
807
808/**
809 * Returns a medium format object corresponding to the given format
810 * identifier or null if no such format.
811 *
812 * @param aFormat Format identifier.
813 *
814 * @return ComObjPtr<MediumFormat>
815 */
816ComObjPtr<MediumFormat> SystemProperties::mediumFormat (CBSTR aFormat)
817{
818 ComObjPtr<MediumFormat> format;
819
820 AutoCaller autoCaller(this);
821 AssertComRCReturn (autoCaller.rc(), format);
822
823 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
824
825 for (MediumFormatList::const_iterator it = mMediumFormats.begin();
826 it != mMediumFormats.end(); ++ it)
827 {
828 /* MediumFormat is all const, no need to lock */
829
830 if ((*it)->id().compareIgnoreCase (aFormat) == 0)
831 {
832 format = *it;
833 break;
834 }
835 }
836
837 return format;
838}
839
840// private methods
841/////////////////////////////////////////////////////////////////////////////
842
843HRESULT SystemProperties::setDefaultMachineFolder(const Utf8Str &aPath)
844{
845 Utf8Str path(aPath);
846 if (path.isEmpty())
847 path = "Machines";
848
849 /* get the full file name */
850 Utf8Str folder;
851 int vrc = mParent->calculateFullPath(path, folder);
852 if (RT_FAILURE(vrc))
853 return setError(E_FAIL,
854 tr("Invalid default machine folder '%s' (%Rrc)"),
855 path.raw(),
856 vrc);
857
858 m_strDefaultMachineFolder = path;
859 m_strDefaultMachineFolderFull = folder;
860
861 return S_OK;
862}
863
864HRESULT SystemProperties::setDefaultHardDiskFolder(const Utf8Str &aPath)
865{
866 Utf8Str path(aPath);
867 if (path.isEmpty())
868 path = "HardDisks";
869
870 /* get the full file name */
871 Utf8Str folder;
872 int vrc = mParent->calculateFullPath(path, folder);
873 if (RT_FAILURE(vrc))
874 return setError(E_FAIL,
875 tr("Invalid default hard disk folder '%s' (%Rrc)"),
876 path.raw(),
877 vrc);
878
879 m_strDefaultHardDiskFolder = path;
880 m_strDefaultHardDiskFolderFull = folder;
881
882 return S_OK;
883}
884
885HRESULT SystemProperties::setDefaultHardDiskFormat(const Utf8Str &aFormat)
886{
887 if (!aFormat.isEmpty())
888 m_strDefaultHardDiskFormat = aFormat;
889 else
890 m_strDefaultHardDiskFormat = "VDI";
891
892 return S_OK;
893}
894
895HRESULT SystemProperties::setRemoteDisplayAuthLibrary(const Utf8Str &aPath)
896{
897 if (!aPath.isEmpty())
898 m_strRemoteDisplayAuthLibrary = aPath;
899 else
900 m_strRemoteDisplayAuthLibrary = "VRDPAuth";
901
902 return S_OK;
903}
904
905HRESULT SystemProperties::setWebServiceAuthLibrary(const Utf8Str &aPath)
906{
907 if (!aPath.isEmpty())
908 m_strWebServiceAuthLibrary = aPath;
909 else
910 m_strWebServiceAuthLibrary = "VRDPAuth";
911
912 return S_OK;
913}
914
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