| 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 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ |
| 7 | 7 |
| 8 #include "webkit/browser/fileapi/async_file_util.h" | 8 #include "webkit/browser/fileapi/async_file_util.h" |
| 9 | 9 |
| 10 class EventRouter; | 10 class EventRouter; |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class FilePath; | 13 class FilePath; |
| 14 } // namespace base | 14 } // namespace base |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| 17 namespace file_system_provider { | 17 namespace file_system_provider { |
| 18 | 18 |
| 19 class ProvidedFileSystemInfo; | 19 class ProvidedFileSystemInfo; |
| 20 class RequestManager; | 20 class RequestManager; |
| 21 | 21 |
| 22 // Interface for a provided file system. Acts as a proxy between providers | 22 // Interface for a provided file system. Acts as a proxy between providers |
| 23 // and clients. | 23 // and clients. |
| 24 // TODO(mtomasz): Add more methods once implemented. | 24 // TODO(mtomasz): Add more methods once implemented. |
| 25 class ProvidedFileSystemInterface { | 25 class ProvidedFileSystemInterface { |
| 26 public: | 26 public: |
| 27 // Mode of opening a file. Used by OpenFile(). |
| 28 enum OpenFileMode { OPEN_FILE_MODE_READ, OPEN_FILE_MODE_WRITE }; |
| 29 |
| 27 virtual ~ProvidedFileSystemInterface() {} | 30 virtual ~ProvidedFileSystemInterface() {} |
| 28 | 31 |
| 29 // Requests unmounting of the file system. The callback is called when the | 32 // Requests unmounting of the file system. The callback is called when the |
| 30 // request is accepted or rejected, with an error code. | 33 // request is accepted or rejected, with an error code. |
| 31 virtual void RequestUnmount( | 34 virtual void RequestUnmount( |
| 32 const fileapi::AsyncFileUtil::StatusCallback& callback) = 0; | 35 const fileapi::AsyncFileUtil::StatusCallback& callback) = 0; |
| 33 | 36 |
| 34 // Requests metadata of the passed |entry_path|. It can be either a file | 37 // Requests metadata of the passed |entry_path|. It can be either a file |
| 35 // or a directory. | 38 // or a directory. |
| 36 virtual void GetMetadata( | 39 virtual void GetMetadata( |
| 37 const base::FilePath& entry_path, | 40 const base::FilePath& entry_path, |
| 38 const fileapi::AsyncFileUtil::GetFileInfoCallback& callback) = 0; | 41 const fileapi::AsyncFileUtil::GetFileInfoCallback& callback) = 0; |
| 39 // Requests enumerating entries from the passed |directory_path|. The callback | 42 // Requests enumerating entries from the passed |directory_path|. The callback |
| 40 // can be called multiple times until either an error is returned or the | 43 // can be called multiple times until either an error is returned or the |
| 41 // has_more field is set to false. | 44 // has_more field is set to false. |
| 42 virtual void ReadDirectory( | 45 virtual void ReadDirectory( |
| 43 const base::FilePath& directory_path, | 46 const base::FilePath& directory_path, |
| 44 const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback) = 0; | 47 const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback) = 0; |
| 45 | 48 |
| 49 // Requests opening a file at |file_path|. If |create| is set to true, it will |
| 50 // create a file and return succes in case it didn't exist. |
| 51 virtual void OpenFile( |
| 52 const base::FilePath& file_path, |
| 53 OpenFileMode mode, |
| 54 bool create, |
| 55 const fileapi::AsyncFileUtil::StatusCallback& callback) = 0; |
| 56 |
| 46 // Returns a provided file system info for this file system. | 57 // Returns a provided file system info for this file system. |
| 47 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0; | 58 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0; |
| 48 | 59 |
| 49 // Returns a request manager for the file system. | 60 // Returns a request manager for the file system. |
| 50 virtual RequestManager* GetRequestManager() = 0; | 61 virtual RequestManager* GetRequestManager() = 0; |
| 51 }; | 62 }; |
| 52 | 63 |
| 53 } // namespace file_system_provider | 64 } // namespace file_system_provider |
| 54 } // namespace chromeos | 65 } // namespace chromeos |
| 55 | 66 |
| 56 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INT
ERFACE_H_ | 67 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INT
ERFACE_H_ |
| OLD | NEW |