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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
|
// Copyright (c) 2012 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/file_system.h"
#include "base/bind.h"
#include "base/file_util.h"
#include "base/platform_file.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/chromeos/drive/change_list_loader.h"
#include "chrome/browser/chromeos/drive/directory_loader.h"
#include "chrome/browser/chromeos/drive/drive.pb.h"
#include "chrome/browser/chromeos/drive/file_cache.h"
#include "chrome/browser/chromeos/drive/file_system/copy_operation.h"
#include "chrome/browser/chromeos/drive/file_system/create_directory_operation.h"
#include "chrome/browser/chromeos/drive/file_system/create_file_operation.h"
#include "chrome/browser/chromeos/drive/file_system/download_operation.h"
#include "chrome/browser/chromeos/drive/file_system/get_file_for_saving_operation.h"
#include "chrome/browser/chromeos/drive/file_system/move_operation.h"
#include "chrome/browser/chromeos/drive/file_system/open_file_operation.h"
#include "chrome/browser/chromeos/drive/file_system/remove_operation.h"
#include "chrome/browser/chromeos/drive/file_system/search_operation.h"
#include "chrome/browser/chromeos/drive/file_system/touch_operation.h"
#include "chrome/browser/chromeos/drive/file_system/truncate_operation.h"
#include "chrome/browser/chromeos/drive/file_system_observer.h"
#include "chrome/browser/chromeos/drive/file_system_util.h"
#include "chrome/browser/chromeos/drive/job_scheduler.h"
#include "chrome/browser/chromeos/drive/remove_stale_cache_files.h"
#include "chrome/browser/chromeos/drive/resource_entry_conversion.h"
#include "chrome/browser/chromeos/drive/search_metadata.h"
#include "chrome/browser/chromeos/drive/sync_client.h"
#include "chrome/browser/drive/drive_service_interface.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/browser_thread.h"
#include "google_apis/drive/drive_api_parser.h"
using content::BrowserThread;
namespace drive {
namespace {
// Gets a ResourceEntry from the metadata, and overwrites its file info when the
// cached file is dirty.
FileError GetLocallyStoredResourceEntry(
internal::ResourceMetadata* resource_metadata,
internal::FileCache* cache,
const base::FilePath& file_path,
ResourceEntry* entry) {
std::string local_id;
FileError error = resource_metadata->GetIdByPath(file_path, &local_id);
if (error != FILE_ERROR_OK)
return error;
error = resource_metadata->GetResourceEntryById(local_id, entry);
if (error != FILE_ERROR_OK)
return error;
// For entries that will never be cached, use the original resource entry
// as is.
if (!entry->has_file_specific_info() ||
entry->file_specific_info().is_hosted_document())
return FILE_ERROR_OK;
// When no dirty cache is found, use the original resource entry as is.
FileCacheEntry cache_entry;
if (!cache->GetCacheEntry(local_id, &cache_entry) || !cache_entry.is_dirty())
return FILE_ERROR_OK;
// If the cache is dirty, obtain the file info from the cache file itself.
base::FilePath local_cache_path;
error = cache->GetFile(local_id, &local_cache_path);
if (error != FILE_ERROR_OK)
return error;
// TODO(rvargas): Convert this code to use base::File::Info.
base::File::Info file_info;
if (!base::GetFileInfo(local_cache_path,
reinterpret_cast<base::File::Info*>(&file_info))) {
return FILE_ERROR_NOT_FOUND;
}
SetPlatformFileInfoToResourceEntry(file_info, entry);
return FILE_ERROR_OK;
}
// Runs the callback with parameters.
void RunGetResourceEntryCallback(const GetResourceEntryCallback& callback,
scoped_ptr<ResourceEntry> entry,
FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
if (error != FILE_ERROR_OK)
entry.reset();
callback.Run(error, entry.Pass());
}
// Used to implement Pin().
FileError PinInternal(internal::ResourceMetadata* resource_metadata,
internal::FileCache* cache,
const base::FilePath& file_path,
std::string* local_id) {
FileError error = resource_metadata->GetIdByPath(file_path, local_id);
if (error != FILE_ERROR_OK)
return error;
ResourceEntry entry;
error = resource_metadata->GetResourceEntryById(*local_id, &entry);
if (error != FILE_ERROR_OK)
return error;
// TODO(hashimoto): Support pinning directories. crbug.com/127831
if (entry.file_info().is_directory())
return FILE_ERROR_NOT_A_FILE;
return cache->Pin(*local_id);
}
// Used to implement Unpin().
FileError UnpinInternal(internal::ResourceMetadata* resource_metadata,
internal::FileCache* cache,
const base::FilePath& file_path,
std::string* local_id) {
FileError error = resource_metadata->GetIdByPath(file_path, local_id);
if (error != FILE_ERROR_OK)
return error;
return cache->Unpin(*local_id);
}
// Used to implement MarkCacheFileAsMounted().
FileError MarkCacheFileAsMountedInternal(
internal::ResourceMetadata* resource_metadata,
internal::FileCache* cache,
const base::FilePath& drive_file_path,
base::FilePath* cache_file_path) {
std::string local_id;
FileError error = resource_metadata->GetIdByPath(drive_file_path, &local_id);
if (error != FILE_ERROR_OK)
return error;
return cache->MarkAsMounted(local_id, cache_file_path);
}
// Runs the callback with arguments.
void RunMarkMountedCallback(const MarkMountedCallback& callback,
base::FilePath* cache_file_path,
FileError error) {
DCHECK(!callback.is_null());
callback.Run(error, *cache_file_path);
}
// Used to implement GetCacheEntry.
bool GetCacheEntryInternal(internal::ResourceMetadata* resource_metadata,
internal::FileCache* cache,
const base::FilePath& drive_file_path,
FileCacheEntry* cache_entry) {
std::string id;
if (resource_metadata->GetIdByPath(drive_file_path, &id) != FILE_ERROR_OK)
return false;
return cache->GetCacheEntry(id, cache_entry);
}
// Runs the callback with arguments.
void RunGetCacheEntryCallback(const GetCacheEntryCallback& callback,
const FileCacheEntry* cache_entry,
bool success) {
DCHECK(!callback.is_null());
callback.Run(success, *cache_entry);
}
// Callback for ResourceMetadata::GetLargestChangestamp.
// |callback| must not be null.
void OnGetLargestChangestamp(
FileSystemMetadata metadata, // Will be modified.
const GetFilesystemMetadataCallback& callback,
int64 largest_changestamp) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
metadata.largest_changestamp = largest_changestamp;
callback.Run(metadata);
}
// Thin adapter to map GetFileCallback to FileOperationCallback.
void GetFileCallbackToFileOperationCallbackAdapter(
const FileOperationCallback& callback,
FileError error,
const base::FilePath& unused_file_path,
scoped_ptr<ResourceEntry> unused_entry) {
callback.Run(error);
}
// Clears |resource_metadata| and |cache|.
FileError ResetOnBlockingPool(internal::ResourceMetadata* resource_metadata,
internal::FileCache* cache) {
FileError error = resource_metadata->Reset();
if (error != FILE_ERROR_OK)
return error;
return cache->ClearAll() ? FILE_ERROR_OK : FILE_ERROR_FAILED;
}
} // namespace
FileSystem::FileSystem(
PrefService* pref_service,
EventLogger* logger,
internal::FileCache* cache,
DriveServiceInterface* drive_service,
JobScheduler* scheduler,
internal::ResourceMetadata* resource_metadata,
base::SequencedTaskRunner* blocking_task_runner,
const base::FilePath& temporary_file_directory)
: pref_service_(pref_service),
logger_(logger),
cache_(cache),
drive_service_(drive_service),
scheduler_(scheduler),
resource_metadata_(resource_metadata),
last_update_check_error_(FILE_ERROR_OK),
blocking_task_runner_(blocking_task_runner),
temporary_file_directory_(temporary_file_directory),
weak_ptr_factory_(this) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
ResetComponents();
}
FileSystem::~FileSystem() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
directory_loader_->RemoveObserver(this);
change_list_loader_->RemoveObserver(this);
}
void FileSystem::Reset(const FileOperationCallback& callback) {
// Discard the current loader and operation objects and renew them. This is to
// avoid that changes initiated before the metadata reset is applied after the
// reset, which may cause an inconsistent state.
// TODO(kinaba): callbacks held in the subcomponents are discarded. We might
// want to have a way to abort and flush callbacks in in-flight operations.
ResetComponents();
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&ResetOnBlockingPool, resource_metadata_, cache_),
callback);
}
void FileSystem::ResetComponents() {
file_system::OperationObserver* observer = this;
about_resource_loader_.reset(new internal::AboutResourceLoader(scheduler_));
loader_controller_.reset(new internal::LoaderController);
change_list_loader_.reset(new internal::ChangeListLoader(
logger_,
blocking_task_runner_.get(),
resource_metadata_,
scheduler_,
about_resource_loader_.get(),
loader_controller_.get()));
change_list_loader_->AddObserver(this);
directory_loader_.reset(new internal::DirectoryLoader(
logger_,
blocking_task_runner_.get(),
resource_metadata_,
scheduler_,
drive_service_,
about_resource_loader_.get(),
loader_controller_.get()));
directory_loader_->AddObserver(this);
sync_client_.reset(new internal::SyncClient(blocking_task_runner_.get(),
observer,
scheduler_,
resource_metadata_,
cache_,
loader_controller_.get(),
temporary_file_directory_));
copy_operation_.reset(
new file_system::CopyOperation(
blocking_task_runner_.get(),
observer,
scheduler_,
resource_metadata_,
cache_,
drive_service_->GetResourceIdCanonicalizer()));
create_directory_operation_.reset(new file_system::CreateDirectoryOperation(
blocking_task_runner_.get(), observer, resource_metadata_));
create_file_operation_.reset(
new file_system::CreateFileOperation(blocking_task_runner_.get(),
observer,
resource_metadata_));
move_operation_.reset(
new file_system::MoveOperation(blocking_task_runner_.get(),
observer,
resource_metadata_));
open_file_operation_.reset(
new file_system::OpenFileOperation(blocking_task_runner_.get(),
observer,
scheduler_,
resource_metadata_,
cache_,
temporary_file_directory_));
remove_operation_.reset(
new file_system::RemoveOperation(blocking_task_runner_.get(),
observer,
resource_metadata_,
cache_));
touch_operation_.reset(new file_system::TouchOperation(
blocking_task_runner_.get(), observer, resource_metadata_));
truncate_operation_.reset(
new file_system::TruncateOperation(blocking_task_runner_.get(),
observer,
scheduler_,
resource_metadata_,
cache_,
temporary_file_directory_));
download_operation_.reset(
new file_system::DownloadOperation(blocking_task_runner_.get(),
observer,
scheduler_,
resource_metadata_,
cache_,
temporary_file_directory_));
search_operation_.reset(new file_system::SearchOperation(
blocking_task_runner_.get(), scheduler_, resource_metadata_,
loader_controller_.get()));
get_file_for_saving_operation_.reset(
new file_system::GetFileForSavingOperation(logger_,
blocking_task_runner_.get(),
observer,
scheduler_,
resource_metadata_,
cache_,
temporary_file_directory_));
}
void FileSystem::CheckForUpdates() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DVLOG(1) << "CheckForUpdates";
change_list_loader_->CheckForUpdates(
base::Bind(&FileSystem::OnUpdateChecked, weak_ptr_factory_.GetWeakPtr()));
}
void FileSystem::OnUpdateChecked(FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DVLOG(1) << "CheckForUpdates finished: " << FileErrorToString(error);
last_update_check_time_ = base::Time::Now();
last_update_check_error_ = error;
}
void FileSystem::AddObserver(FileSystemObserver* observer) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
observers_.AddObserver(observer);
}
void FileSystem::RemoveObserver(FileSystemObserver* observer) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
observers_.RemoveObserver(observer);
}
void FileSystem::TransferFileFromLocalToRemote(
const base::FilePath& local_src_file_path,
const base::FilePath& remote_dest_file_path,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
copy_operation_->TransferFileFromLocalToRemote(local_src_file_path,
remote_dest_file_path,
callback);
}
void FileSystem::Copy(const base::FilePath& src_file_path,
const base::FilePath& dest_file_path,
bool preserve_last_modified,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
copy_operation_->Copy(
src_file_path, dest_file_path, preserve_last_modified, callback);
}
void FileSystem::Move(const base::FilePath& src_file_path,
const base::FilePath& dest_file_path,
bool preserve_last_modified,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
move_operation_->Move(
src_file_path, dest_file_path, preserve_last_modified, callback);
}
void FileSystem::Remove(const base::FilePath& file_path,
bool is_recursive,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
remove_operation_->Remove(file_path, is_recursive, callback);
}
void FileSystem::CreateDirectory(
const base::FilePath& directory_path,
bool is_exclusive,
bool is_recursive,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
// Ensure its parent directory is loaded to the local metadata.
LoadDirectoryIfNeeded(
directory_path.DirName(),
base::Bind(&FileSystem::CreateDirectoryAfterLoad,
weak_ptr_factory_.GetWeakPtr(),
directory_path, is_exclusive, is_recursive, callback));
}
void FileSystem::CreateDirectoryAfterLoad(
const base::FilePath& directory_path,
bool is_exclusive,
bool is_recursive,
const FileOperationCallback& callback,
FileError load_error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
DVLOG_IF(1, load_error != FILE_ERROR_OK) << "LoadDirectoryIfNeeded failed. "
<< FileErrorToString(load_error);
create_directory_operation_->CreateDirectory(
directory_path, is_exclusive, is_recursive, callback);
}
void FileSystem::CreateFile(const base::FilePath& file_path,
bool is_exclusive,
const std::string& mime_type,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
create_file_operation_->CreateFile(
file_path, is_exclusive, mime_type, callback);
}
void FileSystem::TouchFile(const base::FilePath& file_path,
const base::Time& last_access_time,
const base::Time& last_modified_time,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!last_access_time.is_null());
DCHECK(!last_modified_time.is_null());
DCHECK(!callback.is_null());
touch_operation_->TouchFile(
file_path, last_access_time, last_modified_time, callback);
}
void FileSystem::TruncateFile(const base::FilePath& file_path,
int64 length,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
truncate_operation_->Truncate(file_path, length, callback);
}
void FileSystem::Pin(const base::FilePath& file_path,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
std::string* local_id = new std::string;
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&PinInternal, resource_metadata_, cache_, file_path, local_id),
base::Bind(&FileSystem::FinishPin,
weak_ptr_factory_.GetWeakPtr(),
callback,
base::Owned(local_id)));
}
void FileSystem::FinishPin(const FileOperationCallback& callback,
const std::string* local_id,
FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
if (error == FILE_ERROR_OK)
sync_client_->AddFetchTask(*local_id);
callback.Run(error);
}
void FileSystem::Unpin(const base::FilePath& file_path,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
std::string* local_id = new std::string;
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&UnpinInternal,
resource_metadata_,
cache_,
file_path,
local_id),
base::Bind(&FileSystem::FinishUnpin,
weak_ptr_factory_.GetWeakPtr(),
callback,
base::Owned(local_id)));
}
void FileSystem::FinishUnpin(const FileOperationCallback& callback,
const std::string* local_id,
FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
if (error == FILE_ERROR_OK)
sync_client_->RemoveFetchTask(*local_id);
callback.Run(error);
}
void FileSystem::GetFile(const base::FilePath& file_path,
const GetFileCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
download_operation_->EnsureFileDownloadedByPath(
file_path,
ClientContext(USER_INITIATED),
GetFileContentInitializedCallback(),
google_apis::GetContentCallback(),
callback);
}
void FileSystem::GetFileForSaving(const base::FilePath& file_path,
const GetFileCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
get_file_for_saving_operation_->GetFileForSaving(file_path, callback);
}
void FileSystem::GetFileContent(
const base::FilePath& file_path,
const GetFileContentInitializedCallback& initialized_callback,
const google_apis::GetContentCallback& get_content_callback,
const FileOperationCallback& completion_callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!initialized_callback.is_null());
DCHECK(!get_content_callback.is_null());
DCHECK(!completion_callback.is_null());
download_operation_->EnsureFileDownloadedByPath(
file_path,
ClientContext(USER_INITIATED),
initialized_callback,
get_content_callback,
base::Bind(&GetFileCallbackToFileOperationCallbackAdapter,
completion_callback));
}
void FileSystem::GetResourceEntry(
const base::FilePath& file_path,
const GetResourceEntryCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
LoadDirectoryIfNeeded(file_path.DirName(),
base::Bind(&FileSystem::GetResourceEntryAfterLoad,
weak_ptr_factory_.GetWeakPtr(),
file_path,
callback));
}
void FileSystem::GetResourceEntryAfterLoad(
const base::FilePath& file_path,
const GetResourceEntryCallback& callback,
FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
DVLOG_IF(1, error != FILE_ERROR_OK) << "LoadDirectoryIfNeeded failed. "
<< FileErrorToString(error);
scoped_ptr<ResourceEntry> entry(new ResourceEntry);
ResourceEntry* entry_ptr = entry.get();
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&GetLocallyStoredResourceEntry,
resource_metadata_,
cache_,
file_path,
entry_ptr),
base::Bind(&RunGetResourceEntryCallback, callback, base::Passed(&entry)));
}
void FileSystem::ReadDirectory(
const base::FilePath& directory_path,
const ReadDirectoryCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
LoadDirectoryIfNeeded(directory_path,
base::Bind(&FileSystem::ReadDirectoryAfterLoad,
weak_ptr_factory_.GetWeakPtr(),
directory_path,
callback));
}
void FileSystem::ReadDirectoryAfterLoad(
const base::FilePath& directory_path,
const ReadDirectoryCallback& callback,
FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
DVLOG_IF(1, error != FILE_ERROR_OK) << "LoadDirectoryIfNeeded failed. "
<< FileErrorToString(error);
ResourceEntryVector* entries = new ResourceEntryVector;
base::PostTaskAndReplyWithResult(
blocking_task_runner_.get(),
FROM_HERE,
base::Bind(&internal::ResourceMetadata::ReadDirectoryByPath,
base::Unretained(resource_metadata_),
directory_path,
entries),
base::Bind(&FileSystem::ReadDirectoryAfterRead,
weak_ptr_factory_.GetWeakPtr(),
directory_path,
callback,
base::Owned(entries)));
}
void FileSystem::ReadDirectoryAfterRead(const base::FilePath& directory_path,
const ReadDirectoryCallback& callback,
const ResourceEntryVector* entries,
FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
if (error != FILE_ERROR_OK) {
callback.Run(error, scoped_ptr<ResourceEntryVector>(), false);
return;
}
// TODO(satorux): Stop handling hide_hosted_docs here. crbug.com/256520.
const bool hide_hosted_docs =
pref_service_->GetBoolean(prefs::kDisableDriveHostedFiles);
scoped_ptr<ResourceEntryVector> filtered(new ResourceEntryVector);
for (size_t i = 0; i < entries->size(); ++i) {
if (hide_hosted_docs &&
entries->at(i).file_specific_info().is_hosted_document()) {
continue;
}
filtered->push_back(entries->at(i));
}
callback.Run(FILE_ERROR_OK, filtered.Pass(), false);
}
void FileSystem::GetAvailableSpace(
const GetAvailableSpaceCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
about_resource_loader_->GetAboutResource(
base::Bind(&FileSystem::OnGetAboutResource,
weak_ptr_factory_.GetWeakPtr(),
callback));
}
void FileSystem::OnGetAboutResource(
const GetAvailableSpaceCallback& callback,
google_apis::GDataErrorCode status,
scoped_ptr<google_apis::AboutResource> about_resource) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
FileError error = GDataToFileError(status);
if (error != FILE_ERROR_OK) {
callback.Run(error, -1, -1);
return;
}
DCHECK(about_resource);
callback.Run(FILE_ERROR_OK,
about_resource->quota_bytes_total(),
about_resource->quota_bytes_used());
}
void FileSystem::GetShareUrl(const base::FilePath& file_path,
const GURL& embed_origin,
const GetShareUrlCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
// Resolve the resource id.
ResourceEntry* entry = new ResourceEntry;
base::PostTaskAndReplyWithResult(
blocking_task_runner_.get(),
FROM_HERE,
base::Bind(&internal::ResourceMetadata::GetResourceEntryByPath,
base::Unretained(resource_metadata_),
file_path,
entry),
base::Bind(&FileSystem::GetShareUrlAfterGetResourceEntry,
weak_ptr_factory_.GetWeakPtr(),
file_path,
embed_origin,
callback,
base::Owned(entry)));
}
void FileSystem::GetShareUrlAfterGetResourceEntry(
const base::FilePath& file_path,
const GURL& embed_origin,
const GetShareUrlCallback& callback,
ResourceEntry* entry,
FileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
if (error != FILE_ERROR_OK) {
callback.Run(error, GURL());
return;
}
if (entry->resource_id().empty()) {
// This entry does not exist on the server. Just return.
callback.Run(FILE_ERROR_FAILED, GURL());
return;
}
scheduler_->GetShareUrl(
entry->resource_id(),
embed_origin,
ClientContext(USER_INITIATED),
base::Bind(&FileSystem::OnGetResourceEntryForGetShareUrl,
weak_ptr_factory_.GetWeakPtr(),
callback));
}
void FileSystem::OnGetResourceEntryForGetShareUrl(
const GetShareUrlCallback& callback,
google_apis::GDataErrorCode status,
const GURL& share_url) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
FileError error = GDataToFileError(status);
if (error != FILE_ERROR_OK) {
callback.Run(error, GURL());
return;
}
if (share_url.is_empty()) {
callback.Run(FILE_ERROR_FAILED, GURL());
return;
}
callback.Run(FILE_ERROR_OK, share_url);
}
void FileSystem::Search(const std::string& search_query,
const GURL& next_link,
const SearchCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
search_operation_->Search(search_query, next_link, callback);
}
void FileSystem::SearchMetadata(const std::string& query,
int options,
int at_most_num_matches,
const SearchMetadataCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
// TODO(satorux): Stop handling hide_hosted_docs here. crbug.com/256520.
if (pref_service_->GetBoolean(prefs::kDisableDriveHostedFiles))
options |= SEARCH_METADATA_EXCLUDE_HOSTED_DOCUMENTS;
drive::internal::SearchMetadata(blocking_task_runner_,
resource_metadata_,
query,
options,
at_most_num_matches,
callback);
}
void FileSystem::OnDirectoryChangedByOperation(
const base::FilePath& directory_path) {
OnDirectoryChanged(directory_path);
}
void FileSystem::OnEntryUpdatedByOperation(const std::string& local_id) {
sync_client_->AddUpdateTask(ClientContext(USER_INITIATED), local_id);
}
void FileSystem::OnDriveSyncError(file_system::DriveSyncErrorType type,
const std::string& local_id) {
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&internal::ResourceMetadata::GetFilePath,
base::Unretained(resource_metadata_),
local_id),
base::Bind(&FileSystem::OnDriveSyncErrorAfterGetFilePath,
weak_ptr_factory_.GetWeakPtr(),
type));
}
void FileSystem::OnDriveSyncErrorAfterGetFilePath(
file_system::DriveSyncErrorType type,
const base::FilePath& path) {
if (path.empty())
return;
FOR_EACH_OBSERVER(FileSystemObserver,
observers_,
OnDriveSyncError(type, path));
}
void FileSystem::OnDirectoryChanged(const base::FilePath& directory_path) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
FOR_EACH_OBSERVER(FileSystemObserver, observers_,
OnDirectoryChanged(directory_path));
}
void FileSystem::OnLoadFromServerComplete() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
sync_client_->StartCheckingExistingPinnedFiles();
}
void FileSystem::OnInitialLoadComplete() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
blocking_task_runner_->PostTask(FROM_HERE,
base::Bind(&internal::RemoveStaleCacheFiles,
cache_,
resource_metadata_));
sync_client_->StartProcessingBacklog();
}
void FileSystem::GetMetadata(
const GetFilesystemMetadataCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
FileSystemMetadata metadata;
metadata.refreshing = change_list_loader_->IsRefreshing();
// Metadata related to delta update.
metadata.last_update_check_time = last_update_check_time_;
metadata.last_update_check_error = last_update_check_error_;
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&internal::ResourceMetadata::GetLargestChangestamp,
base::Unretained(resource_metadata_)),
base::Bind(&OnGetLargestChangestamp, metadata, callback));
}
void FileSystem::MarkCacheFileAsMounted(
const base::FilePath& drive_file_path,
const MarkMountedCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
base::FilePath* cache_file_path = new base::FilePath;
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&MarkCacheFileAsMountedInternal,
resource_metadata_,
cache_,
drive_file_path,
cache_file_path),
base::Bind(&RunMarkMountedCallback,
callback,
base::Owned(cache_file_path)));
}
void FileSystem::MarkCacheFileAsUnmounted(
const base::FilePath& cache_file_path,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
if (!cache_->IsUnderFileCacheDirectory(cache_file_path)) {
callback.Run(FILE_ERROR_FAILED);
return;
}
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&internal::FileCache::MarkAsUnmounted,
base::Unretained(cache_),
cache_file_path),
callback);
}
void FileSystem::GetCacheEntry(
const base::FilePath& drive_file_path,
const GetCacheEntryCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
FileCacheEntry* cache_entry = new FileCacheEntry;
base::PostTaskAndReplyWithResult(
blocking_task_runner_,
FROM_HERE,
base::Bind(&GetCacheEntryInternal,
resource_metadata_,
cache_,
drive_file_path,
cache_entry),
base::Bind(&RunGetCacheEntryCallback,
callback,
base::Owned(cache_entry)));
}
void FileSystem::OpenFile(const base::FilePath& file_path,
OpenMode open_mode,
const std::string& mime_type,
const OpenFileCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
open_file_operation_->OpenFile(file_path, open_mode, mime_type, callback);
}
void FileSystem::LoadDirectoryIfNeeded(const base::FilePath& directory_path,
const FileOperationCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
directory_loader_->LoadDirectoryIfNeeded(directory_path, callback);
// Also start loading all of the user's contents.
change_list_loader_->LoadIfNeeded(
base::Bind(&util::EmptyFileOperationCallback));
}
} // namespace drive
|