File: hid_detection_utils.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (123 lines) | stat: -rw-r--r-- 4,015 bytes parent folder | download | duplicates (7)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ash/components/hid_detection/hid_detection_utils.h"

#include <optional>

#include "base/metrics/histogram_functions.h"
#include "base/strings/strcat.h"
#include "components/device_event_log/device_event_log.h"

namespace ash::hid_detection {
namespace {

using InputDeviceType = device::mojom::InputDeviceType;

std::optional<HidType> GetHidType(
    const device::mojom::InputDeviceInfo& device) {
  if (device.is_touchscreen || device.is_tablet)
    return HidType::kTouchscreen;

  if (IsDevicePointer(device)) {
    switch (device.type) {
      case InputDeviceType::TYPE_BLUETOOTH:
        return HidType::kBluetoothPointer;
      case InputDeviceType::TYPE_USB:
        return HidType::kUsbPointer;
      case InputDeviceType::TYPE_SERIO:
        return HidType::kSerialPointer;
      case InputDeviceType::TYPE_UNKNOWN:
        return HidType::kUnknownPointer;
    }
  }

  if (device.is_keyboard) {
    switch (device.type) {
      case InputDeviceType::TYPE_BLUETOOTH:
        return HidType::kBluetoothKeyboard;
      case InputDeviceType::TYPE_USB:
        return HidType::kUsbKeyboard;
      case InputDeviceType::TYPE_SERIO:
        return HidType::kSerialKeyboard;
      case InputDeviceType::TYPE_UNKNOWN:
        return HidType::kUnknownKeyboard;
    }
  }

  return std::nullopt;
}

}  // namespace

bool IsDevicePointer(const device::mojom::InputDeviceInfo& device) {
  return device.is_mouse || device.is_touchpad;
}

bool IsDeviceTouchscreen(const device::mojom::InputDeviceInfo& device) {
  return device.is_touchscreen || device.is_tablet;
}

void RecordHidConnected(const device::mojom::InputDeviceInfo& device) {
  std::optional<HidType> hid_type = GetHidType(device);

  // If |device| is not relevant (i.e. an accelerometer, joystick, etc), don't
  // emit metric.
  if (!hid_type.has_value()) {
    HID_LOG(DEBUG) << "HidConnected not logged for device " << device.id
                   << " because it doesn't have a relevant device type.";
    return;
  }

  base::UmaHistogramEnumeration("OOBE.HidDetectionScreen.HidConnected",
                                hid_type.value());
}

void RecordHidDisconnected(const device::mojom::InputDeviceInfo& device) {
  std::optional<HidType> hid_type = GetHidType(device);

  // If |device| is not relevant (i.e. an accelerometer, joystick, etc), don't
  // emit metric.
  if (!hid_type.has_value()) {
    HID_LOG(DEBUG) << "HidDisconnected not logged for device " << device.id
                   << " because it doesn't have a relevant device type.";
    return;
  }

  base::UmaHistogramEnumeration("OOBE.HidDetectionScreen.HidDisconnected",
                                hid_type.value());
}

void RecordBluetoothPairingAttempts(size_t attempts) {
  base::UmaHistogramCounts100(
      "OOBE.HidDetectionScreen.BluetoothPairingAttempts", attempts);
}

void RecordBluetoothPairingResult(bool success,
                                  base::TimeDelta pairing_duration) {
  base::UmaHistogramCustomTimes(
      base::StrCat({"OOBE.HidDetectionScreen.BluetoothPairing.Duration.",
                    success ? "Success" : "Failure"}),
      pairing_duration,
      /*min=*/base::Milliseconds(1),
      /*max=*/base::Seconds(30), /*buckets=*/50);

  // Also record the pairing result metric.
  base::UmaHistogramEnumeration(
      "OOBE.HidDetectionScreen.BluetoothPairing.Result",
      success ? HidDetectionBluetoothPairingResult::kPaired
              : HidDetectionBluetoothPairingResult::kNotPaired);
}

void RecordPairingTimeoutExceeded() {
  base::UmaHistogramBoolean(
      "OOBE.HidDetectionScreen.BluetoothPairing.TimeoutExceeded", true);
}

void RecordInitialHidsMissing(const HidsMissing& hids_missing) {
  base::UmaHistogramEnumeration("OOBE.HidDetectionScreen.InitialHidsMissing",
                                hids_missing);
}

}  // namespace ash::hid_detection