blob: 6041e68728ee0ecebf288c8f6aeec72e3aa80252 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/usb/usb_device.h"
#include <algorithm>
#include "base/stl_util.h"
#include "chrome/browser/usb/usb_context.h"
#include "chrome/browser/usb/usb_device_handle.h"
#include "content/public/browser/browser_thread.h"
#include "third_party/libusb/src/libusb/libusb.h"
using content::BrowserThread;
UsbDevice::UsbDevice(
scoped_refptr<UsbContext> context,
PlatformUsbDevice platform_device,
uint16 vendor_id,
uint16 product_id)
: platform_device_(platform_device),
vendor_id_(vendor_id),
product_id_(product_id),
context_(context) {
CHECK(platform_device) << "platform_device cannot be NULL";
libusb_ref_device(platform_device);
}
UsbDevice::UsbDevice()
: platform_device_(NULL),
vendor_id_(0),
product_id_(0),
context_(NULL) {
}
UsbDevice::~UsbDevice() {
DCHECK(thread_checker_.CalledOnValidThread());
for (HandlesVector::iterator it = handles_.begin();
it != handles_.end();
++it) {
(*it)->InternalClose();
}
STLClearObject(&handles_);
libusb_unref_device(platform_device_);
}
scoped_refptr<UsbDeviceHandle> UsbDevice::Open() {
DCHECK(thread_checker_.CalledOnValidThread());
PlatformUsbDeviceHandle handle;
int rv = libusb_open(platform_device_, &handle);
if (LIBUSB_SUCCESS == rv) {
scoped_refptr<UsbDeviceHandle> device_handle =
new UsbDeviceHandle(context_, this, handle);
handles_.push_back(device_handle);
return device_handle;
}
return NULL;
}
bool UsbDevice::Close(scoped_refptr<UsbDeviceHandle> handle) {
DCHECK(thread_checker_.CalledOnValidThread());
for (HandlesVector::iterator it = handles_.begin();
it != handles_.end();
++it) {
if (*it == handle) {
(*it)->InternalClose();
handles_.erase(it);
return true;
}
}
return false;
}
bool UsbDevice::ListInterfaces(UsbConfigDescriptor* config) {
DCHECK(thread_checker_.CalledOnValidThread());
PlatformUsbConfigDescriptor platform_config;
const int list_result =
libusb_get_active_config_descriptor(platform_device_, &platform_config);
if (list_result == 0)
config->Reset(platform_config);
return list_result == 0;
}
void UsbDevice::OnDisconnect() {
DCHECK(thread_checker_.CalledOnValidThread());
HandlesVector handles;
swap(handles, handles_);
for (std::vector<scoped_refptr<UsbDeviceHandle> >::iterator it =
handles.begin();
it != handles.end();
++it) {
(*it)->InternalClose();
}
}