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 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
|
// 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_reader.h"
#include <memory>
#include <utility>
#include "base/files/file.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/memory/ref_counted.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 {
// Converts net::CompletionOnceCallback to net::Int64CompletionOnceCallback.
void Int64ToIntCompletionOnceCallback(net::CompletionOnceCallback callback,
int64_t result) {
std::move(callback).Run(static_cast<int>(result));
}
class FileStreamReader::OperationRunner
: public base::RefCountedThreadSafe<
FileStreamReader::OperationRunner,
content::BrowserThread::DeleteOnUIThread> {
public:
OperationRunner() : file_handle_(0) {}
OperationRunner(const OperationRunner&) = delete;
OperationRunner& operator=(const OperationRunner&) = delete;
// Opens a file for reading 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_path_ = parser.file_path();
file_opener_ = std::make_unique<ScopedFileOpener>(
parser.file_system(), parser.file_path(), OPEN_FILE_MODE_READ,
base::BindOnce(&OperationRunner::OnOpenFileCompletedOnUIThread, this,
std::move(callback)));
}
// Requests reading contents of a file. |callback| will always run eventually.
// It can be called many times, until |has_more| is set to false. This
// function guarantees that it will succeed only if the file has not been
// changed while reading. Must be called on UI thread.
void ReadFileOnUIThread(
scoped_refptr<net::IOBuffer> buffer,
int64_t offset,
int length,
ProvidedFileSystemInterface::ReadChunkReceivedCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(abort_callback_.is_null());
// If the file system got unmounted, then abort the reading operation.
if (!file_system_.get()) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(callback, 0, /*has_more=*/false,
base::File::FILE_ERROR_ABORT));
return;
}
abort_callback_ = file_system_->ReadFile(
file_handle_, buffer.get(), offset, length,
base::BindRepeating(&OperationRunner::OnReadFileCompletedOnUIThread,
this, callback));
}
// Requests metadata of a file. |callback| will always run eventually.
// Must be called on UI thread.
void GetMetadataOnUIThread(
ProvidedFileSystemInterface::GetMetadataCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(abort_callback_.is_null());
// If the file system got unmounted, then abort the get length operation.
if (!file_system_.get()) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(std::move(callback),
base::WrapUnique<EntryMetadata>(nullptr),
base::File::FILE_ERROR_ABORT));
return;
}
abort_callback_ = file_system_->GetMetadata(
file_path_,
ProvidedFileSystemInterface::METADATA_FIELD_SIZE |
ProvidedFileSystemInterface::METADATA_FIELD_MODIFICATION_TIME,
base::BindOnce(&OperationRunner::OnGetMetadataCompletedOnUIThread, 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 metadata to the IO thread.
void OnGetMetadataCompletedOnUIThread(
ProvidedFileSystemInterface::GetMetadataCallback callback,
std::unique_ptr<EntryMetadata> metadata,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
abort_callback_.Reset();
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback), std::move(metadata), result));
}
// Forwards a response of reading from a file to the IO thread.
void OnReadFileCompletedOnUIThread(
ProvidedFileSystemInterface::ReadChunkReceivedCallback
chunk_received_callback,
int chunk_length,
bool has_more,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (!has_more)
abort_callback_.Reset();
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(chunk_received_callback, chunk_length,
has_more, result));
}
AbortCallback abort_callback_;
base::WeakPtr<ProvidedFileSystemInterface> file_system_;
base::FilePath file_path_;
std::unique_ptr<ScopedFileOpener> file_opener_;
int file_handle_;
};
FileStreamReader::FileStreamReader(storage::FileSystemContext* context,
const storage::FileSystemURL& url,
int64_t initial_offset,
const base::Time& expected_modification_time)
: url_(url),
current_offset_(initial_offset),
current_length_(0),
expected_modification_time_(expected_modification_time),
runner_(new OperationRunner),
state_(NOT_INITIALIZED) {}
FileStreamReader::~FileStreamReader() {
// FileStreamReader doesn't have a Cancel() method like in FileStreamWriter.
// Therefore, aborting and/or closing an opened file is done from the
// destructor.
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::CloseRunnerOnUIThread, runner_));
// If a read is in progress, mark it as completed.
TRACE_EVENT_NESTABLE_ASYNC_END0("file_system_provider",
"FileStreamReader::Read", this);
}
void FileStreamReader::Initialize(
base::OnceClosure pending_closure,
net::Int64CompletionOnceCallback error_callback) {
DCHECK_EQ(NOT_INITIALIZED, state_);
state_ = INITIALIZING;
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::OpenFileOnUIThread, runner_, url_,
base::BindOnce(&FileStreamReader::OnOpenFileCompleted,
weak_ptr_factory_.GetWeakPtr(),
std::move(pending_closure),
std::move(error_callback))));
}
void FileStreamReader::OnOpenFileCompleted(
base::OnceClosure pending_closure,
net::Int64CompletionOnceCallback error_callback,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_EQ(INITIALIZING, state_);
// In case of an error, return immediately using the |error_callback| of the
// Read() or GetLength() 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);
// Verify the last modification time.
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&OperationRunner::GetMetadataOnUIThread, runner_,
base::BindOnce(&FileStreamReader::OnInitializeCompleted,
weak_ptr_factory_.GetWeakPtr(),
std::move(pending_closure),
std::move(error_callback))));
}
void FileStreamReader::OnInitializeCompleted(
base::OnceClosure pending_closure,
net::Int64CompletionOnceCallback error_callback,
std::unique_ptr<EntryMetadata> metadata,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_EQ(INITIALIZING, state_);
// In case of an error, abort.
if (result != base::File::FILE_OK) {
state_ = FAILED;
std::move(error_callback).Run(net::FileErrorToNetError(result));
return;
}
// If the file modification time has changed, then abort. Note, that the file
// may be changed without affecting the modification time.
DCHECK(metadata.get());
if (!expected_modification_time_.is_null() &&
*metadata->modification_time != expected_modification_time_) {
state_ = FAILED;
std::move(error_callback).Run(net::ERR_UPLOAD_FILE_CHANGED);
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 FileStreamReader::Read(net::IOBuffer* buffer,
int buffer_length,
net::CompletionOnceCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
TRACE_EVENT_NESTABLE_ASYNC_BEGIN1("file_system_provider",
"FileStreamReader::Read", this,
"buffer_length", buffer_length);
read_callback_ = std::move(callback);
switch (state_) {
case NOT_INITIALIZED:
// Lazily initialize with the first call to Read().
Initialize(
base::BindOnce(&FileStreamReader::ReadAfterInitialized,
weak_ptr_factory_.GetWeakPtr(),
base::WrapRefCounted(buffer), buffer_length,
base::BindRepeating(&FileStreamReader::OnReadCompleted,
weak_ptr_factory_.GetWeakPtr())),
base::BindOnce(&Int64ToIntCompletionOnceCallback,
base::BindOnce(&FileStreamReader::OnReadCompleted,
weak_ptr_factory_.GetWeakPtr())));
break;
case INITIALIZING:
NOTREACHED();
case INITIALIZED:
ReadAfterInitialized(
buffer, buffer_length,
base::BindRepeating(&FileStreamReader::OnReadCompleted,
weak_ptr_factory_.GetWeakPtr()));
break;
case FAILED:
NOTREACHED();
}
return net::ERR_IO_PENDING;
}
void FileStreamReader::OnReadCompleted(int result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
std::move(read_callback_).Run(static_cast<int>(result));
TRACE_EVENT_NESTABLE_ASYNC_END0("file_system_provider",
"FileStreamReader::Read", this);
}
int64_t FileStreamReader::GetLength(net::Int64CompletionOnceCallback callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
get_length_callback_ = std::move(callback);
switch (state_) {
case NOT_INITIALIZED:
// Lazily initialize with the first call to GetLength().
Initialize(base::BindOnce(&FileStreamReader::GetLengthAfterInitialized,
weak_ptr_factory_.GetWeakPtr()),
base::BindOnce(&FileStreamReader::OnGetLengthCompleted,
weak_ptr_factory_.GetWeakPtr()));
break;
case INITIALIZING:
NOTREACHED();
case INITIALIZED:
GetLengthAfterInitialized();
break;
case FAILED:
NOTREACHED();
}
return net::ERR_IO_PENDING;
}
void FileStreamReader::OnGetLengthCompleted(int64_t result) {
std::move(get_length_callback_).Run(result);
}
void FileStreamReader::ReadAfterInitialized(
scoped_refptr<net::IOBuffer> buffer,
int buffer_length,
const net::CompletionRepeatingCallback& callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_EQ(INITIALIZED, state_);
current_length_ = 0;
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(&OperationRunner::ReadFileOnUIThread, runner_,
buffer, current_offset_, buffer_length,
base::BindRepeating(
&FileStreamReader::OnReadChunkReceived,
weak_ptr_factory_.GetWeakPtr(), callback)));
}
void FileStreamReader::GetLengthAfterInitialized() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_EQ(INITIALIZED, state_);
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(
&OperationRunner::GetMetadataOnUIThread, runner_,
base::BindOnce(&FileStreamReader::OnGetMetadataForGetLengthReceived,
weak_ptr_factory_.GetWeakPtr())));
}
void FileStreamReader::OnReadChunkReceived(
const net::CompletionRepeatingCallback& callback,
int chunk_length,
bool has_more,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_EQ(INITIALIZED, state_);
current_length_ += chunk_length;
// If this is the last chunk with a success, then finalize.
if (!has_more && result == base::File::FILE_OK) {
current_offset_ += current_length_;
callback.Run(current_length_);
return;
}
// In case of an error, abort.
if (result != base::File::FILE_OK) {
DCHECK(!has_more);
state_ = FAILED;
callback.Run(net::FileErrorToNetError(result));
return;
}
// More data is about to come, so do not call the callback yet.
DCHECK(has_more);
}
void FileStreamReader::OnGetMetadataForGetLengthReceived(
std::unique_ptr<EntryMetadata> metadata,
base::File::Error result) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK_EQ(INITIALIZED, state_);
// In case of an error, abort.
if (result != base::File::FILE_OK) {
state_ = FAILED;
std::move(get_length_callback_).Run(net::FileErrorToNetError(result));
return;
}
// If the file modification time has changed, then abort. Note, that the file
// may be changed without affecting the modification time.
DCHECK(metadata.get());
if (!expected_modification_time_.is_null() &&
*metadata->modification_time != expected_modification_time_) {
std::move(get_length_callback_).Run(net::ERR_UPLOAD_FILE_CHANGED);
return;
}
DCHECK_EQ(base::File::FILE_OK, result);
std::move(get_length_callback_).Run(*metadata->size);
}
} // namespace ash::file_system_provider
|