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
|
// 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/login/signed_settings_helper.h"
#include <vector>
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/memory/ref_counted.h"
#include "chrome/browser/policy/proto/device_management_backend.pb.h"
#include "content/public/browser/browser_thread.h"
using content::BrowserThread;
namespace em = enterprise_management;
namespace chromeos {
namespace {
class OpContext {
public:
class Delegate {
public:
virtual void OnOpCreated(OpContext* context) = 0;
virtual void OnOpStarted(OpContext* context) = 0;
virtual void OnOpCompleted(OpContext* context) = 0;
};
virtual ~OpContext() {}
// Creates and execute op.
void Execute() {
CreateOp();
CHECK(op_.get());
if (delegate_)
delegate_->OnOpCreated(this);
// Note that the context could be released when op_->Execute() returns.
// So keep a local copy of delegate and executing flag to use after
// the call.
Delegate* delegate = delegate_;
executing_ = true;
op_->Execute();
if (delegate)
delegate->OnOpStarted(this);
}
// Cancels the callback and cancels the op if it is not executing.
void Cancel() {
if (!executing_)
OnOpCompleted();
}
// Accessors.
SignedSettings* op() const {
return op_.get();
}
void set_delegate(Delegate* delegate) {
delegate_ = delegate;
}
protected:
explicit OpContext(Delegate* delegate)
: executing_(false),
delegate_(delegate) {
}
// Creates the op to execute.
virtual void CreateOp() = 0;
// Callback on op completion.
virtual void OnOpCompleted() {
if (delegate_)
delegate_->OnOpCompleted(this);
delete this;
}
bool executing_;
Delegate* delegate_;
scoped_refptr<SignedSettings> op_;
};
class StorePolicyOpContext
: public SignedSettings::Delegate<bool>,
public OpContext {
public:
StorePolicyOpContext(const em::PolicyFetchResponse& policy,
SignedSettingsHelper::StorePolicyCallback callback,
OpContext::Delegate* delegate)
: OpContext(delegate),
callback_(callback),
policy_(policy) {
}
// chromeos::SignedSettings::Delegate implementation
virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
bool unused) OVERRIDE {
VLOG(2) << "OnSettingsOpCompleted, code = " << code;
callback_.Run(code);
OnOpCompleted();
}
protected:
// OpContext implementation
virtual void CreateOp() OVERRIDE {
op_ = SignedSettings::CreateStorePolicyOp(&policy_, this);
}
private:
SignedSettingsHelper::StorePolicyCallback callback_;
em::PolicyFetchResponse policy_;
DISALLOW_COPY_AND_ASSIGN(StorePolicyOpContext);
};
class RetrievePolicyOpContext
: public SignedSettings::Delegate<const em::PolicyFetchResponse&>,
public OpContext {
public:
RetrievePolicyOpContext(SignedSettingsHelper::RetrievePolicyCallback callback,
OpContext::Delegate* delegate)
: OpContext(delegate),
callback_(callback){
}
// chromeos::SignedSettings::Delegate implementation
virtual void OnSettingsOpCompleted(
SignedSettings::ReturnCode code,
const em::PolicyFetchResponse& policy) OVERRIDE {
callback_.Run(code, policy);
OnOpCompleted();
}
protected:
// OpContext implementation
virtual void CreateOp() OVERRIDE {
op_ = SignedSettings::CreateRetrievePolicyOp(this);
}
private:
SignedSettingsHelper::RetrievePolicyCallback callback_;
DISALLOW_COPY_AND_ASSIGN(RetrievePolicyOpContext);
};
} // namespace
class SignedSettingsHelperImpl : public SignedSettingsHelper,
public OpContext::Delegate {
public:
// SignedSettingsHelper implementation
virtual void StartStorePolicyOp(const em::PolicyFetchResponse& policy,
StorePolicyCallback callback) OVERRIDE;
virtual void StartRetrievePolicyOp(RetrievePolicyCallback callback) OVERRIDE;
// OpContext::Delegate implementation
virtual void OnOpCreated(OpContext* context);
virtual void OnOpStarted(OpContext* context);
virtual void OnOpCompleted(OpContext* context);
private:
SignedSettingsHelperImpl();
virtual ~SignedSettingsHelperImpl();
void AddOpContext(OpContext* context);
void ClearAll();
std::vector<OpContext*> pending_contexts_;
friend struct base::DefaultLazyInstanceTraits<SignedSettingsHelperImpl>;
DISALLOW_COPY_AND_ASSIGN(SignedSettingsHelperImpl);
};
static base::LazyInstance<SignedSettingsHelperImpl>
g_signed_settings_helper_impl = LAZY_INSTANCE_INITIALIZER;
SignedSettingsHelperImpl::SignedSettingsHelperImpl() {
}
SignedSettingsHelperImpl::~SignedSettingsHelperImpl() {
if (!pending_contexts_.empty()) {
LOG(WARNING) << "SignedSettingsHelperImpl shutdown with pending ops, "
<< "changes will be lost.";
ClearAll();
}
}
void SignedSettingsHelperImpl::StartStorePolicyOp(
const em::PolicyFetchResponse& policy,
StorePolicyCallback callback) {
AddOpContext(new StorePolicyOpContext(policy, callback, this));
}
void SignedSettingsHelperImpl::StartRetrievePolicyOp(
RetrievePolicyCallback callback) {
AddOpContext(new RetrievePolicyOpContext(callback, this));
}
void SignedSettingsHelperImpl::AddOpContext(OpContext* context) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
CHECK(context);
pending_contexts_.push_back(context);
if (pending_contexts_.size() == 1)
context->Execute();
}
void SignedSettingsHelperImpl::ClearAll() {
for (size_t i = 0; i < pending_contexts_.size(); ++i) {
pending_contexts_[i]->set_delegate(NULL);
pending_contexts_[i]->Cancel();
}
pending_contexts_.clear();
}
void SignedSettingsHelperImpl::OnOpCreated(OpContext* context) {
if (test_delegate_)
test_delegate_->OnOpCreated(context->op());
}
void SignedSettingsHelperImpl::OnOpStarted(OpContext* context) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
if (test_delegate_)
test_delegate_->OnOpStarted(context->op());
}
void SignedSettingsHelperImpl::OnOpCompleted(OpContext* context) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(pending_contexts_.front() == context);
pending_contexts_.erase(pending_contexts_.begin());
if (!pending_contexts_.empty())
pending_contexts_.front()->Execute();
if (test_delegate_)
test_delegate_->OnOpCompleted(context->op());
}
SignedSettingsHelper* SignedSettingsHelper::Get() {
return g_signed_settings_helper_impl.Pointer();
}
} // namespace chromeos
|