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

Unified Diff: device/udev_linux/udev_watcher.h

Issue 2849953003: Use the task scheduler for blocking tasks in the USB service on Linux (Closed)
Patch Set: Remove more passing of the SequencedTaskRunner Created 3 years, 8 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 | « device/udev_linux/BUILD.gn ('k') | device/udev_linux/udev_watcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/udev_linux/udev_watcher.h
diff --git a/device/udev_linux/udev_watcher.h b/device/udev_linux/udev_watcher.h
new file mode 100644
index 0000000000000000000000000000000000000000..0da372b291df67dcd0c7393575972496f88cb813
--- /dev/null
+++ b/device/udev_linux/udev_watcher.h
@@ -0,0 +1,55 @@
+// Copyright 2017 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_UDEV_LINUX_UDEV_WATCHER_H_
+#define DEVICE_UDEV_LINUX_UDEV_WATCHER_H_
+
+#include <memory>
+
+#include "base/files/file_descriptor_watcher_posix.h"
+#include "base/macros.h"
+#include "base/sequence_checker.h"
+#include "device/udev_linux/scoped_udev.h"
+
+namespace device {
+
+// This class wraps an instance of udev_monitor, watching for devices that are
+// added and removed from the system. This class has sequence affinity.
+class UdevWatcher {
+ public:
+ class Observer {
+ public:
+ virtual ~Observer();
+ virtual void OnDeviceAdded(ScopedUdevDevicePtr device);
+ virtual void OnDeviceRemoved(ScopedUdevDevicePtr device);
+ };
+
+ static std::unique_ptr<UdevWatcher> StartWatching(Observer* observer);
+
+ ~UdevWatcher();
+
+ // Synchronously enumerates the all devices known to udev, calling
+ // OnDeviceAdded on the provided Observer for each.
+ void EnumerateExistingDevices();
+
+ private:
+ UdevWatcher(ScopedUdevPtr udev,
+ ScopedUdevMonitorPtr udev_monitor,
+ int monitor_fd,
+ Observer* observer);
+
+ void OnMonitorReadable();
+
+ ScopedUdevPtr udev_;
+ ScopedUdevMonitorPtr udev_monitor_;
+ Observer* observer_;
+ std::unique_ptr<base::FileDescriptorWatcher::Controller> file_watcher_;
+ base::SequenceChecker sequence_checker_;
+
+ DISALLOW_COPY_AND_ASSIGN(UdevWatcher);
+};
+
+} // namespace device
+
+#endif // DEVICE_UDEV_LINUX_UDEV_WATCHER_H_
« no previous file with comments | « device/udev_linux/BUILD.gn ('k') | device/udev_linux/udev_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698