| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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/chromeos/file_system_provider/operations/open_file.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/open_file.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "chrome/common/extensions/api/file_system_provider.h" | 9 #include "chrome/common/extensions/api/file_system_provider.h" |
| 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" | 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 : Operation(event_router, file_system_info), | 22 : Operation(event_router, file_system_info), |
| 23 file_path_(file_path), | 23 file_path_(file_path), |
| 24 mode_(mode), | 24 mode_(mode), |
| 25 callback_(callback) { | 25 callback_(callback) { |
| 26 } | 26 } |
| 27 | 27 |
| 28 OpenFile::~OpenFile() { | 28 OpenFile::~OpenFile() { |
| 29 } | 29 } |
| 30 | 30 |
| 31 bool OpenFile::Execute(int request_id) { | 31 bool OpenFile::Execute(int request_id) { |
| 32 using extensions::api::file_system_provider::OpenFileRequestedOptions; |
| 33 |
| 32 if (!file_system_info_.writable() && | 34 if (!file_system_info_.writable() && |
| 33 mode_ == ProvidedFileSystemInterface::OPEN_FILE_MODE_WRITE) { | 35 mode_ == ProvidedFileSystemInterface::OPEN_FILE_MODE_WRITE) { |
| 34 return false; | 36 return false; |
| 35 } | 37 } |
| 36 | 38 |
| 37 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); | 39 OpenFileRequestedOptions options; |
| 38 values->SetString("filePath", file_path_.AsUTF8Unsafe()); | 40 options.file_system_id = file_system_info_.file_system_id(); |
| 41 options.request_id = request_id; |
| 42 options.file_path = file_path_.AsUTF8Unsafe(); |
| 39 | 43 |
| 40 switch (mode_) { | 44 switch (mode_) { |
| 41 case ProvidedFileSystemInterface::OPEN_FILE_MODE_READ: | 45 case ProvidedFileSystemInterface::OPEN_FILE_MODE_READ: |
| 42 values->SetString( | 46 options.mode = extensions::api::file_system_provider::OPEN_FILE_MODE_READ; |
| 43 "mode", | |
| 44 extensions::api::file_system_provider::ToString( | |
| 45 extensions::api::file_system_provider::OPEN_FILE_MODE_READ)); | |
| 46 break; | 47 break; |
| 47 case ProvidedFileSystemInterface::OPEN_FILE_MODE_WRITE: | 48 case ProvidedFileSystemInterface::OPEN_FILE_MODE_WRITE: |
| 48 values->SetString( | 49 options.mode = |
| 49 "mode", | 50 extensions::api::file_system_provider::OPEN_FILE_MODE_WRITE; |
| 50 extensions::api::file_system_provider::ToString( | |
| 51 extensions::api::file_system_provider::OPEN_FILE_MODE_WRITE)); | |
| 52 break; | 51 break; |
| 53 } | 52 } |
| 54 | 53 |
| 55 return SendEvent( | 54 return SendEvent( |
| 56 request_id, | 55 request_id, |
| 57 extensions::api::file_system_provider::OnOpenFileRequested::kEventName, | 56 extensions::api::file_system_provider::OnOpenFileRequested::kEventName, |
| 58 values.Pass()); | 57 extensions::api::file_system_provider::OnOpenFileRequested::Create( |
| 58 options)); |
| 59 } | 59 } |
| 60 | 60 |
| 61 void OpenFile::OnSuccess(int request_id, | 61 void OpenFile::OnSuccess(int request_id, |
| 62 scoped_ptr<RequestValue> result, | 62 scoped_ptr<RequestValue> result, |
| 63 bool has_more) { | 63 bool has_more) { |
| 64 // File handle is the same as request id of the OpenFile operation. | 64 // File handle is the same as request id of the OpenFile operation. |
| 65 callback_.Run(request_id, base::File::FILE_OK); | 65 callback_.Run(request_id, base::File::FILE_OK); |
| 66 } | 66 } |
| 67 | 67 |
| 68 void OpenFile::OnError(int /* request_id */, | 68 void OpenFile::OnError(int /* request_id */, |
| 69 scoped_ptr<RequestValue> /* result */, | 69 scoped_ptr<RequestValue> /* result */, |
| 70 base::File::Error error) { | 70 base::File::Error error) { |
| 71 callback_.Run(0 /* file_handle */, error); | 71 callback_.Run(0 /* file_handle */, error); |
| 72 } | 72 } |
| 73 | 73 |
| 74 } // namespace operations | 74 } // namespace operations |
| 75 } // namespace file_system_provider | 75 } // namespace file_system_provider |
| 76 } // namespace chromeos | 76 } // namespace chromeos |
| OLD | NEW |