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 #ifndef CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ |
6 #define CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/hash_tables.h" | 11 #include "base/hash_tables.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/platform_file.h" | 13 #include "base/platform_file.h" |
14 #include "base/sequenced_task_runner_helpers.h" | 14 #include "webkit/fileapi/media/mtp_device_async_delegate.h" |
15 #include "base/synchronization/lock.h" | |
16 #include "base/synchronization/waitable_event.h" | |
17 #include "webkit/fileapi/file_system_file_util.h" | |
18 #include "webkit/fileapi/media/mtp_device_delegate.h" | |
19 | |
20 namespace base { | |
21 class SequencedTaskRunner; | |
22 } | |
23 | 15 |
24 namespace chrome { | 16 namespace chrome { |
25 | 17 |
26 // Delegate for presenting an Image Capture device through the filesystem | 18 // Delegate for presenting an Image Capture device through the filesystem |
27 // API. The synthetic filesystem will be rooted at the constructed location, | 19 // API. The synthetic filesystem will be rooted at the constructed location, |
28 // and names of all files notified through the ItemAdded call will be | 20 // and names of all files notified through the ItemAdded call will be |
29 // all appear as children of that directory. (ItemAdded calls with directories | 21 // all appear as children of that directory. (ItemAdded calls with directories |
30 // will be ignored.) | 22 // will be ignored.) |
31 class MTPDeviceDelegateImplMac : public fileapi::MTPDeviceDelegate { | 23 // Note on thread management: This class is thread-compatible: it can be created |
| 24 // on any thread, but then mutates all state on the UI thread. The async |
| 25 // delegate interface can be invoked on any thread, as it simply forwards calls |
| 26 // to the UI thread. |
| 27 class MTPDeviceDelegateImplMac : public fileapi::MTPDeviceAsyncDelegate { |
32 public: | 28 public: |
33 MTPDeviceDelegateImplMac(const std::string& device_id, | 29 MTPDeviceDelegateImplMac(const std::string& device_id, |
34 const base::FilePath::StringType& synthetic_path, | 30 const base::FilePath::StringType& synthetic_path); |
35 base::SequencedTaskRunner* media_task_runner); | |
36 | 31 |
37 // MTPDeviceDelegate: | 32 // MTPDeviceAsyncDelegate implementation. These functions are called on the |
38 virtual base::PlatformFileError GetFileInfo( | 33 // IO thread by the async filesystem file util. They forward to |
| 34 // similarly-named methods on the UI thread. |
| 35 virtual void GetFileInfo( |
39 const base::FilePath& file_path, | 36 const base::FilePath& file_path, |
40 base::PlatformFileInfo* file_info) OVERRIDE; | 37 const GetFileInfoSuccessCallback& success_callback, |
41 virtual scoped_ptr<fileapi::FileSystemFileUtil::AbstractFileEnumerator> | 38 const ErrorCallback& error_callback) OVERRIDE; |
42 CreateFileEnumerator(const base::FilePath& root, bool recursive) OVERRIDE; | 39 virtual void ReadDirectory( |
43 virtual base::PlatformFileError CreateSnapshotFile( | 40 const base::FilePath& root, |
| 41 const ReadDirectorySuccessCallback& success_callback, |
| 42 const ErrorCallback& error_callback) OVERRIDE; |
| 43 virtual void CreateSnapshotFile( |
44 const base::FilePath& device_file_path, | 44 const base::FilePath& device_file_path, |
45 const base::FilePath& local_path, | 45 const base::FilePath& local_path, |
46 base::PlatformFileInfo* file_info) OVERRIDE; | 46 const CreateSnapshotFileSuccessCallback& success_callback, |
| 47 const ErrorCallback& error_callback) OVERRIDE; |
47 virtual void CancelPendingTasksAndDeleteDelegate() OVERRIDE; | 48 virtual void CancelPendingTasksAndDeleteDelegate() OVERRIDE; |
48 | 49 |
49 // Forward delegates for ImageCaptureDeviceListener | 50 // Forward delegates for ImageCaptureDeviceListener. These are |
| 51 // invoked in callbacks of the ImageCapture library on the UI thread. |
50 virtual void ItemAdded(const std::string& name, | 52 virtual void ItemAdded(const std::string& name, |
51 const base::PlatformFileInfo& info); | 53 const base::PlatformFileInfo& info); |
52 virtual void NoMoreItems(); | 54 virtual void NoMoreItems(); |
53 virtual void DownloadedFile(const std::string& name, | 55 virtual void DownloadedFile(const std::string& name, |
54 base::PlatformFileError error); | 56 base::PlatformFileError error); |
55 | 57 |
56 // Implementation returned by |CreateFileEnumerator()|. Must be deleted | 58 // Public for closures; should not be called except by |
57 // before CancelPendingTasksAndDeleteDelegate is called. | 59 // CancelTasksAndDeleteDelegate. |
58 class Enumerator : | 60 void CancelAndDelete(); |
59 public fileapi::FileSystemFileUtil::AbstractFileEnumerator { | |
60 public: | |
61 explicit Enumerator(MTPDeviceDelegateImplMac* delegate); | |
62 virtual ~Enumerator(); | |
63 | |
64 virtual base::FilePath Next() OVERRIDE; | |
65 virtual int64 Size() OVERRIDE; | |
66 virtual base::Time LastModifiedTime() OVERRIDE; | |
67 virtual bool IsDirectory() OVERRIDE; | |
68 | |
69 // Called by the delegate to signal any waiters that the received items | |
70 // list has changed state. | |
71 void ItemsChanged(); | |
72 | |
73 private: | |
74 MTPDeviceDelegateImplMac* delegate_; | |
75 size_t position_; | |
76 base::WaitableEvent wait_for_items_; | |
77 }; | |
78 | |
79 // GetFile and HasAllFiles called by enumerators. | |
80 base::FilePath GetFile(size_t index); | |
81 bool ReceivedAllFiles(); | |
82 void RemoveEnumerator(Enumerator* enumerator); | |
83 | 61 |
84 private: | 62 private: |
85 friend class base::DeleteHelper<MTPDeviceDelegateImplMac>; | |
86 | |
87 class DeviceListener; | 63 class DeviceListener; |
88 | 64 |
89 virtual ~MTPDeviceDelegateImplMac(); | 65 virtual ~MTPDeviceDelegateImplMac(); |
90 | 66 |
| 67 // Delegate for GetFileInfo, called on the UI thread. |
| 68 void GetFileInfoImpl(const base::FilePath& file_path, |
| 69 base::PlatformFileInfo* file_info, |
| 70 base::PlatformFileError* error); |
| 71 |
| 72 // Delegate for ReadDirectory, called on the UI thread. |
| 73 void ReadDirectoryImpl( |
| 74 const base::FilePath& root, |
| 75 const ReadDirectorySuccessCallback& success_callback, |
| 76 const ErrorCallback& error_callback); |
| 77 |
| 78 // Delegate for CreateSnapshotFile, called on the UI thread. |
| 79 void DownloadFile( |
| 80 const base::FilePath& device_file_path, |
| 81 const base::FilePath& local_path, |
| 82 const CreateSnapshotFileSuccessCallback& success_callback, |
| 83 const ErrorCallback& error_callback); |
| 84 |
| 85 // Cancels any outstanding downloads. |
| 86 void CancelDownloads(); |
| 87 |
| 88 // If necessary, notifies the ReadDirectory callback that all data |
| 89 // has been read. |
| 90 void NotifyReadDir(); |
| 91 |
91 std::string device_id_; | 92 std::string device_id_; |
92 base::FilePath root_path_; | 93 base::FilePath root_path_; |
93 | 94 |
94 // Stores a reference to worker pool thread. All requests and response of file | |
95 // operations are posted on |media_task_runner_|. All callbacks from the | |
96 // camera will come through this task runner as well. | |
97 scoped_refptr<base::SequencedTaskRunner> media_task_runner_; | |
98 | |
99 // Interface object for the camera underlying this MTP session. | 95 // Interface object for the camera underlying this MTP session. |
100 scoped_ptr<DeviceListener> camera_interface_; | 96 scoped_ptr<DeviceListener> camera_interface_; |
101 | 97 |
102 // This lock protects all subsequent state. While calling into the delegate | |
103 // from the FileSystem API happens in sequence, these calls may be | |
104 // interleaved with calls on other threads in the sequenced task runner | |
105 // forwarded from the device. | |
106 base::Lock mutex_; | |
107 | |
108 // Weak pointer to the enumerator which may be listening for files to come in. | |
109 Enumerator* enumerator_; | |
110 | |
111 // Stores a map from filename to file metadata received from the camera. | 98 // Stores a map from filename to file metadata received from the camera. |
112 base::hash_map<base::FilePath::StringType, base::PlatformFileInfo> file_info_; | 99 base::hash_map<base::FilePath::StringType, base::PlatformFileInfo> file_info_; |
113 | 100 |
114 // Notification for pending download. | |
115 base::WaitableEvent* file_download_event_; | |
116 | |
117 // Resulting error code for pending download. | |
118 base::PlatformFileError file_download_error_; | |
119 | |
120 // List of files received from the camera. | 101 // List of files received from the camera. |
121 std::vector<base::FilePath> file_paths_; | 102 std::vector<base::FilePath> file_paths_; |
122 | 103 |
123 // Set to true when all file metadata has been received from the camera. | 104 // Set to true when all file metadata has been received from the camera. |
124 bool received_all_files_; | 105 bool received_all_files_; |
125 | 106 |
| 107 ReadDirectorySuccessCallback read_directory_success_callback_; |
| 108 ErrorCallback read_directory_error_callback_; |
| 109 |
| 110 CreateSnapshotFileSuccessCallback read_file_success_callback_; |
| 111 ErrorCallback read_file_error_callback_; |
| 112 |
126 DISALLOW_COPY_AND_ASSIGN(MTPDeviceDelegateImplMac); | 113 DISALLOW_COPY_AND_ASSIGN(MTPDeviceDelegateImplMac); |
127 }; | 114 }; |
128 | 115 |
129 } // namespace chrome | 116 } // namespace chrome |
130 | 117 |
131 #endif // CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ | 118 #endif // CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ |
OLD | NEW |