OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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. | |
4 | |
5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_DEVICE_EVENT_ROUTER_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_DEVICE_EVENT_ROUTER_H_ | |
7 | |
8 #include <map> | |
9 #include <string> | |
10 | |
11 #include "base/observer_list.h" | |
12 #include "chrome/browser/chromeos/file_manager/volume_manager_observer.h" | |
13 #include "chrome/common/extensions/api/file_browser_private.h" | |
14 #include "chromeos/dbus/power_manager_client.h" | |
15 #include "chromeos/disks/disk_mount_manager.h" | |
16 | |
17 namespace file_manager { | |
18 | |
19 enum DeviceState { | |
20 // Device is not being scanned and is not hard unplugged. | |
21 DEVICE_STATE_USUAL, | |
22 DEVICE_SCANNED, | |
23 DEVICE_SCANNED_AND_REPORTED, | |
24 DEVICE_HARD_UNPLUGGED, | |
25 DEVICE_HARD_UNPLUGGED_AND_REPORTED | |
26 }; | |
27 | |
28 // Event router for device events. | |
29 class DeviceEventRouter : public VolumeManagerObserver, | |
30 public chromeos::PowerManagerClient::Observer { | |
31 public: | |
32 DeviceEventRouter(); | |
33 // If |zero_time_delta| is true, it overrides time delta of delayed tasks with | |
mtomasz
2014/08/22 05:48:40
nit: \n after DeviceEvectRouter(); for consistency
hirono
2014/08/22 06:29:26
Done.
| |
34 // zero for testing so that the tasks are executed by RunLoop::RunUntilIdle. | |
35 explicit DeviceEventRouter(base::TimeDelta overriding_time_delta); | |
36 virtual ~DeviceEventRouter(); | |
37 | |
38 // Turns the startup flag on, and then turns it off after few seconds. | |
39 void Startup(); | |
40 | |
41 // VolumeManagerObserver overrides. | |
42 virtual void OnDiskAdded(const chromeos::disks::DiskMountManager::Disk& disk, | |
43 bool mounting) OVERRIDE; | |
44 virtual void OnDiskRemoved( | |
45 const chromeos::disks::DiskMountManager::Disk& disk) OVERRIDE; | |
46 virtual void OnDeviceAdded(const std::string& device_path) OVERRIDE; | |
47 virtual void OnDeviceRemoved(const std::string& device_path) OVERRIDE; | |
48 virtual void OnVolumeMounted(chromeos::MountError error_code, | |
49 const VolumeInfo& volume_info, | |
50 bool is_remounting) OVERRIDE; | |
51 virtual void OnVolumeUnmounted(chromeos::MountError error_code, | |
52 const VolumeInfo& volume_info) OVERRIDE; | |
53 virtual void OnFormatStarted(const std::string& device_path, | |
54 bool success) OVERRIDE; | |
55 virtual void OnFormatCompleted(const std::string& device_path, | |
56 bool success) OVERRIDE; | |
57 | |
58 // TODO(hirono): Remove the method from VolumeManagerObserver. | |
59 virtual void OnHardUnplugged(const std::string& device_path) OVERRIDE; | |
60 | |
61 // PowerManagerClient::Observer overrides. | |
62 virtual void SuspendImminent() OVERRIDE; | |
63 virtual void SuspendDone(const base::TimeDelta& sleep_duration) OVERRIDE; | |
64 | |
65 protected: | |
66 // Handles a device event containing |type| and |device_path|. | |
67 virtual void OnDeviceEvent( | |
68 extensions::api::file_browser_private::DeviceEventType type, | |
69 const std::string& device_path) = 0; | |
70 // Returns external storage is disabled or not. | |
71 virtual bool IsExternalStorageDisabled() = 0; | |
72 | |
73 private: | |
74 void StartupDelayed(); | |
75 void OnDeviceAddedDelayed(const std::string& device_path); | |
76 void SuspendDoneDelayed(); | |
77 | |
78 // Obtains device state of the device having |device_path|. | |
79 DeviceState GetDeviceState(const std::string& device_path) const; | |
80 | |
81 // Sets device state to the device having |device_path|. | |
82 void SetDeviceState(const std::string& device_path, DeviceState state); | |
83 | |
84 // Whther to use zero time delta for testing or not. | |
85 const base::TimeDelta resume_time_delta_; | |
86 const base::TimeDelta startup_time_delta_; | |
87 const base::TimeDelta scan_time_delta_; | |
88 | |
89 // Whether the profile is starting up or not. | |
90 bool is_starting_up_; | |
91 | |
92 // Whether the system is resuming or not. | |
93 bool is_resuming_; | |
94 | |
95 // Map of device path and device state. | |
96 std::map<std::string, DeviceState> device_states_; | |
97 | |
98 // Note: This should remain the last member so it'll be destroyed and | |
99 // invalidate the weak pointers before any other members are destroyed. | |
100 base::WeakPtrFactory<DeviceEventRouter> weak_factory_; | |
101 DISALLOW_COPY_AND_ASSIGN(DeviceEventRouter); | |
102 }; | |
103 } // namespace file_manager | |
104 | |
105 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_DEVICE_EVENT_ROUTER_H _ | |
OLD | NEW |