Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Unified Diff: ui/events/devices/device_util_linux.cc

Issue 1287103004: Sync ui/events to chromium @ https://codereview.chromium.org/1210203002 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/devices/device_util_linux.h ('k') | ui/events/devices/events_devices_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/devices/device_util_linux.cc
diff --git a/ui/events/devices/device_util_linux.cc b/ui/events/devices/device_util_linux.cc
new file mode 100644
index 0000000000000000000000000000000000000000..858ee84be97aa2696b0c0c8113cfd176fc2d56dd
--- /dev/null
+++ b/ui/events/devices/device_util_linux.cc
@@ -0,0 +1,69 @@
+// 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.
+
+#include "ui/events/devices/device_util_linux.h"
+
+#include <string>
+
+#include "base/files/file_enumerator.h"
+#include "base/files/file_path.h"
+#include "base/files/file_util.h"
+#include "base/message_loop/message_loop.h"
+#include "base/strings/string_util.h"
+
+namespace ui {
+
+InputDeviceType GetInputDeviceTypeFromPath(const base::FilePath& path) {
+ DCHECK(!base::MessageLoopForUI::IsCurrent());
+ std::string event_node = path.BaseName().value();
+ if (event_node.empty() || !StartsWithASCII(event_node, "event", false))
+ return InputDeviceType::INPUT_DEVICE_UNKNOWN;
+
+ // Find sysfs device path for this device.
+ base::FilePath sysfs_path =
+ base::FilePath(FILE_PATH_LITERAL("/sys/class/input"));
+ sysfs_path = sysfs_path.Append(path.BaseName());
+ sysfs_path = base::MakeAbsoluteFilePath(sysfs_path);
+
+ // Device does not exist.
+ if (sysfs_path.empty())
+ return InputDeviceType::INPUT_DEVICE_UNKNOWN;
+
+ // Check ancestor devices for a known bus attachment.
+ for (base::FilePath path = sysfs_path; path != base::FilePath("/");
+ path = path.DirName()) {
+ // Bluetooth LE devices are virtual "uhid" devices.
+ if (path ==
+ base::FilePath(FILE_PATH_LITERAL("/sys/devices/virtual/misc/uhid")))
+ return InputDeviceType::INPUT_DEVICE_EXTERNAL;
+
+ std::string subsystem_path =
+ base::MakeAbsoluteFilePath(path.Append(FILE_PATH_LITERAL("subsystem")))
+ .value();
+ if (subsystem_path.empty())
+ continue;
+
+ // Internal bus attachments.
+ if (subsystem_path == "/sys/bus/pci")
+ return InputDeviceType::INPUT_DEVICE_INTERNAL;
+ if (subsystem_path == "/sys/bus/i2c")
+ return InputDeviceType::INPUT_DEVICE_INTERNAL;
+ if (subsystem_path == "/sys/bus/acpi")
+ return InputDeviceType::INPUT_DEVICE_INTERNAL;
+ if (subsystem_path == "/sys/bus/serio")
+ return InputDeviceType::INPUT_DEVICE_INTERNAL;
+ if (subsystem_path == "/sys/bus/platform")
+ return InputDeviceType::INPUT_DEVICE_INTERNAL;
+
+ // External bus attachments.
+ if (subsystem_path == "/sys/bus/usb")
+ return InputDeviceType::INPUT_DEVICE_EXTERNAL;
+ if (subsystem_path == "/sys/class/bluetooth")
+ return InputDeviceType::INPUT_DEVICE_EXTERNAL;
+ }
+
+ return InputDeviceType::INPUT_DEVICE_UNKNOWN;
+}
+
+} // namespace
« no previous file with comments | « ui/events/devices/device_util_linux.h ('k') | ui/events/devices/events_devices_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698