1 | /* $Id $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox USB Proxy Service class, test version for Linux hosts.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | #ifndef ____H_TSTUSBLINUX
|
---|
24 | #define ____H_TSTUSBLINUX
|
---|
25 |
|
---|
26 | typedef int HRESULT;
|
---|
27 | enum { S_OK = 0, E_NOTIMPL = 1 };
|
---|
28 |
|
---|
29 | #include <VBox/usb.h>
|
---|
30 | #include <VBox/usbfilter.h>
|
---|
31 |
|
---|
32 | #include <VBox/err.h>
|
---|
33 |
|
---|
34 | #ifdef VBOX_USB_WITH_SYSFS
|
---|
35 | # include <libhal.h>
|
---|
36 | #endif
|
---|
37 |
|
---|
38 | #include <stdio.h>
|
---|
39 | /**
|
---|
40 | * The Linux hosted USB Proxy Service.
|
---|
41 | */
|
---|
42 | class USBProxyServiceLinux
|
---|
43 | {
|
---|
44 | public:
|
---|
45 | USBProxyServiceLinux() : mLastError(VINF_SUCCESS) {}
|
---|
46 | HRESULT initSysfs(void);
|
---|
47 | PUSBDEVICE getDevicesFromSysfs(void);
|
---|
48 | int getLastError(void) { return mLastError; }
|
---|
49 |
|
---|
50 | private:
|
---|
51 | int start(void) { return VINF_SUCCESS; }
|
---|
52 | static void freeDevice(PUSBDEVICE) {} /* We don't care about leaks in a test. */
|
---|
53 | int usbProbeInterfacesFromLibhal(const char *pszHalUuid, PUSBDEVICE pDev);
|
---|
54 | int mLastError;
|
---|
55 | # ifdef VBOX_USB_WITH_SYSFS
|
---|
56 | /** Our connection to DBus for getting information from hal. This will be
|
---|
57 | * NULL if the initialisation failed. */
|
---|
58 | DBusConnection *mDBusConnection;
|
---|
59 | /** Handle to libhal. */
|
---|
60 | LibHalContext *mLibHalContext;
|
---|
61 | # endif
|
---|
62 | };
|
---|
63 |
|
---|
64 | #endif /* !____H_TSTUSBLINUX */
|
---|
65 |
|
---|