USBProxyService.h revision 6d7c636aa41c6723d6d427826c0974050c3a8e31
/* $Id$ */
/** @file
* VirtualBox USB Proxy Service (base) class.
*/
/*
* Copyright (C) 2006-2007 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* 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.
*/
#ifndef ____H_USBPROXYSERVICE
#define ____H_USBPROXYSERVICE
#include "HostImpl.h"
#include "HostUSBDeviceImpl.h"
/**
* Base class for the USB Proxy service.
*/
{
/**
* A filter was inserted / loaded.
*
* @param aFilter Pointer to the inserted filter.
* @return ID of the inserted filter
*/
#ifdef VBOX_WITH_USBFILTER
#else
#endif
/**
* A filter was removed.
*
* @param aId ID of the filter to remove
*/
/**
* A VM is trying to capture a device, do necessary preperations.
*
* @returns VBox status code.
* @param aDevice The device in question.
*/
/**
* The device is going to be detached from a VM.
*
* @param aDevice The device in question.
*/
/**
* A VM is releasing a device back to the host.
*
* @returns VBox status code.
* @param aDevice The device in question.
*/
/**
* Updates the device state.
* This is responsible for calling HostUSBDevice::updateState() and check for async completion.
*
* @returns true if there is a state change.
* @param aDevice The device in question.
* @param aUSBDevice The USB device structure for the last enumeration.
*/
/**
* Add device notification hook for the OS specific code.
*
* @param aDevice The device in question.
* @param aUSBDevice The USB device structure.
*/
/**
* Remove device notification hook for the OS specific code.
*
* @param aDevice The device in question.
*/
/**
* Query if the service is active and working.
*
* @returns true if the service is up running.
* @returns false if the service isn't running.
*/
bool isActive (void);
/**
* Get last error.
* Can be used to check why the proxy !isActive() upon construction.
*
* @returns VBox status code.
*/
int getLastError (void);
/**
* Calculate the hash of the serial string.
*
* 64bit FNV1a, chosen because it is designed to hash in to a power of two
* space, and is much quicker and simpler than, say, a half MD4.
*
* @returns the hash.
* @param aSerial The serial string.
*/
#ifdef VBOX_WITH_USBFILTER
/**
* Initializes a filter with the data from the specified device.
*
* @param aFilter The filter to fill.
* @param aDevice The device to fill it with.
*/
#endif
/**
* Starts the service.
*
* @returns VBox status.
*/
int start (void);
/**
* Stops the service.
*
* @returns VBox status.
*/
int stop (void);
/**
* Wait for a change in the USB devices attached to the host.
*
* @returns VBox status (ignored).
* @param aMillies Number of milliseconds to wait.
*/
/**
* Interrupt any wait() call in progress.
*
* @returns VBox status.
*/
virtual int interruptWait (void);
/**
* Get a list of USB device currently attached to the host.
*
* @returns Pointer to a list of USB devices.
* The list nodes are freed individually by calling freeDevice().
*/
/**
* First call made on the service thread, use it to do
* thread initialization.
*/
virtual void serviceThreadInit (void);
/**
* First call made on the service thread, use it to do
* thread termination.
*/
virtual void serviceThreadTerm (void);
/**
* Implement fake capture, ++.
*
* @returns true if there is a state change.
* @param pDevice The device in question.
* @param pUSBDevice The USB device structure for the last enumeration.
*/
/**
* Free all the members of a USB interface returned by getDevice().
*
* @param pIf Pointer to the interface.
* @param cIfs Number of consecutive interfaces pIf points to
*/
/**
* Free all the members of a USB device returned by getDevice().
*
* @param pDevice Pointer to the device.
*/
/**
* Free one USB device returned by getDevice().
*
* @param pDevice Pointer to the device.
*/
/**
* Process any relevant changes in the attached USB devices.
*/
void processChanges (void);
/**
* The service thread created by start().
*
* @param Thread The thread handle.
* @param pvUser Pointer to the USBProxyService instance.
*/
/** Pointer to the Host object. */
/** Thread handle of the service thread. */
/** Flag which stop() sets to cause serviceThread to return. */
bool volatile mTerminate;
/** List of smart HostUSBDevice pointers. */
/** List of the known USB devices. */
/** VBox status code of the last failure.
* (Only used by start(), stop() and the child constructors.) */
int mLastError;
};
#ifdef VBOX_WITH_USB
# ifdef RT_OS_DARWIN
# define OSType Carbon_OSType
/**
* The Darwin hosted USB Proxy Service.
*/
{
#ifdef VBOX_WITH_USBFILTER
#endif
virtual int interruptWait (void);
virtual void serviceThreadInit (void);
virtual void serviceThreadTerm (void);
/** Reference to the runloop of the service thread.
* This is NULL if the service thread isn't running. */
/** The opaque value returned by DarwinSubscribeUSBNotifications. */
void *mNotifyOpaque;
/** A hack to work around the problem with the usb device enumeration
* not including newly attached devices. */
bool mWaitABitNextTime;
#ifndef VBOX_WITH_USBFILTER
/** Whether we've got a fake async event and should return without entering the runloop. */
bool volatile mFakeAsync;
#endif
/** Whether we've successfully initialized the USBLib and should call USBLibTerm in the destructor. */
bool mUSBLibInitialized;
};
# endif /* RT_OS_DARWIN */
# ifdef RT_OS_LINUX
# include <stdio.h>
/**
* The Linux hosted USB Proxy Service.
*/
{
virtual int interruptWait (void);
/** Stream for mFile. */
/** Pipe used to interrupt wait(), the read end. */
/** Pipe used to interrupt wait(), the write end. */
/** The root of usbfs. */
/** Number of 500ms polls left to do. See usbDeterminState for details. */
unsigned mUdevPolls;
};
# endif /* RT_OS_LINUX */
# ifdef RT_OS_OS2
# include <usbcalls.h>
/**
* The Linux hosted USB Proxy Service.
*/
{
virtual int interruptWait (void);
/** The notification event semaphore */
/** The notification id. */
/** The usbcalls.dll handle. */
/** UsbRegisterChangeNotification */
/** UsbDeregisterNotification */
/** UsbQueryNumberDevices */
/** UsbQueryDeviceReport */
};
# endif /* RT_OS_LINUX */
# ifdef RT_OS_SOLARIS
# include <libdevinfo.h>
/**
* The Solaris hosted USB Proxy Service.
*/
{
virtual int interruptWait (void);
};
#endif /* RT_OS_SOLARIS */
# ifdef RT_OS_WINDOWS
/**
* The Win32 hosted USB Proxy Service.
*/
{
virtual int interruptWait (void);
};
# endif /* RT_OS_WINDOWS */
#endif /* VBOX_WITH_USB */
#endif /* !____H_USBPROXYSERVICE */