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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h"
#include <stddef.h>
#include <memory>
#include <utility>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/metrics/field_trial_params.h"
#include "build/build_config.h"
#include "chrome/browser/bitmap_fetcher/bitmap_fetcher.h"
#include "chrome/browser/image_decoder/image_decoder.h"
#include "chrome/browser/profiles/profile.h"
#include "components/omnibox/browser/omnibox_field_trial.h"
#include "components/omnibox/common/omnibox_features.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/storage_partition.h"
#include "net/base/load_flags.h"
#include "services/data_decoder/public/cpp/data_decoder.h"
#include "third_party/skia/include/core/SkBitmap.h"
namespace {
const size_t kMaxRequests = 25; // Maximum number of inflight requests allowed.
// Maximum number of cache entries. This was 5 before, which worked well enough
// for few images like weather answers, but with rich entity suggestions showing
// several images at once, even changing some while the user types, a larger
// cache is necessary to avoid flickering. Each cache entry is expected to take
// 16kb (64x64 @ 32bpp). With 16, the total memory consumed would be ~256kb.
// 16 is double the default number of maximum suggestions so this can
// accommodate one match image plus one answer image for each result.
#if BUILDFLAG(IS_ANDROID)
// Android caches the images in the java layer.
const int kMaxCacheEntries = 0;
#else
const int kMaxCacheEntries = 16;
#endif
constexpr net::NetworkTrafficAnnotationTag kTrafficAnnotation =
net::DefineNetworkTrafficAnnotation("omnibox_result_change", R"(
semantics {
sender: "Omnibox"
description:
"Chromium provides answers in the suggestion list for "
"certain queries that user types in the omnibox. This request "
"retrieves a small image (for example, an icon illustrating "
"the current weather conditions) when this can add information "
"to an answer."
trigger:
"Change of results for the query typed by the user in the "
"omnibox."
data:
"The only data sent is the path to an image and cookies. User data "
"might be present in cookies, and some user data might be "
"inferrable (e.g. whether the weather is sunny or rainy in the "
"user's current location) from the name of the image in the path. "
"Requests are sent as same-site: "
"https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#name-same-site-and-cross-site-re."
destination: WEBSITE
}
policy {
cookies_allowed: YES
cookies_store: "user"
setting:
"You can enable or disable this feature via 'Use a prediction "
"service to help complete searches and URLs typed in the "
"address bar.' in Chromium's settings under Advanced. The "
"feature is enabled by default."
chrome_policy {
SearchSuggestEnabled {
policy_options {mode: MANDATORY}
SearchSuggestEnabled: false
}
}
})");
} // namespace.
class BitmapFetcherRequest {
public:
BitmapFetcherRequest(BitmapFetcherService::RequestId request_id,
BitmapFetcherService::BitmapFetchedCallback callback);
BitmapFetcherRequest(const BitmapFetcherRequest&) = delete;
BitmapFetcherRequest& operator=(const BitmapFetcherRequest&) = delete;
~BitmapFetcherRequest();
void NotifyImageChanged(const SkBitmap* bitmap);
BitmapFetcherService::RequestId request_id() const { return request_id_; }
// Weak ptr |fetcher| is used to identify associated fetchers.
void set_fetcher(const BitmapFetcher* fetcher) { fetcher_ = fetcher; }
const BitmapFetcher* get_fetcher() const { return fetcher_; }
private:
const BitmapFetcherService::RequestId request_id_;
BitmapFetcherService::BitmapFetchedCallback callback_;
raw_ptr<const BitmapFetcher> fetcher_;
};
BitmapFetcherRequest::BitmapFetcherRequest(
BitmapFetcherService::RequestId request_id,
BitmapFetcherService::BitmapFetchedCallback callback)
: request_id_(request_id), callback_(std::move(callback)) {}
BitmapFetcherRequest::~BitmapFetcherRequest() = default;
void BitmapFetcherRequest::NotifyImageChanged(const SkBitmap* bitmap) {
if (bitmap && !bitmap->empty())
std::move(callback_).Run(*bitmap);
}
BitmapFetcherService::CacheEntry::CacheEntry() = default;
BitmapFetcherService::CacheEntry::~CacheEntry() = default;
BitmapFetcherService::BitmapFetcherService(content::BrowserContext* context)
: shared_data_decoder_(
std::make_unique<data_decoder::DataDecoder>(base::Seconds(405))),
cache_(kMaxCacheEntries),
current_request_id_(1),
context_(context) {}
BitmapFetcherService::~BitmapFetcherService() {
// |active_fetchers_|'s elements must be destructured before
// |shared_data_decoder_|, as the former contain unowned pointers to the
// latter.
requests_.clear();
active_fetchers_.clear();
}
void BitmapFetcherService::CancelRequest(int request_id) {
for (auto iter = requests_.begin(); iter != requests_.end(); ++iter) {
if ((*iter)->request_id() == request_id) {
requests_.erase(iter);
// Deliberately leave the associated fetcher running to populate cache.
return;
}
}
}
BitmapFetcherService::RequestId BitmapFetcherService::RequestImageForTesting(
const GURL& url,
BitmapFetchedCallback callback,
const net::NetworkTrafficAnnotationTag& traffic_annotation) {
return RequestImageImpl(url, std::move(callback), traffic_annotation);
}
BitmapFetcherService::RequestId BitmapFetcherService::RequestImageImpl(
const GURL& url,
BitmapFetchedCallback callback,
const net::NetworkTrafficAnnotationTag& traffic_annotation) {
// Reject invalid URLs and limit number of simultaneous in-flight requests.
if (!url.is_valid() || requests_.size() > kMaxRequests) {
return REQUEST_ID_INVALID;
}
// Create a new request, assigning next available request ID.
++current_request_id_;
if (current_request_id_ == REQUEST_ID_INVALID)
++current_request_id_;
int request_id = current_request_id_;
auto request =
std::make_unique<BitmapFetcherRequest>(request_id, std::move(callback));
// Check for existing images first.
auto iter = cache_.Get(url);
if (iter != cache_.end()) {
BitmapFetcherService::CacheEntry* entry = iter->second.get();
request->NotifyImageChanged(entry->bitmap.get());
// There is no request ID associated with this - data is already delivered.
return REQUEST_ID_INVALID;
}
// Make sure there's a fetcher for this URL and attach to request.
const BitmapFetcher* fetcher = EnsureFetcherForUrl(url, traffic_annotation);
request->set_fetcher(fetcher);
requests_.push_back(std::move(request));
return request_id;
}
void BitmapFetcherService::Prefetch(const GURL& url) {
if (url.is_valid() && !IsCached(url))
EnsureFetcherForUrl(url, kTrafficAnnotation);
}
bool BitmapFetcherService::IsCached(const GURL& url) {
return cache_.Get(url) != cache_.end();
}
std::unique_ptr<BitmapFetcher> BitmapFetcherService::CreateFetcher(
const GURL& url,
const net::NetworkTrafficAnnotationTag& traffic_annotation) {
// TODO(https://crbug.com/408008982): Consider merging to `ImageFetcher.`
std::unique_ptr<BitmapFetcher> new_fetcher = std::make_unique<BitmapFetcher>(
url, this, traffic_annotation, shared_data_decoder_.get());
new_fetcher->Init(
net::ReferrerPolicy::REDUCE_GRANULARITY_ON_TRANSITION_CROSS_ORIGIN,
network::mojom::CredentialsMode::kInclude, /*additional_headers=*/{},
/*initiator=*/url::Origin(), /*is_same_site_request=*/true);
new_fetcher->Start(context_->GetDefaultStoragePartition()
->GetURLLoaderFactoryForBrowserProcess()
.get());
return new_fetcher;
}
BitmapFetcherService::RequestId BitmapFetcherService::RequestImage(
const GURL& url,
BitmapFetchedCallback callback) {
return RequestImageImpl(url, std::move(callback), kTrafficAnnotation);
}
const BitmapFetcher* BitmapFetcherService::EnsureFetcherForUrl(
const GURL& url,
const net::NetworkTrafficAnnotationTag& traffic_annotation) {
const BitmapFetcher* fetcher = FindFetcherForUrl(url);
if (fetcher)
return fetcher;
std::unique_ptr<BitmapFetcher> new_fetcher =
CreateFetcher(url, traffic_annotation);
active_fetchers_.push_back(std::move(new_fetcher));
return active_fetchers_.back().get();
}
const BitmapFetcher* BitmapFetcherService::FindFetcherForUrl(const GURL& url) {
for (auto it = active_fetchers_.begin(); it != active_fetchers_.end(); ++it) {
if (url == (*it)->url())
return it->get();
}
return nullptr;
}
void BitmapFetcherService::RemoveFetcher(const BitmapFetcher* fetcher) {
auto it = active_fetchers_.begin();
for (; it != active_fetchers_.end(); ++it) {
if (it->get() == fetcher)
break;
}
// RemoveFetcher should always result in removal.
CHECK(it != active_fetchers_.end());
active_fetchers_.erase(it);
}
void BitmapFetcherService::OnFetchComplete(const GURL& url,
const SkBitmap* bitmap) {
const BitmapFetcher* fetcher = FindFetcherForUrl(url);
DCHECK(fetcher);
// Notify all attached requests of completion.
auto iter = requests_.begin();
while (iter != requests_.end()) {
if ((*iter)->get_fetcher() == fetcher) {
(*iter)->NotifyImageChanged(bitmap);
iter = requests_.erase(iter);
} else {
++iter;
}
}
if (bitmap && !bitmap->isNull()) {
std::unique_ptr<CacheEntry> entry(new CacheEntry);
entry->bitmap = std::make_unique<SkBitmap>(*bitmap);
cache_.Put(fetcher->url(), std::move(entry));
}
RemoveFetcher(fetcher);
}
|