summaryrefslogtreecommitdiffstats
path: root/device/usb/usb_device_filter.h
blob: 05f403892fb22387c840fe50bf10939354f980ac (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
56
// 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_USB_USB_DEVICE_FILTER_H_
#define DEVICE_USB_USB_DEVICE_FILTER_H_

#include <stdint.h>

#include <vector>

#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"

namespace base {
class Value;
}

namespace device {

class UsbDevice;

class UsbDeviceFilter {
 public:
  UsbDeviceFilter();
  UsbDeviceFilter(const UsbDeviceFilter& other);
  ~UsbDeviceFilter();

  void SetVendorId(uint16_t vendor_id);
  void SetProductId(uint16_t product_id);
  void SetInterfaceClass(uint8_t interface_class);
  void SetInterfaceSubclass(uint8_t interface_subclass);
  void SetInterfaceProtocol(uint8_t interface_protocol);

  bool Matches(scoped_refptr<UsbDevice> device) const;
  scoped_ptr<base::Value> ToValue() const;

  static bool MatchesAny(scoped_refptr<UsbDevice> device,
                         const std::vector<UsbDeviceFilter>& filters);

 private:
  uint16_t vendor_id_;
  uint16_t product_id_;
  uint8_t interface_class_;
  uint8_t interface_subclass_;
  uint8_t interface_protocol_;
  bool vendor_id_set_ : 1;
  bool product_id_set_ : 1;
  bool interface_class_set_ : 1;
  bool interface_subclass_set_ : 1;
  bool interface_protocol_set_ : 1;
};

}  // namespace device

#endif  // DEVICE_USB_USB_DEVICE_FILTER_H_