1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/search/instant_service.h"
7 #include "base/metrics/field_trial.h"
8 #include "base/strings/string_util.h"
9 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/browser/chrome_notification_types.h"
11 #include "chrome/browser/favicon/fallback_icon_service_factory.h"
12 #include "chrome/browser/favicon/large_icon_service_factory.h"
13 #include "chrome/browser/history/top_sites_factory.h"
14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/search/instant_io_context.h"
16 #include "chrome/browser/search/instant_service_observer.h"
17 #include "chrome/browser/search/most_visited_iframe_source.h"
18 #include "chrome/browser/search/search.h"
19 #include "chrome/browser/search/suggestions/suggestions_service_factory.h"
20 #include "chrome/browser/search/suggestions/suggestions_source.h"
21 #include "chrome/browser/search/thumbnail_source.h"
22 #include "chrome/browser/search_engines/template_url_service_factory.h"
23 #include "chrome/browser/search_engines/ui_thread_search_terms_data.h"
24 #include "chrome/browser/thumbnails/thumbnail_list_source.h"
25 #include "chrome/browser/ui/search/instant_search_prerenderer.h"
26 #include "chrome/browser/ui/webui/fallback_icon_source.h"
27 #include "chrome/browser/ui/webui/favicon_source.h"
28 #include "chrome/browser/ui/webui/large_icon_source.h"
29 #include "chrome/browser/ui/webui/theme_source.h"
30 #include "chrome/common/render_messages.h"
31 #include "components/favicon/core/fallback_icon_service.h"
32 #include "components/favicon/core/large_icon_service.h"
33 #include "components/history/core/browser/top_sites.h"
34 #include "components/keyed_service/core/service_access_type.h"
35 #include "components/search/search.h"
36 #include "components/search_engines/template_url_service.h"
37 #include "content/public/browser/browser_thread.h"
38 #include "content/public/browser/notification_service.h"
39 #include "content/public/browser/notification_types.h"
40 #include "content/public/browser/render_process_host.h"
41 #include "content/public/browser/url_data_source.h"
42 #include "grit/theme_resources.h"
43 #include "third_party/skia/include/core/SkColor.h"
44 #include "ui/gfx/color_utils.h"
45 #include "ui/gfx/image/image_skia.h"
47 #if !defined(OS_ANDROID)
48 #include "chrome/browser/search/local_ntp_source.h"
51 #if defined(ENABLE_THEMES)
52 #include "chrome/browser/themes/theme_properties.h"
53 #include "chrome/browser/themes/theme_service.h"
54 #include "chrome/browser/themes/theme_service_factory.h"
55 #endif // defined(ENABLE_THEMES)
59 const char kLocalNTPSuggestionService
[] = "LocalNTPSuggestionsService";
60 const char kLocalNTPSuggestionServiceEnabled
[] = "Enabled";
62 bool IsLocalNTPSuggestionServiceEnabled() {
63 return base::StartsWith(
64 base::FieldTrialList::FindFullName(kLocalNTPSuggestionService
),
65 kLocalNTPSuggestionServiceEnabled
, base::CompareCase::INSENSITIVE_ASCII
);
70 InstantService::InstantService(Profile
* profile
)
72 template_url_service_(TemplateURLServiceFactory::GetForProfile(profile_
)),
73 omnibox_start_margin_(search::kDisableStartMargin
),
74 suggestions_service_(NULL
),
75 weak_ptr_factory_(this) {
76 // The initialization below depends on a typical set of browser threads. Skip
77 // it if we are running in a unit test without the full suite.
78 if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI
))
81 // This depends on the existence of the typical browser threads. Therefore it
82 // is only instantiated here (after the check for a UI thread above).
83 instant_io_context_
= new InstantIOContext();
85 previous_google_base_url_
=
86 GURL(UIThreadSearchTermsData(profile
).GoogleBaseURLValue());
88 // TemplateURLService is NULL by default in tests.
89 if (template_url_service_
) {
90 template_url_service_
->AddObserver(this);
91 const TemplateURL
* default_search_provider
=
92 template_url_service_
->GetDefaultSearchProvider();
93 if (default_search_provider
) {
94 previous_default_search_provider_
.reset(
95 new TemplateURLData(default_search_provider
->data()));
99 ResetInstantSearchPrerenderer();
102 content::NOTIFICATION_RENDERER_PROCESS_CREATED
,
103 content::NotificationService::AllSources());
105 content::NOTIFICATION_RENDERER_PROCESS_TERMINATED
,
106 content::NotificationService::AllSources());
108 scoped_refptr
<history::TopSites
> top_sites
=
109 TopSitesFactory::GetForProfile(profile_
);
111 top_sites
->AddObserver(this);
113 if (profile_
&& profile_
->GetResourceContext()) {
114 content::BrowserThread::PostTask(
115 content::BrowserThread::IO
, FROM_HERE
,
116 base::Bind(&InstantIOContext::SetUserDataOnIO
,
117 profile
->GetResourceContext(), instant_io_context_
));
120 // Set up the data sources that Instant uses on the NTP.
121 #if defined(ENABLE_THEMES)
122 // Listen for theme installation.
123 registrar_
.Add(this, chrome::NOTIFICATION_BROWSER_THEME_CHANGED
,
124 content::Source
<ThemeService
>(
125 ThemeServiceFactory::GetForProfile(profile_
)));
127 content::URLDataSource::Add(profile_
, new ThemeSource(profile_
));
128 #endif // defined(ENABLE_THEMES)
130 // TODO(aurimas) remove this #if once instant_service.cc is no longer compiled
132 #if !defined(OS_ANDROID)
133 content::URLDataSource::Add(profile_
, new LocalNtpSource(profile_
));
134 content::URLDataSource::Add(profile_
, new ThumbnailSource(profile_
, false));
135 content::URLDataSource::Add(profile_
, new ThumbnailSource(profile_
, true));
136 content::URLDataSource::Add(profile_
, new ThumbnailListSource(profile_
));
137 #endif // !defined(OS_ANDROID)
139 favicon::FallbackIconService
* fallback_icon_service
=
140 FallbackIconServiceFactory::GetForBrowserContext(profile_
);
141 favicon::LargeIconService
* large_icon_service
=
142 LargeIconServiceFactory::GetForBrowserContext(profile_
);
143 content::URLDataSource::Add(
144 profile_
, new FallbackIconSource(fallback_icon_service
));
145 content::URLDataSource::Add(
146 profile_
, new FaviconSource(profile_
, FaviconSource::FAVICON
));
147 content::URLDataSource::Add(
148 profile_
, new LargeIconSource(fallback_icon_service
, large_icon_service
));
149 content::URLDataSource::Add(profile_
, new MostVisitedIframeSource());
150 content::URLDataSource::Add(
151 profile_
, new suggestions::SuggestionsSource(profile_
));
153 if (IsLocalNTPSuggestionServiceEnabled()) {
154 suggestions_service_
=
155 suggestions::SuggestionsServiceFactory::GetForProfile(profile_
);
158 if (suggestions_service_
) {
159 suggestions_service_
->FetchSuggestionsData(
160 suggestions::INITIALIZED_ENABLED_HISTORY
,
161 base::Bind(&InstantService::OnSuggestionsAvailable
,
162 weak_ptr_factory_
.GetWeakPtr()));
166 InstantService::~InstantService() {
167 if (template_url_service_
)
168 template_url_service_
->RemoveObserver(this);
171 void InstantService::AddInstantProcess(int process_id
) {
172 process_ids_
.insert(process_id
);
174 if (instant_io_context_
.get()) {
175 content::BrowserThread::PostTask(
176 content::BrowserThread::IO
, FROM_HERE
,
177 base::Bind(&InstantIOContext::AddInstantProcessOnIO
,
178 instant_io_context_
, process_id
));
182 bool InstantService::IsInstantProcess(int process_id
) const {
183 return process_ids_
.find(process_id
) != process_ids_
.end();
186 void InstantService::AddObserver(InstantServiceObserver
* observer
) {
187 observers_
.AddObserver(observer
);
190 void InstantService::RemoveObserver(InstantServiceObserver
* observer
) {
191 observers_
.RemoveObserver(observer
);
194 void InstantService::DeleteMostVisitedItem(const GURL
& url
) {
195 scoped_refptr
<history::TopSites
> top_sites
=
196 TopSitesFactory::GetForProfile(profile_
);
198 top_sites
->AddBlacklistedURL(url
);
200 if (suggestions_service_
) {
201 suggestions_service_
->BlacklistURL(
202 url
, base::Bind(&InstantService::OnSuggestionsAvailable
,
203 weak_ptr_factory_
.GetWeakPtr()),
208 void InstantService::UndoMostVisitedDeletion(const GURL
& url
) {
209 scoped_refptr
<history::TopSites
> top_sites
=
210 TopSitesFactory::GetForProfile(profile_
);
212 top_sites
->RemoveBlacklistedURL(url
);
214 if (suggestions_service_
) {
215 suggestions_service_
->UndoBlacklistURL(
216 url
, base::Bind(&InstantService::OnSuggestionsAvailable
,
217 weak_ptr_factory_
.GetWeakPtr()),
222 void InstantService::UndoAllMostVisitedDeletions() {
223 scoped_refptr
<history::TopSites
> top_sites
=
224 TopSitesFactory::GetForProfile(profile_
);
226 top_sites
->ClearBlacklistedURLs();
228 if (suggestions_service_
) {
229 suggestions_service_
->ClearBlacklist(
230 base::Bind(&InstantService::OnSuggestionsAvailable
,
231 weak_ptr_factory_
.GetWeakPtr()));
235 void InstantService::UpdateThemeInfo() {
236 #if defined(ENABLE_THEMES)
237 // Update theme background info.
238 // Initialize |theme_info| if necessary.
240 OnThemeChanged(ThemeServiceFactory::GetForProfile(profile_
));
242 OnThemeChanged(NULL
);
243 #endif // defined(ENABLE_THEMES)
246 void InstantService::UpdateMostVisitedItemsInfo() {
247 NotifyAboutMostVisitedItems();
250 void InstantService::Shutdown() {
251 process_ids_
.clear();
253 if (instant_io_context_
.get()) {
254 content::BrowserThread::PostTask(
255 content::BrowserThread::IO
, FROM_HERE
,
256 base::Bind(&InstantIOContext::ClearInstantProcessesOnIO
,
257 instant_io_context_
));
260 scoped_refptr
<history::TopSites
> top_sites
=
261 TopSitesFactory::GetForProfile(profile_
);
263 top_sites
->RemoveObserver(this);
265 instant_io_context_
= NULL
;
268 void InstantService::Observe(int type
,
269 const content::NotificationSource
& source
,
270 const content::NotificationDetails
& details
) {
272 case content::NOTIFICATION_RENDERER_PROCESS_CREATED
:
273 SendSearchURLsToRenderer(
274 content::Source
<content::RenderProcessHost
>(source
).ptr());
276 case content::NOTIFICATION_RENDERER_PROCESS_TERMINATED
:
277 OnRendererProcessTerminated(
278 content::Source
<content::RenderProcessHost
>(source
)->GetID());
280 #if defined(ENABLE_THEMES)
281 case chrome::NOTIFICATION_BROWSER_THEME_CHANGED
: {
282 OnThemeChanged(content::Source
<ThemeService
>(source
).ptr());
285 #endif // defined(ENABLE_THEMES)
287 NOTREACHED() << "Unexpected notification type in InstantService.";
291 void InstantService::SendSearchURLsToRenderer(content::RenderProcessHost
* rph
) {
292 rph
->Send(new ChromeViewMsg_SetSearchURLs(
293 search::GetSearchURLs(profile_
), search::GetNewTabPageURL(profile_
)));
296 void InstantService::OnOmniboxStartMarginChanged(int start_margin
) {
297 omnibox_start_margin_
= start_margin
;
298 FOR_EACH_OBSERVER(InstantServiceObserver
, observers_
,
299 OmniboxStartMarginChanged(omnibox_start_margin_
));
302 void InstantService::OnRendererProcessTerminated(int process_id
) {
303 process_ids_
.erase(process_id
);
305 if (instant_io_context_
.get()) {
306 content::BrowserThread::PostTask(
307 content::BrowserThread::IO
, FROM_HERE
,
308 base::Bind(&InstantIOContext::RemoveInstantProcessOnIO
,
309 instant_io_context_
, process_id
));
313 void InstantService::OnSuggestionsAvailable(
314 const suggestions::SuggestionsProfile
& profile
) {
315 std::vector
<InstantMostVisitedItem
> new_suggestions_items
;
316 for (int i
= 0; i
< profile
.suggestions_size(); ++i
) {
317 const suggestions::ChromeSuggestion
& suggestion
= profile
.suggestions(i
);
319 InstantMostVisitedItem item
;
320 item
.url
= GURL(suggestion
.url());
321 item
.title
= base::UTF8ToUTF16(suggestion
.title());
322 if (suggestion
.has_thumbnail()) {
323 item
.thumbnail
= GURL(suggestion
.thumbnail());
325 if (suggestion
.has_favicon_url()) {
326 item
.favicon
= GURL(suggestion
.favicon_url());
328 new_suggestions_items
.push_back(item
);
330 suggestions_items_
= new_suggestions_items
;
331 NotifyAboutMostVisitedItems();
334 void InstantService::OnMostVisitedItemsReceived(
335 const history::MostVisitedURLList
& data
) {
336 history::MostVisitedURLList
reordered_data(data
);
337 std::vector
<InstantMostVisitedItem
> new_most_visited_items
;
338 for (size_t i
= 0; i
< reordered_data
.size(); i
++) {
339 const history::MostVisitedURL
& url
= reordered_data
[i
];
340 InstantMostVisitedItem item
;
342 item
.title
= url
.title
;
343 new_most_visited_items
.push_back(item
);
346 most_visited_items_
= new_most_visited_items
;
347 NotifyAboutMostVisitedItems();
350 void InstantService::NotifyAboutMostVisitedItems() {
351 if (suggestions_service_
&& !suggestions_items_
.empty()) {
352 FOR_EACH_OBSERVER(InstantServiceObserver
, observers_
,
353 MostVisitedItemsChanged(suggestions_items_
));
355 FOR_EACH_OBSERVER(InstantServiceObserver
, observers_
,
356 MostVisitedItemsChanged(most_visited_items_
));
360 #if defined(ENABLE_THEMES)
364 const int kSectionBorderAlphaTransparency
= 80;
366 // Converts SkColor to RGBAColor
367 RGBAColor
SkColorToRGBAColor(const SkColor
& sKColor
) {
369 color
.r
= SkColorGetR(sKColor
);
370 color
.g
= SkColorGetG(sKColor
);
371 color
.b
= SkColorGetB(sKColor
);
372 color
.a
= SkColorGetA(sKColor
);
378 void InstantService::OnThemeChanged(ThemeService
* theme_service
) {
379 if (!theme_service
) {
380 DCHECK(theme_info_
.get());
381 FOR_EACH_OBSERVER(InstantServiceObserver
, observers_
,
382 ThemeInfoChanged(*theme_info_
));
386 // Get theme information from theme service.
387 theme_info_
.reset(new ThemeBackgroundInfo());
389 // Get if the current theme is the default theme.
390 theme_info_
->using_default_theme
= theme_service
->UsingDefaultTheme();
393 SkColor background_color
=
394 theme_service
->GetColor(ThemeProperties::COLOR_NTP_BACKGROUND
);
396 theme_service
->GetColor(ThemeProperties::COLOR_NTP_TEXT
);
398 theme_service
->GetColor(ThemeProperties::COLOR_NTP_LINK
);
399 SkColor text_color_light
=
400 theme_service
->GetColor(ThemeProperties::COLOR_NTP_TEXT_LIGHT
);
401 SkColor header_color
=
402 theme_service
->GetColor(ThemeProperties::COLOR_NTP_HEADER
);
403 // Generate section border color from the header color.
404 SkColor section_border_color
=
405 SkColorSetARGB(kSectionBorderAlphaTransparency
,
406 SkColorGetR(header_color
),
407 SkColorGetG(header_color
),
408 SkColorGetB(header_color
));
410 // Invert colors if needed.
411 if (color_utils::IsInvertedColorScheme()) {
412 background_color
= color_utils::InvertColor(background_color
);
413 text_color
= color_utils::InvertColor(text_color
);
414 link_color
= color_utils::InvertColor(link_color
);
415 text_color_light
= color_utils::InvertColor(text_color_light
);
416 header_color
= color_utils::InvertColor(header_color
);
417 section_border_color
= color_utils::InvertColor(section_border_color
);
421 theme_info_
->background_color
= SkColorToRGBAColor(background_color
);
422 theme_info_
->text_color
= SkColorToRGBAColor(text_color
);
423 theme_info_
->link_color
= SkColorToRGBAColor(link_color
);
424 theme_info_
->text_color_light
= SkColorToRGBAColor(text_color_light
);
425 theme_info_
->header_color
= SkColorToRGBAColor(header_color
);
426 theme_info_
->section_border_color
= SkColorToRGBAColor(section_border_color
);
428 int logo_alternate
= theme_service
->GetDisplayProperty(
429 ThemeProperties::NTP_LOGO_ALTERNATE
);
430 theme_info_
->logo_alternate
= logo_alternate
== 1;
432 if (theme_service
->HasCustomImage(IDR_THEME_NTP_BACKGROUND
)) {
433 // Set theme id for theme background image url.
434 theme_info_
->theme_id
= theme_service
->GetThemeID();
436 // Set theme background image horizontal alignment.
437 int alignment
= theme_service
->GetDisplayProperty(
438 ThemeProperties::NTP_BACKGROUND_ALIGNMENT
);
439 if (alignment
& ThemeProperties::ALIGN_LEFT
)
440 theme_info_
->image_horizontal_alignment
= THEME_BKGRND_IMAGE_ALIGN_LEFT
;
441 else if (alignment
& ThemeProperties::ALIGN_RIGHT
)
442 theme_info_
->image_horizontal_alignment
= THEME_BKGRND_IMAGE_ALIGN_RIGHT
;
444 theme_info_
->image_horizontal_alignment
= THEME_BKGRND_IMAGE_ALIGN_CENTER
;
446 // Set theme background image vertical alignment.
447 if (alignment
& ThemeProperties::ALIGN_TOP
)
448 theme_info_
->image_vertical_alignment
= THEME_BKGRND_IMAGE_ALIGN_TOP
;
449 else if (alignment
& ThemeProperties::ALIGN_BOTTOM
)
450 theme_info_
->image_vertical_alignment
= THEME_BKGRND_IMAGE_ALIGN_BOTTOM
;
452 theme_info_
->image_vertical_alignment
= THEME_BKGRND_IMAGE_ALIGN_CENTER
;
454 // Set theme backgorund image tiling.
455 int tiling
= theme_service
->GetDisplayProperty(
456 ThemeProperties::NTP_BACKGROUND_TILING
);
458 case ThemeProperties::NO_REPEAT
:
459 theme_info_
->image_tiling
= THEME_BKGRND_IMAGE_NO_REPEAT
;
461 case ThemeProperties::REPEAT_X
:
462 theme_info_
->image_tiling
= THEME_BKGRND_IMAGE_REPEAT_X
;
464 case ThemeProperties::REPEAT_Y
:
465 theme_info_
->image_tiling
= THEME_BKGRND_IMAGE_REPEAT_Y
;
467 case ThemeProperties::REPEAT
:
468 theme_info_
->image_tiling
= THEME_BKGRND_IMAGE_REPEAT
;
472 // Set theme background image height.
473 gfx::ImageSkia
* image
= theme_service
->GetImageSkiaNamed(
474 IDR_THEME_NTP_BACKGROUND
);
476 theme_info_
->image_height
= image
->height();
478 theme_info_
->has_attribution
=
479 theme_service
->HasCustomImage(IDR_THEME_NTP_ATTRIBUTION
);
482 FOR_EACH_OBSERVER(InstantServiceObserver
, observers_
,
483 ThemeInfoChanged(*theme_info_
));
485 #endif // defined(ENABLE_THEMES)
487 void InstantService::OnTemplateURLServiceChanged() {
488 // Check whether the default search provider was changed.
489 const TemplateURL
* template_url
=
490 template_url_service_
->GetDefaultSearchProvider();
491 bool default_search_provider_changed
= !TemplateURL::MatchesData(
492 template_url
, previous_default_search_provider_
.get(),
493 UIThreadSearchTermsData(profile_
));
494 if (default_search_provider_changed
) {
495 previous_default_search_provider_
.reset(
496 template_url
? new TemplateURLData(template_url
->data()) : NULL
);
499 // Note that, even if the TemplateURL for the Default Search Provider has not
500 // changed, the effective URLs might change if they reference the Google base
501 // URL. The TemplateURLService will notify us when the effective URL changes
502 // in this way but it's up to us to do the work to check both.
503 bool google_base_url_domain_changed
= false;
504 GURL
google_base_url(UIThreadSearchTermsData(profile_
).GoogleBaseURLValue());
505 if (google_base_url
!= previous_google_base_url_
) {
506 previous_google_base_url_
= google_base_url
;
507 if (template_url
&& template_url
->HasGoogleBaseURLs(
508 UIThreadSearchTermsData(profile_
)))
509 google_base_url_domain_changed
= true;
512 if (default_search_provider_changed
|| google_base_url_domain_changed
) {
513 ResetInstantSearchPrerenderer();
515 InstantServiceObserver
, observers_
,
516 DefaultSearchProviderChanged(google_base_url_domain_changed
));
520 void InstantService::TopSitesLoaded(history::TopSites
* top_sites
) {
523 void InstantService::TopSitesChanged(history::TopSites
* top_sites
,
524 ChangeReason change_reason
) {
525 // As forced urls already come from tiles, we can safely ignore those updates.
526 if (change_reason
== history::TopSitesObserver::ChangeReason::FORCED_URL
)
528 top_sites
->GetMostVisitedURLs(
529 base::Bind(&InstantService::OnMostVisitedItemsReceived
,
530 weak_ptr_factory_
.GetWeakPtr()),
534 void InstantService::ResetInstantSearchPrerenderer() {
535 if (!search::ShouldPrefetchSearchResults())
538 GURL
url(search::GetSearchResultPrefetchBaseURL(profile_
));
539 instant_prerenderer_
.reset(
540 url
.is_valid() ? new InstantSearchPrerenderer(profile_
, url
) : NULL
);