Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Unified Diff: chrome/browser/chromeos/drive/fake_file_system.cc

Issue 1314803004: Move chrome/browser/chromeos/drive/file_system.cc (+deps) into components/drive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/drive/fake_file_system.cc
diff --git a/chrome/browser/chromeos/drive/fake_file_system.cc b/chrome/browser/chromeos/drive/fake_file_system.cc
deleted file mode 100644
index 3c52fedf021f172d93622e9127ea2d32f57af95e..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/drive/fake_file_system.cc
+++ /dev/null
@@ -1,420 +0,0 @@
-// Copyright (c) 2013 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 "chrome/browser/chromeos/drive/fake_file_system.h"
-
-#include "base/bind.h"
-#include "base/bind_helpers.h"
-#include "base/callback.h"
-#include "base/files/file_path.h"
-#include "base/files/file_util.h"
-#include "base/logging.h"
-#include "components/drive/drive.pb.h"
-#include "components/drive/file_errors.h"
-#include "components/drive/file_system_core_util.h"
-#include "components/drive/resource_entry_conversion.h"
-#include "components/drive/service/drive_service_interface.h"
-#include "content/public/browser/browser_thread.h"
-#include "google_apis/drive/drive_api_parser.h"
-
-namespace drive {
-namespace test_util {
-
-using content::BrowserThread;
-
-FakeFileSystem::FakeFileSystem(DriveServiceInterface* drive_service)
- : drive_service_(drive_service),
- weak_ptr_factory_(this) {
- CHECK(cache_dir_.CreateUniqueTempDir());
-}
-
-FakeFileSystem::~FakeFileSystem() {
-}
-
-void FakeFileSystem::AddObserver(FileSystemObserver* observer) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::RemoveObserver(FileSystemObserver* observer) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::CheckForUpdates() {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::TransferFileFromLocalToRemote(
- const base::FilePath& local_src_file_path,
- const base::FilePath& remote_dest_file_path,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::OpenFile(const base::FilePath& file_path,
- OpenMode open_mode,
- const std::string& mime_type,
- const OpenFileCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::Copy(const base::FilePath& src_file_path,
- const base::FilePath& dest_file_path,
- bool preserve_last_modified,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::Move(const base::FilePath& src_file_path,
- const base::FilePath& dest_file_path,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::Remove(const base::FilePath& file_path,
- bool is_recursive,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::CreateDirectory(
- const base::FilePath& directory_path,
- bool is_exclusive,
- bool is_recursive,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::CreateFile(const base::FilePath& file_path,
- bool is_exclusive,
- const std::string& mime_type,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::TouchFile(const base::FilePath& file_path,
- const base::Time& last_access_time,
- const base::Time& last_modified_time,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::TruncateFile(const base::FilePath& file_path,
- int64 length,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::Pin(const base::FilePath& file_path,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::Unpin(const base::FilePath& file_path,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::GetFile(const base::FilePath& file_path,
- const GetFileCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::GetFileForSaving(const base::FilePath& file_path,
- const GetFileCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-base::Closure FakeFileSystem::GetFileContent(
- const base::FilePath& file_path,
- const GetFileContentInitializedCallback& initialized_callback,
- const google_apis::GetContentCallback& get_content_callback,
- const FileOperationCallback& completion_callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-
- GetResourceEntry(
- file_path,
- base::Bind(&FakeFileSystem::GetFileContentAfterGetResourceEntry,
- weak_ptr_factory_.GetWeakPtr(),
- initialized_callback, get_content_callback,
- completion_callback));
- return base::Bind(&base::DoNothing);
-}
-
-void FakeFileSystem::GetResourceEntry(
- const base::FilePath& file_path,
- const GetResourceEntryCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-
- if (file_path == util::GetDriveMyDriveRootPath()) {
- // Specialized for the root entry.
- drive_service_->GetAboutResource(
- base::Bind(
- &FakeFileSystem::GetResourceEntryAfterGetAboutResource,
- weak_ptr_factory_.GetWeakPtr(), callback));
- return;
- }
-
- // Now, we only support files under my drive.
- DCHECK(util::GetDriveMyDriveRootPath().IsParent(file_path));
- GetResourceEntry(
- file_path.DirName(),
- base::Bind(
- &FakeFileSystem::GetResourceEntryAfterGetParentEntryInfo,
- weak_ptr_factory_.GetWeakPtr(), file_path.BaseName(), callback));
-}
-
-void FakeFileSystem::ReadDirectory(
- const base::FilePath& file_path,
- const ReadDirectoryEntriesCallback& entries_callback,
- const FileOperationCallback& completion_callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::Search(const std::string& search_query,
- const GURL& next_link,
- const SearchCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::SearchMetadata(
- const std::string& query,
- int options,
- int at_most_num_matches,
- const SearchMetadataCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::SearchByHashes(const std::set<std::string>& hashes,
- const SearchByHashesCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::GetAvailableSpace(
- const GetAvailableSpaceCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::GetShareUrl(
- const base::FilePath& file_path,
- const GURL& embed_origin,
- const GetShareUrlCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::GetMetadata(
- const GetFilesystemMetadataCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::MarkCacheFileAsMounted(
- const base::FilePath& drive_file_path,
- const MarkMountedCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::MarkCacheFileAsUnmounted(
- const base::FilePath& cache_file_path,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::AddPermission(const base::FilePath& drive_file_path,
- const std::string& email,
- google_apis::drive::PermissionRole role,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::SetProperty(
- const base::FilePath& drive_file_path,
- google_apis::drive::Property::Visibility visibility,
- const std::string& key,
- const std::string& value,
- const FileOperationCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::Reset(const FileOperationCallback& callback) {
-}
-
-void FakeFileSystem::GetPathFromResourceId(
- const std::string& resource_id,
- const GetFilePathCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::FreeDiskSpaceIfNeededFor(
- int64 num_bytes,
- const FreeDiskSpaceCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-void FakeFileSystem::CalculateEvictableCacheSize(
- const EvictableCacheSizeCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-}
-
-// Implementation of GetFileContent.
-void FakeFileSystem::GetFileContentAfterGetResourceEntry(
- const GetFileContentInitializedCallback& initialized_callback,
- const google_apis::GetContentCallback& get_content_callback,
- const FileOperationCallback& completion_callback,
- FileError error,
- scoped_ptr<ResourceEntry> entry) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-
- if (error != FILE_ERROR_OK) {
- completion_callback.Run(error);
- return;
- }
- DCHECK(entry);
-
- // We're only interested in a file.
- if (entry->file_info().is_directory()) {
- completion_callback.Run(FILE_ERROR_NOT_A_FILE);
- return;
- }
-
- // Fetch google_apis::FileResource for its |download_url|.
- drive_service_->GetFileResource(
- entry->resource_id(),
- base::Bind(
- &FakeFileSystem::GetFileContentAfterGetFileResource,
- weak_ptr_factory_.GetWeakPtr(),
- initialized_callback,
- get_content_callback,
- completion_callback));
-}
-
-void FakeFileSystem::GetFileContentAfterGetFileResource(
- const GetFileContentInitializedCallback& initialized_callback,
- const google_apis::GetContentCallback& get_content_callback,
- const FileOperationCallback& completion_callback,
- google_apis::DriveApiErrorCode gdata_error,
- scoped_ptr<google_apis::FileResource> gdata_entry) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-
- FileError error = GDataToFileError(gdata_error);
- if (error != FILE_ERROR_OK) {
- completion_callback.Run(error);
- return;
- }
- DCHECK(gdata_entry);
-
- scoped_ptr<ResourceEntry> entry(new ResourceEntry);
- std::string parent_resource_id;
- bool converted = ConvertFileResourceToResourceEntry(
- *gdata_entry, entry.get(), &parent_resource_id);
- DCHECK(converted);
- entry->set_parent_local_id(parent_resource_id);
-
- base::FilePath cache_path =
- cache_dir_.path().AppendASCII(entry->resource_id());
- if (entry->file_specific_info().is_hosted_document()) {
- // For hosted documents return a dummy cache without server request.
- int result = base::WriteFile(cache_path, "", 0);
- DCHECK_EQ(0, result);
- }
- if (base::PathExists(cache_path)) {
- // Cache file is found.
- initialized_callback.Run(FILE_ERROR_OK, cache_path, entry.Pass());
- completion_callback.Run(FILE_ERROR_OK);
- return;
- }
-
- initialized_callback.Run(FILE_ERROR_OK, base::FilePath(), entry.Pass());
- drive_service_->DownloadFile(
- cache_path,
- gdata_entry->file_id(),
- base::Bind(&FakeFileSystem::GetFileContentAfterDownloadFile,
- weak_ptr_factory_.GetWeakPtr(),
- completion_callback),
- get_content_callback,
- google_apis::ProgressCallback());
-}
-
-void FakeFileSystem::GetFileContentAfterDownloadFile(
- const FileOperationCallback& completion_callback,
- google_apis::DriveApiErrorCode gdata_error,
- const base::FilePath& temp_file) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
- completion_callback.Run(GDataToFileError(gdata_error));
-}
-
-// Implementation of GetResourceEntry.
-void FakeFileSystem::GetResourceEntryAfterGetAboutResource(
- const GetResourceEntryCallback& callback,
- google_apis::DriveApiErrorCode gdata_error,
- scoped_ptr<google_apis::AboutResource> about_resource) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-
- FileError error = GDataToFileError(gdata_error);
- if (error != FILE_ERROR_OK) {
- callback.Run(error, scoped_ptr<ResourceEntry>());
- return;
- }
-
- DCHECK(about_resource);
- scoped_ptr<ResourceEntry> root(new ResourceEntry);
- root->mutable_file_info()->set_is_directory(true);
- root->set_resource_id(about_resource->root_folder_id());
- root->set_title(util::kDriveMyDriveRootDirName);
- callback.Run(error, root.Pass());
-}
-
-void FakeFileSystem::GetResourceEntryAfterGetParentEntryInfo(
- const base::FilePath& base_name,
- const GetResourceEntryCallback& callback,
- FileError error,
- scoped_ptr<ResourceEntry> parent_entry) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-
- if (error != FILE_ERROR_OK) {
- callback.Run(error, scoped_ptr<ResourceEntry>());
- return;
- }
-
- DCHECK(parent_entry);
- drive_service_->GetFileListInDirectory(
- parent_entry->resource_id(),
- base::Bind(
- &FakeFileSystem::GetResourceEntryAfterGetFileList,
- weak_ptr_factory_.GetWeakPtr(), base_name, callback));
-}
-
-void FakeFileSystem::GetResourceEntryAfterGetFileList(
- const base::FilePath& base_name,
- const GetResourceEntryCallback& callback,
- google_apis::DriveApiErrorCode gdata_error,
- scoped_ptr<google_apis::FileList> file_list) {
- DCHECK_CURRENTLY_ON(BrowserThread::UI);
-
- FileError error = GDataToFileError(gdata_error);
- if (error != FILE_ERROR_OK) {
- callback.Run(error, scoped_ptr<ResourceEntry>());
- return;
- }
-
- DCHECK(file_list);
- const ScopedVector<google_apis::FileResource>& entries = file_list->items();
- for (size_t i = 0; i < entries.size(); ++i) {
- scoped_ptr<ResourceEntry> entry(new ResourceEntry);
- std::string parent_resource_id;
- bool converted = ConvertFileResourceToResourceEntry(
- *entries[i], entry.get(), &parent_resource_id);
- DCHECK(converted);
- entry->set_parent_local_id(parent_resource_id);
-
- if (entry->base_name() == base_name.AsUTF8Unsafe()) {
- // Found the target entry.
- callback.Run(FILE_ERROR_OK, entry.Pass());
- return;
- }
- }
-
- callback.Run(FILE_ERROR_NOT_FOUND, scoped_ptr<ResourceEntry>());
-}
-
-} // namespace test_util
-} // namespace drive
« no previous file with comments | « chrome/browser/chromeos/drive/fake_file_system.h ('k') | chrome/browser/chromeos/drive/fake_file_system_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698