Chromium Code Reviews| 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_GALLERIES_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ |
| 7 | 7 |
| 8 #include <list> | |
| 9 #include <map> | |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 11 #include "base/hash_tables.h" | 13 #include "base/hash_tables.h" |
| 12 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 13 #include "base/platform_file.h" | 15 #include "base/platform_file.h" |
| 14 #include "base/sequenced_task_runner_helpers.h" | 16 #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 | 17 |
| 24 namespace chrome { | 18 namespace chrome { |
| 25 | 19 |
| 26 // Delegate for presenting an Image Capture device through the filesystem | 20 // Delegate for presenting an Image Capture device through the filesystem |
| 27 // API. The synthetic filesystem will be rooted at the constructed location, | 21 // API. The synthetic filesystem will be rooted at the constructed location, |
| 28 // and names of all files notified through the ItemAdded call will be | 22 // and names of all files notified through the ItemAdded call will be |
| 29 // all appear as children of that directory. (ItemAdded calls with directories | 23 // all appear as children of that directory. (ItemAdded calls with directories |
| 30 // will be ignored.) | 24 // will be ignored.) |
| 31 class MTPDeviceDelegateImplMac : public fileapi::MTPDeviceDelegate { | 25 // Note on thread management: This class is thread-compatible: it can be created |
| 26 // on any thread, but then mutates all state on the UI thread. The async | |
| 27 // delegate interface can be invoked on any thread, as it simply forwards calls | |
| 28 // to the UI thread. | |
| 29 class MTPDeviceDelegateImplMac : public fileapi::MTPDeviceAsyncDelegate { | |
| 32 public: | 30 public: |
| 33 MTPDeviceDelegateImplMac(const std::string& device_id, | 31 MTPDeviceDelegateImplMac(const std::string& device_id, |
| 34 const base::FilePath::StringType& synthetic_path, | 32 const base::FilePath::StringType& synthetic_path); |
| 35 base::SequencedTaskRunner* media_task_runner); | |
| 36 | 33 |
| 37 // MTPDeviceDelegate: | 34 // MTPDeviceAsyncDelegate implementation. These functions are called on the |
| 38 virtual base::PlatformFileError GetFileInfo( | 35 // IO thread by the async filesystem file util. They forward to |
| 36 // similarly-named methods on the UI thread. | |
| 37 virtual void GetFileInfo( | |
| 39 const base::FilePath& file_path, | 38 const base::FilePath& file_path, |
| 40 base::PlatformFileInfo* file_info) OVERRIDE; | 39 const GetFileInfoSuccessCallback& success_callback, |
| 41 virtual scoped_ptr<fileapi::FileSystemFileUtil::AbstractFileEnumerator> | 40 const ErrorCallback& error_callback) OVERRIDE; |
| 42 CreateFileEnumerator(const base::FilePath& root, bool recursive) OVERRIDE; | 41 virtual void ReadDirectory( |
| 43 virtual base::PlatformFileError CreateSnapshotFile( | 42 const base::FilePath& root, |
| 43 const ReadDirectorySuccessCallback& success_callback, | |
| 44 const ErrorCallback& error_callback) OVERRIDE; | |
| 45 virtual void CreateSnapshotFile( | |
| 44 const base::FilePath& device_file_path, | 46 const base::FilePath& device_file_path, |
| 45 const base::FilePath& local_path, | 47 const base::FilePath& local_path, |
| 46 base::PlatformFileInfo* file_info) OVERRIDE; | 48 const CreateSnapshotFileSuccessCallback& success_callback, |
| 49 const ErrorCallback& error_callback) OVERRIDE; | |
| 47 virtual void CancelPendingTasksAndDeleteDelegate() OVERRIDE; | 50 virtual void CancelPendingTasksAndDeleteDelegate() OVERRIDE; |
| 48 | 51 |
| 49 // Forward delegates for ImageCaptureDeviceListener | 52 // Forward delegates for ImageCaptureDeviceListener. These are |
| 53 // invoked in callbacks of the ImageCapture library on the UI thread. | |
| 50 virtual void ItemAdded(const std::string& name, | 54 virtual void ItemAdded(const std::string& name, |
| 51 const base::PlatformFileInfo& info); | 55 const base::PlatformFileInfo& info); |
| 52 virtual void NoMoreItems(); | 56 virtual void NoMoreItems(); |
| 53 virtual void DownloadedFile(const std::string& name, | 57 virtual void DownloadedFile(const std::string& name, |
| 54 base::PlatformFileError error); | 58 base::PlatformFileError error); |
| 55 | 59 |
| 56 // Implementation returned by |CreateFileEnumerator()|. Must be deleted | 60 // Scheduled when early directory reads are requested. The |
| 57 // before CancelPendingTasksAndDeleteDelegate is called. | 61 // timeout will signal an ABORT error to the caller if the |
| 58 class Enumerator : | 62 // device metadata cannot be read. |
| 59 public fileapi::FileSystemFileUtil::AbstractFileEnumerator { | 63 void ReadDirectoryTimeout(const base::FilePath& root); |
| 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 | 64 |
| 84 private: | 65 private: |
| 85 friend class base::DeleteHelper<MTPDeviceDelegateImplMac>; | |
| 86 | |
| 87 class DeviceListener; | 66 class DeviceListener; |
| 88 | 67 |
| 89 virtual ~MTPDeviceDelegateImplMac(); | 68 virtual ~MTPDeviceDelegateImplMac(); |
| 90 | 69 |
| 70 // Delegate for GetFileInfo, called on the UI thread. | |
| 71 void GetFileInfoImpl(const base::FilePath& file_path, | |
| 72 base::PlatformFileInfo* file_info, | |
| 73 base::PlatformFileError* error); | |
| 74 | |
| 75 // Delegate for ReadDirectory, called on the UI thread. | |
| 76 void ReadDirectoryImpl( | |
| 77 const base::FilePath& root, | |
| 78 const ReadDirectorySuccessCallback& success_callback, | |
| 79 const ErrorCallback& error_callback); | |
| 80 | |
| 81 // Delegate for CreateSnapshotFile, called on the UI thread. | |
| 82 void DownloadFile( | |
| 83 const base::FilePath& device_file_path, | |
| 84 const base::FilePath& local_path, | |
| 85 const CreateSnapshotFileSuccessCallback& success_callback, | |
| 86 const ErrorCallback& error_callback); | |
| 87 | |
| 88 // Public for closures; should not be called except by | |
| 89 // CancelTasksAndDeleteDelegate. | |
| 90 void CancelAndDelete(); | |
| 91 | |
| 92 // Cancels any outstanding downloads. | |
| 93 void CancelDownloads(); | |
| 94 | |
| 95 // If necessary, notifies the ReadDirectory callback that all data | |
| 96 // has been read. | |
| 97 void NotifyReadDir(); | |
| 98 | |
| 91 std::string device_id_; | 99 std::string device_id_; |
| 92 base::FilePath root_path_; | 100 base::FilePath root_path_; |
| 93 | 101 |
| 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. | 102 // Interface object for the camera underlying this MTP session. |
| 100 scoped_ptr<DeviceListener> camera_interface_; | 103 scoped_ptr<DeviceListener> camera_interface_; |
| 101 | 104 |
| 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. | 105 // Stores a map from filename to file metadata received from the camera. |
| 112 base::hash_map<base::FilePath::StringType, base::PlatformFileInfo> file_info_; | 106 base::hash_map<base::FilePath::StringType, |
| 113 | 107 base::PlatformFileInfo> file_info_; |
| 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 | 108 |
| 120 // List of files received from the camera. | 109 // List of files received from the camera. |
| 121 std::vector<base::FilePath> file_paths_; | 110 std::vector<base::FilePath> file_paths_; |
| 122 | 111 |
| 123 // Set to true when all file metadata has been received from the camera. | 112 // Set to true when all file metadata has been received from the camera. |
| 124 bool received_all_files_; | 113 bool received_all_files_; |
| 125 | 114 |
| 115 typedef std::map<std::string, | |
| 116 std::pair<CreateSnapshotFileSuccessCallback, | |
| 117 ErrorCallback> > ReadFileTransactionMap; | |
| 118 | |
| 119 struct ReadDirectoryRequest { | |
| 120 ReadDirectoryRequest(const base::FilePath& dir, | |
| 121 ReadDirectorySuccessCallback success_cb, | |
| 122 ErrorCallback error_cb); | |
| 123 ~ReadDirectoryRequest(); | |
| 124 | |
| 125 base::FilePath directory; | |
| 126 ReadDirectorySuccessCallback success_callback; | |
| 127 ErrorCallback error_callback; | |
| 128 }; | |
| 129 | |
| 130 typedef std::list<ReadDirectoryRequest> ReadDirTransactionList; | |
|
Lei Zhang
2013/04/02 01:28:18
I thought you were going to make this a map of lis
Greg Billock
2013/04/02 23:57:50
I typed that in, but t was pretty complicated. :-)
| |
| 131 | |
| 132 ReadFileTransactionMap read_file_transactions_; | |
| 133 ReadDirTransactionList read_dir_transactions_; | |
| 134 | |
| 135 base::WeakPtrFactory<MTPDeviceDelegateImplMac> weak_factory_; | |
| 136 | |
| 126 DISALLOW_COPY_AND_ASSIGN(MTPDeviceDelegateImplMac); | 137 DISALLOW_COPY_AND_ASSIGN(MTPDeviceDelegateImplMac); |
| 127 }; | 138 }; |
| 128 | 139 |
| 129 } // namespace chrome | 140 } // namespace chrome |
| 130 | 141 |
| 131 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ | 142 #endif // CHROME_BROWSER_MEDIA_GALLERIES_MTP_DEVICE_DELEGATE_IMPL_MAC_H_ |
| OLD | NEW |