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
|
// 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/sync_file_system/local_file_sync_service.h"
#include "base/stl_util.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_system.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync_file_system/local_change_processor.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/site_instance.h"
#include "content/public/browser/storage_partition.h"
#include "googleurl/src/gurl.h"
#include "webkit/fileapi/file_system_context.h"
#include "webkit/fileapi/file_system_url.h"
#include "webkit/fileapi/syncable/file_change.h"
#include "webkit/fileapi/syncable/local_file_change_tracker.h"
#include "webkit/fileapi/syncable/local_file_sync_context.h"
#include "webkit/fileapi/syncable/sync_file_metadata.h"
using content::BrowserThread;
using fileapi::FileChange;
using fileapi::FileChangeList;
using fileapi::FileSystemURL;
using fileapi::LocalFileSyncContext;
using fileapi::LocalFileSyncInfo;
using fileapi::SyncFileCallback;
using fileapi::SyncFileMetadataCallback;
using fileapi::SyncStatusCallback;
using fileapi::SyncStatusCallback;
using fileapi::SyncStatusCode;
namespace sync_file_system {
namespace {
void PrepareForProcessRemoteChangeCallbackAdapter(
const RemoteChangeProcessor::PrepareChangeCallback& callback,
SyncStatusCode status,
const LocalFileSyncInfo& sync_file_info) {
callback.Run(status, sync_file_info.metadata, sync_file_info.changes);
}
} // namespace
LocalFileSyncService::OriginChangeMap::OriginChangeMap()
: next_(change_count_map_.end()) {}
LocalFileSyncService::OriginChangeMap::~OriginChangeMap() {}
bool LocalFileSyncService::OriginChangeMap::NextOriginToProcess(GURL* origin) {
DCHECK(origin);
if (change_count_map_.empty())
return false;
if (next_ == change_count_map_.end())
next_ = change_count_map_.begin();
DCHECK_NE(0, next_->second);
*origin = next_++->first;
return true;
}
int64 LocalFileSyncService::OriginChangeMap::GetTotalChangeCount() const {
int64 num_changes = 0;
for (Map::const_iterator iter = change_count_map_.begin();
iter != change_count_map_.end(); ++iter) {
num_changes += iter->second;
}
return num_changes;
}
void LocalFileSyncService::OriginChangeMap::SetOriginChangeCount(
const GURL& origin, int64 changes) {
if (changes != 0) {
change_count_map_[origin] = changes;
return;
}
Map::iterator found = change_count_map_.find(origin);
if (found != change_count_map_.end()) {
if (next_ == found)
++next_;
change_count_map_.erase(found);
}
}
// LocalFileSyncService -------------------------------------------------------
LocalFileSyncService::LocalFileSyncService(Profile* profile)
: profile_(profile),
sync_context_(new LocalFileSyncContext(
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI),
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO))) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
sync_context_->AddOriginChangeObserver(this);
}
LocalFileSyncService::~LocalFileSyncService() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
}
void LocalFileSyncService::Shutdown() {
sync_context_->RemoveOriginChangeObserver(this);
sync_context_->ShutdownOnUIThread();
profile_ = NULL;
}
void LocalFileSyncService::MaybeInitializeFileSystemContext(
const GURL& app_origin,
const std::string& service_name,
fileapi::FileSystemContext* file_system_context,
const SyncStatusCallback& callback) {
sync_context_->MaybeInitializeFileSystemContext(
app_origin, service_name, file_system_context,
base::Bind(&LocalFileSyncService::DidInitializeFileSystemContext,
AsWeakPtr(), app_origin,
make_scoped_refptr(file_system_context), callback));
}
void LocalFileSyncService::AddChangeObserver(Observer* observer) {
change_observers_.AddObserver(observer);
}
void LocalFileSyncService::RegisterURLForWaitingSync(
const FileSystemURL& url,
const base::Closure& on_syncable_callback) {
sync_context_->RegisterURLForWaitingSync(url, on_syncable_callback);
}
void LocalFileSyncService::ProcessLocalChange(
LocalChangeProcessor* processor,
const SyncFileCallback& callback) {
DCHECK(local_sync_callback_.is_null());
local_sync_callback_ = callback;
// Pick an origin to process next.
GURL origin;
if (!origin_change_map_.NextOriginToProcess(&origin)) {
callback.Run(fileapi::SYNC_STATUS_NO_CHANGE_TO_SYNC, FileSystemURL());
return;
}
DCHECK(!origin.is_empty());
DCHECK(ContainsKey(origin_to_contexts_, origin));
sync_context_->GetFileForLocalSync(
origin_to_contexts_[origin],
base::Bind(&LocalFileSyncService::DidGetFileForLocalSync,
AsWeakPtr(), processor));
}
void LocalFileSyncService::HasPendingLocalChanges(
const fileapi::FileSystemURL& url,
const HasPendingLocalChangeCallback& callback) {
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->HasPendingLocalChanges(
origin_to_contexts_[url.origin()], url, callback);
}
void LocalFileSyncService::ClearSyncFlagForURL(
const fileapi::FileSystemURL& url) {
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->ClearSyncFlagForURL(url);
}
void LocalFileSyncService::GetLocalFileMetadata(
const fileapi::FileSystemURL& url,
const SyncFileMetadataCallback& callback) {
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->GetFileMetadata(origin_to_contexts_[url.origin()],
url, callback);
}
void LocalFileSyncService::PrepareForProcessRemoteChange(
const FileSystemURL& url,
const std::string& service_name,
const PrepareChangeCallback& callback) {
if (!ContainsKey(origin_to_contexts_, url.origin())) {
// This could happen if a remote sync is triggered for the app that hasn't
// been initialized in this service.
DCHECK(profile_);
// The given url.origin() must be for valid installed app.
ExtensionService* extension_service =
extensions::ExtensionSystem::Get(profile_)->extension_service();
const extensions::Extension* extension = extension_service->GetInstalledApp(
url.origin());
DCHECK(extension);
GURL site_url = extension_service->GetSiteForExtensionId(extension->id());
DCHECK(!site_url.is_empty());
scoped_refptr<fileapi::FileSystemContext> file_system_context =
content::BrowserContext::GetStoragePartitionForSite(
profile_, site_url)->GetFileSystemContext();
MaybeInitializeFileSystemContext(
url.origin(),
service_name,
file_system_context,
base::Bind(&LocalFileSyncService::DidInitializeForRemoteSync,
AsWeakPtr(), url, service_name,
file_system_context, callback));
return;
}
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->PrepareForSync(
origin_to_contexts_[url.origin()], url,
base::Bind(&PrepareForProcessRemoteChangeCallbackAdapter, callback));
}
void LocalFileSyncService::ApplyRemoteChange(
const FileChange& change,
const FilePath& local_path,
const FileSystemURL& url,
const SyncStatusCallback& callback) {
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->ApplyRemoteChange(
origin_to_contexts_[url.origin()],
change, local_path, url, callback);
}
void LocalFileSyncService::ClearLocalChanges(
const fileapi::FileSystemURL& url,
const base::Closure& completion_callback) {
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->ClearChangesForURL(origin_to_contexts_[url.origin()],
url, completion_callback);
}
void LocalFileSyncService::RecordFakeLocalChange(
const fileapi::FileSystemURL& url,
const fileapi::FileChange& change,
const fileapi::SyncStatusCallback& callback) {
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->RecordFakeLocalChange(origin_to_contexts_[url.origin()],
url, change, callback);
}
void LocalFileSyncService::OnChangesAvailableInOrigins(
const std::set<GURL>& origins) {
bool need_notification = false;
for (std::set<GURL>::const_iterator iter = origins.begin();
iter != origins.end(); ++iter) {
const GURL& origin = *iter;
if (!ContainsKey(origin_to_contexts_, origin)) {
// This could happen if this is called for apps/origins that haven't
// been initialized yet. (Local change tracker could call this for
// uninitialized origins while it's reading dirty files from the
// database in the initialization phase.)
pending_origins_with_changes_.insert(origin);
continue;
}
need_notification = true;
fileapi::FileSystemContext* context = origin_to_contexts_[origin];
DCHECK(context->change_tracker());
origin_change_map_.SetOriginChangeCount(
origin, context->change_tracker()->num_changes());
}
if (!need_notification)
return;
int64 num_changes = origin_change_map_.GetTotalChangeCount();
FOR_EACH_OBSERVER(Observer, change_observers_,
OnLocalChangeAvailable(num_changes));
}
void LocalFileSyncService::DidInitializeFileSystemContext(
const GURL& app_origin,
fileapi::FileSystemContext* file_system_context,
const SyncStatusCallback& callback,
SyncStatusCode status) {
if (status != fileapi::SYNC_STATUS_OK) {
callback.Run(status);
return;
}
DCHECK(file_system_context);
origin_to_contexts_[app_origin] = file_system_context;
if (pending_origins_with_changes_.find(app_origin) !=
pending_origins_with_changes_.end()) {
// We have remaining changes for the origin.
pending_origins_with_changes_.erase(app_origin);
DCHECK(file_system_context->change_tracker());
origin_change_map_.SetOriginChangeCount(
app_origin, file_system_context->change_tracker()->num_changes());
int64 num_changes = origin_change_map_.GetTotalChangeCount();
FOR_EACH_OBSERVER(Observer, change_observers_,
OnLocalChangeAvailable(num_changes));
}
callback.Run(status);
}
void LocalFileSyncService::DidInitializeForRemoteSync(
const fileapi::FileSystemURL& url,
const std::string& service_name,
fileapi::FileSystemContext* file_system_context,
const PrepareChangeCallback& callback,
SyncStatusCode status) {
if (status != fileapi::SYNC_STATUS_OK) {
DVLOG(1) << "FileSystemContext initialization failed for remote sync:"
<< url.DebugString() << " status=" << status
<< " (" << SyncStatusCodeToString(status) << ")";
callback.Run(status, fileapi::SyncFileMetadata(),
FileChangeList());
return;
}
origin_to_contexts_[url.origin()] = file_system_context;
PrepareForProcessRemoteChange(url, service_name, callback);
}
void LocalFileSyncService::RunLocalSyncCallback(
fileapi::SyncStatusCode status,
const fileapi::FileSystemURL& url) {
DCHECK(!local_sync_callback_.is_null());
fileapi::SyncFileCallback callback = local_sync_callback_;
local_sync_callback_.Reset();
callback.Run(status, url);
}
void LocalFileSyncService::DidGetFileForLocalSync(
LocalChangeProcessor* processor,
SyncStatusCode status,
const LocalFileSyncInfo& sync_file_info) {
DCHECK(!local_sync_callback_.is_null());
if (status != fileapi::SYNC_STATUS_OK) {
RunLocalSyncCallback(status, sync_file_info.url);
return;
}
if (sync_file_info.changes.empty()) {
// There's a slight chance this could happen.
fileapi::SyncFileCallback callback = local_sync_callback_;
local_sync_callback_.Reset();
ProcessLocalChange(processor, callback);
return;
}
DVLOG(1) << "ProcessLocalChange: " << sync_file_info.url.DebugString()
<< " change:" << sync_file_info.changes.front().DebugString();
DCHECK(processor);
processor->ApplyLocalChange(
sync_file_info.changes.front(),
sync_file_info.local_file_path,
sync_file_info.url,
base::Bind(&LocalFileSyncService::ProcessNextChangeForURL,
AsWeakPtr(), processor,
sync_file_info,
sync_file_info.changes.front(),
sync_file_info.changes.PopAndGetNewList()));
}
void LocalFileSyncService::ProcessNextChangeForURL(
LocalChangeProcessor* processor,
const LocalFileSyncInfo& sync_file_info,
const FileChange& last_change,
const FileChangeList& changes,
SyncStatusCode status) {
DVLOG(1) << "Processed one local change: "
<< sync_file_info.url.DebugString()
<< " change:" << last_change.DebugString()
<< " status:" << status;
if (status == fileapi::SYNC_FILE_ERROR_NOT_FOUND &&
last_change.change() == FileChange::FILE_CHANGE_DELETE) {
// This must be ok (and could happen).
status = fileapi::SYNC_STATUS_OK;
}
// TODO(kinuko,tzik): Handle other errors that should not be considered
// a sync error.
const FileSystemURL& url = sync_file_info.url;
if (status != fileapi::SYNC_STATUS_OK || changes.empty()) {
if (status == fileapi::SYNC_STATUS_OK ||
status == fileapi::SYNC_STATUS_HAS_CONFLICT) {
// Clear the recorded changes for the URL if the sync was successfull
// OR has failed due to conflict (so that we won't stick to the same
// conflicting file again and again).
DCHECK(ContainsKey(origin_to_contexts_, url.origin()));
sync_context_->ClearChangesForURL(
origin_to_contexts_[url.origin()], url,
base::Bind(&LocalFileSyncService::RunLocalSyncCallback,
AsWeakPtr(), status, url));
return;
}
RunLocalSyncCallback(status, url);
return;
}
DCHECK(processor);
processor->ApplyLocalChange(
changes.front(),
sync_file_info.local_file_path,
url,
base::Bind(&LocalFileSyncService::ProcessNextChangeForURL,
AsWeakPtr(), processor, sync_file_info,
changes.front(), changes.PopAndGetNewList()));
}
} // namespace sync_file_system
|