Check USB device path access when prompting users to select a device.
[chromium-blink-merge.git] / chrome / browser / chromeos / drive / fake_file_system.cc
blob3017d8cf08b0b3ec0ece685f46b2edf23f5c9cad
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/chromeos/drive/fake_file_system.h"
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/callback.h"
10 #include "base/files/file_path.h"
11 #include "base/files/file_util.h"
12 #include "base/logging.h"
13 #include "chrome/browser/chromeos/drive/drive.pb.h"
14 #include "chrome/browser/chromeos/drive/file_errors.h"
15 #include "chrome/browser/chromeos/drive/file_system_util.h"
16 #include "chrome/browser/chromeos/drive/resource_entry_conversion.h"
17 #include "chrome/browser/drive/drive_service_interface.h"
18 #include "content/public/browser/browser_thread.h"
19 #include "google_apis/drive/drive_api_parser.h"
21 namespace drive {
22 namespace test_util {
24 using content::BrowserThread;
26 FakeFileSystem::FakeFileSystem(DriveServiceInterface* drive_service)
27 : drive_service_(drive_service),
28 weak_ptr_factory_(this) {
29 CHECK(cache_dir_.CreateUniqueTempDir());
32 FakeFileSystem::~FakeFileSystem() {
35 void FakeFileSystem::AddObserver(FileSystemObserver* observer) {
36 DCHECK_CURRENTLY_ON(BrowserThread::UI);
39 void FakeFileSystem::RemoveObserver(FileSystemObserver* observer) {
40 DCHECK_CURRENTLY_ON(BrowserThread::UI);
43 void FakeFileSystem::CheckForUpdates() {
44 DCHECK_CURRENTLY_ON(BrowserThread::UI);
47 void FakeFileSystem::TransferFileFromLocalToRemote(
48 const base::FilePath& local_src_file_path,
49 const base::FilePath& remote_dest_file_path,
50 const FileOperationCallback& callback) {
51 DCHECK_CURRENTLY_ON(BrowserThread::UI);
54 void FakeFileSystem::OpenFile(const base::FilePath& file_path,
55 OpenMode open_mode,
56 const std::string& mime_type,
57 const OpenFileCallback& callback) {
58 DCHECK_CURRENTLY_ON(BrowserThread::UI);
61 void FakeFileSystem::Copy(const base::FilePath& src_file_path,
62 const base::FilePath& dest_file_path,
63 bool preserve_last_modified,
64 const FileOperationCallback& callback) {
65 DCHECK_CURRENTLY_ON(BrowserThread::UI);
68 void FakeFileSystem::Move(const base::FilePath& src_file_path,
69 const base::FilePath& dest_file_path,
70 const FileOperationCallback& callback) {
71 DCHECK_CURRENTLY_ON(BrowserThread::UI);
74 void FakeFileSystem::Remove(const base::FilePath& file_path,
75 bool is_recursive,
76 const FileOperationCallback& callback) {
77 DCHECK_CURRENTLY_ON(BrowserThread::UI);
80 void FakeFileSystem::CreateDirectory(
81 const base::FilePath& directory_path,
82 bool is_exclusive,
83 bool is_recursive,
84 const FileOperationCallback& callback) {
85 DCHECK_CURRENTLY_ON(BrowserThread::UI);
88 void FakeFileSystem::CreateFile(const base::FilePath& file_path,
89 bool is_exclusive,
90 const std::string& mime_type,
91 const FileOperationCallback& callback) {
92 DCHECK_CURRENTLY_ON(BrowserThread::UI);
95 void FakeFileSystem::TouchFile(const base::FilePath& file_path,
96 const base::Time& last_access_time,
97 const base::Time& last_modified_time,
98 const FileOperationCallback& callback) {
99 DCHECK_CURRENTLY_ON(BrowserThread::UI);
102 void FakeFileSystem::TruncateFile(const base::FilePath& file_path,
103 int64 length,
104 const FileOperationCallback& callback) {
105 DCHECK_CURRENTLY_ON(BrowserThread::UI);
108 void FakeFileSystem::Pin(const base::FilePath& file_path,
109 const FileOperationCallback& callback) {
110 DCHECK_CURRENTLY_ON(BrowserThread::UI);
113 void FakeFileSystem::Unpin(const base::FilePath& file_path,
114 const FileOperationCallback& callback) {
115 DCHECK_CURRENTLY_ON(BrowserThread::UI);
118 void FakeFileSystem::GetFile(const base::FilePath& file_path,
119 const GetFileCallback& callback) {
120 DCHECK_CURRENTLY_ON(BrowserThread::UI);
123 void FakeFileSystem::GetFileForSaving(const base::FilePath& file_path,
124 const GetFileCallback& callback) {
125 DCHECK_CURRENTLY_ON(BrowserThread::UI);
128 base::Closure FakeFileSystem::GetFileContent(
129 const base::FilePath& file_path,
130 const GetFileContentInitializedCallback& initialized_callback,
131 const google_apis::GetContentCallback& get_content_callback,
132 const FileOperationCallback& completion_callback) {
133 DCHECK_CURRENTLY_ON(BrowserThread::UI);
135 GetResourceEntry(
136 file_path,
137 base::Bind(&FakeFileSystem::GetFileContentAfterGetResourceEntry,
138 weak_ptr_factory_.GetWeakPtr(),
139 initialized_callback, get_content_callback,
140 completion_callback));
141 return base::Bind(&base::DoNothing);
144 void FakeFileSystem::GetResourceEntry(
145 const base::FilePath& file_path,
146 const GetResourceEntryCallback& callback) {
147 DCHECK_CURRENTLY_ON(BrowserThread::UI);
149 if (file_path == util::GetDriveMyDriveRootPath()) {
150 // Specialized for the root entry.
151 drive_service_->GetAboutResource(
152 base::Bind(
153 &FakeFileSystem::GetResourceEntryAfterGetAboutResource,
154 weak_ptr_factory_.GetWeakPtr(), callback));
155 return;
158 // Now, we only support files under my drive.
159 DCHECK(util::GetDriveMyDriveRootPath().IsParent(file_path));
160 GetResourceEntry(
161 file_path.DirName(),
162 base::Bind(
163 &FakeFileSystem::GetResourceEntryAfterGetParentEntryInfo,
164 weak_ptr_factory_.GetWeakPtr(), file_path.BaseName(), callback));
167 void FakeFileSystem::ReadDirectory(
168 const base::FilePath& file_path,
169 const ReadDirectoryEntriesCallback& entries_callback,
170 const FileOperationCallback& completion_callback) {
171 DCHECK_CURRENTLY_ON(BrowserThread::UI);
174 void FakeFileSystem::Search(const std::string& search_query,
175 const GURL& next_link,
176 const SearchCallback& callback) {
177 DCHECK_CURRENTLY_ON(BrowserThread::UI);
180 void FakeFileSystem::SearchMetadata(
181 const std::string& query,
182 int options,
183 int at_most_num_matches,
184 const SearchMetadataCallback& callback) {
185 DCHECK_CURRENTLY_ON(BrowserThread::UI);
188 void FakeFileSystem::SearchByHashes(const std::set<std::string>& hashes,
189 const SearchByHashesCallback& callback) {
190 DCHECK_CURRENTLY_ON(BrowserThread::UI);
193 void FakeFileSystem::GetAvailableSpace(
194 const GetAvailableSpaceCallback& callback) {
195 DCHECK_CURRENTLY_ON(BrowserThread::UI);
198 void FakeFileSystem::GetShareUrl(
199 const base::FilePath& file_path,
200 const GURL& embed_origin,
201 const GetShareUrlCallback& callback) {
202 DCHECK_CURRENTLY_ON(BrowserThread::UI);
205 void FakeFileSystem::GetMetadata(
206 const GetFilesystemMetadataCallback& callback) {
207 DCHECK_CURRENTLY_ON(BrowserThread::UI);
210 void FakeFileSystem::MarkCacheFileAsMounted(
211 const base::FilePath& drive_file_path,
212 const MarkMountedCallback& callback) {
213 DCHECK_CURRENTLY_ON(BrowserThread::UI);
216 void FakeFileSystem::MarkCacheFileAsUnmounted(
217 const base::FilePath& cache_file_path,
218 const FileOperationCallback& callback) {
219 DCHECK_CURRENTLY_ON(BrowserThread::UI);
222 void FakeFileSystem::AddPermission(const base::FilePath& drive_file_path,
223 const std::string& email,
224 google_apis::drive::PermissionRole role,
225 const FileOperationCallback& callback) {
226 DCHECK_CURRENTLY_ON(BrowserThread::UI);
229 void FakeFileSystem::SetProperty(
230 const base::FilePath& drive_file_path,
231 google_apis::drive::Property::Visibility visibility,
232 const std::string& key,
233 const std::string& value,
234 const FileOperationCallback& callback) {
235 DCHECK_CURRENTLY_ON(BrowserThread::UI);
238 void FakeFileSystem::Reset(const FileOperationCallback& callback) {
241 void FakeFileSystem::GetPathFromResourceId(
242 const std::string& resource_id,
243 const GetFilePathCallback& callback) {
244 DCHECK_CURRENTLY_ON(BrowserThread::UI);
247 void FakeFileSystem::FreeDiskSpaceIfNeededFor(
248 int64 num_bytes,
249 const FreeDiskSpaceCallback& callback) {
250 DCHECK_CURRENTLY_ON(BrowserThread::UI);
253 // Implementation of GetFileContent.
254 void FakeFileSystem::GetFileContentAfterGetResourceEntry(
255 const GetFileContentInitializedCallback& initialized_callback,
256 const google_apis::GetContentCallback& get_content_callback,
257 const FileOperationCallback& completion_callback,
258 FileError error,
259 scoped_ptr<ResourceEntry> entry) {
260 DCHECK_CURRENTLY_ON(BrowserThread::UI);
262 if (error != FILE_ERROR_OK) {
263 completion_callback.Run(error);
264 return;
266 DCHECK(entry);
268 // We're only interested in a file.
269 if (entry->file_info().is_directory()) {
270 completion_callback.Run(FILE_ERROR_NOT_A_FILE);
271 return;
274 // Fetch google_apis::FileResource for its |download_url|.
275 drive_service_->GetFileResource(
276 entry->resource_id(),
277 base::Bind(
278 &FakeFileSystem::GetFileContentAfterGetFileResource,
279 weak_ptr_factory_.GetWeakPtr(),
280 initialized_callback,
281 get_content_callback,
282 completion_callback));
285 void FakeFileSystem::GetFileContentAfterGetFileResource(
286 const GetFileContentInitializedCallback& initialized_callback,
287 const google_apis::GetContentCallback& get_content_callback,
288 const FileOperationCallback& completion_callback,
289 google_apis::DriveApiErrorCode gdata_error,
290 scoped_ptr<google_apis::FileResource> gdata_entry) {
291 DCHECK_CURRENTLY_ON(BrowserThread::UI);
293 FileError error = GDataToFileError(gdata_error);
294 if (error != FILE_ERROR_OK) {
295 completion_callback.Run(error);
296 return;
298 DCHECK(gdata_entry);
300 scoped_ptr<ResourceEntry> entry(new ResourceEntry);
301 std::string parent_resource_id;
302 bool converted = ConvertFileResourceToResourceEntry(
303 *gdata_entry, entry.get(), &parent_resource_id);
304 DCHECK(converted);
305 entry->set_parent_local_id(parent_resource_id);
307 base::FilePath cache_path =
308 cache_dir_.path().AppendASCII(entry->resource_id());
309 if (entry->file_specific_info().is_hosted_document()) {
310 // For hosted documents return a dummy cache without server request.
311 int result = base::WriteFile(cache_path, "", 0);
312 DCHECK_EQ(0, result);
314 if (base::PathExists(cache_path)) {
315 // Cache file is found.
316 initialized_callback.Run(FILE_ERROR_OK, cache_path, entry.Pass());
317 completion_callback.Run(FILE_ERROR_OK);
318 return;
321 initialized_callback.Run(FILE_ERROR_OK, base::FilePath(), entry.Pass());
322 drive_service_->DownloadFile(
323 cache_path,
324 gdata_entry->file_id(),
325 base::Bind(&FakeFileSystem::GetFileContentAfterDownloadFile,
326 weak_ptr_factory_.GetWeakPtr(),
327 completion_callback),
328 get_content_callback,
329 google_apis::ProgressCallback());
332 void FakeFileSystem::GetFileContentAfterDownloadFile(
333 const FileOperationCallback& completion_callback,
334 google_apis::DriveApiErrorCode gdata_error,
335 const base::FilePath& temp_file) {
336 DCHECK_CURRENTLY_ON(BrowserThread::UI);
337 completion_callback.Run(GDataToFileError(gdata_error));
340 // Implementation of GetResourceEntry.
341 void FakeFileSystem::GetResourceEntryAfterGetAboutResource(
342 const GetResourceEntryCallback& callback,
343 google_apis::DriveApiErrorCode gdata_error,
344 scoped_ptr<google_apis::AboutResource> about_resource) {
345 DCHECK_CURRENTLY_ON(BrowserThread::UI);
347 FileError error = GDataToFileError(gdata_error);
348 if (error != FILE_ERROR_OK) {
349 callback.Run(error, scoped_ptr<ResourceEntry>());
350 return;
353 DCHECK(about_resource);
354 scoped_ptr<ResourceEntry> root(new ResourceEntry);
355 root->mutable_file_info()->set_is_directory(true);
356 root->set_resource_id(about_resource->root_folder_id());
357 root->set_title(util::kDriveMyDriveRootDirName);
358 callback.Run(error, root.Pass());
361 void FakeFileSystem::GetResourceEntryAfterGetParentEntryInfo(
362 const base::FilePath& base_name,
363 const GetResourceEntryCallback& callback,
364 FileError error,
365 scoped_ptr<ResourceEntry> parent_entry) {
366 DCHECK_CURRENTLY_ON(BrowserThread::UI);
368 if (error != FILE_ERROR_OK) {
369 callback.Run(error, scoped_ptr<ResourceEntry>());
370 return;
373 DCHECK(parent_entry);
374 drive_service_->GetFileListInDirectory(
375 parent_entry->resource_id(),
376 base::Bind(
377 &FakeFileSystem::GetResourceEntryAfterGetFileList,
378 weak_ptr_factory_.GetWeakPtr(), base_name, callback));
381 void FakeFileSystem::GetResourceEntryAfterGetFileList(
382 const base::FilePath& base_name,
383 const GetResourceEntryCallback& callback,
384 google_apis::DriveApiErrorCode gdata_error,
385 scoped_ptr<google_apis::FileList> file_list) {
386 DCHECK_CURRENTLY_ON(BrowserThread::UI);
388 FileError error = GDataToFileError(gdata_error);
389 if (error != FILE_ERROR_OK) {
390 callback.Run(error, scoped_ptr<ResourceEntry>());
391 return;
394 DCHECK(file_list);
395 const ScopedVector<google_apis::FileResource>& entries = file_list->items();
396 for (size_t i = 0; i < entries.size(); ++i) {
397 scoped_ptr<ResourceEntry> entry(new ResourceEntry);
398 std::string parent_resource_id;
399 bool converted = ConvertFileResourceToResourceEntry(
400 *entries[i], entry.get(), &parent_resource_id);
401 DCHECK(converted);
402 entry->set_parent_local_id(parent_resource_id);
404 if (entry->base_name() == base_name.AsUTF8Unsafe()) {
405 // Found the target entry.
406 callback.Run(FILE_ERROR_OK, entry.Pass());
407 return;
411 callback.Run(FILE_ERROR_NOT_FOUND, scoped_ptr<ResourceEntry>());
414 } // namespace test_util
415 } // namespace drive