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
|
// 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/search/instant_service.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/history/top_sites.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/instant_io_context.h"
#include "chrome/browser/search/instant_service_observer.h"
#include "chrome/browser/search/most_visited_iframe_source.h"
#include "chrome/browser/search/search.h"
#include "chrome/browser/search/suggestions/suggestions_source.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/search_engines/ui_thread_search_terms_data.h"
#include "chrome/browser/themes/theme_properties.h"
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "chrome/browser/thumbnails/thumbnail_list_source.h"
#include "chrome/browser/ui/search/instant_search_prerenderer.h"
#include "chrome/browser/ui/webui/favicon_source.h"
#include "chrome/browser/ui/webui/ntp/thumbnail_source.h"
#include "chrome/browser/ui/webui/theme_source.h"
#include "chrome/common/render_messages.h"
#include "components/search_engines/template_url_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/url_data_source.h"
#include "grit/theme_resources.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/sys_color_change_listener.h"
#if !defined(OS_ANDROID)
#include "chrome/browser/search/local_ntp_source.h"
#endif
namespace {
const int kSectionBorderAlphaTransparency = 80;
// Converts SkColor to RGBAColor
RGBAColor SkColorToRGBAColor(const SkColor& sKColor) {
RGBAColor color;
color.r = SkColorGetR(sKColor);
color.g = SkColorGetG(sKColor);
color.b = SkColorGetB(sKColor);
color.a = SkColorGetA(sKColor);
return color;
}
} // namespace
InstantService::InstantService(Profile* profile)
: profile_(profile),
template_url_service_(TemplateURLServiceFactory::GetForProfile(profile_)),
omnibox_start_margin_(chrome::kDisableStartMargin),
weak_ptr_factory_(this) {
// The initialization below depends on a typical set of browser threads. Skip
// it if we are running in a unit test without the full suite.
if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI))
return;
// This depends on the existence of the typical browser threads. Therefore it
// is only instantiated here (after the check for a UI thread above).
instant_io_context_ = new InstantIOContext();
previous_google_base_url_ =
GURL(UIThreadSearchTermsData(profile).GoogleBaseURLValue());
// TemplateURLService is NULL by default in tests.
if (template_url_service_) {
template_url_service_->AddObserver(this);
const TemplateURL* default_search_provider =
template_url_service_->GetDefaultSearchProvider();
if (default_search_provider) {
previous_default_search_provider_.reset(
new TemplateURLData(default_search_provider->data()));
}
}
ResetInstantSearchPrerenderer();
registrar_.Add(this,
content::NOTIFICATION_RENDERER_PROCESS_CREATED,
content::NotificationService::AllSources());
registrar_.Add(this,
content::NOTIFICATION_RENDERER_PROCESS_TERMINATED,
content::NotificationService::AllSources());
history::TopSites* top_sites = profile_->GetTopSites();
if (top_sites) {
registrar_.Add(this,
chrome::NOTIFICATION_TOP_SITES_CHANGED,
content::Source<history::TopSites>(top_sites));
}
if (profile_ && profile_->GetResourceContext()) {
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&InstantIOContext::SetUserDataOnIO,
profile->GetResourceContext(), instant_io_context_));
}
// Set up the data sources that Instant uses on the NTP.
#if defined(ENABLE_THEMES)
// Listen for theme installation.
registrar_.Add(this, chrome::NOTIFICATION_BROWSER_THEME_CHANGED,
content::Source<ThemeService>(
ThemeServiceFactory::GetForProfile(profile_)));
content::URLDataSource::Add(profile_, new ThemeSource(profile_));
#endif // defined(ENABLE_THEMES)
// TODO(aurimas) remove this #if once instant_service.cc is no longer compiled
// on Android.
#if !defined(OS_ANDROID)
content::URLDataSource::Add(profile_, new LocalNtpSource(profile_));
content::URLDataSource::Add(profile_, new ThumbnailSource(profile_, false));
content::URLDataSource::Add(profile_, new ThumbnailSource(profile_, true));
content::URLDataSource::Add(profile_, new ThumbnailListSource(profile_));
#endif // !defined(OS_ANDROID)
content::URLDataSource::Add(
profile_, new FaviconSource(profile_, FaviconSource::FAVICON));
content::URLDataSource::Add(profile_, new MostVisitedIframeSource());
content::URLDataSource::Add(
profile_, new suggestions::SuggestionsSource(profile_));
}
InstantService::~InstantService() {
if (template_url_service_)
template_url_service_->RemoveObserver(this);
}
void InstantService::AddInstantProcess(int process_id) {
process_ids_.insert(process_id);
if (instant_io_context_.get()) {
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&InstantIOContext::AddInstantProcessOnIO,
instant_io_context_, process_id));
}
}
bool InstantService::IsInstantProcess(int process_id) const {
return process_ids_.find(process_id) != process_ids_.end();
}
void InstantService::AddObserver(InstantServiceObserver* observer) {
observers_.AddObserver(observer);
}
void InstantService::RemoveObserver(InstantServiceObserver* observer) {
observers_.RemoveObserver(observer);
}
void InstantService::DeleteMostVisitedItem(const GURL& url) {
history::TopSites* top_sites = profile_->GetTopSites();
if (!top_sites)
return;
top_sites->AddBlacklistedURL(url);
}
void InstantService::UndoMostVisitedDeletion(const GURL& url) {
history::TopSites* top_sites = profile_->GetTopSites();
if (!top_sites)
return;
top_sites->RemoveBlacklistedURL(url);
}
void InstantService::UndoAllMostVisitedDeletions() {
history::TopSites* top_sites = profile_->GetTopSites();
if (!top_sites)
return;
top_sites->ClearBlacklistedURLs();
}
void InstantService::UpdateThemeInfo() {
// Update theme background info.
// Initialize |theme_info| if necessary.
if (!theme_info_)
OnThemeChanged(ThemeServiceFactory::GetForProfile(profile_));
else
OnThemeChanged(NULL);
}
void InstantService::UpdateMostVisitedItemsInfo() {
NotifyAboutMostVisitedItems();
}
void InstantService::Shutdown() {
process_ids_.clear();
if (instant_io_context_.get()) {
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&InstantIOContext::ClearInstantProcessesOnIO,
instant_io_context_));
}
instant_io_context_ = NULL;
}
void InstantService::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
switch (type) {
case content::NOTIFICATION_RENDERER_PROCESS_CREATED:
SendSearchURLsToRenderer(
content::Source<content::RenderProcessHost>(source).ptr());
break;
case content::NOTIFICATION_RENDERER_PROCESS_TERMINATED:
OnRendererProcessTerminated(
content::Source<content::RenderProcessHost>(source)->GetID());
break;
case chrome::NOTIFICATION_TOP_SITES_CHANGED: {
history::TopSites* top_sites = profile_->GetTopSites();
if (top_sites) {
top_sites->GetMostVisitedURLs(
base::Bind(&InstantService::OnMostVisitedItemsReceived,
weak_ptr_factory_.GetWeakPtr()), false);
}
break;
}
#if defined(ENABLE_THEMES)
case chrome::NOTIFICATION_BROWSER_THEME_CHANGED: {
OnThemeChanged(content::Source<ThemeService>(source).ptr());
break;
}
#endif // defined(ENABLE_THEMES)
default:
NOTREACHED() << "Unexpected notification type in InstantService.";
}
}
void InstantService::SendSearchURLsToRenderer(content::RenderProcessHost* rph) {
rph->Send(new ChromeViewMsg_SetSearchURLs(
chrome::GetSearchURLs(profile_), chrome::GetNewTabPageURL(profile_)));
}
void InstantService::OnOmniboxStartMarginChanged(int start_margin) {
omnibox_start_margin_ = start_margin;
FOR_EACH_OBSERVER(InstantServiceObserver, observers_,
OmniboxStartMarginChanged(omnibox_start_margin_));
}
void InstantService::OnRendererProcessTerminated(int process_id) {
process_ids_.erase(process_id);
if (instant_io_context_.get()) {
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&InstantIOContext::RemoveInstantProcessOnIO,
instant_io_context_, process_id));
}
}
void InstantService::OnMostVisitedItemsReceived(
const history::MostVisitedURLList& data) {
history::MostVisitedURLList reordered_data(data);
std::vector<InstantMostVisitedItem> new_most_visited_items;
for (size_t i = 0; i < reordered_data.size(); i++) {
const history::MostVisitedURL& url = reordered_data[i];
InstantMostVisitedItem item;
item.url = url.url;
item.title = url.title;
new_most_visited_items.push_back(item);
}
most_visited_items_ = new_most_visited_items;
NotifyAboutMostVisitedItems();
}
void InstantService::NotifyAboutMostVisitedItems() {
FOR_EACH_OBSERVER(InstantServiceObserver, observers_,
MostVisitedItemsChanged(most_visited_items_));
}
void InstantService::OnThemeChanged(ThemeService* theme_service) {
if (!theme_service) {
DCHECK(theme_info_.get());
FOR_EACH_OBSERVER(InstantServiceObserver, observers_,
ThemeInfoChanged(*theme_info_));
return;
}
// Get theme information from theme service.
theme_info_.reset(new ThemeBackgroundInfo());
// Get if the current theme is the default theme.
theme_info_->using_default_theme = theme_service->UsingDefaultTheme();
// Get theme colors.
SkColor background_color =
theme_service->GetColor(ThemeProperties::COLOR_NTP_BACKGROUND);
SkColor text_color =
theme_service->GetColor(ThemeProperties::COLOR_NTP_TEXT);
SkColor link_color =
theme_service->GetColor(ThemeProperties::COLOR_NTP_LINK);
SkColor text_color_light =
theme_service->GetColor(ThemeProperties::COLOR_NTP_TEXT_LIGHT);
SkColor header_color =
theme_service->GetColor(ThemeProperties::COLOR_NTP_HEADER);
// Generate section border color from the header color.
SkColor section_border_color =
SkColorSetARGB(kSectionBorderAlphaTransparency,
SkColorGetR(header_color),
SkColorGetG(header_color),
SkColorGetB(header_color));
// Invert colors if needed.
if (gfx::IsInvertedColorScheme()) {
background_color = color_utils::InvertColor(background_color);
text_color = color_utils::InvertColor(text_color);
link_color = color_utils::InvertColor(link_color);
text_color_light = color_utils::InvertColor(text_color_light);
header_color = color_utils::InvertColor(header_color);
section_border_color = color_utils::InvertColor(section_border_color);
}
// Set colors.
theme_info_->background_color = SkColorToRGBAColor(background_color);
theme_info_->text_color = SkColorToRGBAColor(text_color);
theme_info_->link_color = SkColorToRGBAColor(link_color);
theme_info_->text_color_light = SkColorToRGBAColor(text_color_light);
theme_info_->header_color = SkColorToRGBAColor(header_color);
theme_info_->section_border_color = SkColorToRGBAColor(section_border_color);
int logo_alternate = theme_service->GetDisplayProperty(
ThemeProperties::NTP_LOGO_ALTERNATE);
theme_info_->logo_alternate = logo_alternate == 1;
if (theme_service->HasCustomImage(IDR_THEME_NTP_BACKGROUND)) {
// Set theme id for theme background image url.
theme_info_->theme_id = theme_service->GetThemeID();
// Set theme background image horizontal alignment.
int alignment = theme_service->GetDisplayProperty(
ThemeProperties::NTP_BACKGROUND_ALIGNMENT);
if (alignment & ThemeProperties::ALIGN_LEFT)
theme_info_->image_horizontal_alignment = THEME_BKGRND_IMAGE_ALIGN_LEFT;
else if (alignment & ThemeProperties::ALIGN_RIGHT)
theme_info_->image_horizontal_alignment = THEME_BKGRND_IMAGE_ALIGN_RIGHT;
else
theme_info_->image_horizontal_alignment = THEME_BKGRND_IMAGE_ALIGN_CENTER;
// Set theme background image vertical alignment.
if (alignment & ThemeProperties::ALIGN_TOP)
theme_info_->image_vertical_alignment = THEME_BKGRND_IMAGE_ALIGN_TOP;
else if (alignment & ThemeProperties::ALIGN_BOTTOM)
theme_info_->image_vertical_alignment = THEME_BKGRND_IMAGE_ALIGN_BOTTOM;
else
theme_info_->image_vertical_alignment = THEME_BKGRND_IMAGE_ALIGN_CENTER;
// Set theme backgorund image tiling.
int tiling = theme_service->GetDisplayProperty(
ThemeProperties::NTP_BACKGROUND_TILING);
switch (tiling) {
case ThemeProperties::NO_REPEAT:
theme_info_->image_tiling = THEME_BKGRND_IMAGE_NO_REPEAT;
break;
case ThemeProperties::REPEAT_X:
theme_info_->image_tiling = THEME_BKGRND_IMAGE_REPEAT_X;
break;
case ThemeProperties::REPEAT_Y:
theme_info_->image_tiling = THEME_BKGRND_IMAGE_REPEAT_Y;
break;
case ThemeProperties::REPEAT:
theme_info_->image_tiling = THEME_BKGRND_IMAGE_REPEAT;
break;
}
// Set theme background image height.
gfx::ImageSkia* image = theme_service->GetImageSkiaNamed(
IDR_THEME_NTP_BACKGROUND);
DCHECK(image);
theme_info_->image_height = image->height();
theme_info_->has_attribution =
theme_service->HasCustomImage(IDR_THEME_NTP_ATTRIBUTION);
}
FOR_EACH_OBSERVER(InstantServiceObserver, observers_,
ThemeInfoChanged(*theme_info_));
}
void InstantService::OnTemplateURLServiceChanged() {
// Check whether the default search provider was changed.
const TemplateURL* template_url =
template_url_service_->GetDefaultSearchProvider();
bool default_search_provider_changed = !TemplateURL::MatchesData(
template_url, previous_default_search_provider_.get(),
UIThreadSearchTermsData(profile_));
if (default_search_provider_changed) {
previous_default_search_provider_.reset(
template_url ? new TemplateURLData(template_url->data()) : NULL);
}
// Note that, even if the TemplateURL for the Default Search Provider has not
// changed, the effective URLs might change if they reference the Google base
// URL. The TemplateURLService will notify us when the effective URL changes
// in this way but it's up to us to do the work to check both.
GURL google_base_url(UIThreadSearchTermsData(profile_).GoogleBaseURLValue());
if (google_base_url != previous_google_base_url_) {
previous_google_base_url_ = google_base_url;
if (template_url && template_url->HasGoogleBaseURLs(
UIThreadSearchTermsData(profile_)))
default_search_provider_changed = true;
}
if (default_search_provider_changed) {
ResetInstantSearchPrerenderer();
FOR_EACH_OBSERVER(InstantServiceObserver, observers_,
DefaultSearchProviderChanged());
}
}
void InstantService::ResetInstantSearchPrerenderer() {
if (!chrome::ShouldPrefetchSearchResults())
return;
GURL url(chrome::GetSearchResultPrefetchBaseURL(profile_));
instant_prerenderer_.reset(
url.is_valid() ? new InstantSearchPrerenderer(profile_, url) : NULL);
}
|