Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / thumbnails / thumbnail_service_impl.cc
1 // Copyright (c) 2012 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.
4
5 #include "chrome/browser/thumbnails/thumbnail_service_impl.h"
6
7 #include "base/command_line.h"
8 #include "base/memory/ref_counted_memory.h"
9 #include "base/time/time.h"
10 #include "chrome/browser/history/history_service.h"
11 #include "chrome/browser/thumbnails/content_based_thumbnailing_algorithm.h"
12 #include "chrome/browser/thumbnails/simple_thumbnail_crop.h"
13 #include "chrome/browser/thumbnails/thumbnailing_context.h"
14 #include "chrome/common/chrome_switches.h"
15 #include "components/search/search.h"
16 #include "content/public/browser/browser_thread.h"
17 #include "url/gurl.h"
18
19 using content::BrowserThread;
20
21 namespace {
22
23 // The thumbnail size in DIP.
24 const int kThumbnailWidth = 212;
25 const int kThumbnailHeight = 142;
26
27 // True if thumbnail retargeting feature is enabled (Finch/flags).
28 bool IsThumbnailRetargetingEnabled() {
29   if (!chrome::IsInstantExtendedAPIEnabled())
30     return false;
31
32   return CommandLine::ForCurrentProcess()->HasSwitch(
33       switches::kEnableThumbnailRetargeting);
34 }
35
36 void AddForcedURLOnUIThread(scoped_refptr<history::TopSites> top_sites,
37                             const GURL& url) {
38   DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
39
40   if (top_sites.get() != NULL)
41     top_sites->AddForcedURL(url, base::Time::Now());
42 }
43
44 }  // namespace
45
46 namespace thumbnails {
47
48 ThumbnailServiceImpl::ThumbnailServiceImpl(Profile* profile)
49     : top_sites_(profile->GetTopSites()),
50       use_thumbnail_retargeting_(IsThumbnailRetargetingEnabled()) {
51 }
52
53 ThumbnailServiceImpl::~ThumbnailServiceImpl() {
54 }
55
56 bool ThumbnailServiceImpl::SetPageThumbnail(const ThumbnailingContext& context,
57                                             const gfx::Image& thumbnail) {
58   scoped_refptr<history::TopSites> local_ptr(top_sites_);
59   if (local_ptr.get() == NULL)
60     return false;
61
62   return local_ptr->SetPageThumbnail(context.url, thumbnail, context.score);
63 }
64
65 bool ThumbnailServiceImpl::GetPageThumbnail(
66     const GURL& url,
67     bool prefix_match,
68     scoped_refptr<base::RefCountedMemory>* bytes) {
69   scoped_refptr<history::TopSites> local_ptr(top_sites_);
70   if (local_ptr.get() == NULL)
71     return false;
72
73   return local_ptr->GetPageThumbnail(url, prefix_match, bytes);
74 }
75
76 void ThumbnailServiceImpl::AddForcedURL(const GURL& url) {
77   scoped_refptr<history::TopSites> local_ptr(top_sites_);
78   if (local_ptr.get() == NULL)
79     return;
80
81   // Adding
82   BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
83                           base::Bind(AddForcedURLOnUIThread, local_ptr, url));
84 }
85
86 ThumbnailingAlgorithm* ThumbnailServiceImpl::GetThumbnailingAlgorithm()
87     const {
88   const gfx::Size thumbnail_size(kThumbnailWidth, kThumbnailHeight);
89   if (use_thumbnail_retargeting_)
90     return new ContentBasedThumbnailingAlgorithm(thumbnail_size);
91   return new SimpleThumbnailCrop(thumbnail_size);
92 }
93
94 bool ThumbnailServiceImpl::ShouldAcquirePageThumbnail(const GURL& url) {
95   scoped_refptr<history::TopSites> local_ptr(top_sites_);
96
97   if (local_ptr.get() == NULL)
98     return false;
99
100   // Skip if the given URL is not appropriate for history.
101   if (!HistoryService::CanAddURL(url))
102     return false;
103   // Skip if the top sites list is full, and the URL is not known.
104   if (local_ptr->IsNonForcedFull() && !local_ptr->IsKnownURL(url))
105     return false;
106   // Skip if we don't have to udpate the existing thumbnail.
107   ThumbnailScore current_score;
108   if (local_ptr->GetPageThumbnailScore(url, &current_score) &&
109       !current_score.ShouldConsiderUpdating())
110     return false;
111   // Skip if we don't have to udpate the temporary thumbnail (i.e. the one
112   // not yet saved).
113   ThumbnailScore temporary_score;
114   if (local_ptr->GetTemporaryPageThumbnailScore(url, &temporary_score) &&
115       !temporary_score.ShouldConsiderUpdating())
116     return false;
117
118   return true;
119 }
120
121 void ThumbnailServiceImpl::ShutdownOnUIThread() {
122   // Since each call uses its own scoped_refptr, we can just clear the reference
123   // here by assigning null. If another call is completed, it added its own
124   // reference.
125   top_sites_ = NULL;
126 }
127
128 }  // namespace thumbnails