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
|
// Copyright (c) 2009 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/history/top_sites.h"
#include "base/logging.h"
#include "gfx/codec/jpeg_codec.h"
#include "third_party/skia/include/core/SkBitmap.h"
namespace history {
TopSites::TopSites() {
}
TopSites::~TopSites() {
}
bool TopSites::Init() {
// TODO(brettw) read the database here.
return true;
}
bool TopSites::SetPageThumbnail(const GURL& url,
const SkBitmap& thumbnail,
const ThumbnailScore& score) {
AutoLock lock(lock_);
std::map<GURL, size_t>::iterator found = canonical_urls_.find(url);
if (found == canonical_urls_.end())
return false; // This URL is not known to us.
MostVisitedURL& most_visited = top_sites_[found->second];
Images& image = top_images_[most_visited.url];
// When comparing the thumbnail scores, we need to take into account the
// redirect hops, which are not generated when the thumbnail is becuase the
// redirects weren't known. We fill that in here since we know the redirects.
ThumbnailScore new_score_with_redirects(score);
new_score_with_redirects.redirect_hops_from_dest =
GetRedirectDistanceForURL(most_visited, url);
if (!ShouldReplaceThumbnailWith(image.thumbnail_score,
new_score_with_redirects))
return false; // The one we already have is better.
image.thumbnail = new RefCountedBytes;
SkAutoLockPixels thumbnail_lock(thumbnail);
bool encoded = gfx::JPEGCodec::Encode(
reinterpret_cast<unsigned char*>(thumbnail.getAddr32(0, 0)),
gfx::JPEGCodec::FORMAT_BGRA, thumbnail.width(),
thumbnail.height(),
static_cast<int>(thumbnail.rowBytes()), 90,
&image.thumbnail->data);
if (!encoded)
return false;
image.thumbnail_score = new_score_with_redirects;
return true;
}
void TopSites::StoreMostVisited(std::vector<MostVisitedURL>* most_visited) {
lock_.AssertAcquired();
// TODO(brettw) filter for blacklist!
if (!top_sites_.empty()) {
std::vector<size_t> added;
std::vector<size_t> deleted;
std::vector<size_t> moved;
DiffMostVisited(top_sites_, *most_visited, &added, &deleted, &moved);
// Delete all the thumbnails associated with URLs that were deleted.
for (size_t i = 0; i < deleted.size(); i++) {
std::map<GURL, Images>::iterator found =
top_images_.find(top_sites_[deleted[i]].url);
if (found != top_images_.end())
top_images_.erase(found);
}
// TODO(brettw) write the new data to disk.
}
// Take ownership of the most visited data.
top_sites_.clear();
top_sites_.swap(*most_visited);
// Save the redirect information for quickly mapping to the canonical URLs.
canonical_urls_.clear();
for (size_t i = 0; i < top_sites_.size(); i++)
StoreRedirectChain(top_sites_[i].redirects, i);
}
void TopSites::StoreRedirectChain(const RedirectList& redirects,
size_t destination) {
lock_.AssertAcquired();
if (redirects.empty()) {
NOTREACHED();
return;
}
// We shouldn't get any duplicates.
DCHECK(canonical_urls_.find(redirects[0]) == canonical_urls_.end());
// Map all the redirected URLs to the destination.
for (size_t i = 0; i < redirects.size(); i++)
canonical_urls_[redirects[i]] = destination;
}
GURL TopSites::GetCanonicalURL(const GURL& url) const {
lock_.AssertAcquired();
std::map<GURL, size_t>::const_iterator found = canonical_urls_.find(url);
if (found == canonical_urls_.end())
return GURL(); // Don't know anything about this URL.
return top_sites_[found->second].url;
}
// static
int TopSites::GetRedirectDistanceForURL(const MostVisitedURL& most_visited,
const GURL& url) {
for (size_t i = 0; i < most_visited.redirects.size(); i++) {
if (most_visited.redirects[i] == url)
return static_cast<int>(most_visited.redirects.size() - i - 1);
}
NOTREACHED() << "URL should always be found.";
return 0;
}
// static
void TopSites::DiffMostVisited(const std::vector<MostVisitedURL>& old_list,
const std::vector<MostVisitedURL>& new_list,
std::vector<size_t>* added_urls,
std::vector<size_t>* deleted_urls,
std::vector<size_t>* moved_urls) {
added_urls->clear();
deleted_urls->clear();
moved_urls->clear();
// Add all the old URLs for quick lookup. This maps URLs to the corresponding
// index in the input.
std::map<GURL, size_t> all_old_urls;
for (size_t i = 0; i < old_list.size(); i++)
all_old_urls[old_list[i].url] = i;
// Check all the URLs in the new set to see which ones are new or just moved.
// When we find a match in the old set, we'll reset its index to our special
// marker. This allows us to quickly identify the deleted ones in a later
// pass.
const size_t kAlreadyFoundMarker = static_cast<size_t>(-1);
for (size_t i = 0; i < new_list.size(); i++) {
std::map<GURL, size_t>::iterator found = all_old_urls.find(new_list[i].url);
if (found == all_old_urls.end()) {
added_urls->push_back(i);
} else {
if (found->second != i)
moved_urls->push_back(i);
found->second = kAlreadyFoundMarker;
}
}
// Any member without the special marker in the all_old_urls list means that
// there wasn't a "new" URL that mapped to it, so it was deleted.
for (std::map<GURL, size_t>::const_iterator i = all_old_urls.begin();
i != all_old_urls.end(); ++i) {
if (i->second != kAlreadyFoundMarker)
deleted_urls->push_back(i->second);
}
}
} // namespace history
|