| // Copyright 2020 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. |
| |
| #include "components/services/storage/sandboxed_vfs_delegate.h" |
| |
| #include <cstdint> |
| #include <utility> |
| |
| #include "base/files/file.h" |
| #include "base/files/file_error_or.h" |
| #include "base/files/file_path.h" |
| #include "components/services/storage/public/cpp/filesystem/filesystem_proxy.h" |
| #include "third_party/abseil-cpp/absl/types/optional.h" |
| |
| namespace storage { |
| |
| SandboxedVfsDelegate::SandboxedVfsDelegate( |
| std::unique_ptr<FilesystemProxy> filesystem) |
| : filesystem_(std::move(filesystem)) {} |
| |
| SandboxedVfsDelegate::~SandboxedVfsDelegate() = default; |
| |
| base::File SandboxedVfsDelegate::OpenFile(const base::FilePath& file_path, |
| int sqlite_requested_flags) { |
| base::FileErrorOr<base::File> result = filesystem_->OpenFile( |
| file_path, base::File::FLAG_OPEN_ALWAYS | base::File::FLAG_READ | |
| base::File::FLAG_WRITE); |
| if (result.is_error()) |
| return base::File(); |
| return std::move(result.value()); |
| } |
| |
| int SandboxedVfsDelegate::DeleteFile(const base::FilePath& file_path, |
| bool sync_dir) { |
| if (!filesystem_->DeleteFile(file_path)) |
| return SQLITE_IOERR_DELETE; |
| return SQLITE_OK; |
| } |
| |
| absl::optional<sql::SandboxedVfs::PathAccessInfo> |
| SandboxedVfsDelegate::GetPathAccess(const base::FilePath& file_path) { |
| absl::optional<FilesystemProxy::PathAccessInfo> info = |
| filesystem_->GetPathAccess(file_path); |
| if (!info) |
| return absl::nullopt; |
| |
| sql::SandboxedVfs::PathAccessInfo access; |
| access.can_read = info->can_read; |
| access.can_write = info->can_write; |
| return access; |
| } |
| |
| bool SandboxedVfsDelegate::SetFileLength(const base::FilePath& file_path, |
| base::File& file, |
| size_t size) { |
| return filesystem_->SetOpenedFileLength(&file, static_cast<uint64_t>(size)); |
| } |
| |
| } // namespace storage |