1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef STORAGE_BROWSER_FILE_SYSTEM_ASYNC_FILE_UTIL_H_
#define STORAGE_BROWSER_FILE_SYSTEM_ASYNC_FILE_UTIL_H_
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/component_export.h"
#include "base/files/file.h"
#include "base/functional/callback_forward.h"
#include "components/services/filesystem/public/mojom/types.mojom.h"
#include "storage/browser/file_system/file_system_operation.h"
namespace base {
class Time;
}
namespace storage {
class ShareableFileReference;
}
namespace storage {
class FileSystemOperationContext;
class FileSystemURL;
// An interface which provides filesystem-specific file operations for
// FileSystemOperationImpl.
//
// Each filesystem which needs to be dispatched from FileSystemOperationImpl
// must implement this interface or a synchronous version of interface:
// FileSystemFileUtil.
//
// As far as an instance of this class is owned by a FileSystemBackend
// (which is owned by FileSystemContext), it's guaranteed that this instance's
// alive while FileSystemOperationContext given to each operation is kept
// alive. (Note that this instance might be freed on different thread
// from the thread it is created.)
//
// It is NOT valid to give null callback to this class, and implementors
// can assume that they don't get any null callbacks.
//
class AsyncFileUtil {
public:
using StatusCallback = base::OnceCallback<void(base::File::Error result)>;
// Used for CreateOrOpen(). File util implementations can specify an
// `on_close_callback` if an operation is needed after closing a file. If
// non-null, CreateOrOpen() callers must run the callback (on the IO thread)
// after the file closes. If the file is duped, the callback should not be run
// until all dups of the file have been closed.
using CreateOrOpenCallback =
base::OnceCallback<void(base::File file,
base::OnceClosure on_close_callback)>;
using EnsureFileExistsCallback =
base::OnceCallback<void(base::File::Error result, bool created)>;
using GetFileInfoCallback =
base::OnceCallback<void(base::File::Error result,
const base::File::Info& file_info)>;
using EntryList = std::vector<filesystem::mojom::DirectoryEntry>;
using ReadDirectoryCallback = base::RepeatingCallback<
void(base::File::Error result, EntryList file_list, bool has_more)>;
using CreateSnapshotFileCallback =
base::OnceCallback<void(base::File::Error result,
const base::File::Info& file_info,
const base::FilePath& platform_path,
scoped_refptr<ShareableFileReference> file_ref)>;
using CopyFileProgressCallback = base::RepeatingCallback<void(int64_t size)>;
using CopyOrMoveOptionSet = FileSystemOperation::CopyOrMoveOptionSet;
using GetMetadataField = FileSystemOperation::GetMetadataField;
using GetMetadataFieldSet = FileSystemOperation::GetMetadataFieldSet;
// Creates an AsyncFileUtil instance which performs file operations on local
// file system. The created instance assumes FileSystemURL::path() has the
// target platform path.
COMPONENT_EXPORT(STORAGE_BROWSER)
static AsyncFileUtil* CreateForLocalFileSystem();
AsyncFileUtil() = default;
AsyncFileUtil(const AsyncFileUtil&) = delete;
AsyncFileUtil& operator=(const AsyncFileUtil&) = delete;
virtual ~AsyncFileUtil() = default;
// Creates or opens a file with the given flags.
// If File::FLAG_CREATE is set in |file_flags| it always tries to create
// a new file at the given |url| and calls back with
// File::FILE_ERROR_FILE_EXISTS if the |url| already exists.
//
// FileSystemOperationImpl::OpenFile calls this.
// This is used only by Pepper/NaCl File API.
//
virtual void CreateOrOpen(std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
uint32_t file_flags,
CreateOrOpenCallback callback) = 0;
// Ensures that the given |url| exist. This creates a empty new file
// at |url| if the |url| does not exist.
//
// FileSystemOperationImpl::CreateFile calls this.
//
// This reports following error code via |callback|:
// - File::FILE_OK and created==true if a file has not existed and
// is created at |url|.
// - File::FILE_OK and created==false if the file already exists.
// - Other error code (with created=false) if a file hasn't existed yet
// and there was an error while creating a new file.
//
virtual void EnsureFileExists(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
EnsureFileExistsCallback callback) = 0;
// Creates directory at given url.
//
// FileSystemOperationImpl::CreateDirectory calls this.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if the |url|'s parent directory
// does not exist and |recursive| is false.
// - File::FILE_ERROR_EXISTS if a directory already exists at |url|
// and |exclusive| is true.
// - File::FILE_ERROR_EXISTS if a file already exists at |url|
// (regardless of |exclusive| value).
// - Other error code if it failed to create a directory.
//
virtual void CreateDirectory(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
bool exclusive,
bool recursive,
StatusCallback callback) = 0;
// Retrieves the information about a file.
//
// FileSystemOperationImpl::GetMetadata calls this.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if the file doesn't exist.
// - Other error code if there was an error while retrieving the file info.
//
virtual void GetFileInfo(std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
GetMetadataFieldSet fields,
GetFileInfoCallback callback) = 0;
// Reads contents of a directory at |path|.
//
// FileSystemOperationImpl::ReadDirectory calls this.
//
// Note that the |name| field of each entry in |file_list|
// returned by |callback| should have a base file name
// of the entry relative to the directory, but not an absolute path.
//
// (E.g. if ReadDirectory is called for a directory
// 'path/to/dir' and the directory has entries 'a' and 'b',
// the returned |file_list| should include entries whose names
// are 'a' and 'b', but not '/path/to/dir/a' and '/path/to/dir/b'.)
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if the target directory doesn't exist.
// - File::FILE_ERROR_NOT_A_DIRECTORY if an entry exists at |url| but
// is a file (not a directory).
//
virtual void ReadDirectory(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
ReadDirectoryCallback callback) = 0;
// Modifies timestamps of a file or directory at |url| with
// |last_access_time| and |last_modified_time|. The function DOES NOT
// create a file unlike 'touch' command on Linux.
//
// FileSystemOperationImpl::TouchFile calls this.
// This is used only by Pepper/NaCl File API.
//
virtual void Touch(std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
const base::Time& last_access_time,
const base::Time& last_modified_time,
StatusCallback callback) = 0;
// Truncates a file at |path| to |length|. If |length| is larger than
// the original file size, the file will be extended, and the extended
// part is filled with null bytes.
//
// FileSystemOperationImpl::Truncate calls this.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if the file doesn't exist.
//
virtual void Truncate(std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
int64_t length,
StatusCallback callback) = 0;
// Copies a file from |src_url| to |dest_url|.
// This must be called for files that belong to the same filesystem
// (i.e. type() and origin() of the |src_url| and |dest_url| must match).
// |progress_callback| is a callback to report the progress update.
// See file_system_operations.h for details. This should be called on the
// same thread as where the method's called (IO thread). Calling this
// is optional. It is recommended to use this callback for heavier operations
// (such as file network downloading), so that, e.g., clients (UIs) can
// update its state to show progress to users. This may be a null callback.
//
// FileSystemOperationImpl::Copy calls this for same-filesystem copy case.
//
// It should succeed (and overwrite) if |dest_url| exists and is a file.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if |src_url|
// or the parent directory of |dest_url| does not exist.
// - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
// - File::FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
// is not a file.
// - File::FILE_ERROR_FAILED if |dest_url| does not exist and
// its parent path is a file.
//
virtual void CopyFileLocal(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOptionSet options,
CopyFileProgressCallback progress_callback,
StatusCallback callback) = 0;
// Moves a local file from |src_url| to |dest_url|.
// This must be called for files that belong to the same filesystem
// (i.e. type() and origin() of the |src_url| and |dest_url| must match).
//
// FileSystemOperationImpl::Move calls this for same-filesystem move case.
//
// It should succeed (and overwrite) if |dest_url| exists and is a file.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if |src_url|
// or the parent directory of |dest_url| does not exist.
// - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
// - File::FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
// is not a file.
// - File::FILE_ERROR_FAILED if |dest_url| does not exist and
// its parent path is a file.
//
virtual void MoveFileLocal(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOptionSet options,
StatusCallback callback) = 0;
// Copies in a single file from a different filesystem.
//
// FileSystemOperationImpl::Copy or Move calls this for cross-filesystem
// cases.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if |src_file_path|
// or the parent directory of |dest_url| does not exist.
// - File::FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
// is not a file.
// - File::FILE_ERROR_FAILED if |dest_url| does not exist and
// its parent path is a file.
//
virtual void CopyInForeignFile(
std::unique_ptr<FileSystemOperationContext> context,
const base::FilePath& src_file_path,
const FileSystemURL& dest_url,
StatusCallback callback) = 0;
// Deletes a single file.
//
// FileSystemOperationImpl::RemoveFile calls this.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if |url| does not exist.
// - File::FILE_ERROR_NOT_A_FILE if |url| is not a file.
//
virtual void DeleteFile(std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
StatusCallback callback) = 0;
// Removes a single empty directory.
//
// FileSystemOperationImpl::RemoveDirectory calls this.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if |url| does not exist.
// - File::FILE_ERROR_NOT_A_DIRECTORY if |url| is not a directory.
// - File::FILE_ERROR_NOT_EMPTY if |url| is not empty.
//
virtual void DeleteDirectory(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
StatusCallback callback) = 0;
// Removes a single file or a single directory with its contents
// (i.e. files/subdirectories under the directory).
//
// FileSystemOperationImpl::Remove calls this.
// On some platforms, such as Chrome OS Drive File System, recursive file
// deletion can be implemented more efficiently than calling DeleteFile() and
// DeleteDirectory() for each files/directories.
// This method is optional, so if not supported,
// File::FILE_ERROR_INVALID_OPERATION should be returned via |callback|.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if |url| does not exist.
// - File::FILE_ERROR_INVALID_OPERATION if this operation is not supported.
virtual void DeleteRecursively(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
StatusCallback callback) = 0;
// Creates a local snapshot file for a given |url| and returns the
// metadata and platform path of the snapshot file via |callback|.
// In regular filesystem cases the implementation may simply return
// the metadata of the file itself (as well as GetMetadata does),
// while in non-regular filesystem case the backend may create a
// temporary snapshot file which holds the file data and return
// the metadata of the temporary file.
//
// In the callback, it returns:
// |file_info| is the metadata of the snapshot file created.
// |platform_path| is the full absolute platform path to the snapshot
// file created. If a file is not backed by a real local file in
// the implementor's FileSystem, the implementor must create a
// local snapshot file and return the path of the created file.
//
// If implementors creates a temporary file for snapshotting and wants
// FileAPI backend to take care of the lifetime of the file (so that
// it won't get deleted while JS layer has any references to the created
// File/Blob object), it should return non-empty |file_ref|.
// Via the |file_ref| implementors can schedule a file deletion
// or arbitrary callbacks when the last reference of File/Blob is dropped.
//
// FileSystemOperationImpl::CreateSnapshotFile calls this.
//
// This reports following error code via |callback|:
// - File::FILE_ERROR_NOT_FOUND if |url| does not exist.
// - File::FILE_ERROR_NOT_A_FILE if |url| exists but is a directory.
//
// The field values of |file_info| are undefined (implementation
// dependent) in error cases, and the caller should always
// check the return code.
virtual void CreateSnapshotFile(
std::unique_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
CreateSnapshotFileCallback callback) = 0;
};
} // namespace storage
#endif // STORAGE_BROWSER_FILE_SYSTEM_ASYNC_FILE_UTIL_H_
|