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
|
// Copyright 2025 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/ui/lens/lens_searchbox_controller.h"
#include "base/functional/bind.h"
#include "base/task/task_traits.h"
#include "base/task/thread_pool.h"
#include "chrome/browser/lens/core/mojom/lens_ghost_loader.mojom.h"
#include "chrome/browser/ui/lens/lens_overlay_controller.h"
#include "chrome/browser/ui/lens/lens_overlay_side_panel_coordinator.h"
#include "chrome/browser/ui/lens/lens_search_contextualization_controller.h"
#include "chrome/browser/ui/lens/lens_search_controller.h"
#include "chrome/browser/ui/lens/lens_session_metrics_logger.h"
#include "chrome/browser/ui/webui/util/image_util.h"
#include "components/lens/lens_features.h"
#include "components/lens/proto/server/lens_overlay_response.pb.h"
#include "components/omnibox/browser/lens_suggest_inputs_utils.h"
#include "components/sessions/content/session_tab_helper.h"
#include "components/sessions/core/session_id.h"
#include "net/base/url_util.h"
#include "skia/ext/codec_utils.h"
#include "third_party/metrics_proto/omnibox_event.pb.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "url/gurl.h"
namespace {
// The url query param key for the search query.
inline constexpr char kTextQueryParameterKey[] = "q";
// The size of the thumbnail to send to the searchbox.
inline constexpr float kMaxThumbnailWidth = 100.0f;
inline constexpr float kMaxThumbnailHeight = 100.0f;
std::string ScaleBitmapAndEncodeToDataUri(SkBitmap bitmap) {
float scale = std::min(kMaxThumbnailWidth / bitmap.width(),
kMaxThumbnailHeight / bitmap.height());
int target_height = static_cast<int>(bitmap.height() * scale);
int target_width = static_cast<int>(bitmap.width() * scale);
SkBitmap scaled_bitmap = skia::ImageOperations::Resize(
bitmap, skia::ImageOperations::RESIZE_BEST, target_width, target_height);
if (scaled_bitmap.drawsNothing()) {
return std::string();
}
return skia::EncodePngAsDataUri(scaled_bitmap.pixmap());
}
} // namespace
namespace lens {
LensSearchboxController::LensSearchboxController(
LensSearchController* lens_search_controller)
: lens_search_controller_(lens_search_controller) {}
LensSearchboxController::~LensSearchboxController() = default;
void LensSearchboxController::BindOverlayGhostLoader(
mojo::PendingRemote<lens::mojom::LensGhostLoaderPage> page) {
overlay_ghost_loader_page_.reset();
overlay_ghost_loader_page_.Bind(std::move(page));
}
void LensSearchboxController::BindSidePanelGhostLoader(
mojo::PendingRemote<lens::mojom::LensGhostLoaderPage> page) {
side_panel_ghost_loader_page_.reset();
side_panel_ghost_loader_page_.Bind(std::move(page));
}
void LensSearchboxController::OnSessionStart() {
// Initialize any data needed for the searchbox.
init_data_ = std::make_unique<LensSearchboxInitializationData>();
}
void LensSearchboxController::SetSidePanelSearchboxHandler(
std::unique_ptr<LensSearchboxHandler> handler) {
side_panel_searchbox_handler_ = std::move(handler);
}
void LensSearchboxController::SetContextualSearchboxHandler(
std::unique_ptr<LensSearchboxHandler> handler) {
overlay_searchbox_handler_ = std::move(handler);
}
void LensSearchboxController::ResetOverlaySearchboxHandler() {
overlay_searchbox_handler_.reset();
}
void LensSearchboxController::ResetSidePanelSearchboxHandler() {
side_panel_searchbox_handler_.reset();
}
void LensSearchboxController::SetSearchboxInputText(const std::string& text) {
if (side_panel_searchbox_handler_ &&
side_panel_searchbox_handler_->IsRemoteBound()) {
init_data_->text_query = text;
side_panel_searchbox_handler_->SetInputText(text);
} else {
// If the side panel was not bound at the time of request, we store the
// query as pending to send it to the searchbox on bind.
pending_text_query_ = text;
}
}
void LensSearchboxController::SetSearchboxThumbnail(
const std::string& thumbnail_uri) {
// Init data can be empty if overlay is opened in a normal tab by navigating
// to the WebUI url in the omnibox.
if (!init_data_) {
return;
}
// Store the thumbnail.
init_data_->thumbnail_uri = thumbnail_uri;
if (side_panel_searchbox_handler_ &&
side_panel_searchbox_handler_->IsRemoteBound()) {
side_panel_searchbox_handler_->SetThumbnail(
thumbnail_uri, /*is_deletable=*/!IsContextualSearchbox());
}
if (overlay_searchbox_handler_ &&
overlay_searchbox_handler_->IsRemoteBound()) {
overlay_searchbox_handler_->SetThumbnail(
thumbnail_uri, /*is_deletable=*/!IsContextualSearchbox());
}
}
void LensSearchboxController::HandleThumbnailCreatedBitmap(
const SkBitmap& thumbnail) {
if (!lens::features::GetVisualSelectionUpdatesEnableCsbThumbnail() ||
thumbnail.drawsNothing()) {
return;
}
// SkBitmap is ref-counted, so a copy is cheap and safe for task posting.
SkBitmap thumbnail_copy = thumbnail;
// Downscale the bitmap to a size that is appropriate for the searchbox.
// Keeping it full resolution will cause stuttering when the UI opens. Push
// off the main thread to avoid blocking the overlay initialization.
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE, {base::TaskPriority::USER_VISIBLE},
base::BindOnce(&ScaleBitmapAndEncodeToDataUri, std::move(thumbnail_copy)),
base::BindOnce(&LensSearchboxController::OnThumbnailProcessed,
weak_factory_.GetWeakPtr()));
}
void LensSearchboxController::HandleThumbnailCreated(
const std::string& thumbnail_bytes) {
init_data_->thumbnail_uri =
webui::MakeDataURIForImage(base::as_byte_span(thumbnail_bytes), "jpeg");
SetSearchboxThumbnail(init_data_->thumbnail_uri);
}
void LensSearchboxController::HandleSuggestInputsResponse(
lens::proto::LensOverlaySuggestInputs suggest_inputs) {
if (!init_data_) {
DCHECK(init_data_)
<< "The initialization data should be set on searchbox startup, which "
"should have happened before any suggest inputs were received.";
return;
}
// If the handshake was already complete, without the new suggest inputs,
// exit early so that LensOverlayController::OnHandshakeComplete() isn't
// called multiple times.
if (lens_search_controller_->IsHandshakeComplete()) {
init_data_->suggest_inputs_ = suggest_inputs;
return;
}
// Check if the handshake with the server has been completed with the new
// inputs. If so, this is the first time the suggest inputs satisfy the
// handshake criteria, so notify the overlay that the handshake is complete.
init_data_->suggest_inputs_ = suggest_inputs;
if (lens_search_controller_->IsHandshakeComplete()) {
// Notify the overlay that it is now safe to query autocomplete.
lens_search_controller_->lens_overlay_controller()->OnHandshakeComplete();
// Send the suggest inputs to any pending callbacks.
pending_suggest_inputs_callbacks_.Notify(GetLensSuggestInputs());
}
}
void LensSearchboxController::CloseUI() {
overlay_searchbox_handler_.reset();
side_panel_searchbox_handler_.reset();
overlay_ghost_loader_page_.reset();
side_panel_ghost_loader_page_.reset();
init_data_ = std::make_unique<LensSearchboxInitializationData>();
pending_text_query_ = std::nullopt;
pending_suggest_inputs_callbacks_.Notify(std::nullopt);
}
bool LensSearchboxController::IsContextualSearchbox() const {
// TODO(crbug.com/405441183): This logic will break the side panel searchbox
// if there is no overlay, so it should be moved to a shared location.
return GetPageClassification() ==
metrics::OmniboxEventProto::CONTEXTUAL_SEARCHBOX;
}
bool LensSearchboxController::IsSidePanelSearchbox() const {
return side_panel_searchbox_handler_ != nullptr;
}
void LensSearchboxController::GetIsContextualSearchbox(
GetIsContextualSearchboxCallback callback) {
std::move(callback).Run(IsContextualSearchbox());
}
base::CallbackListSubscription
LensSearchboxController::GetLensSuggestInputsWhenReady(
::LensOverlaySuggestInputsCallback callback) {
// Exit early if the overlay is either off or going to soon be off.
if (lens_search_controller_->IsClosing() ||
lens_search_controller_->IsOff()) {
std::move(callback).Run(std::nullopt);
return {};
}
// If the handshake is complete, return the Lens suggest inputs immediately.
if (lens_search_controller_->IsHandshakeComplete()) {
std::move(callback).Run(init_data_->suggest_inputs_);
return {};
}
return pending_suggest_inputs_callbacks_.Add(std::move(callback));
}
const GURL& LensSearchboxController::GetPageURL() const {
return lens_search_controller_->GetPageURL();
}
SessionID LensSearchboxController::GetTabId() const {
return sessions::SessionTabHelper::IdForTab(GetTabWebContents());
}
metrics::OmniboxEventProto::PageClassification
LensSearchboxController::GetPageClassification() const {
// There are two cases where we are assuming to be in a contextual flow:
// 1) We are in the zero state with the overlay CSB showing.
// 2) A user has made a contextual query and the live page is now showing.
// TODO(crbug.com/404941800): Remove dependency on LensOverlayController.
// Instead, it should check if contextualization is currently active. Which
// also requires disabling contextualization when the user goes down the
// visual search path.
const LensOverlayController::State state =
lens_search_controller_->lens_overlay_controller()->state();
if (state == LensOverlayController::State::kLivePageAndResults ||
state == LensOverlayController::State::kOverlay ||
(state == LensOverlayController::State::kOff &&
lens_search_controller_->lens_search_contextualization_controller()
->IsActive())) {
return metrics::OmniboxEventProto::CONTEXTUAL_SEARCHBOX;
}
return init_data_->thumbnail_uri.empty()
? metrics::OmniboxEventProto::SEARCH_SIDE_PANEL_SEARCHBOX
: metrics::OmniboxEventProto::LENS_SIDE_PANEL_SEARCHBOX;
}
std::string& LensSearchboxController::GetThumbnail() {
return init_data_->thumbnail_uri;
}
const lens::proto::LensOverlaySuggestInputs&
LensSearchboxController::GetLensSuggestInputs() const {
return init_data_
? init_data_->suggest_inputs_
: lens::proto::LensOverlaySuggestInputs().default_instance();
}
void LensSearchboxController::OnTextModified() {
lens_search_controller_->lens_overlay_controller()->ClearTextSelection();
}
void LensSearchboxController::OnThumbnailRemoved() {
lens_search_controller_->lens_overlay_controller()->ClearRegionSelection();
}
void LensSearchboxController::OnSuggestionAccepted(
const GURL& destination_url,
AutocompleteMatchType::Type match_type,
bool is_zero_prefix_suggestion) {
base::Time query_start_time = base::Time::Now();
std::string query_text = "";
std::map<std::string, std::string> additional_query_parameters;
net::QueryIterator query_iterator(destination_url);
while (!query_iterator.IsAtEnd()) {
std::string_view key = query_iterator.GetKey();
std::string_view value = query_iterator.GetUnescapedValue();
if (kTextQueryParameterKey == key) {
query_text = value;
} else {
additional_query_parameters.insert(std::make_pair(
query_iterator.GetKey(), query_iterator.GetUnescapedValue()));
}
query_iterator.Advance();
}
// TODO(crbug.com/413138792): Move the logic to issue a searchbox query to
// this class.
lens_search_controller_->lens_overlay_controller()->IssueSearchBoxRequest(
query_start_time, query_text, match_type, is_zero_prefix_suggestion,
additional_query_parameters);
}
void LensSearchboxController::OnFocusChanged(bool focused) {
// TOOD(crbug.com/404941800): Implement OnSearchboxFocusChanged logic in this
// class.
lens_search_controller_->lens_overlay_controller()->OnSearchboxFocusChanged(
focused);
}
void LensSearchboxController::OnPageBound() {
// Send any pending inputs for the searchbox.
if (pending_text_query_.has_value() && side_panel_searchbox_handler_ &&
side_panel_searchbox_handler_->IsRemoteBound()) {
side_panel_searchbox_handler_->SetInputText(*pending_text_query_);
pending_text_query_.reset();
}
// If there is a thumbnail, make sure the searchbox receives it.
if (init_data_ && !init_data_->thumbnail_uri.empty()) {
SetSearchboxThumbnail(init_data_->thumbnail_uri);
}
}
void LensSearchboxController::ShowGhostLoaderErrorState() {
if (!IsContextualSearchbox()) {
return;
}
if (overlay_ghost_loader_page_) {
overlay_ghost_loader_page_->ShowErrorState();
}
if (side_panel_ghost_loader_page_) {
side_panel_ghost_loader_page_->ShowErrorState();
}
}
void LensSearchboxController::OnZeroSuggestShown() {
if (!IsContextualSearchbox()) {
return;
}
// If this is in the side panel, it is not the initial query.
lens_search_controller_->lens_session_metrics_logger()->OnZeroSuggestShown(
/*is_initial_query=*/!IsSidePanelSearchbox());
}
void LensSearchboxController::AddSearchboxStateToSearchQuery(
lens::SearchQuery& search_query) {
search_query.selected_region_thumbnail_uri_ = init_data_->thumbnail_uri;
}
void LensSearchboxController::OnThumbnailProcessed(
const std::string& thumbnail_uri) {
if (!init_data_) {
return;
}
init_data_->thumbnail_uri = thumbnail_uri;
SetSearchboxThumbnail(init_data_->thumbnail_uri);
}
content::WebContents* LensSearchboxController::GetTabWebContents() const {
return lens_search_controller_->GetTabInterface()->GetContents();
}
} // namespace lens
|