summaryrefslogtreecommitdiffstats
path: root/chromium/net/base/file_stream_context.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/base/file_stream_context.cc')
-rw-r--r--chromium/net/base/file_stream_context.cc197
1 files changed, 69 insertions, 128 deletions
diff --git a/chromium/net/base/file_stream_context.cc b/chromium/net/base/file_stream_context.cc
index e7fe100df27..fbfe5368dd8 100644
--- a/chromium/net/base/file_stream_context.cc
+++ b/chromium/net/base/file_stream_context.cc
@@ -4,26 +4,28 @@
#include "net/base/file_stream_context.h"
+#include "base/files/file_path.h"
#include "base/location.h"
#include "base/message_loop/message_loop_proxy.h"
+#include "base/task_runner.h"
#include "base/task_runner_util.h"
#include "base/threading/thread_restrictions.h"
-#include "net/base/file_stream_net_log_parameters.h"
+#include "base/values.h"
#include "net/base/net_errors.h"
#if defined(OS_ANDROID)
#include "base/android/content_uri_utils.h"
#endif
+namespace net {
+
namespace {
-void CallInt64ToInt(const net::CompletionCallback& callback, int64 result) {
+void CallInt64ToInt(const CompletionCallback& callback, int64 result) {
callback.Run(static_cast<int>(result));
}
-}
-
-namespace net {
+} // namespace
FileStream::Context::IOResult::IOResult()
: result(OK),
@@ -41,27 +43,42 @@ FileStream::Context::IOResult FileStream::Context::IOResult::FromOSError(
return IOResult(MapSystemError(os_error), os_error);
}
-FileStream::Context::OpenResult::OpenResult()
- : file(base::kInvalidPlatformFileValue) {
+// ---------------------------------------------------------------------
+
+FileStream::Context::OpenResult::OpenResult() {
}
-FileStream::Context::OpenResult::OpenResult(base::PlatformFile file,
+FileStream::Context::OpenResult::OpenResult(base::File file,
IOResult error_code)
- : file(file),
+ : file(file.Pass()),
error_code(error_code) {
}
+FileStream::Context::OpenResult::OpenResult(RValue other)
+ : file(other.object->file.Pass()),
+ error_code(other.object->error_code) {
+}
+
+FileStream::Context::OpenResult& FileStream::Context::OpenResult::operator=(
+ RValue other) {
+ if (this != other.object) {
+ file = other.object->file.Pass();
+ error_code = other.object->error_code;
+ }
+ return *this;
+}
+
+// ---------------------------------------------------------------------
+
void FileStream::Context::Orphan() {
DCHECK(!orphaned_);
orphaned_ = true;
- if (file_ != base::kInvalidPlatformFileValue)
- bound_net_log_.EndEvent(NetLog::TYPE_FILE_STREAM_OPEN);
if (!async_in_progress_) {
CloseAndDelete();
- } else if (file_ != base::kInvalidPlatformFileValue) {
- CancelIo(file_);
+ } else if (file_.IsValid()) {
+ CancelIo(file_.GetPlatformFile());
}
}
@@ -70,9 +87,7 @@ void FileStream::Context::OpenAsync(const base::FilePath& path,
const CompletionCallback& callback) {
DCHECK(!async_in_progress_);
- BeginOpenEvent(path);
-
- const bool posted = base::PostTaskAndReplyWithResult(
+ bool posted = base::PostTaskAndReplyWithResult(
task_runner_.get(),
FROM_HERE,
base::Bind(
@@ -83,42 +98,15 @@ void FileStream::Context::OpenAsync(const base::FilePath& path,
async_in_progress_ = true;
}
-int FileStream::Context::OpenSync(const base::FilePath& path, int open_flags) {
- DCHECK(!async_in_progress_);
-
- BeginOpenEvent(path);
- OpenResult result = OpenFileImpl(path, open_flags);
- file_ = result.file;
- if (file_ == base::kInvalidPlatformFileValue) {
- ProcessOpenError(result.error_code);
- } else {
- // TODO(satorux): Remove this once all async clients are migrated to use
- // Open(). crbug.com/114783
- if (open_flags & base::PLATFORM_FILE_ASYNC)
- OnAsyncFileOpened();
- }
- return result.error_code.result;
-}
-
-void FileStream::Context::CloseSync() {
- DCHECK(!async_in_progress_);
- if (file_ != base::kInvalidPlatformFileValue) {
- base::ClosePlatformFile(file_);
- file_ = base::kInvalidPlatformFileValue;
- bound_net_log_.EndEvent(NetLog::TYPE_FILE_STREAM_OPEN);
- }
-}
-
void FileStream::Context::CloseAsync(const CompletionCallback& callback) {
DCHECK(!async_in_progress_);
- const bool posted = base::PostTaskAndReplyWithResult(
+ bool posted = base::PostTaskAndReplyWithResult(
task_runner_.get(),
FROM_HERE,
base::Bind(&Context::CloseFileImpl, base::Unretained(this)),
- base::Bind(&Context::ProcessAsyncResult,
+ base::Bind(&Context::OnAsyncCompleted,
base::Unretained(this),
- IntToInt64(callback),
- FILE_ERROR_SOURCE_CLOSE));
+ IntToInt64(callback)));
DCHECK(posted);
async_in_progress_ = true;
@@ -129,80 +117,46 @@ void FileStream::Context::SeekAsync(Whence whence,
const Int64CompletionCallback& callback) {
DCHECK(!async_in_progress_);
- const bool posted = base::PostTaskAndReplyWithResult(
+ bool posted = base::PostTaskAndReplyWithResult(
task_runner_.get(),
FROM_HERE,
base::Bind(
&Context::SeekFileImpl, base::Unretained(this), whence, offset),
- base::Bind(&Context::ProcessAsyncResult,
+ base::Bind(&Context::OnAsyncCompleted,
base::Unretained(this),
- callback,
- FILE_ERROR_SOURCE_SEEK));
+ callback));
DCHECK(posted);
async_in_progress_ = true;
}
-int64 FileStream::Context::SeekSync(Whence whence, int64 offset) {
- IOResult result = SeekFileImpl(whence, offset);
- RecordError(result, FILE_ERROR_SOURCE_SEEK);
- return result.result;
-}
-
void FileStream::Context::FlushAsync(const CompletionCallback& callback) {
DCHECK(!async_in_progress_);
- const bool posted = base::PostTaskAndReplyWithResult(
+ bool posted = base::PostTaskAndReplyWithResult(
task_runner_.get(),
FROM_HERE,
base::Bind(&Context::FlushFileImpl, base::Unretained(this)),
- base::Bind(&Context::ProcessAsyncResult,
+ base::Bind(&Context::OnAsyncCompleted,
base::Unretained(this),
- IntToInt64(callback),
- FILE_ERROR_SOURCE_FLUSH));
+ IntToInt64(callback)));
DCHECK(posted);
async_in_progress_ = true;
}
-int FileStream::Context::FlushSync() {
- IOResult result = FlushFileImpl();
- RecordError(result, FILE_ERROR_SOURCE_FLUSH);
- return result.result;
-}
-
-void FileStream::Context::RecordError(const IOResult& result,
- FileErrorSource source) const {
- if (result.result >= 0) {
- // |result| is not an error.
- return;
- }
-
- if (!orphaned_) {
- bound_net_log_.AddEvent(
- NetLog::TYPE_FILE_STREAM_ERROR,
- base::Bind(&NetLogFileStreamErrorCallback,
- source, result.os_error,
- static_cast<net::Error>(result.result)));
- }
-
- RecordFileError(result.os_error, source, record_uma_);
-}
-
-void FileStream::Context::BeginOpenEvent(const base::FilePath& path) {
- std::string file_name = path.AsUTF8Unsafe();
- bound_net_log_.BeginEvent(NetLog::TYPE_FILE_STREAM_OPEN,
- NetLog::StringCallback("file_name", &file_name));
-}
-
FileStream::Context::OpenResult FileStream::Context::OpenFileImpl(
const base::FilePath& path, int open_flags) {
- base::PlatformFile file;
+#if defined(OS_POSIX)
+ // Always use blocking IO.
+ open_flags &= ~base::File::FLAG_ASYNC;
+#endif
+ base::File file;
#if defined(OS_ANDROID)
if (path.IsContentUri()) {
// Check that only Read flags are set.
- DCHECK_EQ(open_flags & ~base::PLATFORM_FILE_ASYNC,
- base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ);
+ DCHECK_EQ(open_flags & ~base::File::FLAG_ASYNC,
+ base::File::FLAG_OPEN | base::File::FLAG_READ);
file = base::OpenContentUriForRead(path);
} else {
#endif // defined(OS_ANDROID)
@@ -210,67 +164,55 @@ FileStream::Context::OpenResult FileStream::Context::OpenFileImpl(
// independently from FileStream's destructor. It can cause problems for
// users wanting to delete the file right after FileStream deletion. Thus
// we are always adding SHARE_DELETE flag to accommodate such use case.
- open_flags |= base::PLATFORM_FILE_SHARE_DELETE;
- file = base::CreatePlatformFile(path, open_flags, NULL, NULL);
+ // TODO(rvargas): This sounds like a bug, as deleting the file would
+ // presumably happen on the wrong thread. There should be an async delete.
+ open_flags |= base::File::FLAG_SHARE_DELETE;
+ file.Initialize(path, open_flags);
#if defined(OS_ANDROID)
}
#endif // defined(OS_ANDROID)
- if (file == base::kInvalidPlatformFileValue)
- return OpenResult(file, IOResult::FromOSError(GetLastErrno()));
+ if (!file.IsValid())
+ return OpenResult(base::File(), IOResult::FromOSError(GetLastErrno()));
- return OpenResult(file, IOResult(OK, 0));
+ return OpenResult(file.Pass(), IOResult(OK, 0));
}
-void FileStream::Context::ProcessOpenError(const IOResult& error_code) {
- bound_net_log_.EndEvent(NetLog::TYPE_FILE_STREAM_OPEN);
- RecordError(error_code, FILE_ERROR_SOURCE_OPEN);
+FileStream::Context::IOResult FileStream::Context::CloseFileImpl() {
+ file_.Close();
+ return IOResult(OK, 0);
}
void FileStream::Context::OnOpenCompleted(const CompletionCallback& callback,
OpenResult open_result) {
- file_ = open_result.file;
- if (file_ == base::kInvalidPlatformFileValue)
- ProcessOpenError(open_result.error_code);
- else if (!orphaned_)
+ file_ = open_result.file.Pass();
+ if (file_.IsValid() && !orphaned_)
OnAsyncFileOpened();
- OnAsyncCompleted(IntToInt64(callback), open_result.error_code.result);
+
+ OnAsyncCompleted(IntToInt64(callback), open_result.error_code);
}
void FileStream::Context::CloseAndDelete() {
DCHECK(!async_in_progress_);
- if (file_ == base::kInvalidPlatformFileValue) {
- delete this;
- } else {
- const bool posted = task_runner_->PostTaskAndReply(
+ if (file_.IsValid()) {
+ bool posted = task_runner_.get()->PostTask(
FROM_HERE,
- base::Bind(base::IgnoreResult(&base::ClosePlatformFile), file_),
- base::Bind(&Context::OnCloseCompleted, base::Unretained(this)));
+ base::Bind(base::IgnoreResult(&Context::CloseFileImpl),
+ base::Owned(this)));
DCHECK(posted);
- file_ = base::kInvalidPlatformFileValue;
+ } else {
+ delete this;
}
}
-void FileStream::Context::OnCloseCompleted() {
- delete this;
-}
-
Int64CompletionCallback FileStream::Context::IntToInt64(
const CompletionCallback& callback) {
return base::Bind(&CallInt64ToInt, callback);
}
-void FileStream::Context::ProcessAsyncResult(
- const Int64CompletionCallback& callback,
- FileErrorSource source,
- const IOResult& result) {
- RecordError(result, source);
- OnAsyncCompleted(callback, result.result);
-}
-
void FileStream::Context::OnAsyncCompleted(
const Int64CompletionCallback& callback,
- int64 result) {
+ const IOResult& result) {
// Reset this before Run() as Run() may issue a new async operation. Also it
// should be reset before CloseAsync() because it shouldn't run if any async
// operation is in progress.
@@ -278,8 +220,7 @@ void FileStream::Context::OnAsyncCompleted(
if (orphaned_)
CloseAndDelete();
else
- callback.Run(result);
+ callback.Run(result.result);
}
} // namespace net
-