Save errno for logging before potentially overwriting it.
[chromium-blink-merge.git] / content / browser / device_monitor_linux.cc
blob61aad7c113cc2b86329eb4971104e4ca8be3608d
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // libudev is used for monitoring device changes.
7 #include "content/browser/device_monitor_linux.h"
9 #include <libudev.h>
11 #include <string>
13 #include "base/system_monitor/system_monitor.h"
14 #include "content/browser/udev_linux.h"
15 #include "content/public/browser/browser_thread.h"
17 namespace {
19 struct SubsystemMap {
20 base::SystemMonitor::DeviceType device_type;
21 const char* subsystem;
22 const char* devtype;
25 const char kAudioSubsystem[] = "sound";
26 const char kVideoSubsystem[] = "video4linux";
28 // Add more subsystems here for monitoring.
29 const SubsystemMap kSubsystemMap[] = {
30 { base::SystemMonitor::DEVTYPE_AUDIO_CAPTURE, kAudioSubsystem, NULL },
31 { base::SystemMonitor::DEVTYPE_VIDEO_CAPTURE, kVideoSubsystem, NULL },
34 } // namespace
36 namespace content {
38 DeviceMonitorLinux::DeviceMonitorLinux() {
39 DCHECK(BrowserThread::IsMessageLoopValid(BrowserThread::IO));
40 BrowserThread::PostTask(BrowserThread::IO,
41 FROM_HERE,
42 base::Bind(&DeviceMonitorLinux::Initialize, base::Unretained(this)));
45 DeviceMonitorLinux::~DeviceMonitorLinux() {
48 void DeviceMonitorLinux::Initialize() {
49 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
51 // We want to be notified of IO message loop destruction to delete |udev_|.
52 base::MessageLoop::current()->AddDestructionObserver(this);
54 std::vector<UdevLinux::UdevMonitorFilter> filters;
55 for (size_t i = 0; i < arraysize(kSubsystemMap); ++i) {
56 filters.push_back(UdevLinux::UdevMonitorFilter(
57 kSubsystemMap[i].subsystem, kSubsystemMap[i].devtype));
59 udev_.reset(new UdevLinux(filters,
60 base::Bind(&DeviceMonitorLinux::OnDevicesChanged,
61 base::Unretained(this))));
64 void DeviceMonitorLinux::WillDestroyCurrentMessageLoop() {
65 // Called on IO thread.
66 udev_.reset();
69 void DeviceMonitorLinux::OnDevicesChanged(udev_device* device) {
70 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
71 DCHECK(device);
73 base::SystemMonitor::DeviceType device_type =
74 base::SystemMonitor::DEVTYPE_UNKNOWN;
75 std::string subsystem(udev_device_get_subsystem(device));
76 for (size_t i = 0; i < arraysize(kSubsystemMap); ++i) {
77 if (subsystem == kSubsystemMap[i].subsystem) {
78 device_type = kSubsystemMap[i].device_type;
79 break;
82 DCHECK_NE(device_type, base::SystemMonitor::DEVTYPE_UNKNOWN);
84 base::SystemMonitor::Get()->ProcessDevicesChanged(device_type);
87 } // namespace content