Roll src/third_party/WebKit 675d715:dbf9be3 (svn 202300:202308)
[chromium-blink-merge.git] / chromeos / disks / disk_mount_manager.cc
blobe947eb772b518ed9e89aecf716217933ad37f270
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 #include "chromeos/disks/disk_mount_manager.h"
7 #include <set>
9 #include "base/bind.h"
10 #include "base/memory/weak_ptr.h"
11 #include "base/observer_list.h"
12 #include "base/stl_util.h"
13 #include "base/strings/string_util.h"
14 #include "chromeos/dbus/dbus_thread_manager.h"
15 #include "chromeos/disks/suspend_unmount_manager.h"
17 namespace chromeos {
18 namespace disks {
20 namespace {
22 const char kDeviceNotFound[] = "Device could not be found";
24 DiskMountManager* g_disk_mount_manager = NULL;
26 // The DiskMountManager implementation.
27 class DiskMountManagerImpl : public DiskMountManager {
28 public:
29 DiskMountManagerImpl() :
30 already_refreshed_(false),
31 weak_ptr_factory_(this) {
32 DBusThreadManager* dbus_thread_manager = DBusThreadManager::Get();
33 cros_disks_client_ = dbus_thread_manager->GetCrosDisksClient();
34 PowerManagerClient* power_manager_client =
35 dbus_thread_manager->GetPowerManagerClient();
36 suspend_unmount_manager_.reset(
37 new SuspendUnmountManager(this, power_manager_client));
38 cros_disks_client_->SetMountEventHandler(
39 base::Bind(&DiskMountManagerImpl::OnMountEvent,
40 weak_ptr_factory_.GetWeakPtr()));
41 cros_disks_client_->SetMountCompletedHandler(
42 base::Bind(&DiskMountManagerImpl::OnMountCompleted,
43 weak_ptr_factory_.GetWeakPtr()));
44 cros_disks_client_->SetFormatCompletedHandler(
45 base::Bind(&DiskMountManagerImpl::OnFormatCompleted,
46 weak_ptr_factory_.GetWeakPtr()));
49 ~DiskMountManagerImpl() override {
50 STLDeleteContainerPairSecondPointers(disks_.begin(), disks_.end());
53 // DiskMountManager override.
54 void AddObserver(Observer* observer) override {
55 observers_.AddObserver(observer);
58 // DiskMountManager override.
59 void RemoveObserver(Observer* observer) override {
60 observers_.RemoveObserver(observer);
63 // DiskMountManager override.
64 void MountPath(const std::string& source_path,
65 const std::string& source_format,
66 const std::string& mount_label,
67 MountType type) override {
68 // Hidden and non-existent devices should not be mounted.
69 if (type == MOUNT_TYPE_DEVICE) {
70 DiskMap::const_iterator it = disks_.find(source_path);
71 if (it == disks_.end() || it->second->is_hidden()) {
72 OnMountCompleted(MountEntry(MOUNT_ERROR_INTERNAL, source_path, type,
73 ""));
74 return;
77 cros_disks_client_->Mount(
78 source_path,
79 source_format,
80 mount_label,
81 // When succeeds, OnMountCompleted will be called by
82 // "MountCompleted" signal instead.
83 base::Bind(&base::DoNothing),
84 base::Bind(&DiskMountManagerImpl::OnMountCompleted,
85 weak_ptr_factory_.GetWeakPtr(),
86 MountEntry(MOUNT_ERROR_INTERNAL, source_path, type, "")));
89 // DiskMountManager override.
90 void UnmountPath(const std::string& mount_path,
91 UnmountOptions options,
92 const UnmountPathCallback& callback) override {
93 UnmountChildMounts(mount_path);
94 cros_disks_client_->Unmount(mount_path, options,
95 base::Bind(&DiskMountManagerImpl::OnUnmountPath,
96 weak_ptr_factory_.GetWeakPtr(),
97 callback,
98 true,
99 mount_path),
100 base::Bind(&DiskMountManagerImpl::OnUnmountPath,
101 weak_ptr_factory_.GetWeakPtr(),
102 callback,
103 false,
104 mount_path));
107 // DiskMountManager override.
108 void FormatMountedDevice(const std::string& mount_path) override {
109 MountPointMap::const_iterator mount_point = mount_points_.find(mount_path);
110 if (mount_point == mount_points_.end()) {
111 LOG(ERROR) << "Mount point with path \"" << mount_path << "\" not found.";
112 OnFormatCompleted(FORMAT_ERROR_UNKNOWN, mount_path);
113 return;
116 std::string device_path = mount_point->second.source_path;
117 DiskMap::const_iterator disk = disks_.find(device_path);
118 if (disk == disks_.end()) {
119 LOG(ERROR) << "Device with path \"" << device_path << "\" not found.";
120 OnFormatCompleted(FORMAT_ERROR_UNKNOWN, device_path);
121 return;
124 UnmountPath(disk->second->mount_path(),
125 UNMOUNT_OPTIONS_NONE,
126 base::Bind(&DiskMountManagerImpl::OnUnmountPathForFormat,
127 weak_ptr_factory_.GetWeakPtr(),
128 device_path));
131 // DiskMountManager override.
132 void UnmountDeviceRecursively(
133 const std::string& device_path,
134 const UnmountDeviceRecursivelyCallbackType& callback) override {
135 std::vector<std::string> devices_to_unmount;
137 // Get list of all devices to unmount.
138 int device_path_len = device_path.length();
139 for (DiskMap::iterator it = disks_.begin(); it != disks_.end(); ++it) {
140 if (!it->second->mount_path().empty() &&
141 strncmp(device_path.c_str(), it->second->device_path().c_str(),
142 device_path_len) == 0) {
143 devices_to_unmount.push_back(it->second->mount_path());
147 // We should detect at least original device.
148 if (devices_to_unmount.empty()) {
149 if (disks_.find(device_path) == disks_.end()) {
150 LOG(WARNING) << "Unmount recursive request failed for device "
151 << device_path << ", with error: " << kDeviceNotFound;
152 callback.Run(false);
153 return;
156 // Nothing to unmount.
157 callback.Run(true);
158 return;
161 // We will send the same callback data object to all Unmount calls and use
162 // it to synchronize callbacks.
163 // Note: this implementation has a potential memory leak issue. For
164 // example if this instance is destructed before all the callbacks for
165 // Unmount are invoked, the memory pointed by |cb_data| will be leaked.
166 // It is because the UnmountDeviceRecursivelyCallbackData keeps how
167 // many times OnUnmountDeviceRecursively callback is called and when
168 // all the callbacks are called, |cb_data| will be deleted in the method.
169 // However destructing the instance before all callback invocations will
170 // cancel all pending callbacks, so that the |cb_data| would never be
171 // deleted.
172 // Fortunately, in the real scenario, the instance will be destructed
173 // only for ShutDown. So, probably the memory would rarely be leaked.
174 // TODO(hidehiko): Fix the issue.
175 UnmountDeviceRecursivelyCallbackData* cb_data =
176 new UnmountDeviceRecursivelyCallbackData(
177 callback, devices_to_unmount.size());
178 for (size_t i = 0; i < devices_to_unmount.size(); ++i) {
179 cros_disks_client_->Unmount(
180 devices_to_unmount[i],
181 UNMOUNT_OPTIONS_NONE,
182 base::Bind(&DiskMountManagerImpl::OnUnmountDeviceRecursively,
183 weak_ptr_factory_.GetWeakPtr(),
184 cb_data,
185 true,
186 devices_to_unmount[i]),
187 base::Bind(&DiskMountManagerImpl::OnUnmountDeviceRecursively,
188 weak_ptr_factory_.GetWeakPtr(),
189 cb_data,
190 false,
191 devices_to_unmount[i]));
195 // DiskMountManager override.
196 void EnsureMountInfoRefreshed(
197 const EnsureMountInfoRefreshedCallback& callback,
198 bool force) override {
199 if (!force && already_refreshed_) {
200 callback.Run(true);
201 return;
204 refresh_callbacks_.push_back(callback);
205 if (refresh_callbacks_.size() == 1) {
206 // If there's no in-flight refreshing task, start it.
207 cros_disks_client_->EnumerateAutoMountableDevices(
208 base::Bind(&DiskMountManagerImpl::RefreshAfterEnumerateDevices,
209 weak_ptr_factory_.GetWeakPtr()),
210 base::Bind(&DiskMountManagerImpl::RefreshCompleted,
211 weak_ptr_factory_.GetWeakPtr(), false));
215 // DiskMountManager override.
216 const DiskMap& disks() const override { return disks_; }
218 // DiskMountManager override.
219 const Disk* FindDiskBySourcePath(
220 const std::string& source_path) const override {
221 DiskMap::const_iterator disk_it = disks_.find(source_path);
222 return disk_it == disks_.end() ? NULL : disk_it->second;
225 // DiskMountManager override.
226 const MountPointMap& mount_points() const override { return mount_points_; }
228 // DiskMountManager override.
229 bool AddDiskForTest(Disk* disk) override {
230 if (disks_.find(disk->device_path()) != disks_.end()) {
231 LOG(ERROR) << "Attempt to add a duplicate disk";
232 return false;
235 disks_.insert(std::make_pair(disk->device_path(), disk));
236 return true;
239 // DiskMountManager override.
240 // Corresponding disk should be added to the manager before this is called.
241 bool AddMountPointForTest(const MountPointInfo& mount_point) override {
242 if (mount_points_.find(mount_point.mount_path) != mount_points_.end()) {
243 LOG(ERROR) << "Attempt to add a duplicate mount point";
244 return false;
246 if (mount_point.mount_type == chromeos::MOUNT_TYPE_DEVICE &&
247 disks_.find(mount_point.source_path) == disks_.end()) {
248 LOG(ERROR) << "Device mount points must have a disk entry.";
249 return false;
252 mount_points_.insert(std::make_pair(mount_point.mount_path, mount_point));
253 return true;
256 private:
257 struct UnmountDeviceRecursivelyCallbackData {
258 UnmountDeviceRecursivelyCallbackData(
259 const UnmountDeviceRecursivelyCallbackType& in_callback,
260 int in_num_pending_callbacks)
261 : callback(in_callback),
262 num_pending_callbacks(in_num_pending_callbacks) {
265 const UnmountDeviceRecursivelyCallbackType callback;
266 size_t num_pending_callbacks;
269 // Unmounts all mount points whose source path is transitively parented by
270 // |mount_path|.
271 void UnmountChildMounts(const std::string& mount_path_in) {
272 std::string mount_path = mount_path_in;
273 // Let's make sure mount path has trailing slash.
274 if (mount_path[mount_path.length() - 1] != '/')
275 mount_path += '/';
277 for (MountPointMap::iterator it = mount_points_.begin();
278 it != mount_points_.end();
279 ++it) {
280 if (base::StartsWith(it->second.source_path, mount_path,
281 base::CompareCase::SENSITIVE)) {
282 // TODO(tbarzic): Handle the case where this fails.
283 UnmountPath(it->second.mount_path,
284 UNMOUNT_OPTIONS_NONE,
285 UnmountPathCallback());
290 // Callback for UnmountDeviceRecursively.
291 void OnUnmountDeviceRecursively(
292 UnmountDeviceRecursivelyCallbackData* cb_data,
293 bool success,
294 const std::string& mount_path) {
295 if (success) {
296 // Do standard processing for Unmount event.
297 OnUnmountPath(UnmountPathCallback(), true, mount_path);
298 VLOG(1) << mount_path << " unmounted.";
300 // This is safe as long as all callbacks are called on the same thread as
301 // UnmountDeviceRecursively.
302 cb_data->num_pending_callbacks--;
304 if (cb_data->num_pending_callbacks == 0) {
305 // This code has a problem that the |success| status used here is for the
306 // last "unmount" callback, but not whether all unmounting is succeeded.
307 // TODO(hidehiko): Fix the issue.
308 cb_data->callback.Run(success);
309 delete cb_data;
313 // Callback to handle MountCompleted signal and Mount method call failure.
314 void OnMountCompleted(const MountEntry& entry) {
315 MountCondition mount_condition = MOUNT_CONDITION_NONE;
316 if (entry.mount_type() == MOUNT_TYPE_DEVICE) {
317 if (entry.error_code() == MOUNT_ERROR_UNKNOWN_FILESYSTEM) {
318 mount_condition = MOUNT_CONDITION_UNKNOWN_FILESYSTEM;
320 if (entry.error_code() == MOUNT_ERROR_UNSUPPORTED_FILESYSTEM) {
321 mount_condition = MOUNT_CONDITION_UNSUPPORTED_FILESYSTEM;
324 const MountPointInfo mount_info(entry.source_path(),
325 entry.mount_path(),
326 entry.mount_type(),
327 mount_condition);
329 NotifyMountStatusUpdate(MOUNTING, entry.error_code(), mount_info);
331 // If the device is corrupted but it's still possible to format it, it will
332 // be fake mounted.
333 if ((entry.error_code() == MOUNT_ERROR_NONE ||
334 mount_info.mount_condition) &&
335 mount_points_.find(mount_info.mount_path) == mount_points_.end()) {
336 mount_points_.insert(MountPointMap::value_type(mount_info.mount_path,
337 mount_info));
339 if ((entry.error_code() == MOUNT_ERROR_NONE ||
340 mount_info.mount_condition) &&
341 mount_info.mount_type == MOUNT_TYPE_DEVICE &&
342 !mount_info.source_path.empty() &&
343 !mount_info.mount_path.empty()) {
344 DiskMap::iterator iter = disks_.find(mount_info.source_path);
345 if (iter == disks_.end()) {
346 // disk might have been removed by now?
347 return;
349 Disk* disk = iter->second;
350 DCHECK(disk);
351 disk->set_mount_path(mount_info.mount_path);
355 // Callback for UnmountPath.
356 void OnUnmountPath(const UnmountPathCallback& callback,
357 bool success,
358 const std::string& mount_path) {
359 MountPointMap::iterator mount_points_it = mount_points_.find(mount_path);
360 if (mount_points_it == mount_points_.end()) {
361 // The path was unmounted, but not as a result of this unmount request,
362 // so return error.
363 if (!callback.is_null())
364 callback.Run(MOUNT_ERROR_INTERNAL);
365 return;
368 NotifyMountStatusUpdate(
369 UNMOUNTING,
370 success ? MOUNT_ERROR_NONE : MOUNT_ERROR_INTERNAL,
371 MountPointInfo(mount_points_it->second.source_path,
372 mount_points_it->second.mount_path,
373 mount_points_it->second.mount_type,
374 mount_points_it->second.mount_condition));
376 std::string path(mount_points_it->second.source_path);
377 if (success)
378 mount_points_.erase(mount_points_it);
380 DiskMap::iterator disk_iter = disks_.find(path);
381 if (disk_iter != disks_.end()) {
382 DCHECK(disk_iter->second);
383 if (success)
384 disk_iter->second->clear_mount_path();
387 if (!callback.is_null())
388 callback.Run(success ? MOUNT_ERROR_NONE : MOUNT_ERROR_INTERNAL);
391 void OnUnmountPathForFormat(const std::string& device_path,
392 MountError error_code) {
393 if (error_code == MOUNT_ERROR_NONE &&
394 disks_.find(device_path) != disks_.end()) {
395 FormatUnmountedDevice(device_path);
396 } else {
397 OnFormatCompleted(FORMAT_ERROR_UNKNOWN, device_path);
401 // Starts device formatting.
402 void FormatUnmountedDevice(const std::string& device_path) {
403 DiskMap::const_iterator disk = disks_.find(device_path);
404 DCHECK(disk != disks_.end() && disk->second->mount_path().empty());
406 const char kFormatVFAT[] = "vfat";
407 cros_disks_client_->Format(
408 device_path,
409 kFormatVFAT,
410 base::Bind(&DiskMountManagerImpl::OnFormatStarted,
411 weak_ptr_factory_.GetWeakPtr(),
412 device_path),
413 base::Bind(&DiskMountManagerImpl::OnFormatCompleted,
414 weak_ptr_factory_.GetWeakPtr(),
415 FORMAT_ERROR_UNKNOWN,
416 device_path));
419 // Callback for Format.
420 void OnFormatStarted(const std::string& device_path) {
421 NotifyFormatStatusUpdate(FORMAT_STARTED, FORMAT_ERROR_NONE, device_path);
424 // Callback to handle FormatCompleted signal and Format method call failure.
425 void OnFormatCompleted(FormatError error_code,
426 const std::string& device_path) {
427 NotifyFormatStatusUpdate(FORMAT_COMPLETED, error_code, device_path);
430 // Callback for GetDeviceProperties.
431 void OnGetDeviceProperties(const DiskInfo& disk_info) {
432 // TODO(zelidrag): Find a better way to filter these out before we
433 // fetch the properties:
434 // Ignore disks coming from the device we booted the system from.
435 if (disk_info.on_boot_device())
436 return;
438 LOG(WARNING) << "Found disk " << disk_info.device_path();
439 // Delete previous disk info for this path:
440 bool is_new = true;
441 DiskMap::iterator iter = disks_.find(disk_info.device_path());
442 if (iter != disks_.end()) {
443 delete iter->second;
444 disks_.erase(iter);
445 is_new = false;
447 Disk* disk = new Disk(disk_info.device_path(),
448 disk_info.mount_path(),
449 disk_info.system_path(),
450 disk_info.file_path(),
451 disk_info.label(),
452 disk_info.drive_label(),
453 disk_info.vendor_id(),
454 disk_info.vendor_name(),
455 disk_info.product_id(),
456 disk_info.product_name(),
457 disk_info.uuid(),
458 FindSystemPathPrefix(disk_info.system_path()),
459 disk_info.device_type(),
460 disk_info.total_size_in_bytes(),
461 disk_info.is_drive(),
462 disk_info.is_read_only(),
463 disk_info.has_media(),
464 disk_info.on_boot_device(),
465 disk_info.on_removable_device(),
466 disk_info.is_hidden());
467 disks_.insert(std::make_pair(disk_info.device_path(), disk));
468 NotifyDiskStatusUpdate(is_new ? DISK_ADDED : DISK_CHANGED, disk);
471 // Part of EnsureMountInfoRefreshed(). Called after the list of devices are
472 // enumerated.
473 void RefreshAfterEnumerateDevices(const std::vector<std::string>& devices) {
474 std::set<std::string> current_device_set(devices.begin(), devices.end());
475 for (DiskMap::iterator iter = disks_.begin(); iter != disks_.end(); ) {
476 if (current_device_set.find(iter->first) == current_device_set.end()) {
477 delete iter->second;
478 disks_.erase(iter++);
479 } else {
480 ++iter;
483 RefreshDeviceAtIndex(devices, 0);
486 // Part of EnsureMountInfoRefreshed(). Called for each device to refresh info.
487 void RefreshDeviceAtIndex(const std::vector<std::string>& devices,
488 size_t index) {
489 if (index == devices.size()) {
490 // All devices info retrieved. Proceed to enumerate mount point info.
491 cros_disks_client_->EnumerateMountEntries(
492 base::Bind(&DiskMountManagerImpl::RefreshAfterEnumerateMountEntries,
493 weak_ptr_factory_.GetWeakPtr()),
494 base::Bind(&DiskMountManagerImpl::RefreshCompleted,
495 weak_ptr_factory_.GetWeakPtr(), false));
496 return;
499 cros_disks_client_->GetDeviceProperties(
500 devices[index],
501 base::Bind(&DiskMountManagerImpl::RefreshAfterGetDeviceProperties,
502 weak_ptr_factory_.GetWeakPtr(), devices, index + 1),
503 base::Bind(&DiskMountManagerImpl::RefreshDeviceAtIndex,
504 weak_ptr_factory_.GetWeakPtr(), devices, index + 1));
507 // Part of EnsureMountInfoRefreshed().
508 void RefreshAfterGetDeviceProperties(const std::vector<std::string>& devices,
509 size_t next_index,
510 const DiskInfo& disk_info) {
511 OnGetDeviceProperties(disk_info);
512 RefreshDeviceAtIndex(devices, next_index);
515 // Part of EnsureMountInfoRefreshed(). Called after mount entries are listed.
516 void RefreshAfterEnumerateMountEntries(
517 const std::vector<MountEntry>& entries) {
518 for (size_t i = 0; i < entries.size(); ++i)
519 OnMountCompleted(entries[i]);
520 RefreshCompleted(true);
523 // Part of EnsureMountInfoRefreshed(). Called when the refreshing is done.
524 void RefreshCompleted(bool success) {
525 already_refreshed_ = true;
526 for (size_t i = 0; i < refresh_callbacks_.size(); ++i)
527 refresh_callbacks_[i].Run(success);
528 refresh_callbacks_.clear();
531 // Callback to handle mount event signals.
532 void OnMountEvent(MountEventType event, const std::string& device_path_arg) {
533 // Take a copy of the argument so we can modify it below.
534 std::string device_path = device_path_arg;
535 switch (event) {
536 case CROS_DISKS_DISK_ADDED: {
537 cros_disks_client_->GetDeviceProperties(
538 device_path,
539 base::Bind(&DiskMountManagerImpl::OnGetDeviceProperties,
540 weak_ptr_factory_.GetWeakPtr()),
541 base::Bind(&base::DoNothing));
542 break;
544 case CROS_DISKS_DISK_REMOVED: {
545 // Search and remove disks that are no longer present.
546 DiskMountManager::DiskMap::iterator iter = disks_.find(device_path);
547 if (iter != disks_.end()) {
548 Disk* disk = iter->second;
549 NotifyDiskStatusUpdate(DISK_REMOVED, disk);
550 delete iter->second;
551 disks_.erase(iter);
553 break;
555 case CROS_DISKS_DEVICE_ADDED: {
556 system_path_prefixes_.insert(device_path);
557 NotifyDeviceStatusUpdate(DEVICE_ADDED, device_path);
558 break;
560 case CROS_DISKS_DEVICE_REMOVED: {
561 system_path_prefixes_.erase(device_path);
562 NotifyDeviceStatusUpdate(DEVICE_REMOVED, device_path);
563 break;
565 case CROS_DISKS_DEVICE_SCANNED: {
566 NotifyDeviceStatusUpdate(DEVICE_SCANNED, device_path);
567 break;
569 default: {
570 LOG(ERROR) << "Unknown event: " << event;
575 // Notifies all observers about disk status update.
576 void NotifyDiskStatusUpdate(DiskEvent event,
577 const Disk* disk) {
578 FOR_EACH_OBSERVER(Observer, observers_, OnDiskEvent(event, disk));
581 // Notifies all observers about device status update.
582 void NotifyDeviceStatusUpdate(DeviceEvent event,
583 const std::string& device_path) {
584 FOR_EACH_OBSERVER(Observer, observers_, OnDeviceEvent(event, device_path));
587 // Notifies all observers about mount completion.
588 void NotifyMountStatusUpdate(MountEvent event,
589 MountError error_code,
590 const MountPointInfo& mount_info) {
591 FOR_EACH_OBSERVER(Observer, observers_,
592 OnMountEvent(event, error_code, mount_info));
595 void NotifyFormatStatusUpdate(FormatEvent event,
596 FormatError error_code,
597 const std::string& device_path) {
598 FOR_EACH_OBSERVER(Observer, observers_,
599 OnFormatEvent(event, error_code, device_path));
602 // Finds system path prefix from |system_path|.
603 const std::string& FindSystemPathPrefix(const std::string& system_path) {
604 if (system_path.empty())
605 return base::EmptyString();
606 for (SystemPathPrefixSet::const_iterator it = system_path_prefixes_.begin();
607 it != system_path_prefixes_.end();
608 ++it) {
609 const std::string& prefix = *it;
610 if (base::StartsWith(system_path, prefix, base::CompareCase::SENSITIVE))
611 return prefix;
613 return base::EmptyString();
616 // Mount event change observers.
617 base::ObserverList<Observer> observers_;
619 CrosDisksClient* cros_disks_client_;
621 // The list of disks found.
622 DiskMountManager::DiskMap disks_;
624 DiskMountManager::MountPointMap mount_points_;
626 typedef std::set<std::string> SystemPathPrefixSet;
627 SystemPathPrefixSet system_path_prefixes_;
629 bool already_refreshed_;
630 std::vector<EnsureMountInfoRefreshedCallback> refresh_callbacks_;
632 scoped_ptr<SuspendUnmountManager> suspend_unmount_manager_;
634 base::WeakPtrFactory<DiskMountManagerImpl> weak_ptr_factory_;
636 DISALLOW_COPY_AND_ASSIGN(DiskMountManagerImpl);
639 } // namespace
641 DiskMountManager::Disk::Disk(const std::string& device_path,
642 const std::string& mount_path,
643 const std::string& system_path,
644 const std::string& file_path,
645 const std::string& device_label,
646 const std::string& drive_label,
647 const std::string& vendor_id,
648 const std::string& vendor_name,
649 const std::string& product_id,
650 const std::string& product_name,
651 const std::string& fs_uuid,
652 const std::string& system_path_prefix,
653 DeviceType device_type,
654 uint64 total_size_in_bytes,
655 bool is_parent,
656 bool is_read_only,
657 bool has_media,
658 bool on_boot_device,
659 bool on_removable_device,
660 bool is_hidden)
661 : device_path_(device_path),
662 mount_path_(mount_path),
663 system_path_(system_path),
664 file_path_(file_path),
665 device_label_(device_label),
666 drive_label_(drive_label),
667 vendor_id_(vendor_id),
668 vendor_name_(vendor_name),
669 product_id_(product_id),
670 product_name_(product_name),
671 fs_uuid_(fs_uuid),
672 system_path_prefix_(system_path_prefix),
673 device_type_(device_type),
674 total_size_in_bytes_(total_size_in_bytes),
675 is_parent_(is_parent),
676 is_read_only_(is_read_only),
677 has_media_(has_media),
678 on_boot_device_(on_boot_device),
679 on_removable_device_(on_removable_device),
680 is_hidden_(is_hidden) {
683 DiskMountManager::Disk::~Disk() {}
685 bool DiskMountManager::AddDiskForTest(Disk* disk) {
686 return false;
689 bool DiskMountManager::AddMountPointForTest(const MountPointInfo& mount_point) {
690 return false;
693 // static
694 std::string DiskMountManager::MountConditionToString(MountCondition condition) {
695 switch (condition) {
696 case MOUNT_CONDITION_NONE:
697 return "";
698 case MOUNT_CONDITION_UNKNOWN_FILESYSTEM:
699 return "unknown_filesystem";
700 case MOUNT_CONDITION_UNSUPPORTED_FILESYSTEM:
701 return "unsupported_filesystem";
702 default:
703 NOTREACHED();
705 return "";
708 // static
709 std::string DiskMountManager::DeviceTypeToString(DeviceType type) {
710 switch (type) {
711 case DEVICE_TYPE_USB:
712 return "usb";
713 case DEVICE_TYPE_SD:
714 return "sd";
715 case DEVICE_TYPE_OPTICAL_DISC:
716 return "optical";
717 case DEVICE_TYPE_MOBILE:
718 return "mobile";
719 default:
720 return "unknown";
724 // static
725 void DiskMountManager::Initialize() {
726 if (g_disk_mount_manager) {
727 LOG(WARNING) << "DiskMountManager was already initialized";
728 return;
730 g_disk_mount_manager = new DiskMountManagerImpl();
731 VLOG(1) << "DiskMountManager initialized";
734 // static
735 void DiskMountManager::InitializeForTesting(
736 DiskMountManager* disk_mount_manager) {
737 if (g_disk_mount_manager) {
738 LOG(WARNING) << "DiskMountManager was already initialized";
739 return;
741 g_disk_mount_manager = disk_mount_manager;
742 VLOG(1) << "DiskMountManager initialized";
745 // static
746 void DiskMountManager::Shutdown() {
747 if (!g_disk_mount_manager) {
748 LOG(WARNING) << "DiskMountManager::Shutdown() called with NULL manager";
749 return;
751 delete g_disk_mount_manager;
752 g_disk_mount_manager = NULL;
753 VLOG(1) << "DiskMountManager Shutdown completed";
756 // static
757 DiskMountManager* DiskMountManager::GetInstance() {
758 return g_disk_mount_manager;
761 } // namespace disks
762 } // namespace chromeos