/* $Id: HostHardwareLinux.h 21393 2009-07-08 13:02:09Z vboxsync $ */ /** @file * Classes for handling hardware detection under Linux. Please feel free to * expand these to work for other systems (Solaris!) or to add new ones for * other systems. */ /* * Copyright (C) 2008-2009 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_HOSTHARDWARELINUX # define ____H_HOSTHARDWARELINUX #include #include #include /** This should only be enabled when testing. It causes all methods to be used * when probing for drives instead of stopping as soon as one method is * successful. This is a global instead of a define in order to keep the test * code closer to the real code. */ extern bool g_testHostHardwareLinux; /** * Class for probing and returning information about host DVD and floppy * drives. To use this class, create an instance, call one of the update * methods to do the actual probing and use the iterator methods to get the * result of the probe. */ class VBoxMainDriveInfo { public: /** Structure describing a host drive */ struct DriveInfo { /** The device node of the drive. */ std::string mDevice; /** The hal unique device identifier, if available. */ std::string mUdi; /** A textual description of the drive. */ std::string mDescription; /** Constructors */ DriveInfo (std::string aDevice, std::string aUdi, std::string aDescription) : mDevice (aDevice), mUdi (aUdi), mDescription (aDescription) {} DriveInfo (std::string aDevice, std::string aUdi, const char *aDescription = NULL) : mDevice (aDevice), mUdi (aUdi), mDescription (aDescription != NULL ? aDescription : std::string ()) {} DriveInfo (std::string aDevice, const char *aUdi = NULL, const char *aDescription = NULL) : mDevice (aDevice), mUdi (aUdi != NULL ? aUdi : std::string ()), mDescription (aDescription != NULL ? aDescription : std::string ()) {} }; /** List (resp vector) holding drive information */ typedef std::vector DriveInfoList; /** * Search for host floppy drives and rebuild the list, which remains empty * until the first time this method is called. * @returns iprt status code */ int updateFloppies (); /** * Search for host DVD drives and rebuild the list, which remains empty * until the first time this method is called. * @returns iprt status code */ int updateDVDs (); /** Get the first element in the list of floppy drives. */ DriveInfoList::const_iterator FloppyBegin() { return mFloppyList.begin(); } /** Get the last element in the list of floppy drives. */ DriveInfoList::const_iterator FloppyEnd() { return mFloppyList.end(); } /** Get the first element in the list of DVD drives. */ DriveInfoList::const_iterator DVDBegin() { return mDVDList.begin(); } /** Get the last element in the list of DVD drives. */ DriveInfoList::const_iterator DVDEnd() { return mDVDList.end(); } private: /** The list of currently available floppy drives */ DriveInfoList mFloppyList; /** The list of currently available DVD drives */ DriveInfoList mDVDList; }; /** Convenience typedef. */ typedef VBoxMainDriveInfo::DriveInfoList DriveInfoList; /** Convenience typedef. */ typedef VBoxMainDriveInfo::DriveInfo DriveInfo; /** * Class for probing and returning information about host USB devices. * To use this class, create an instance, call the update methods to do the * actual probing and use the iterator methods to get the result of the probe. */ class VBoxMainUSBDeviceInfo { public: /** Structure describing a host USB device */ struct USBDeviceInfo { /** The device node of the device. */ std::string mDevice; /** The sysfs path of the device. */ std::string mSysfsPath; /** Type for the list of interfaces. */ typedef std::vector InterfaceList; /** The sysfs paths of the device's interfaces. */ InterfaceList mInterfaces; /** Constructors */ USBDeviceInfo (std::string aDevice, std::string aSysfsPath) : mDevice (aDevice), mSysfsPath (aSysfsPath) {} USBDeviceInfo () {} }; /** List (resp vector) holding drive information */ typedef std::vector DeviceInfoList; /** * Search for host USB devices and rebuild the list, which remains empty * until the first time this method is called. * @returns iprt status code */ int UpdateDevices (); /** Get the first element in the list of USB devices. */ DeviceInfoList::const_iterator DevicesBegin() { return mDeviceList.begin(); } /** Get the last element in the list of USB devices. */ DeviceInfoList::const_iterator DevicesEnd() { return mDeviceList.end(); } private: /** The list of currently available USB devices */ DeviceInfoList mDeviceList; }; /** Convenience typedef. */ typedef VBoxMainUSBDeviceInfo::DeviceInfoList USBDeviceInfoList; /** Convenience typedef. */ typedef VBoxMainUSBDeviceInfo::USBDeviceInfo USBDeviceInfo; /** Convenience typedef. */ typedef VBoxMainUSBDeviceInfo::USBDeviceInfo::InterfaceList USBInterfaceList; /** * Class for waiting for a hotplug event. To use this class, create an * instance and call the @a Wait() method, which blocks until an event or a * user-triggered interruption occurs. Call @a Interrupt() to interrupt the * wait before an event occurs. */ class VBoxMainHotplugWaiter { /** Opaque context struct. */ struct Context; /** Opaque waiter context. */ Context *mContext; public: /** Constructor */ VBoxMainHotplugWaiter (void); /** Destructor. */ ~VBoxMainHotplugWaiter (void); /** * Wait for a hotplug event. * * @returns VINF_SUCCESS if an event occurred or if Interrupt() was called. * @returns VERR_TRY_AGAIN if the wait failed but this might (!) be a * temporary failure. * @returns VERR_NOT_SUPPORTED if the wait failed and will definitely not * succeed if retried. * @returns Possibly other iprt status codes otherwise. * @param cMillies How long to wait for at most. */ int Wait (unsigned cMillies); /** * Interrupts an active wait. In the current implementation, the wait * may not return until up to two seconds after calling this method. */ void Interrupt (void); }; #endif /* ____H_HOSTHARDWARELINUX */ /* vi: set tabstop=4 shiftwidth=4 expandtab: */