| 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 #include "chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac.h" | 5 #include "chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_nsobject.h" | 7 #include "base/memory/scoped_nsobject.h" |
| 8 #include "base/sequenced_task_runner.h" | |
| 9 #include "base/sequenced_task_runner_helpers.h" | |
| 10 #include "base/threading/sequenced_worker_pool.h" | 8 #include "base/threading/sequenced_worker_pool.h" |
| 11 #include "chrome/browser/media_galleries/mtp_device_delegate_impl.h" | 9 #include "chrome/browser/media_galleries/mtp_device_delegate_impl.h" |
| 12 #include "chrome/browser/storage_monitor/image_capture_device.h" | 10 #include "chrome/browser/storage_monitor/image_capture_device.h" |
| 13 #include "chrome/browser/storage_monitor/image_capture_device_manager.h" | 11 #include "chrome/browser/storage_monitor/image_capture_device_manager.h" |
| 14 #include "chrome/browser/storage_monitor/media_storage_util.h" | 12 #include "chrome/browser/storage_monitor/media_storage_util.h" |
| 15 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
| 14 #include "webkit/fileapi/async_file_util.h" |
| 16 | 15 |
| 17 namespace chrome { | 16 namespace chrome { |
| 18 | 17 |
| 18 namespace { |
| 19 |
| 20 int kReadDirectoryTimeLimitSeconds = 20; |
| 21 |
| 22 using fileapi::MTPDeviceAsyncDelegate; |
| 23 typedef MTPDeviceAsyncDelegate::CreateSnapshotFileSuccessCallback |
| 24 CreateSnapshotFileSuccessCallback; |
| 25 typedef MTPDeviceAsyncDelegate::ErrorCallback ErrorCallback; |
| 26 typedef MTPDeviceAsyncDelegate::GetFileInfoSuccessCallback |
| 27 GetFileInfoSuccessCallback; |
| 28 typedef MTPDeviceAsyncDelegate::ReadDirectorySuccessCallback |
| 29 ReadDirectorySuccessCallback; |
| 30 |
| 31 } // namespace |
| 32 |
| 19 // This class handles the UI-thread hand-offs needed to interface | 33 // This class handles the UI-thread hand-offs needed to interface |
| 20 // with the ImageCapture library. It will forward callbacks to | 34 // with the ImageCapture library. It will forward callbacks to |
| 21 // its delegate on the task runner with which it is created. All | 35 // its delegate on the task runner with which it is created. All |
| 22 // interactions with it are done on the UI thread, but it may be | 36 // interactions with it are done on the UI thread, but it may be |
| 23 // created/destroyed on another thread. | 37 // created/destroyed on another thread. |
| 24 class MTPDeviceDelegateImplMac::DeviceListener | 38 class MTPDeviceDelegateImplMac::DeviceListener |
| 25 : public ImageCaptureDeviceListener, | 39 : public ImageCaptureDeviceListener, |
| 26 public base::SupportsWeakPtr<DeviceListener> { | 40 public base::SupportsWeakPtr<DeviceListener> { |
| 27 public: | 41 public: |
| 28 DeviceListener(MTPDeviceDelegateImplMac* delegate) | 42 DeviceListener(MTPDeviceDelegateImplMac* delegate) |
| 29 : delegate_(delegate) {} | 43 : delegate_(delegate) {} |
| 30 virtual ~DeviceListener() {} | 44 virtual ~DeviceListener() {} |
| 31 | 45 |
| 32 void OpenCameraSession(const std::string& device_id); | 46 void OpenCameraSession(const std::string& device_id); |
| 33 void CloseCameraSessionAndDelete(); | 47 void CloseCameraSessionAndDelete(); |
| 34 | 48 |
| 35 void DownloadFile(const std::string& name, const base::FilePath& local_path); | 49 void DownloadFile(const std::string& name, const base::FilePath& local_path); |
| 36 | 50 |
| 37 // ImageCaptureDeviceListener | 51 // ImageCaptureDeviceListener |
| 38 virtual void ItemAdded(const std::string& name, | 52 virtual void ItemAdded(const std::string& name, |
| 39 const base::PlatformFileInfo& info) OVERRIDE; | 53 const base::PlatformFileInfo& info) OVERRIDE; |
| 40 virtual void NoMoreItems() OVERRIDE; | 54 virtual void NoMoreItems() OVERRIDE; |
| 41 virtual void DownloadedFile(const std::string& name, | 55 virtual void DownloadedFile(const std::string& name, |
| 42 base::PlatformFileError error) OVERRIDE; | 56 base::PlatformFileError error) OVERRIDE; |
| 43 virtual void DeviceRemoved() OVERRIDE; | 57 virtual void DeviceRemoved() OVERRIDE; |
| 44 | 58 |
| 59 // Used during delegate destruction to ensure there are no more calls |
| 60 // to the delegate by the listener. |
| 61 virtual void ResetDelegate(); |
| 62 |
| 45 private: | 63 private: |
| 46 scoped_nsobject<ImageCaptureDevice> camera_device_; | 64 scoped_nsobject<ImageCaptureDevice> camera_device_; |
| 47 | 65 |
| 48 // Weak pointer | 66 // Weak pointer |
| 49 MTPDeviceDelegateImplMac* delegate_; | 67 MTPDeviceDelegateImplMac* delegate_; |
| 50 | 68 |
| 51 DISALLOW_COPY_AND_ASSIGN(DeviceListener); | 69 DISALLOW_COPY_AND_ASSIGN(DeviceListener); |
| 52 }; | 70 }; |
| 53 | 71 |
| 54 void MTPDeviceDelegateImplMac::DeviceListener::OpenCameraSession( | 72 void MTPDeviceDelegateImplMac::DeviceListener::OpenCameraSession( |
| (...skipping 13 matching lines...) Expand all Loading... |
| 68 | 86 |
| 69 void MTPDeviceDelegateImplMac::DeviceListener::DownloadFile( | 87 void MTPDeviceDelegateImplMac::DeviceListener::DownloadFile( |
| 70 const std::string& name, | 88 const std::string& name, |
| 71 const base::FilePath& local_path) { | 89 const base::FilePath& local_path) { |
| 72 [camera_device_ downloadFile:name localPath:local_path]; | 90 [camera_device_ downloadFile:name localPath:local_path]; |
| 73 } | 91 } |
| 74 | 92 |
| 75 void MTPDeviceDelegateImplMac::DeviceListener::ItemAdded( | 93 void MTPDeviceDelegateImplMac::DeviceListener::ItemAdded( |
| 76 const std::string& name, | 94 const std::string& name, |
| 77 const base::PlatformFileInfo& info) { | 95 const base::PlatformFileInfo& info) { |
| 78 delegate_->ItemAdded(name, info); | 96 if (delegate_) |
| 97 delegate_->ItemAdded(name, info); |
| 79 } | 98 } |
| 80 | 99 |
| 81 void MTPDeviceDelegateImplMac::DeviceListener::NoMoreItems() { | 100 void MTPDeviceDelegateImplMac::DeviceListener::NoMoreItems() { |
| 82 delegate_->NoMoreItems(); | 101 if (delegate_) |
| 102 delegate_->NoMoreItems(); |
| 83 } | 103 } |
| 84 | 104 |
| 85 void MTPDeviceDelegateImplMac::DeviceListener::DownloadedFile( | 105 void MTPDeviceDelegateImplMac::DeviceListener::DownloadedFile( |
| 86 const std::string& name, | 106 const std::string& name, |
| 87 base::PlatformFileError error) { | 107 base::PlatformFileError error) { |
| 88 delegate_->DownloadedFile(name, error); | 108 if (delegate_) |
| 109 delegate_->DownloadedFile(name, error); |
| 89 } | 110 } |
| 90 | 111 |
| 91 void MTPDeviceDelegateImplMac::DeviceListener::DeviceRemoved() { | 112 void MTPDeviceDelegateImplMac::DeviceListener::DeviceRemoved() { |
| 92 [camera_device_ close]; | 113 [camera_device_ close]; |
| 93 camera_device_.reset(); | 114 camera_device_.reset(); |
| 115 if (delegate_) |
| 116 delegate_->NoMoreItems(); |
| 117 } |
| 118 |
| 119 void MTPDeviceDelegateImplMac::DeviceListener::ResetDelegate() { |
| 120 delegate_ = NULL; |
| 94 } | 121 } |
| 95 | 122 |
| 96 MTPDeviceDelegateImplMac::MTPDeviceDelegateImplMac( | 123 MTPDeviceDelegateImplMac::MTPDeviceDelegateImplMac( |
| 97 const std::string& device_id, | 124 const std::string& device_id, |
| 98 const base::FilePath::StringType& synthetic_path, | 125 const base::FilePath::StringType& synthetic_path) |
| 99 base::SequencedTaskRunner* media_task_runner) | |
| 100 : device_id_(device_id), | 126 : device_id_(device_id), |
| 101 root_path_(synthetic_path), | 127 root_path_(synthetic_path), |
| 102 media_task_runner_(media_task_runner), | 128 received_all_files_(false), |
| 103 enumerator_(NULL), | 129 ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) { |
| 104 file_download_event_(NULL), | |
| 105 file_download_error_(base::PLATFORM_FILE_OK), | |
| 106 received_all_files_(false) { | |
| 107 | 130 |
| 108 // Make a synthetic entry for the root of the filesystem. | 131 // Make a synthetic entry for the root of the filesystem. |
| 109 base::PlatformFileInfo info; | 132 base::PlatformFileInfo info; |
| 110 info.is_directory = true; | 133 info.is_directory = true; |
| 111 file_info_[root_path_.value()] = info; | 134 file_info_[root_path_.value()] = info; |
| 112 | 135 |
| 113 camera_interface_.reset(new DeviceListener(this)); | 136 camera_interface_.reset(new DeviceListener(this)); |
| 114 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, | 137 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, |
| 115 base::Bind(&DeviceListener::OpenCameraSession, | 138 base::Bind(&DeviceListener::OpenCameraSession, |
| 116 base::Unretained(camera_interface_.get()), | 139 base::Unretained(camera_interface_.get()), |
| 117 device_id_)); | 140 device_id_)); |
| 118 } | 141 } |
| 119 | 142 |
| 120 MTPDeviceDelegateImplMac::~MTPDeviceDelegateImplMac() { | 143 MTPDeviceDelegateImplMac::~MTPDeviceDelegateImplMac() { |
| 121 DCHECK(media_task_runner_->RunsTasksOnCurrentThread()); | |
| 122 DCHECK(enumerator_ == NULL); | |
| 123 } | 144 } |
| 124 | 145 |
| 125 base::PlatformFileError MTPDeviceDelegateImplMac::GetFileInfo( | 146 namespace { |
| 147 |
| 148 void ForwardGetFileInfo( |
| 149 base::PlatformFileInfo* info, |
| 150 base::PlatformFileError* error, |
| 151 const GetFileInfoSuccessCallback& success_callback, |
| 152 const ErrorCallback& error_callback) { |
| 153 if (*error == base::PLATFORM_FILE_OK) |
| 154 success_callback.Run(*info); |
| 155 else |
| 156 error_callback.Run(*error); |
| 157 } |
| 158 |
| 159 } // namespace |
| 160 |
| 161 void MTPDeviceDelegateImplMac::GetFileInfo( |
| 126 const base::FilePath& file_path, | 162 const base::FilePath& file_path, |
| 127 base::PlatformFileInfo* file_info) { | 163 const GetFileInfoSuccessCallback& success_callback, |
| 128 base::AutoLock lock(mutex_); | 164 const ErrorCallback& error_callback) { |
| 165 base::PlatformFileInfo* info = new base::PlatformFileInfo; |
| 166 base::PlatformFileError* error = new base::PlatformFileError; |
| 167 // Note: ownership of these objects passed into the reply callback. |
| 168 content::BrowserThread::PostTaskAndReply(content::BrowserThread::UI, |
| 169 FROM_HERE, |
| 170 base::Bind(&MTPDeviceDelegateImplMac::GetFileInfoImpl, |
| 171 base::Unretained(this), file_path, info, error), |
| 172 base::Bind(&ForwardGetFileInfo, |
| 173 base::Owned(info), base::Owned(error), |
| 174 success_callback, error_callback)); |
| 175 } |
| 176 |
| 177 void MTPDeviceDelegateImplMac::ReadDirectory( |
| 178 const base::FilePath& root, |
| 179 const ReadDirectorySuccessCallback& success_callback, |
| 180 const ErrorCallback& error_callback) { |
| 181 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, |
| 182 base::Bind(&MTPDeviceDelegateImplMac::ReadDirectoryImpl, |
| 183 base::Unretained(this), |
| 184 root, success_callback, error_callback)); |
| 185 } |
| 186 |
| 187 void MTPDeviceDelegateImplMac::CreateSnapshotFile( |
| 188 const base::FilePath& device_file_path, |
| 189 const base::FilePath& local_path, |
| 190 const CreateSnapshotFileSuccessCallback& success_callback, |
| 191 const ErrorCallback& error_callback) { |
| 192 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, |
| 193 base::Bind(&MTPDeviceDelegateImplMac::DownloadFile, |
| 194 base::Unretained(this), |
| 195 device_file_path, local_path, |
| 196 success_callback, error_callback)); |
| 197 } |
| 198 |
| 199 void MTPDeviceDelegateImplMac::CancelPendingTasksAndDeleteDelegate() { |
| 200 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, |
| 201 base::Bind(&MTPDeviceDelegateImplMac::CancelAndDelete, |
| 202 base::Unretained(this))); |
| 203 } |
| 204 |
| 205 void MTPDeviceDelegateImplMac::GetFileInfoImpl( |
| 206 const base::FilePath& file_path, |
| 207 base::PlatformFileInfo* file_info, |
| 208 base::PlatformFileError* error) { |
| 209 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
| 129 base::hash_map<base::FilePath::StringType, | 210 base::hash_map<base::FilePath::StringType, |
| 130 base::PlatformFileInfo>::const_iterator i = | 211 base::PlatformFileInfo>::const_iterator i = |
| 131 file_info_.find(file_path.value()); | 212 file_info_.find(file_path.value()); |
| 132 if (i == file_info_.end()) | 213 if (i == file_info_.end()) { |
| 133 return base::PLATFORM_FILE_ERROR_NOT_FOUND; | 214 *error = base::PLATFORM_FILE_ERROR_NOT_FOUND; |
| 134 | 215 return; |
| 216 } |
| 135 *file_info = i->second; | 217 *file_info = i->second; |
| 136 return base::PLATFORM_FILE_OK; | 218 *error = base::PLATFORM_FILE_OK; |
| 137 } | 219 } |
| 138 | 220 |
| 139 scoped_ptr<fileapi::FileSystemFileUtil::AbstractFileEnumerator> | 221 void MTPDeviceDelegateImplMac::ReadDirectoryImpl( |
| 140 MTPDeviceDelegateImplMac::CreateFileEnumerator(const base::FilePath& root, | 222 const base::FilePath& root, |
| 141 bool recursive) { | 223 const ReadDirectorySuccessCallback& success_callback, |
| 142 base::AutoLock lock(mutex_); | 224 const ErrorCallback& error_callback) { |
| 143 DCHECK(!enumerator_); | 225 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
| 144 enumerator_ = new Enumerator(this); | 226 |
| 145 return make_scoped_ptr(enumerator_) | 227 read_dir_transactions_.push_back(ReadDirectoryRequest( |
| 146 .PassAs<fileapi::FileSystemFileUtil::AbstractFileEnumerator>(); | 228 root, success_callback, error_callback)); |
| 229 |
| 230 if (received_all_files_) { |
| 231 NotifyReadDir(); |
| 232 return; |
| 233 } |
| 234 |
| 235 // Schedule a timeout in case the directory read doesn't complete. |
| 236 content::BrowserThread::PostDelayedTask( |
| 237 content::BrowserThread::UI, FROM_HERE, |
| 238 base::Bind(&MTPDeviceDelegateImplMac::ReadDirectoryTimeout, |
| 239 weak_factory_.GetWeakPtr(), root), |
| 240 base::TimeDelta::FromSeconds(kReadDirectoryTimeLimitSeconds)); |
| 147 } | 241 } |
| 148 | 242 |
| 149 base::PlatformFileError MTPDeviceDelegateImplMac::CreateSnapshotFile( | 243 void MTPDeviceDelegateImplMac::ReadDirectoryTimeout( |
| 150 const base::FilePath& device_file_path, | 244 const base::FilePath& root) { |
| 151 const base::FilePath& local_path, | 245 if (received_all_files_) |
| 152 base::PlatformFileInfo* file_info) { | 246 return; |
| 153 base::PlatformFileError error = GetFileInfo(device_file_path, file_info); | |
| 154 if (error != base::PLATFORM_FILE_OK) | |
| 155 return error; | |
| 156 | 247 |
| 157 // Set up to wait for download. Callers are ensuring this particular function | 248 for (ReadDirTransactionList::iterator iter = read_dir_transactions_.begin(); |
| 158 // will not be re-entered. | 249 iter != read_dir_transactions_.end();) { |
| 159 base::WaitableEvent waiter(true, false); | 250 if (iter->directory != root) { |
| 160 { | 251 iter++; |
| 161 base::AutoLock lock(mutex_); | 252 continue; |
| 162 DCHECK(file_download_event_ == NULL); | 253 } |
| 163 file_download_event_ = &waiter; | 254 iter->error_callback.Run(base::PLATFORM_FILE_ERROR_ABORT); |
| 255 iter = read_dir_transactions_.erase(iter); |
| 256 } |
| 257 } |
| 258 |
| 259 void MTPDeviceDelegateImplMac::DownloadFile( |
| 260 const base::FilePath& device_file_path, |
| 261 const base::FilePath& local_path, |
| 262 const CreateSnapshotFileSuccessCallback& success_callback, |
| 263 const ErrorCallback& error_callback) { |
| 264 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
| 265 |
| 266 base::PlatformFileError error; |
| 267 base::PlatformFileInfo info; |
| 268 GetFileInfoImpl(device_file_path, &info, &error); |
| 269 if (error != base::PLATFORM_FILE_OK) { |
| 270 content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE, |
| 271 base::Bind(error_callback, |
| 272 error)); |
| 273 return; |
| 164 } | 274 } |
| 165 | 275 |
| 166 // Start the download in the UI thread. | 276 read_file_transactions_[device_file_path.BaseName().value()] = |
| 167 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, | 277 std::make_pair(success_callback, error_callback); |
| 168 base::Bind(&DeviceListener::DownloadFile, | 278 camera_interface_->DownloadFile(device_file_path.BaseName().value(), |
| 169 base::Unretained(camera_interface_.get()), | 279 local_path); |
| 170 device_file_path.BaseName().value(), local_path)); | |
| 171 waiter.Wait(); | |
| 172 { | |
| 173 base::AutoLock lock(mutex_); | |
| 174 file_download_event_ = NULL; | |
| 175 error = file_download_error_; | |
| 176 } | |
| 177 | |
| 178 // Modify the last modified time to null. This prevents the time stamp | |
| 179 // verification in LocalFileStreamReader. | |
| 180 file_info->last_modified = base::Time(); | |
| 181 | |
| 182 return error; | |
| 183 } | 280 } |
| 184 | 281 |
| 185 void MTPDeviceDelegateImplMac::CancelPendingTasksAndDeleteDelegate() { | 282 void MTPDeviceDelegateImplMac::CancelAndDelete() { |
| 283 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
| 186 // Artificially pretend that we have already gotten all items we're going | 284 // Artificially pretend that we have already gotten all items we're going |
| 187 // to get. | 285 // to get. |
| 188 NoMoreItems(); | 286 NoMoreItems(); |
| 189 | 287 |
| 190 { | 288 CancelDownloads(); |
| 191 base::AutoLock lock(mutex_); | |
| 192 // Artificially wake up any downloads pending with an error code. | |
| 193 if (file_download_event_) { | |
| 194 file_download_error_ = base::PLATFORM_FILE_ERROR_FAILED; | |
| 195 file_download_event_->Signal(); | |
| 196 } | |
| 197 } | |
| 198 | 289 |
| 199 // Schedule the camera session to be closed and the interface deleted. | 290 // Schedule the camera session to be closed and the interface deleted. |
| 291 camera_interface_->ResetDelegate(); |
| 200 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, | 292 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, |
| 201 base::Bind(&DeviceListener::CloseCameraSessionAndDelete, | 293 base::Bind(&DeviceListener::CloseCameraSessionAndDelete, |
| 202 base::Unretained(camera_interface_.release()))); | 294 base::Unretained(camera_interface_.release()))); |
| 203 | 295 |
| 204 media_task_runner_->DeleteSoon(FROM_HERE, this); | 296 delete this; |
| 205 } | 297 } |
| 206 | 298 |
| 299 void MTPDeviceDelegateImplMac::CancelDownloads() { |
| 300 // Cancel any outstanding callbacks. |
| 301 for (ReadFileTransactionMap::iterator iter = read_file_transactions_.begin(); |
| 302 iter != read_file_transactions_.end(); ++iter) { |
| 303 content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE, |
| 304 base::Bind(iter->second.second, base::PLATFORM_FILE_ERROR_ABORT)); |
| 305 } |
| 306 read_file_transactions_.clear(); |
| 307 |
| 308 for (ReadDirTransactionList::iterator iter = read_dir_transactions_.begin(); |
| 309 iter != read_dir_transactions_.end(); ++iter) { |
| 310 content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE, |
| 311 base::Bind(iter->error_callback, base::PLATFORM_FILE_ERROR_ABORT)); |
| 312 } |
| 313 read_dir_transactions_.clear(); |
| 314 |
| 315 // TODO(gbillock): ImageCapture currently offers no way to cancel |
| 316 // in-progress downloads. |
| 317 } |
| 318 |
| 319 // Called on the UI thread by the listener |
| 207 void MTPDeviceDelegateImplMac::ItemAdded( | 320 void MTPDeviceDelegateImplMac::ItemAdded( |
| 208 const std::string& name, const base::PlatformFileInfo& info) { | 321 const std::string& name, const base::PlatformFileInfo& info) { |
| 209 base::AutoLock lock(mutex_); | |
| 210 | |
| 211 // Make sure that if we're canceled and an enumerator is awake, that | |
| 212 // it will stay consistent. May need to revisit this if we need | |
| 213 // notifications of files added after we think we're done. | |
| 214 if (received_all_files_) | 322 if (received_all_files_) |
| 215 return; | 323 return; |
| 216 | 324 |
| 217 // TODO(gbillock): Currently we flatten all files into a single | 325 // TODO(gbillock): Currently we flatten all files into a single |
| 218 // directory. That's pretty much how PTP devices work, but if we want | 326 // directory. That's pretty much how PTP devices work, but if we want |
| 219 // to support ImageCapture for USB, we need to change this. | 327 // to support ImageCapture for USB, we need to change this. |
| 220 if (info.is_directory) | 328 if (info.is_directory) |
| 221 return; | 329 return; |
| 222 | 330 |
| 223 base::FilePath item_filename = root_path_.Append(name); | 331 base::FilePath item_filename = root_path_.Append(name); |
| 224 file_info_[item_filename.value()] = info; | 332 file_info_[item_filename.value()] = info; |
| 225 file_paths_.push_back(item_filename); | 333 file_paths_.push_back(item_filename); |
| 226 | 334 |
| 227 if (enumerator_) | 335 // TODO(gbillock): Should we send new files to |
| 228 enumerator_->ItemsChanged(); | 336 // read_dir_transactions_ callbacks? |
| 229 } | 337 } |
| 230 | 338 |
| 339 // Called in the UI thread by delegate. |
| 231 void MTPDeviceDelegateImplMac::NoMoreItems() { | 340 void MTPDeviceDelegateImplMac::NoMoreItems() { |
| 232 base::AutoLock lock(mutex_); | |
| 233 received_all_files_ = true; | 341 received_all_files_ = true; |
| 234 | 342 NotifyReadDir(); |
| 235 if (enumerator_) | |
| 236 enumerator_->ItemsChanged(); | |
| 237 } | 343 } |
| 238 | 344 |
| 345 void MTPDeviceDelegateImplMac::NotifyReadDir() { |
| 346 // Note: this assumes the only directory read we get is for the root. |
| 347 // When this class supports directory hierarchies, this will change. |
| 348 for (ReadDirTransactionList::iterator iter = read_dir_transactions_.begin(); |
| 349 iter != read_dir_transactions_.end(); ++iter) { |
| 350 fileapi::AsyncFileUtil::EntryList entry_list; |
| 351 for (size_t i = 0; i < file_paths_.size(); ++i) { |
| 352 base::PlatformFileInfo info = file_info_[file_paths_[i].value()]; |
| 353 base::FileUtilProxy::Entry entry; |
| 354 entry.name = file_paths_[i].value(); |
| 355 entry.is_directory = info.is_directory; |
| 356 entry.size = info.size; |
| 357 entry.last_modified_time = info.last_modified; |
| 358 entry_list.push_back(entry); |
| 359 } |
| 360 content::BrowserThread::PostTask(content::BrowserThread::IO, |
| 361 FROM_HERE, |
| 362 base::Bind(iter->success_callback, entry_list, false)); |
| 363 } |
| 364 } |
| 365 |
| 366 // Invoked on UI thread from the listener. |
| 239 void MTPDeviceDelegateImplMac::DownloadedFile( | 367 void MTPDeviceDelegateImplMac::DownloadedFile( |
| 240 const std::string& name, base::PlatformFileError error) { | 368 const std::string& name, base::PlatformFileError error) { |
| 241 // If we're cancelled and deleting, we have already signaled all enumerators. | 369 // If we're cancelled and deleting, we may have deleted the camera. |
| 242 if (!camera_interface_.get()) | 370 if (!camera_interface_.get()) |
| 243 return; | 371 return; |
| 244 | 372 |
| 245 base::AutoLock lock(mutex_); | 373 ReadFileTransactionMap::iterator iter = read_file_transactions_.find(name); |
| 246 file_download_error_ = error; | 374 if (iter == read_file_transactions_.end()) |
| 247 file_download_event_->Signal(); | 375 return; |
| 376 |
| 377 if (error != base::PLATFORM_FILE_OK) { |
| 378 content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE, |
| 379 base::Bind(iter->second.second, error)); |
| 380 read_file_transactions_.erase(iter); |
| 381 return; |
| 382 } |
| 383 |
| 384 base::PlatformFileInfo info = file_info_[name]; |
| 385 content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE, |
| 386 base::Bind(iter->second.first, info, base::FilePath(name))); |
| 387 read_file_transactions_.erase(iter); |
| 248 } | 388 } |
| 249 | 389 |
| 250 base::FilePath MTPDeviceDelegateImplMac::GetFile(size_t index) { | 390 MTPDeviceDelegateImplMac::ReadDirectoryRequest::ReadDirectoryRequest( |
| 251 base::AutoLock lock(mutex_); | 391 const base::FilePath& dir, |
| 252 if (index >= file_paths_.size()) | 392 ReadDirectorySuccessCallback success_cb, |
| 253 return base::FilePath(); | 393 ErrorCallback error_cb) |
| 254 else | 394 : directory(dir), |
| 255 return file_paths_[index]; | 395 success_callback(success_cb), |
| 256 } | 396 error_callback(error_cb) {} |
| 257 | 397 |
| 258 bool MTPDeviceDelegateImplMac::ReceivedAllFiles() { | 398 MTPDeviceDelegateImplMac::ReadDirectoryRequest::~ReadDirectoryRequest() {} |
| 259 base::AutoLock lock(mutex_); | |
| 260 return received_all_files_; | |
| 261 } | |
| 262 | 399 |
| 263 void MTPDeviceDelegateImplMac::RemoveEnumerator(Enumerator* enumerator) { | 400 void CreateMTPDeviceAsyncDelegate( |
| 264 base::AutoLock lock(mutex_); | 401 const base::FilePath::StringType& device_location, |
| 265 DCHECK(enumerator_ == enumerator); | 402 const CreateMTPDeviceAsyncDelegateCallback& cb) { |
| 266 enumerator_ = NULL; | |
| 267 } | |
| 268 | |
| 269 MTPDeviceDelegateImplMac::Enumerator::Enumerator( | |
| 270 MTPDeviceDelegateImplMac* delegate) | |
| 271 : delegate_(delegate), | |
| 272 position_(0), | |
| 273 wait_for_items_(false, false) {} | |
| 274 | |
| 275 MTPDeviceDelegateImplMac::Enumerator::~Enumerator() { | |
| 276 delegate_->RemoveEnumerator(this); | |
| 277 } | |
| 278 | |
| 279 base::FilePath MTPDeviceDelegateImplMac::Enumerator::Next() { | |
| 280 base::FilePath next_file = delegate_->GetFile(position_); | |
| 281 while (next_file.empty() && !delegate_->ReceivedAllFiles()) { | |
| 282 wait_for_items_.Wait(); | |
| 283 next_file = delegate_->GetFile(position_); | |
| 284 } | |
| 285 | |
| 286 position_++; | |
| 287 return next_file; | |
| 288 } | |
| 289 | |
| 290 int64 MTPDeviceDelegateImplMac::Enumerator::Size() { | |
| 291 base::PlatformFileInfo info; | |
| 292 delegate_->GetFileInfo(delegate_->GetFile(position_ - 1), &info); | |
| 293 return info.size; | |
| 294 } | |
| 295 | |
| 296 base::Time MTPDeviceDelegateImplMac::Enumerator::LastModifiedTime() { | |
| 297 base::PlatformFileInfo info; | |
| 298 delegate_->GetFileInfo(delegate_->GetFile(position_ - 1), &info); | |
| 299 return info.last_modified; | |
| 300 } | |
| 301 | |
| 302 bool MTPDeviceDelegateImplMac::Enumerator::IsDirectory() { | |
| 303 base::PlatformFileInfo info; | |
| 304 delegate_->GetFileInfo(delegate_->GetFile(position_ - 1), &info); | |
| 305 return info.is_directory; | |
| 306 } | |
| 307 | |
| 308 void MTPDeviceDelegateImplMac::Enumerator::ItemsChanged() { | |
| 309 wait_for_items_.Signal(); | |
| 310 } | |
| 311 | |
| 312 void CreateMTPDeviceDelegate(const std::string& device_location, | |
| 313 base::SequencedTaskRunner* media_task_runner, | |
| 314 const CreateMTPDeviceDelegateCallback& cb) { | |
| 315 std::string device_name = base::FilePath(device_location).BaseName().value(); | 403 std::string device_name = base::FilePath(device_location).BaseName().value(); |
| 316 std::string device_id; | 404 std::string device_id; |
| 317 MediaStorageUtil::Type type; | 405 MediaStorageUtil::Type type; |
| 318 bool cracked = MediaStorageUtil::CrackDeviceId(device_name, | 406 bool cracked = MediaStorageUtil::CrackDeviceId(device_name, |
| 319 &type, &device_id); | 407 &type, &device_id); |
| 320 DCHECK(cracked); | 408 DCHECK(cracked); |
| 321 DCHECK_EQ(MediaStorageUtil::MAC_IMAGE_CAPTURE, type); | 409 DCHECK_EQ(MediaStorageUtil::MAC_IMAGE_CAPTURE, type); |
| 322 | 410 |
| 323 cb.Run(new MTPDeviceDelegateImplMac(device_id, device_location, | 411 cb.Run(new MTPDeviceDelegateImplMac(device_id, device_location)); |
| 324 media_task_runner)); | |
| 325 } | 412 } |
| 326 | 413 |
| 327 } // namespace chrome | 414 } // namespace chrome |
| 328 | 415 |
| OLD | NEW |