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
|
// 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 "extensions/browser/extension_registry.h"
#include "base/strings/string_util.h"
#include "extensions/browser/extension_registry_factory.h"
#include "extensions/browser/extension_registry_observer.h"
namespace extensions {
ExtensionRegistry::ExtensionRegistry(content::BrowserContext* browser_context)
: browser_context_(browser_context) {}
ExtensionRegistry::~ExtensionRegistry() {}
// static
ExtensionRegistry* ExtensionRegistry::Get(content::BrowserContext* context) {
return ExtensionRegistryFactory::GetForBrowserContext(context);
}
scoped_ptr<ExtensionSet> ExtensionRegistry::GenerateInstalledExtensionsSet()
const {
scoped_ptr<ExtensionSet> installed_extensions(new ExtensionSet);
installed_extensions->InsertAll(enabled_extensions_);
installed_extensions->InsertAll(disabled_extensions_);
installed_extensions->InsertAll(terminated_extensions_);
installed_extensions->InsertAll(blacklisted_extensions_);
return installed_extensions.Pass();
}
void ExtensionRegistry::AddObserver(ExtensionRegistryObserver* observer) {
observers_.AddObserver(observer);
}
void ExtensionRegistry::RemoveObserver(ExtensionRegistryObserver* observer) {
observers_.RemoveObserver(observer);
}
void ExtensionRegistry::TriggerOnLoaded(const Extension* extension) {
DCHECK(enabled_extensions_.Contains(extension->id()));
FOR_EACH_OBSERVER(ExtensionRegistryObserver,
observers_,
OnExtensionLoaded(browser_context_, extension));
}
void ExtensionRegistry::TriggerOnUnloaded(
const Extension* extension,
UnloadedExtensionInfo::Reason reason) {
DCHECK(!enabled_extensions_.Contains(extension->id()));
FOR_EACH_OBSERVER(ExtensionRegistryObserver,
observers_,
OnExtensionUnloaded(browser_context_, extension, reason));
}
void ExtensionRegistry::TriggerOnWillBeInstalled(const Extension* extension,
bool is_update,
bool from_ephemeral,
const std::string& old_name) {
DCHECK(is_update ==
GenerateInstalledExtensionsSet()->Contains(extension->id()));
DCHECK(is_update == !old_name.empty());
FOR_EACH_OBSERVER(
ExtensionRegistryObserver,
observers_,
OnExtensionWillBeInstalled(
browser_context_, extension, is_update, from_ephemeral, old_name));
}
void ExtensionRegistry::TriggerOnInstalled(const Extension* extension,
bool is_update) {
DCHECK(GenerateInstalledExtensionsSet()->Contains(extension->id()));
FOR_EACH_OBSERVER(ExtensionRegistryObserver,
observers_,
OnExtensionInstalled(
browser_context_, extension, is_update));
}
void ExtensionRegistry::TriggerOnUninstalled(const Extension* extension,
UninstallReason reason) {
DCHECK(!GenerateInstalledExtensionsSet()->Contains(extension->id()));
FOR_EACH_OBSERVER(
ExtensionRegistryObserver,
observers_,
OnExtensionUninstalled(browser_context_, extension, reason));
}
const Extension* ExtensionRegistry::GetExtensionById(const std::string& id,
int include_mask) const {
std::string lowercase_id = base::StringToLowerASCII(id);
if (include_mask & ENABLED) {
const Extension* extension = enabled_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
if (include_mask & DISABLED) {
const Extension* extension = disabled_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
if (include_mask & TERMINATED) {
const Extension* extension = terminated_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
if (include_mask & BLACKLISTED) {
const Extension* extension = blacklisted_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
return NULL;
}
bool ExtensionRegistry::AddEnabled(
const scoped_refptr<const Extension>& extension) {
return enabled_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveEnabled(const std::string& id) {
return enabled_extensions_.Remove(id);
}
bool ExtensionRegistry::AddDisabled(
const scoped_refptr<const Extension>& extension) {
return disabled_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveDisabled(const std::string& id) {
return disabled_extensions_.Remove(id);
}
bool ExtensionRegistry::AddTerminated(
const scoped_refptr<const Extension>& extension) {
return terminated_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveTerminated(const std::string& id) {
return terminated_extensions_.Remove(id);
}
bool ExtensionRegistry::AddBlacklisted(
const scoped_refptr<const Extension>& extension) {
return blacklisted_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveBlacklisted(const std::string& id) {
return blacklisted_extensions_.Remove(id);
}
void ExtensionRegistry::ClearAll() {
enabled_extensions_.Clear();
disabled_extensions_.Clear();
terminated_extensions_.Clear();
blacklisted_extensions_.Clear();
}
void ExtensionRegistry::SetDisabledModificationCallback(
const ExtensionSet::ModificationCallback& callback) {
disabled_extensions_.set_modification_callback(callback);
}
void ExtensionRegistry::Shutdown() {
// Release references to all Extension objects in the sets.
ClearAll();
FOR_EACH_OBSERVER(ExtensionRegistryObserver, observers_, OnShutdown(this));
}
} // namespace extensions
|