SystemPropertiesImpl.cpp revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
/** @file
*
* VirtualBox COM class implementation
*/
/*
* Copyright (C) 2006 InnoTek Systemberatung GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License as published by the Free Software Foundation,
* in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
* distribution. VirtualBox OSE is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY of any kind.
*
* If you received this file as part of a commercial VirtualBox
* distribution, then only the terms of your commercial VirtualBox
* license agreement apply instead of the previous paragraph.
*/
#include "SystemPropertiesImpl.h"
#include "VirtualBoxImpl.h"
#include "MachineImpl.h"
#include "Logging.h"
// generated header
#include "SchemaDefs.h"
#include <iprt/path.h>
#include <iprt/dir.h>
#include <VBox/param.h>
#include <VBox/err.h>
// defines
/////////////////////////////////////////////////////////////////////////////
// constructor / destructor
/////////////////////////////////////////////////////////////////////////////
HRESULT SystemProperties::FinalConstruct()
{
return S_OK;
}
void SystemProperties::FinalRelease()
{
if (isReady())
uninit ();
}
// public methods only for internal purposes
/////////////////////////////////////////////////////////////////////////////
/**
* Initializes the system information object.
*
* @returns COM result indicator
*/
HRESULT SystemProperties::init (VirtualBox *aParent)
{
LogFlowMember (("SystemProperties::init()\n"));
ComAssertRet (aParent, E_FAIL);
AutoLock alock (this);
ComAssertRet (!isReady(), E_UNEXPECTED);
mParent = aParent;
setDefaultVDIFolder (NULL);
setDefaultMachineFolder (NULL);
setRemoteDisplayAuthLibrary (NULL);
mHWVirtExEnabled = false;
setReady(true);
return S_OK;
}
/**
* Uninitializes the instance and sets the ready flag to FALSE.
* Called either from FinalRelease() or by the parent when it gets destroyed.
*/
void SystemProperties::uninit()
{
LogFlowMember (("SystemProperties::uninit()\n"));
AutoLock alock (this);
AssertReturn (isReady(), (void) 0);
setReady (false);
}
// ISystemProperties properties
/////////////////////////////////////////////////////////////////////////////
STDMETHODIMP SystemProperties::COMGETTER(MinGuestRAM)(ULONG *minRAM)
{
if (!minRAM)
return E_POINTER;
AutoLock lock(this);
CHECK_READY();
*minRAM = SchemaDefs::MinGuestRAM;
return S_OK;
}
STDMETHODIMP SystemProperties::COMGETTER(MaxGuestRAM)(ULONG *maxRAM)
{
if (!maxRAM)
return E_POINTER;
AutoLock lock(this);
CHECK_READY();
*maxRAM = SchemaDefs::MaxGuestRAM;
return S_OK;
}
STDMETHODIMP SystemProperties::COMGETTER(MinGuestVRAM)(ULONG *minVRAM)
{
if (!minVRAM)
return E_POINTER;
AutoLock lock(this);
CHECK_READY();
*minVRAM = SchemaDefs::MinGuestVRAM;
return S_OK;
}
STDMETHODIMP SystemProperties::COMGETTER(MaxGuestVRAM)(ULONG *maxVRAM)
{
if (!maxVRAM)
return E_POINTER;
AutoLock lock(this);
CHECK_READY();
*maxVRAM = SchemaDefs::MaxGuestVRAM;
return S_OK;
}
STDMETHODIMP SystemProperties::COMGETTER(MaxVDISize)(ULONG64 *maxVDISize)
{
if (!maxVDISize)
return E_POINTER;
AutoLock lock(this);
CHECK_READY();
/** The BIOS supports currently 32 bit LBA numbers (implementing the full
* 48 bit range is in theory trivial, but the crappy compiler makes things
* more difficult). This translates to almost 2 TBytes (to be on the safe
* side, the reported limit is 1 MiByte less than that, as the total number
* of sectors should fit in 32 bits, too), which should bei enough for
* the moment. The virtual ATA disks support complete LBA48 (although for
* example iSCSI is also currently limited to 32 bit LBA), so the
* theoretical maximum disk size is 128 PiByte. The user interface cannot
* cope with this in a reasonable way yet. */
*maxVDISize = 2048 * 1024 - 1;
return S_OK;
}
STDMETHODIMP SystemProperties::COMGETTER(NetworkAdapterCount)(ULONG *count)
{
if (!count)
return E_POINTER;
AutoLock lock (this);
CHECK_READY();
*count = SchemaDefs::NetworkAdapterCount;
return S_OK;
}
STDMETHODIMP SystemProperties::COMGETTER(MaxBootPosition)(ULONG *aMaxBootPosition)
{
if (!aMaxBootPosition)
return E_POINTER;
AutoLock lock (this);
CHECK_READY();
*aMaxBootPosition = SchemaDefs::MaxBootPosition;
return S_OK;
}
STDMETHODIMP SystemProperties::COMGETTER(DefaultVDIFolder) (BSTR *aDefaultVDIFolder)
{
if (!aDefaultVDIFolder)
return E_POINTER;
AutoLock alock (this);
CHECK_READY();
mDefaultVDIFolderFull.cloneTo (aDefaultVDIFolder);
return S_OK;
}
STDMETHODIMP SystemProperties::COMSETTER(DefaultVDIFolder) (INPTR BSTR aDefaultVDIFolder)
{
AutoLock alock (this);
CHECK_READY();
HRESULT rc = setDefaultVDIFolder (aDefaultVDIFolder);
if (FAILED (rc))
return rc;
alock.unlock();
return mParent->saveSettings();
}
STDMETHODIMP SystemProperties::COMGETTER(DefaultMachineFolder) (BSTR *aDefaultMachineFolder)
{
if (!aDefaultMachineFolder)
return E_POINTER;
AutoLock alock (this);
CHECK_READY();
mDefaultMachineFolderFull.cloneTo (aDefaultMachineFolder);
return S_OK;
}
STDMETHODIMP SystemProperties::COMSETTER(DefaultMachineFolder) (INPTR BSTR aDefaultMachineFolder)
{
AutoLock alock (this);
CHECK_READY();
HRESULT rc = setDefaultMachineFolder (aDefaultMachineFolder);
if (FAILED (rc))
return rc;
alock.unlock();
return mParent->saveSettings();
}
STDMETHODIMP SystemProperties::COMGETTER(RemoteDisplayAuthLibrary) (BSTR *aRemoteDisplayAuthLibrary)
{
if (!aRemoteDisplayAuthLibrary)
return E_POINTER;
AutoLock alock (this);
CHECK_READY();
mRemoteDisplayAuthLibrary.cloneTo (aRemoteDisplayAuthLibrary);
return S_OK;
}
STDMETHODIMP SystemProperties::COMSETTER(RemoteDisplayAuthLibrary) (INPTR BSTR aRemoteDisplayAuthLibrary)
{
AutoLock alock (this);
CHECK_READY();
HRESULT rc = setRemoteDisplayAuthLibrary (aRemoteDisplayAuthLibrary);
if (FAILED (rc))
return rc;
alock.unlock();
return mParent->saveSettings();
}
STDMETHODIMP SystemProperties::COMGETTER(HWVirtExEnabled) (BOOL *enabled)
{
if (!enabled)
return E_POINTER;
AutoLock alock (this);
CHECK_READY();
*enabled = mHWVirtExEnabled;
return S_OK;
}
STDMETHODIMP SystemProperties::COMSETTER(HWVirtExEnabled) (BOOL enabled)
{
AutoLock alock (this);
CHECK_READY();
mHWVirtExEnabled = enabled;
alock.unlock();
return mParent->saveSettings();
}
// public methods only for internal purposes
/////////////////////////////////////////////////////////////////////////////
HRESULT SystemProperties::loadSettings (CFGNODE aGlobal)
{
AutoLock lock (this);
CHECK_READY();
ComAssertRet (aGlobal, E_FAIL);
CFGNODE properties = NULL;
CFGLDRGetChildNode (aGlobal, "SystemProperties", 0, &properties);
ComAssertRet (properties, E_FAIL);
HRESULT rc = E_FAIL;
do
{
Bstr bstr;
CFGLDRQueryBSTR (properties, "defaultVDIFolder",
bstr.asOutParam());
rc = setDefaultVDIFolder (bstr);
if (FAILED (rc))
break;
CFGLDRQueryBSTR (properties, "defaultMachineFolder",
bstr.asOutParam());
rc = setDefaultMachineFolder (bstr);
if (FAILED (rc))
break;
CFGLDRQueryBSTR (properties, "remoteDisplayAuthLibrary",
bstr.asOutParam());
rc = setRemoteDisplayAuthLibrary (bstr);
if (FAILED (rc))
break;
CFGLDRQueryBool (properties, "HWVirtExEnabled", (bool*)&mHWVirtExEnabled);
}
while (0);
CFGLDRReleaseNode (properties);
return rc;
}
HRESULT SystemProperties::saveSettings (CFGNODE aGlobal)
{
AutoLock lock (this);
CHECK_READY();
ComAssertRet (aGlobal, E_FAIL);
// first, delete the entry
CFGNODE properties = NULL;
int vrc = CFGLDRGetChildNode (aGlobal, "SystemProperties", 0, &properties);
if (VBOX_SUCCESS (vrc))
{
vrc = CFGLDRDeleteNode (properties);
ComAssertRCRet (vrc, E_FAIL);
}
// then, recreate it
vrc = CFGLDRCreateChildNode (aGlobal, "SystemProperties", &properties);
ComAssertRCRet (vrc, E_FAIL);
if (mDefaultVDIFolder)
CFGLDRSetBSTR (properties, "defaultVDIFolder",
mDefaultVDIFolder);
if (mDefaultMachineFolder)
CFGLDRSetBSTR (properties, "defaultMachineFolder",
mDefaultMachineFolder);
if (mRemoteDisplayAuthLibrary)
CFGLDRSetBSTR (properties, "remoteDisplayAuthLibrary",
mRemoteDisplayAuthLibrary);
CFGLDRSetBool (properties, "HWVirtExEnabled", !!mHWVirtExEnabled);
return S_OK;
}
// private methods
/////////////////////////////////////////////////////////////////////////////
HRESULT SystemProperties::setDefaultVDIFolder (const BSTR aPath)
{
Utf8Str path;
if (aPath && *aPath)
path = aPath;
else
path = "VDI";
// get the full file name
char folder [RTPATH_MAX];
int vrc = RTPathAbsEx (mParent->homeDir(), path, folder, sizeof (folder));
if (VBOX_FAILURE (vrc))
return setError (E_FAIL,
tr ("Cannot set the default VDI folder to '%ls' (%Vrc)"),
path.raw(), vrc);
mDefaultVDIFolder = path;
mDefaultVDIFolderFull = folder;
return S_OK;
}
HRESULT SystemProperties::setDefaultMachineFolder (const BSTR aPath)
{
Utf8Str path;
if (aPath && *aPath)
path = aPath;
else
path = "Machines";
// get the full file name
char folder [RTPATH_MAX];
int vrc = RTPathAbsEx (mParent->homeDir(), path, folder, sizeof (folder));
if (VBOX_FAILURE (vrc))
return setError (E_FAIL,
tr ("Cannot set the default machines folder to '%ls' (%Vrc)"),
path.raw(), vrc);
mDefaultMachineFolder = path;
mDefaultMachineFolderFull = folder;
return S_OK;
}
HRESULT SystemProperties::setRemoteDisplayAuthLibrary (const BSTR aPath)
{
Utf8Str path;
if (aPath && *aPath)
path = aPath;
else
path = "VRDPAuth";
mRemoteDisplayAuthLibrary = path;
return S_OK;
}