| // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef WEBKIT_FILEAPI_MEDIA_DEVICE_MEDIA_FILE_UTIL_H_ |
| #define WEBKIT_FILEAPI_MEDIA_DEVICE_MEDIA_FILE_UTIL_H_ |
| |
| #include "base/file_path.h" |
| #include "base/memory/scoped_ptr.h" |
| #include "base/platform_file.h" |
| #include "webkit/fileapi/file_system_file_util.h" |
| #include "webkit/storage/webkit_storage_export.h" |
| |
| namespace base { |
| class Time; |
| } |
| |
| namespace fileapi { |
| |
| class FileSystemOperationContext; |
| |
| class WEBKIT_STORAGE_EXPORT_PRIVATE DeviceMediaFileUtil |
| : public FileSystemFileUtil { |
| public: |
| explicit DeviceMediaFileUtil(const base::FilePath& profile_path); |
| virtual ~DeviceMediaFileUtil() {} |
| |
| // FileSystemFileUtil overrides. |
| virtual base::PlatformFileError CreateOrOpen( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url, |
| int file_flags, |
| base::PlatformFile* file_handle, |
| bool* created) OVERRIDE; |
| virtual base::PlatformFileError Close( |
| FileSystemOperationContext* context, |
| base::PlatformFile file) OVERRIDE; |
| virtual base::PlatformFileError EnsureFileExists( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url, bool* created) OVERRIDE; |
| virtual base::PlatformFileError CreateDirectory( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url, |
| bool exclusive, |
| bool recursive) OVERRIDE; |
| virtual base::PlatformFileError GetFileInfo( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url, |
| base::PlatformFileInfo* file_info, |
| base::FilePath* platform_path) OVERRIDE; |
| virtual scoped_ptr<AbstractFileEnumerator> CreateFileEnumerator( |
| FileSystemOperationContext* context, |
| const FileSystemURL& root_url, |
| bool recursive) OVERRIDE; |
| virtual base::PlatformFileError GetLocalFilePath( |
| FileSystemOperationContext* context, |
| const FileSystemURL& file_system_url, |
| base::FilePath* local_file_path) OVERRIDE; |
| virtual base::PlatformFileError Touch( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url, |
| const base::Time& last_access_time, |
| const base::Time& last_modified_time) OVERRIDE; |
| virtual base::PlatformFileError Truncate( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url, |
| int64 length) OVERRIDE; |
| virtual base::PlatformFileError CopyOrMoveFile( |
| FileSystemOperationContext* context, |
| const FileSystemURL& src_url, |
| const FileSystemURL& dest_url, |
| bool copy) OVERRIDE; |
| virtual base::PlatformFileError CopyInForeignFile( |
| FileSystemOperationContext* context, |
| const base::FilePath& src_file_path, |
| const FileSystemURL& dest_url) OVERRIDE; |
| virtual base::PlatformFileError DeleteFile( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url) OVERRIDE; |
| virtual base::PlatformFileError DeleteDirectory( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url) OVERRIDE; |
| virtual base::PlatformFileError CreateSnapshotFile( |
| FileSystemOperationContext* context, |
| const FileSystemURL& url, |
| base::PlatformFileInfo* file_info, |
| base::FilePath* platform_path, |
| SnapshotFilePolicy* policy) OVERRIDE; |
| |
| private: |
| // Profile path |
| const base::FilePath profile_path_; |
| |
| DISALLOW_COPY_AND_ASSIGN(DeviceMediaFileUtil); |
| }; |
| |
| } // namespace fileapi |
| |
| #endif // WEBKIT_FILEAPI_MEDIA_DEVICE_MEDIA_FILE_UTIL_H_ |