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

Unified Diff: chrome/browser/sync/syncable/syncable.cc

Issue 2854018: sync: Add method to Directory to remove all entries for a set of ModelTypes.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix sign issue with last-minute DCHECK I threw in Created 10 years, 6 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
« no previous file with comments | « chrome/browser/sync/syncable/syncable.h ('k') | chrome/browser/sync/syncable/syncable_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/syncable/syncable.cc
===================================================================
--- chrome/browser/sync/syncable/syncable.cc (revision 50328)
+++ chrome/browser/sync/syncable/syncable.cc (working copy)
@@ -610,6 +610,41 @@
}
}
+void Directory::PurgeEntriesWithTypeIn(const std::set<ModelType>& types) {
+ DCHECK_EQ(0U, types.count(UNSPECIFIED));
+ DCHECK_EQ(0U, types.count(TOP_LEVEL_FOLDER));
+
+ if (types.empty())
+ return;
+
+ ScopedKernelLock lock(this);
+ MetahandleSet to_delete;
+ MetahandlesIndex::iterator it = kernel_->metahandles_index->begin();
+ while (it != kernel_->metahandles_index->end()) {
+ const sync_pb::EntitySpecifics& local_specifics = (*it)->ref(SPECIFICS);
+ const sync_pb::EntitySpecifics& server_specifics =
+ (*it)->ref(SERVER_SPECIFICS);
+ ModelType local_type = GetModelTypeFromSpecifics(local_specifics);
+ ModelType server_type = GetModelTypeFromSpecifics(server_specifics);
+
+ // Note the dance around incrementing |it|, since we sometimes use erase().
+ if (types.count(local_type) > 0 || types.count(server_type) > 0) {
+ to_delete.insert((*it)->ref(META_HANDLE));
+ size_t num_erased = 0;
+ num_erased = kernel_->ids_index->erase(*it);
+ DCHECK_EQ(1u, num_erased);
+ num_erased = kernel_->client_tag_index->erase(*it);
+ DCHECK_EQ((*it)->ref(UNIQUE_CLIENT_TAG).empty(), !num_erased);
+ kernel_->metahandles_index->erase(it++);
+ } else {
+ ++it;
+ }
+ }
+
+ // Synchronously wipe these entries from disk.
+ store_->DeleteEntries(to_delete);
+}
+
void Directory::HandleSaveChangesFailure(const SaveChangesSnapshot& snapshot) {
ScopedKernelLock lock(this);
kernel_->info_status = KERNEL_SHARE_INFO_DIRTY;
« no previous file with comments | « chrome/browser/sync/syncable/syncable.h ('k') | chrome/browser/sync/syncable/syncable_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698