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
|
// 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 "sync/notifier/invalidator_registrar.h"
#include <cstddef>
#include <iterator>
#include <utility>
#include "base/logging.h"
#include "sync/notifier/object_id_invalidation_map.h"
namespace syncer {
InvalidatorRegistrar::InvalidatorRegistrar()
: state_(DEFAULT_INVALIDATION_ERROR) {}
InvalidatorRegistrar::~InvalidatorRegistrar() {
DCHECK(thread_checker_.CalledOnValidThread());
CHECK(!handlers_.might_have_observers());
CHECK(handler_to_ids_map_.empty());
}
void InvalidatorRegistrar::RegisterHandler(InvalidationHandler* handler) {
DCHECK(thread_checker_.CalledOnValidThread());
CHECK(handler);
CHECK(!handlers_.HasObserver(handler));
handlers_.AddObserver(handler);
}
void InvalidatorRegistrar::UpdateRegisteredIds(
InvalidationHandler* handler,
const ObjectIdSet& ids) {
DCHECK(thread_checker_.CalledOnValidThread());
CHECK(handler);
CHECK(handlers_.HasObserver(handler));
for (HandlerIdsMap::const_iterator it = handler_to_ids_map_.begin();
it != handler_to_ids_map_.end(); ++it) {
if (it->first == handler) {
continue;
}
std::vector<invalidation::ObjectId> intersection;
std::set_intersection(
it->second.begin(), it->second.end(),
ids.begin(), ids.end(),
std::inserter(intersection, intersection.end()),
ObjectIdLessThan());
CHECK(intersection.empty())
<< "Duplicate registration: trying to register "
<< ObjectIdToString(*intersection.begin()) << " for "
<< handler << " when it's already registered for "
<< it->first;
}
if (ids.empty()) {
handler_to_ids_map_.erase(handler);
} else {
handler_to_ids_map_[handler] = ids;
}
}
void InvalidatorRegistrar::UnregisterHandler(InvalidationHandler* handler) {
DCHECK(thread_checker_.CalledOnValidThread());
CHECK(handler);
CHECK(handlers_.HasObserver(handler));
handlers_.RemoveObserver(handler);
handler_to_ids_map_.erase(handler);
}
ObjectIdSet InvalidatorRegistrar::GetRegisteredIds(
InvalidationHandler* handler) const {
DCHECK(thread_checker_.CalledOnValidThread());
HandlerIdsMap::const_iterator lookup = handler_to_ids_map_.find(handler);
if (lookup != handler_to_ids_map_.end()) {
return lookup->second;
} else {
return ObjectIdSet();
}
}
ObjectIdSet InvalidatorRegistrar::GetAllRegisteredIds() const {
DCHECK(thread_checker_.CalledOnValidThread());
ObjectIdSet registered_ids;
for (HandlerIdsMap::const_iterator it = handler_to_ids_map_.begin();
it != handler_to_ids_map_.end(); ++it) {
registered_ids.insert(it->second.begin(), it->second.end());
}
return registered_ids;
}
void InvalidatorRegistrar::DispatchInvalidationsToHandlers(
const ObjectIdInvalidationMap& invalidation_map) {
DCHECK(thread_checker_.CalledOnValidThread());
// If we have no handlers, there's nothing to do.
if (!handlers_.might_have_observers()) {
return;
}
for (HandlerIdsMap::iterator it = handler_to_ids_map_.begin();
it != handler_to_ids_map_.end(); ++it) {
ObjectIdInvalidationMap to_emit =
invalidation_map.GetSubsetWithObjectIds(it->second);
if (!to_emit.Empty()) {
it->first->OnIncomingInvalidation(to_emit);
}
}
}
void InvalidatorRegistrar::UpdateInvalidatorState(InvalidatorState state) {
DCHECK(thread_checker_.CalledOnValidThread());
DVLOG(1) << "New invalidator state: " << InvalidatorStateToString(state_)
<< " -> " << InvalidatorStateToString(state);
state_ = state;
FOR_EACH_OBSERVER(InvalidationHandler, handlers_,
OnInvalidatorStateChange(state));
}
InvalidatorState InvalidatorRegistrar::GetInvalidatorState() const {
DCHECK(thread_checker_.CalledOnValidThread());
return state_;
}
std::map<std::string, ObjectIdSet>
InvalidatorRegistrar::GetSanitizedHandlersIdsMap() {
DCHECK(thread_checker_.CalledOnValidThread());
std::map<std::string, ObjectIdSet> clean_handlers_to_ids;
for (HandlerIdsMap::const_iterator it = handler_to_ids_map_.begin();
it != handler_to_ids_map_.end();
++it) {
clean_handlers_to_ids[it->first->GetOwnerName()] = ObjectIdSet(it->second);
}
return clean_handlers_to_ids;
}
bool InvalidatorRegistrar::IsHandlerRegisteredForTest(
InvalidationHandler* handler) const {
DCHECK(thread_checker_.CalledOnValidThread());
return handlers_.HasObserver(handler);
}
void InvalidatorRegistrar::DetachFromThreadForTest() {
DCHECK(thread_checker_.CalledOnValidThread());
thread_checker_.DetachFromThread();
}
} // namespace syncer
|