blob: cd83c42ae8b85f180623213e5b4d2abd5e2ef6af [file] [log] [blame]
Josh Gao1c70e1b2016-09-28 12:32:45 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
Josh Gaoef3d3432017-05-02 15:01:09 -070019#include <sys/types.h>
20
Josh Gao1c70e1b2016-09-28 12:32:45 -070021// USB host/client interface.
22
23#define ADB_USB_INTERFACE(handle_ref_type) \
24 void usb_init(); \
Josh Gao01b7bc42017-05-09 13:43:35 -070025 void usb_cleanup(); \
Josh Gao1c70e1b2016-09-28 12:32:45 -070026 int usb_write(handle_ref_type h, const void* data, int len); \
27 int usb_read(handle_ref_type h, void* data, int len); \
28 int usb_close(handle_ref_type h); \
Josh Gaoef3d3432017-05-02 15:01:09 -070029 void usb_kick(handle_ref_type h); \
30 size_t usb_get_max_packet_size(handle_ref_type)
Josh Gao1c70e1b2016-09-28 12:32:45 -070031
Josh Gao94259962017-12-08 13:05:40 -080032#if !ADB_HOST
33// The daemon has a single implementation.
Josh Gao1c70e1b2016-09-28 12:32:45 -070034
35struct usb_handle;
36ADB_USB_INTERFACE(usb_handle*);
37
38#else // linux host || darwin
39// Linux and Darwin clients have native and libusb implementations.
40
41namespace libusb {
42 struct usb_handle;
43 ADB_USB_INTERFACE(libusb::usb_handle*);
44}
45
46namespace native {
47 struct usb_handle;
48 ADB_USB_INTERFACE(native::usb_handle*);
49}
50
51// Empty base that both implementations' opaque handles inherit from.
52struct usb_handle {
53};
54
55ADB_USB_INTERFACE(::usb_handle*);
56
57#endif // linux host || darwin
58
59
60// USB device detection.
61int is_adb_interface(int usb_class, int usb_subclass, int usb_protocol);
Josh Gao5d1756c2017-02-22 17:07:01 -080062
63bool should_use_libusb();