summaryrefslogtreecommitdiffstats
path: root/device/hid/hid_device_info.h
blob: 1b143c2253532ea00d703370bfb6892022d02cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2014 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.

#ifndef DEVICE_HID_HID_DEVICE_INFO_H_
#define DEVICE_HID_HID_DEVICE_INFO_H_

#include <string>
#include <vector>

#include "build/build_config.h"
#include "device/hid/hid_usage_and_page.h"

#if defined(OS_MACOSX)
#include <IOKit/hid/IOHIDDevice.h>
#endif

namespace device {

enum HidBusType {
  kHIDBusTypeUSB = 0,
  kHIDBusTypeBluetooth = 1,
};

#if defined(OS_MACOSX)
typedef IOHIDDeviceRef HidDeviceId;
const HidDeviceId kInvalidHidDeviceId = NULL;
#else
typedef std::string HidDeviceId;
extern const char kInvalidHidDeviceId[];
#endif

struct HidDeviceInfo {
  HidDeviceInfo();
  ~HidDeviceInfo();

  HidDeviceId device_id;

  HidBusType bus_type;
  uint16_t vendor_id;
  uint16_t product_id;

  int input_report_size;
  int output_report_size;
  int feature_report_size;
  std::vector<HidUsageAndPage> usages;
  bool has_report_id;

  std::string product_name;
  std::string serial_number;
};

}  // namespace device

#endif  // DEVICE_HID_HID_DEVICE_INFO_H_