blob: 527d02b3c3fcaf41df3b263d6774c80f17b25f7e (
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
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
|
// Copyright 2013 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/policy/forwarding_policy_provider.h"
#include "chrome/browser/policy/schema_map.h"
#include "chrome/browser/policy/schema_registry.h"
namespace policy {
ForwardingPolicyProvider::ForwardingPolicyProvider(
ConfigurationPolicyProvider* delegate)
: delegate_(delegate), state_(WAITING_FOR_REGISTRY_READY) {
delegate_->AddObserver(this);
// Serve the initial |delegate_| policies.
OnUpdatePolicy(delegate_);
}
ForwardingPolicyProvider::~ForwardingPolicyProvider() {
delegate_->RemoveObserver(this);
}
void ForwardingPolicyProvider::Init(SchemaRegistry* registry) {
ConfigurationPolicyProvider::Init(registry);
if (registry->IsReady())
OnSchemaRegistryReady();
}
bool ForwardingPolicyProvider::IsInitializationComplete(PolicyDomain domain)
const {
if (domain == POLICY_DOMAIN_CHROME)
return delegate_->IsInitializationComplete(domain);
// This provider keeps its own state for all the other domains.
return state_ == READY;
}
void ForwardingPolicyProvider::RefreshPolicies() {
delegate_->RefreshPolicies();
}
void ForwardingPolicyProvider::OnSchemaRegistryReady() {
DCHECK_EQ(WAITING_FOR_REGISTRY_READY, state_);
// This provider's registry is ready, meaning that it has all the initial
// components schemas; the delegate's registry should also see them now,
// since it's tracking the former.
// Asking the delegate to RefreshPolicies now means that the next
// OnUpdatePolicy from the delegate will have the initial policy for
// components.
if (!schema_map()->HasComponents()) {
// If there are no component registered for this provider then there's no
// need to reload.
state_ = READY;
OnUpdatePolicy(delegate_);
return;
}
state_ = WAITING_FOR_REFRESH;
RefreshPolicies();
}
void ForwardingPolicyProvider::OnSchemaRegistryUpdated(bool has_new_schemas) {
if (!has_new_schemas || state_ != READY)
return;
RefreshPolicies();
}
void ForwardingPolicyProvider::OnUpdatePolicy(
ConfigurationPolicyProvider* provider) {
DCHECK_EQ(delegate_, provider);
if (state_ == WAITING_FOR_REFRESH)
state_ = READY;
scoped_ptr<PolicyBundle> bundle(new PolicyBundle());
if (state_ == READY) {
bundle->CopyFrom(delegate_->policies());
schema_map()->FilterBundle(bundle.get());
} else {
// Always forward the Chrome policy, even if the components are not ready
// yet.
const PolicyNamespace chrome_ns(POLICY_DOMAIN_CHROME, "");
bundle->Get(chrome_ns).CopyFrom(delegate_->policies().Get(chrome_ns));
}
UpdatePolicy(bundle.Pass());
}
} // namespace policy
|