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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/file_system_provider/fileapi/file_stream_writer.h"
#include <memory>
#include <utility>
#include "base/functional/bind.h"
#include "base/memory/ref_counted.h"
#include "base/task/single_thread_task_runner.h"
#include "base/trace_event/trace_event.h"
#include "chrome/browser/ash/file_system_provider/abort_callback.h"
#include "chrome/browser/ash/file_system_provider/fileapi/provider_async_file_util.h"
#include "chrome/browser/ash/file_system_provider/mount_path_util.h"
#include "chrome/browser/ash/file_system_provider/provided_file_system_interface.h"
#include "chrome/browser/ash/file_system_provider/scoped_file_opener.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
using content::BrowserThread;
namespace ash::file_system_provider {
class FileStreamWriter::OperationRunner
: public base::RefCountedThreadSafe<
FileStreamWriter::OperationRunner,
content::BrowserThread::DeleteOnUIThread> {
public:
OperationRunner() : file_handle_(0) {}
OperationRunner(const OperationRunner&) = delete;
OperationRunner& operator=(const OperationRunner&) = delete;
// Opens a file for writing and calls the completion callback. Must be called
// on UI thread.
void OpenFileOnUIThread(const storage::FileSystemURL& url,
storage::AsyncFileUtil::StatusCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(abort_callback_.is_null());
util::FileSystemURLParser parser(url);
if (!parser.Parse()) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback), base::File::FILE_ERROR_SECURITY));
return;
}
file_system_ = parser.file_system()->GetWeakPtr();
file_opener_ = std::make_unique<ScopedFileOpener>(
parser.file_system(), parser.file_path(), OPEN_FILE_MODE_WRITE,
base::BindOnce(&OperationRunner::OnOpenFileCompletedOnUIThread, this,
std::move(callback)));
}
// Requests writing bytes to the file. In case of either success or a failure
// |callback| is executed. Must be called on UI thread.
void WriteFileOnUIThread(scoped_refptr<net::IOBuffer> buffer,
int64_t offset,
int length,
storage::AsyncFileUtil::StatusCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(abort_callback_.is_null());
// If the file system got unmounted, then abort the writing operation.
if (!file_system_.get()) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback), base::File::FILE_ERROR_ABORT));
return;
}
abort_callback_ = file_system_->WriteFile(
file_handle_, buffer.get(), offset, length,
base::BindOnce(&OperationRunner::OnWriteFileCompletedOnUIThread, this,
std::move(callback)));
}
void FlushFileOnUIThread(storage::AsyncFileUtil::StatusCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(abort_callback_.is_null());
// If the file system got unmounted, then abort the writing operation.
if (!file_system_.get()) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback), base::File::FILE_ERROR_ABORT));
return;
}
abort_callback_ = file_system_->FlushFile(
file_handle_,
base::BindOnce(&OperationRunner::OnFlushFileCompletedOnUIThread, this,
std::move(callback)));
}
// Aborts the most recent operation (if exists) and closes a file if opened.
// The runner must not be used anymore after calling this method.
void CloseRunnerOnUIThread() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (!abort_callback_.is_null())
std::move(abort_callback_).Run();
// Close the file (if opened).
file_opener_.reset();
}
private:
friend struct content::BrowserThread::DeleteOnThread<
content::BrowserThread::UI>;
friend class base::DeleteHelper<OperationRunner>;
virtual ~OperationRunner() = default;
// Remembers a file handle for further operations and forwards the result to
// the IO thread.
void OnOpenFileCompletedOnUIThread(
storage::AsyncFileUtil::StatusCallback callback,
int file_handle,
base::File::Error result,
std::unique_ptr<EntryMetadata> metadata) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
abort_callback_.Reset();
if (result == base::File::FILE_OK)
file_handle_ = file_handle;
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), result));
}
// Forwards a response of writing to a file to the IO thread.
void OnWriteFileCompletedOnUIThread(
storage::AsyncFileUtil::StatusCallback callback,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
abort_callback_.Reset();
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), result));
}
void OnFlushFileCompletedOnUIThread(
storage::AsyncFileUtil::StatusCallback callback,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
abort_callback_.Reset();
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), result));
}
AbortCallback abort_callback_;
base::WeakPtr<ProvidedFileSystemInterface> file_system_;
std::unique_ptr<ScopedFileOpener> file_opener_;
int file_handle_;
};
FileStreamWriter::FileStreamWriter(const storage::FileSystemURL& url,
int64_t initial_offset)
: url_(url),
current_offset_(initial_offset),
runner_(new OperationRunner),
state_(NOT_INITIALIZED) {}
FileStreamWriter::~FileStreamWriter() {
// Close the runner explicitly if the file streamer is
if (state_ != CANCELLING) {
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::CloseRunnerOnUIThread, runner_));
}
// If a write is in progress, mark it as completed.
TRACE_EVENT_NESTABLE_ASYNC_END0("file_system_provider",
"FileStreamWriter::Write", this);
}
void FileStreamWriter::Initialize(base::OnceClosure pending_closure,
net::CompletionOnceCallback error_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_EQ(NOT_INITIALIZED, state_);
state_ = INITIALIZING;
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::OpenFileOnUIThread, runner_, url_,
base::BindOnce(&FileStreamWriter::OnOpenFileCompleted,
weak_ptr_factory_.GetWeakPtr(),
std::move(pending_closure),
std::move(error_callback))));
}
void FileStreamWriter::OnOpenFileCompleted(
base::OnceClosure pending_closure,
net::CompletionOnceCallback error_callback,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(state_ == INITIALIZING || state_ == CANCELLING);
if (state_ == CANCELLING)
return;
// In case of an error, return immediately using the |error_callback| of the
// Write() pending request.
if (result != base::File::FILE_OK) {
state_ = FAILED;
std::move(error_callback).Run(net::FileErrorToNetError(result));
return;
}
DCHECK_EQ(base::File::FILE_OK, result);
state_ = INITIALIZED;
// Run the task waiting for the initialization to be completed.
std::move(pending_closure).Run();
}
int FileStreamWriter::Write(net::IOBuffer* buffer,
int buffer_length,
net::CompletionOnceCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
TRACE_EVENT_NESTABLE_ASYNC_BEGIN1("file_system_provider",
"FileStreamWriter::Write", this,
"buffer_length", buffer_length);
write_callback_ = std::move(callback);
switch (state_) {
case NOT_INITIALIZED:
// Lazily initialize with the first call to Write().
Initialize(
base::BindOnce(&FileStreamWriter::WriteAfterInitialized,
weak_ptr_factory_.GetWeakPtr(),
base::WrapRefCounted(buffer), buffer_length,
base::BindOnce(&FileStreamWriter::OnWriteCompleted,
weak_ptr_factory_.GetWeakPtr())),
base::BindOnce(&FileStreamWriter::OnWriteCompleted,
weak_ptr_factory_.GetWeakPtr()));
break;
case INITIALIZING:
NOTREACHED();
case INITIALIZED:
WriteAfterInitialized(buffer, buffer_length,
base::BindOnce(&FileStreamWriter::OnWriteCompleted,
weak_ptr_factory_.GetWeakPtr()));
break;
case EXECUTING:
case FAILED:
case CANCELLING:
case FINALIZED:
NOTREACHED();
}
return net::ERR_IO_PENDING;
}
int FileStreamWriter::Cancel(net::CompletionOnceCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (state_ != INITIALIZING && state_ != EXECUTING)
return net::ERR_UNEXPECTED;
state_ = CANCELLING;
// Abort and optimistically return an OK result code, as the aborting
// operation is always forced and can't be cancelled. Similarly, for closing
// files.
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::CloseRunnerOnUIThread, runner_));
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), net::OK));
// If a write is in progress, mark it as completed.
TRACE_EVENT_NESTABLE_ASYNC_END0("file_system_provider",
"FileStreamWriter::Write", this);
return net::ERR_IO_PENDING;
}
int FileStreamWriter::Flush(storage::FlushMode flush_mode,
net::CompletionOnceCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_NE(CANCELLING, state_);
if (state_ == INITIALIZED && flush_mode == storage::FlushMode::kEndOfFile) {
state_ = EXECUTING;
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::FlushFileOnUIThread, runner_,
base::BindOnce(&FileStreamWriter::OnFlushFileCompleted,
weak_ptr_factory_.GetWeakPtr(),
std::move(callback))));
} else {
int result = net::OK;
// Flushing is a no-op for provided file systems before EOF or more than
// once after EOF.
switch (state_) {
case INITIALIZED:
case FINALIZED:
result = net::OK;
break;
default:
// TODO(b/291165362): on EOF flush, do a lazy open (same as write).
result = net::ERR_FAILED;
break;
}
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), result));
}
return net::ERR_IO_PENDING;
}
void FileStreamWriter::OnWriteFileCompleted(
int buffer_length,
net::CompletionOnceCallback callback,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(state_ == EXECUTING || state_ == CANCELLING);
if (state_ == CANCELLING)
return;
state_ = INITIALIZED;
if (result != base::File::FILE_OK) {
state_ = FAILED;
std::move(callback).Run(net::FileErrorToNetError(result));
return;
}
current_offset_ += buffer_length;
std::move(callback).Run(buffer_length);
}
void FileStreamWriter::OnWriteCompleted(int result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (state_ != CANCELLING)
std::move(write_callback_).Run(result);
TRACE_EVENT_NESTABLE_ASYNC_END0("file_system_provider",
"FileStreamWriter::Write", this);
}
void FileStreamWriter::OnFlushFileCompleted(
net::CompletionOnceCallback callback,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(state_ == EXECUTING || state_ == CANCELLING);
if (state_ == CANCELLING) {
return;
}
state_ = result == base::File::FILE_OK ? FINALIZED : FAILED;
std::move(callback).Run(net::FileErrorToNetError(result));
}
void FileStreamWriter::WriteAfterInitialized(
scoped_refptr<net::IOBuffer> buffer,
int buffer_length,
net::CompletionOnceCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(state_ == INITIALIZED || state_ == CANCELLING);
if (state_ == CANCELLING)
return;
state_ = EXECUTING;
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::WriteFileOnUIThread, runner_, buffer,
current_offset_, buffer_length,
base::BindOnce(&FileStreamWriter::OnWriteFileCompleted,
weak_ptr_factory_.GetWeakPtr(),
buffer_length, std::move(callback))));
}
} // namespace ash::file_system_provider
|