mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 02:41:14 +00:00
68fb03c7c0
Now that we no longer use any of the macros from this file, remove it. This also removes a typo. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
101 lines
3.7 KiB
C
101 lines
3.7 KiB
C
/*
|
|
* virusb.h: helper APIs for managing host USB devices
|
|
*
|
|
* Copyright (C) 2009 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "internal.h"
|
|
#include "virobject.h"
|
|
|
|
#define USB_DEVFS "/dev/bus/usb/"
|
|
|
|
typedef struct _virUSBDevice virUSBDevice;
|
|
typedef virUSBDevice *virUSBDevicePtr;
|
|
typedef struct _virUSBDeviceList virUSBDeviceList;
|
|
typedef virUSBDeviceList *virUSBDeviceListPtr;
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virUSBDeviceList, virObjectUnref);
|
|
|
|
|
|
virUSBDevicePtr virUSBDeviceNew(unsigned int bus,
|
|
unsigned int devno,
|
|
const char *vroot);
|
|
|
|
int virUSBDeviceFindByBus(unsigned int bus,
|
|
unsigned int devno,
|
|
const char *vroot,
|
|
bool mandatory,
|
|
virUSBDevicePtr *usb);
|
|
|
|
int virUSBDeviceFindByVendor(unsigned int vendor,
|
|
unsigned int product,
|
|
const char *vroot,
|
|
bool mandatory,
|
|
virUSBDeviceListPtr *devices);
|
|
|
|
int virUSBDeviceFind(unsigned int vendor,
|
|
unsigned int product,
|
|
unsigned int bus,
|
|
unsigned int devno,
|
|
const char *vroot,
|
|
bool mandatory,
|
|
virUSBDevicePtr *usb);
|
|
|
|
void virUSBDeviceFree(virUSBDevicePtr dev);
|
|
int virUSBDeviceSetUsedBy(virUSBDevicePtr dev,
|
|
const char *drv_name,
|
|
const char *dom_name);
|
|
void virUSBDeviceGetUsedBy(virUSBDevicePtr dev,
|
|
const char **drv_name,
|
|
const char **dom_name);
|
|
const char *virUSBDeviceGetName(virUSBDevicePtr dev);
|
|
const char *virUSBDeviceGetPath(virUSBDevicePtr usb);
|
|
|
|
unsigned int virUSBDeviceGetBus(virUSBDevicePtr dev);
|
|
unsigned int virUSBDeviceGetDevno(virUSBDevicePtr dev);
|
|
|
|
/*
|
|
* Callback that will be invoked once for each file
|
|
* associated with / used for USB host device access.
|
|
*
|
|
* Should return 0 if successfully processed, or
|
|
* -1 to indicate error and abort iteration
|
|
*/
|
|
typedef int (*virUSBDeviceFileActor)(virUSBDevicePtr dev,
|
|
const char *path, void *opaque);
|
|
|
|
int virUSBDeviceFileIterate(virUSBDevicePtr dev,
|
|
virUSBDeviceFileActor actor,
|
|
void *opaque);
|
|
|
|
virUSBDeviceListPtr virUSBDeviceListNew(void);
|
|
int virUSBDeviceListAdd(virUSBDeviceListPtr list,
|
|
virUSBDevicePtr *dev);
|
|
virUSBDevicePtr virUSBDeviceListGet(virUSBDeviceListPtr list,
|
|
int idx);
|
|
size_t virUSBDeviceListCount(virUSBDeviceListPtr list);
|
|
virUSBDevicePtr virUSBDeviceListSteal(virUSBDeviceListPtr list,
|
|
virUSBDevicePtr dev);
|
|
void virUSBDeviceListDel(virUSBDeviceListPtr list,
|
|
virUSBDevicePtr dev);
|
|
virUSBDevicePtr virUSBDeviceListFind(virUSBDeviceListPtr list,
|
|
virUSBDevicePtr dev);
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virUSBDevice, virUSBDeviceFree);
|