OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // chromeos::MediaDeviceNotifications implementation. | 5 // chromeos::MediaDeviceNotifications implementation. |
6 | 6 |
7 #include "chrome/browser/media_gallery/media_device_notifications_chromeos.h" | 7 #include "chrome/browser/media_gallery/media_device_notifications_chromeos.h" |
8 | 8 |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
13 #include "base/string_number_conversions.h" | 13 #include "base/string_number_conversions.h" |
14 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
15 #include "chrome/browser/media_gallery/media_device_notifications_utils.h" | 15 #include "chrome/browser/media_gallery/media_device_notifications_utils.h" |
16 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
17 | 17 |
18 namespace chromeos { | 18 namespace chromeos { |
19 | 19 |
20 namespace { | 20 namespace { |
21 | 21 |
22 std::string GetDeviceUuid(const std::string& source_path) { | 22 void GetDeviceInfo(const std::string& source_path, std::string* device_id_str, |
23 // Get the media device uuid if exists. | 23 std::string* device_label) { |
24 // Get the media device uuid and label if exists. | |
24 const disks::DiskMountManager::DiskMap& disks = | 25 const disks::DiskMountManager::DiskMap& disks = |
25 disks::DiskMountManager::GetInstance()->disks(); | 26 disks::DiskMountManager::GetInstance()->disks(); |
26 disks::DiskMountManager::DiskMap::const_iterator it = disks.find(source_path); | 27 disks::DiskMountManager::DiskMap::const_iterator it = disks.find(source_path); |
27 return it == disks.end() ? std::string() : it->second->fs_uuid(); | 28 if (it == disks.end()) |
29 return; | |
30 *device_id_str = it->second->fs_uuid(); | |
Lei Zhang
2012/08/03 01:44:03
The code here and below may be more readable if yo
kmadhusu
2012/08/03 05:22:37
Done.
| |
31 // TODO(kmadhusu): If device label is empty, extract vendor and model detail | |
32 // from udevadm and use them as device_label. | |
Lei Zhang
2012/08/03 02:05:51
You shouldn't have to use udevadm as a workaround.
kmadhusu
2012/08/03 05:22:37
sure. Modified TODO comment.
| |
33 *device_label = it->second->device_label().empty() ? | |
34 FilePath(source_path).BaseName().value() : | |
35 it->second->device_label(); | |
28 } | 36 } |
29 | 37 |
30 } // namespace | 38 } // namespace |
31 | 39 |
32 using content::BrowserThread; | 40 using content::BrowserThread; |
33 | 41 |
34 MediaDeviceNotifications::MediaDeviceNotifications() { | 42 MediaDeviceNotifications::MediaDeviceNotifications() { |
35 DCHECK(disks::DiskMountManager::GetInstance()); | 43 DCHECK(disks::DiskMountManager::GetInstance()); |
36 disks::DiskMountManager::GetInstance()->AddObserver(this); | 44 disks::DiskMountManager::GetInstance()->AddObserver(this); |
37 } | 45 } |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
107 | 115 |
108 void MediaDeviceNotifications::AddMountedPathOnUIThread( | 116 void MediaDeviceNotifications::AddMountedPathOnUIThread( |
109 const disks::DiskMountManager::MountPointInfo& mount_info) { | 117 const disks::DiskMountManager::MountPointInfo& mount_info) { |
110 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 118 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
111 | 119 |
112 if (ContainsKey(mount_map_, mount_info.mount_path)) { | 120 if (ContainsKey(mount_map_, mount_info.mount_path)) { |
113 NOTREACHED(); | 121 NOTREACHED(); |
114 return; | 122 return; |
115 } | 123 } |
116 | 124 |
117 // Get the media device uuid if exists. | 125 // Get the media device uuid and label if exists. |
118 std::string device_id_str = GetDeviceUuid(mount_info.source_path); | 126 std::string device_id_str; |
127 std::string device_label; | |
Lei Zhang
2012/08/03 01:44:03
just make this a string16 and do the conversion in
kmadhusu
2012/08/03 05:22:37
Done.
| |
128 GetDeviceInfo(mount_info.source_path, &device_id_str, &device_label); | |
119 | 129 |
120 // Keep track of device uuid, to see how often we receive empty uuid values. | 130 // Keep track of device uuid, to see how often we receive empty uuid values. |
121 UMA_HISTOGRAM_BOOLEAN("MediaDeviceNotification.device_uuid_available", | 131 UMA_HISTOGRAM_BOOLEAN("MediaDeviceNotification.device_uuid_available", |
122 !device_id_str.empty()); | 132 !device_id_str.empty()); |
123 if (device_id_str.empty()) | 133 if (device_id_str.empty()) |
124 return; | 134 return; |
125 | 135 |
126 mount_map_.insert(std::make_pair(mount_info.mount_path, device_id_str)); | 136 mount_map_.insert(std::make_pair(mount_info.mount_path, device_id_str)); |
127 base::SystemMonitor::Get()->ProcessMediaDeviceAttached( | 137 base::SystemMonitor::Get()->ProcessMediaDeviceAttached( |
128 device_id_str, | 138 device_id_str, |
129 UTF8ToUTF16(FilePath(mount_info.source_path).BaseName().value()), | 139 UTF8ToUTF16(device_label), |
130 base::SystemMonitor::TYPE_PATH, | 140 base::SystemMonitor::TYPE_PATH, |
131 mount_info.mount_path); | 141 mount_info.mount_path); |
132 } | 142 } |
133 | 143 |
134 } // namespace chrome | 144 } // namespace chrome |
OLD | NEW |