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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
// 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/background/background_application_list_model.h"
#include <algorithm>
#include <set>
#include "base/sha1.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/background/background_contents_service.h"
#include "chrome/browser/background/background_contents_service_factory.h"
#include "chrome/browser/background/background_mode_manager.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/extensions/extension_constants.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
#include "extensions/browser/extension_prefs.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/extension_util.h"
#include "extensions/browser/image_loader.h"
#include "extensions/browser/notification_types.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_icon_set.h"
#include "extensions/common/extension_resource.h"
#include "extensions/common/extension_set.h"
#include "extensions/common/manifest_handlers/background_info.h"
#include "extensions/common/manifest_handlers/icons_handler.h"
#include "extensions/common/permissions/permission_set.h"
#include "extensions/common/permissions/permissions_data.h"
#include "ui/base/l10n/l10n_util_collator.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_skia.h"
using extensions::APIPermission;
using extensions::Extension;
using extensions::ExtensionList;
using extensions::ExtensionRegistry;
using extensions::ExtensionSet;
using extensions::PermissionSet;
using extensions::UnloadedExtensionInfo;
using extensions::UpdatedExtensionPermissionsInfo;
class ExtensionNameComparator {
public:
explicit ExtensionNameComparator(icu::Collator* collator);
bool operator()(const scoped_refptr<const Extension>& x,
const scoped_refptr<const Extension>& y);
private:
icu::Collator* collator_;
};
ExtensionNameComparator::ExtensionNameComparator(icu::Collator* collator)
: collator_(collator) {
}
bool ExtensionNameComparator::operator()(
const scoped_refptr<const Extension>& x,
const scoped_refptr<const Extension>& y) {
return l10n_util::StringComparator<base::string16>(collator_)(
base::UTF8ToUTF16(x->name()), base::UTF8ToUTF16(y->name()));
}
// Background application representation, private to the
// BackgroundApplicationListModel class.
class BackgroundApplicationListModel::Application
: public base::SupportsWeakPtr<Application> {
public:
Application(BackgroundApplicationListModel* model,
const Extension* an_extension);
virtual ~Application();
// Invoked when a request icon is available.
void OnImageLoaded(const gfx::Image& image);
// Uses the FILE thread to request this extension's icon, sized
// appropriately.
void RequestIcon(extension_misc::ExtensionIcons size);
const Extension* extension_;
scoped_ptr<gfx::ImageSkia> icon_;
BackgroundApplicationListModel* model_;
};
namespace {
void GetServiceApplications(ExtensionService* service,
ExtensionList* applications_result) {
ExtensionRegistry* registry = ExtensionRegistry::Get(service->profile());
const ExtensionSet& enabled_extensions = registry->enabled_extensions();
for (ExtensionSet::const_iterator cursor = enabled_extensions.begin();
cursor != enabled_extensions.end();
++cursor) {
const Extension* extension = cursor->get();
if (BackgroundApplicationListModel::IsBackgroundApp(*extension,
service->profile())) {
applications_result->push_back(extension);
}
}
// Walk the list of terminated extensions also (just because an extension
// crashed doesn't mean we should ignore it).
const ExtensionSet& terminated_extensions = registry->terminated_extensions();
for (ExtensionSet::const_iterator cursor = terminated_extensions.begin();
cursor != terminated_extensions.end();
++cursor) {
const Extension* extension = cursor->get();
if (BackgroundApplicationListModel::IsBackgroundApp(*extension,
service->profile())) {
applications_result->push_back(extension);
}
}
std::string locale = g_browser_process->GetApplicationLocale();
icu::Locale loc(locale.c_str());
UErrorCode error = U_ZERO_ERROR;
scoped_ptr<icu::Collator> collator(icu::Collator::createInstance(loc, error));
std::sort(applications_result->begin(), applications_result->end(),
ExtensionNameComparator(collator.get()));
}
} // namespace
void
BackgroundApplicationListModel::Observer::OnApplicationDataChanged(
const Extension* extension, Profile* profile) {
}
void
BackgroundApplicationListModel::Observer::OnApplicationListChanged(
Profile* profile) {
}
BackgroundApplicationListModel::Observer::~Observer() {
}
BackgroundApplicationListModel::Application::~Application() {
}
BackgroundApplicationListModel::Application::Application(
BackgroundApplicationListModel* model,
const Extension* extension)
: extension_(extension), model_(model) {}
void BackgroundApplicationListModel::Application::OnImageLoaded(
const gfx::Image& image) {
if (image.IsEmpty())
return;
icon_.reset(image.CopyImageSkia());
model_->SendApplicationDataChangedNotifications(extension_);
}
void BackgroundApplicationListModel::Application::RequestIcon(
extension_misc::ExtensionIcons size) {
extensions::ExtensionResource resource =
extensions::IconsInfo::GetIconResource(
extension_, size, ExtensionIconSet::MATCH_BIGGER);
extensions::ImageLoader::Get(model_->profile_)->LoadImageAsync(
extension_, resource, gfx::Size(size, size),
base::Bind(&Application::OnImageLoaded, AsWeakPtr()));
}
BackgroundApplicationListModel::~BackgroundApplicationListModel() {
STLDeleteContainerPairSecondPointers(applications_.begin(),
applications_.end());
}
BackgroundApplicationListModel::BackgroundApplicationListModel(Profile* profile)
: profile_(profile),
ready_(false) {
DCHECK(profile_);
registrar_.Add(this,
extensions::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
content::Source<Profile>(profile));
registrar_.Add(this,
extensions::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
content::Source<Profile>(profile));
registrar_.Add(this,
extensions::NOTIFICATION_EXTENSIONS_READY_DEPRECATED,
content::Source<Profile>(profile));
registrar_.Add(this,
extensions::NOTIFICATION_EXTENSION_PERMISSIONS_UPDATED,
content::Source<Profile>(profile));
registrar_.Add(this,
chrome::NOTIFICATION_BACKGROUND_CONTENTS_SERVICE_CHANGED,
content::Source<Profile>(profile));
ExtensionService* service = extensions::ExtensionSystem::Get(profile)->
extension_service();
if (service && service->is_ready()) {
Update();
ready_ = true;
}
}
void BackgroundApplicationListModel::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void BackgroundApplicationListModel::AssociateApplicationData(
const Extension* extension) {
DCHECK(IsBackgroundApp(*extension, profile_));
Application* application = FindApplication(extension);
if (!application) {
// App position is used as a dynamic command and so must be less than any
// predefined command id.
if (applications_.size() >= IDC_MinimumLabelValue) {
LOG(ERROR) << "Background application limit of " << IDC_MinimumLabelValue
<< " exceeded. Ignoring.";
return;
}
application = new Application(this, extension);
applications_[extension->id()] = application;
Update();
application->RequestIcon(extension_misc::EXTENSION_ICON_BITTY);
}
}
void BackgroundApplicationListModel::DissociateApplicationData(
const Extension* extension) {
ApplicationMap::iterator found = applications_.find(extension->id());
if (found != applications_.end()) {
delete found->second;
applications_.erase(found);
}
}
const Extension* BackgroundApplicationListModel::GetExtension(
int position) const {
DCHECK(position >= 0 && static_cast<size_t>(position) < extensions_.size());
return extensions_[position].get();
}
const BackgroundApplicationListModel::Application*
BackgroundApplicationListModel::FindApplication(
const Extension* extension) const {
const std::string& id = extension->id();
ApplicationMap::const_iterator found = applications_.find(id);
return (found == applications_.end()) ? NULL : found->second;
}
BackgroundApplicationListModel::Application*
BackgroundApplicationListModel::FindApplication(
const Extension* extension) {
const std::string& id = extension->id();
ApplicationMap::iterator found = applications_.find(id);
return (found == applications_.end()) ? NULL : found->second;
}
const gfx::ImageSkia* BackgroundApplicationListModel::GetIcon(
const Extension* extension) {
const Application* application = FindApplication(extension);
if (application)
return application->icon_.get();
AssociateApplicationData(extension);
return NULL;
}
int BackgroundApplicationListModel::GetPosition(
const Extension* extension) const {
int position = 0;
const std::string& id = extension->id();
for (ExtensionList::const_iterator cursor = extensions_.begin();
cursor != extensions_.end();
++cursor, ++position) {
if (id == cursor->get()->id())
return position;
}
NOTREACHED();
return -1;
}
// static
bool BackgroundApplicationListModel::RequiresBackgroundModeForPushMessaging(
const Extension& extension) {
// No PushMessaging permission - does not require the background mode.
if (!extension.permissions_data()->HasAPIPermission(
APIPermission::kPushMessaging)) {
return false;
}
// If in the whitelist, then does not require background mode even if
// uses push messaging.
// TODO(dimich): remove this whitelist once we have a better way to keep
// listening for GCM. http://crbug.com/311268
std::string id_hash = base::SHA1HashString(extension.id());
std::string hexencoded_id_hash = base::HexEncode(id_hash.c_str(),
id_hash.length());
// The id starting from "9A04..." is a one from unit test.
if (hexencoded_id_hash == "C41AD9DCD670210295614257EF8C9945AD68D86E" ||
hexencoded_id_hash == "9A0417016F345C934A1A88F55CA17C05014EEEBA")
return false;
return true;
}
// static
bool BackgroundApplicationListModel::IsBackgroundApp(
const Extension& extension, Profile* profile) {
// An extension is a "background app" if it has the "background API"
// permission, and meets one of the following criteria:
// 1) It is an extension (not a hosted app).
// 2) It is a hosted app, and has a background contents registered or in the
// manifest.
// Ephemeral apps are denied any background activity after their event page
// has been destroyed, thus they cannot be background apps.
if (extensions::util::IsEphemeralApp(extension.id(), profile))
return false;
// Not a background app if we don't have the background permission or
// the push messaging permission
if (!extension.permissions_data()->HasAPIPermission(
APIPermission::kBackground) &&
!RequiresBackgroundModeForPushMessaging(extension))
return false;
// Extensions and packaged apps with background permission are always treated
// as background apps.
if (!extension.is_hosted_app())
return true;
// Hosted apps with manifest-provided background pages are background apps.
if (extensions::BackgroundInfo::HasBackgroundPage(&extension))
return true;
BackgroundContentsService* service =
BackgroundContentsServiceFactory::GetForProfile(profile);
base::string16 app_id = base::ASCIIToUTF16(extension.id());
// If we have an active or registered background contents for this app, then
// it's a background app. This covers the cases where the app has created its
// background contents, but it hasn't navigated yet, or the background
// contents crashed and hasn't yet been restarted - in both cases we still
// want to treat the app as a background app.
if (service->GetAppBackgroundContents(app_id) ||
service->HasRegisteredBackgroundContents(app_id)) {
return true;
}
// Doesn't meet our criteria, so it's not a background app.
return false;
}
void BackgroundApplicationListModel::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
if (type == extensions::NOTIFICATION_EXTENSIONS_READY_DEPRECATED) {
Update();
ready_ = true;
return;
}
ExtensionService* service = extensions::ExtensionSystem::Get(profile_)->
extension_service();
if (!service || !service->is_ready())
return;
switch (type) {
case extensions::NOTIFICATION_EXTENSION_LOADED_DEPRECATED:
OnExtensionLoaded(content::Details<Extension>(details).ptr());
break;
case extensions::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED:
OnExtensionUnloaded(
content::Details<UnloadedExtensionInfo>(details)->extension);
break;
case extensions::NOTIFICATION_EXTENSION_PERMISSIONS_UPDATED:
OnExtensionPermissionsUpdated(
content::Details<UpdatedExtensionPermissionsInfo>(details)->extension,
content::Details<UpdatedExtensionPermissionsInfo>(details)->reason,
content::Details<UpdatedExtensionPermissionsInfo>(details)->
permissions);
break;
case chrome::NOTIFICATION_BACKGROUND_CONTENTS_SERVICE_CHANGED:
Update();
break;
default:
NOTREACHED() << "Received unexpected notification";
}
}
void BackgroundApplicationListModel::SendApplicationDataChangedNotifications(
const Extension* extension) {
FOR_EACH_OBSERVER(Observer, observers_, OnApplicationDataChanged(extension,
profile_));
}
void BackgroundApplicationListModel::OnExtensionLoaded(
const Extension* extension) {
// We only care about extensions that are background applications
if (!IsBackgroundApp(*extension, profile_))
return;
AssociateApplicationData(extension);
}
void BackgroundApplicationListModel::OnExtensionUnloaded(
const Extension* extension) {
if (!IsBackgroundApp(*extension, profile_))
return;
Update();
DissociateApplicationData(extension);
}
void BackgroundApplicationListModel::OnExtensionPermissionsUpdated(
const Extension* extension,
UpdatedExtensionPermissionsInfo::Reason reason,
const PermissionSet* permissions) {
if (permissions->HasAPIPermission(APIPermission::kBackground)) {
switch (reason) {
case UpdatedExtensionPermissionsInfo::ADDED:
DCHECK(IsBackgroundApp(*extension, profile_));
OnExtensionLoaded(extension);
break;
case UpdatedExtensionPermissionsInfo::REMOVED:
DCHECK(!IsBackgroundApp(*extension, profile_));
Update();
DissociateApplicationData(extension);
break;
default:
NOTREACHED();
}
}
}
void BackgroundApplicationListModel::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
// Update queries the extensions service of the profile with which the model was
// initialized to determine the current set of background applications. If that
// differs from the old list, it generates OnApplicationListChanged events for
// each observer.
void BackgroundApplicationListModel::Update() {
ExtensionService* service = extensions::ExtensionSystem::Get(profile_)->
extension_service();
// Discover current background applications, compare with previous list, which
// is consistently sorted, and notify observers if they differ.
ExtensionList extensions;
GetServiceApplications(service, &extensions);
ExtensionList::const_iterator old_cursor = extensions_.begin();
ExtensionList::const_iterator new_cursor = extensions.begin();
while (old_cursor != extensions_.end() &&
new_cursor != extensions.end() &&
(*old_cursor)->name() == (*new_cursor)->name() &&
(*old_cursor)->id() == (*new_cursor)->id()) {
++old_cursor;
++new_cursor;
}
if (old_cursor != extensions_.end() || new_cursor != extensions.end()) {
extensions_ = extensions;
FOR_EACH_OBSERVER(Observer, observers_, OnApplicationListChanged(profile_));
}
}
|