blob: a8cfbd122a46d6ac80b3ac7e1042b0edb639f825 (
plain)
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
|
// 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.
#ifndef SYNC_SYNCABLE_SCOPED_INDEX_UPDATER_H_
#define SYNC_SYNCABLE_SCOPED_INDEX_UPDATER_H_
#include "sync/syncable/directory.h"
namespace syncer {
namespace syncable {
class ScopedKernelLock;
// A ScopedIndexUpdater temporarily removes an entry from an index,
// and restores it to the index when the scope exits. This simplifies
// the common pattern where items need to be removed from an index
// before updating the field.
//
// This class is parameterized on the Indexer traits type, which
// must define a Comparator and a static bool ShouldInclude
// function for testing whether the item ought to be included
// in the index.
template<typename Indexer>
class ScopedIndexUpdater {
public:
ScopedIndexUpdater(const ScopedKernelLock& proof_of_lock,
EntryKernel* entry,
typename Index<Indexer>::Set* index)
: entry_(entry),
index_(index) {
// First call to ShouldInclude happens before the field is updated.
if (Indexer::ShouldInclude(entry_)) {
// TODO(lipalani): Replace this CHECK with |SyncAssert| by refactorting
// this class into a function.
CHECK(index_->erase(entry_));
}
}
~ScopedIndexUpdater() {
// Second call to ShouldInclude happens after the field is updated.
if (Indexer::ShouldInclude(entry_)) {
// TODO(lipalani): Replace this CHECK with |SyncAssert| by refactorting
// this class into a function.
CHECK(index_->insert(entry_).second);
}
}
private:
// The entry that was temporarily removed from the index.
EntryKernel* entry_;
// The index which we are updating.
typename Index<Indexer>::Set* const index_;
};
} // namespace syncable
} // namespace syncer
#endif // SYNC_SYNCABLE_SCOPED_INDEX_UPDATER_H_
|