StorageControllerImpl.h revision 91475a294d7a91051ef153a4b64a606f0db1920e
/* $Id$ */
/** @file
*
* VBox StorageController COM Class declaration.
*/
/*
* Copyright (C) 2008 Sun Microsystems, Inc.
*
* 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 (GPL) 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.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ____H_STORAGECONTROLLERIMPL
#define ____H_STORAGECONTROLLERIMPL
#include "VirtualBoxBase.h"
class ATL_NO_VTABLE StorageController :
public VirtualBoxBase,
public VirtualBoxSupportErrorInfoImpl<StorageController, IStorageController>,
public VirtualBoxSupportTranslation<StorageController>,
VBOX_SCRIPTABLE_IMPL(IStorageController)
{
public:
VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (StorageController)
DECLARE_NOT_AGGREGATABLE (StorageController)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(StorageController)
COM_INTERFACE_ENTRY (ISupportErrorInfo)
COM_INTERFACE_ENTRY (IStorageController)
COM_INTERFACE_ENTRY2 (IDispatch, IStorageController)
END_COM_MAP()
StorageController() { };
~StorageController() { };
HRESULT FinalConstruct();
void FinalRelease();
// public initializer/uninitializer for internal purposes only
HRESULT init(Machine *aParent,
const Utf8Str &aName,
StorageBus_T aBus,
ULONG aInstance);
HRESULT init(Machine *aParent,
StorageController *aThat,
bool aReshare = false);
HRESULT initCopy(Machine *aParent,
StorageController *aThat);
void uninit();
// IStorageController properties
STDMETHOD(COMGETTER(Name)) (BSTR *aName);
STDMETHOD(COMGETTER(Bus)) (StorageBus_T *aBus);
STDMETHOD(COMGETTER(ControllerType)) (StorageControllerType_T *aControllerType);
STDMETHOD(COMSETTER(ControllerType)) (StorageControllerType_T aControllerType);
STDMETHOD(COMGETTER(MaxDevicesPerPortCount)) (ULONG *aMaxDevices);
STDMETHOD(COMGETTER(MinPortCount)) (ULONG *aMinPortCount);
STDMETHOD(COMGETTER(MaxPortCount)) (ULONG *aMaxPortCount);
STDMETHOD(COMGETTER(PortCount)) (ULONG *aPortCount);
STDMETHOD(COMSETTER(PortCount)) (ULONG aPortCount);
STDMETHOD(COMGETTER(Instance)) (ULONG *aInstance);
STDMETHOD(COMSETTER(Instance)) (ULONG aInstance);
// StorageController methods
STDMETHOD(GetIDEEmulationPort) (LONG DevicePosition, LONG *aPortNumber);
STDMETHOD(SetIDEEmulationPort) (LONG DevicePosition, LONG aPortNumber);
// public methods only for internal purposes
const Utf8Str &getName() const;
StorageControllerType_T getControllerType() const;
StorageBus_T getStorageBus() const;
ULONG getInstance() const;
bool isModified();
bool isReallyModified();
bool rollback();
void commit();
// public methods for internal purposes only
// (ensure there is a caller and a read lock before calling them!)
void unshare();
/** @note this doesn't require a read lock since mParent is constant. */
const ComObjPtr<Machine, ComWeakRef>& getMachine();
ComObjPtr<StorageController> getPeer();
// for VirtualBoxSupportErrorInfoImpl
static const wchar_t *getComponentName() { return L"StorageController"; }
private:
void printList();
struct Data;
Data *m;
};
#endif //!____H_STORAGECONTROLLERIMPL
/* vi: set tabstop=4 shiftwidth=4 expandtab: */