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/stl_util.h" | 12 #include "base/stl_util.h" |
12 #include "base/string_number_conversions.h" | 13 #include "base/string_number_conversions.h" |
13 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
14 #include "chrome/browser/media_gallery/media_device_notifications_utils.h" | 15 #include "chrome/browser/media_gallery/media_device_notifications_utils.h" |
15 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
16 | 17 |
17 namespace chromeos { | 18 namespace chromeos { |
18 | 19 |
20 namespace { | |
21 | |
22 std::string GetDeviceUuid(const std::string& source_path) { | |
23 // Get the media device uuid if exists. | |
24 const disks::DiskMountManager::DiskMap& disks = | |
25 disks::DiskMountManager::GetInstance()->disks(); | |
26 disks::DiskMountManager::DiskMap::const_iterator it = disks.find(source_path); | |
27 return it == disks.end() ? std::string() : it->second->fs_uuid(); | |
28 } | |
29 | |
30 } // namespace | |
31 | |
19 using content::BrowserThread; | 32 using content::BrowserThread; |
20 | 33 |
21 MediaDeviceNotifications::MediaDeviceNotifications() | 34 MediaDeviceNotifications::MediaDeviceNotifications() { |
22 : current_device_id_(0) { | |
23 DCHECK(disks::DiskMountManager::GetInstance()); | 35 DCHECK(disks::DiskMountManager::GetInstance()); |
24 disks::DiskMountManager::GetInstance()->AddObserver(this); | 36 disks::DiskMountManager::GetInstance()->AddObserver(this); |
25 } | 37 } |
26 | 38 |
27 MediaDeviceNotifications::~MediaDeviceNotifications() { | 39 MediaDeviceNotifications::~MediaDeviceNotifications() { |
28 disks::DiskMountManager* manager = disks::DiskMountManager::GetInstance(); | 40 disks::DiskMountManager* manager = disks::DiskMountManager::GetInstance(); |
29 if (manager) { | 41 if (manager) { |
30 manager->RemoveObserver(this); | 42 manager->RemoveObserver(this); |
31 } | 43 } |
32 } | 44 } |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 } | 106 } |
95 | 107 |
96 void MediaDeviceNotifications::AddMountedPathOnUIThread( | 108 void MediaDeviceNotifications::AddMountedPathOnUIThread( |
97 const disks::DiskMountManager::MountPointInfo& mount_info) { | 109 const disks::DiskMountManager::MountPointInfo& mount_info) { |
98 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 110 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
99 | 111 |
100 if (ContainsKey(mount_map_, mount_info.mount_path)) { | 112 if (ContainsKey(mount_map_, mount_info.mount_path)) { |
101 NOTREACHED(); | 113 NOTREACHED(); |
102 return; | 114 return; |
103 } | 115 } |
104 const std::string device_id_str = base::IntToString(current_device_id_++); | 116 |
117 // Get the media device uuid if exists. | |
118 std::string device_id_str = GetDeviceUuid(mount_info.source_path); | |
119 | |
120 // Keep track of device uuid, to see how often we receive empty uuid values. | |
121 static base::Histogram* media_device_uuid_available(NULL); | |
jar (doing other things)
2012/07/27 17:48:48
Why didn't you use the UMA_HISTOGRAM_BOOLEAN() mac
kmadhusu
2012/07/27 18:30:31
I saw a couple of sample code doing this. So I tho
| |
122 if (!media_device_uuid_available) { | |
123 media_device_uuid_available = base::BooleanHistogram::FactoryGet( | |
124 "MediaDeviceNotification.device_uuid_available", | |
125 base::Histogram::kUmaTargetedHistogramFlag); | |
126 } | |
127 media_device_uuid_available->AddBoolean(!device_id_str.empty()); | |
128 if (device_id_str.empty()) | |
129 return; | |
130 | |
105 mount_map_.insert(std::make_pair(mount_info.mount_path, device_id_str)); | 131 mount_map_.insert(std::make_pair(mount_info.mount_path, device_id_str)); |
106 base::SystemMonitor::Get()->ProcessMediaDeviceAttached( | 132 base::SystemMonitor::Get()->ProcessMediaDeviceAttached( |
107 device_id_str, | 133 device_id_str, |
108 UTF8ToUTF16(FilePath(mount_info.source_path).BaseName().value()), | 134 UTF8ToUTF16(FilePath(mount_info.source_path).BaseName().value()), |
109 base::SystemMonitor::TYPE_PATH, | 135 base::SystemMonitor::TYPE_PATH, |
110 mount_info.mount_path); | 136 mount_info.mount_path); |
111 } | 137 } |
112 | 138 |
113 } // namespace chrome | 139 } // namespace chrome |
OLD | NEW |