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
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/optimization_guide/content/browser/page_content_proto_provider.h"
#include "base/check.h"
#include "base/functional/concurrent_closures.h"
#include "base/i18n/char_iterator.h"
#include "base/metrics/histogram_macros.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/thread_pool.h"
#include "base/timer/elapsed_timer.h"
#include "components/optimization_guide/content/browser/page_content_proto_util.h"
#include "components/optimization_guide/core/optimization_guide_features.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "mojo/public/cpp/bindings/callback_helpers.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/metrics/public/cpp/metrics_utils.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_recorder.h"
#include "services/service_manager/public/cpp/interface_provider.h"
namespace optimization_guide {
namespace {
// The maximum limit for computing the metrics.
constexpr size_t kMaxWordLimit = 100000;
constexpr size_t kMaxNodeLimit = 100000;
struct ContentNodeMetrics {
size_t word_count = 0;
size_t node_count = 0;
};
void ApplyOptionsOverridesForWebContents(
content::WebContents* web_contents,
blink::mojom::AIPageContentOptions& options) {
// TODO(crbug.com/389735650): Renderers with no visible Documents will
// throttle idle tasks after a duration of 10 seconds. In order to avoid the
// page content request from getting starved, force critical path for hidden
// WebContents.
if (web_contents->GetVisibility() != content::Visibility::VISIBLE) {
options.on_critical_path = true;
}
if (base::FeatureList::IsEnabled(
features::kAnnotatedPageContentWithActionableElements)) {
options.enable_experimental_actionable_data = true;
options.include_geometry = true;
}
}
blink::mojom::AIPageContentOptionsPtr ApplyOptionsOverridesForSubframe(
const content::RenderProcessHost* main_process,
const content::RenderProcessHost* subframe_process,
const blink::mojom::AIPageContentOptions& input) {
if (main_process == subframe_process) {
return input.Clone();
}
// TODO(crbug.com/389737599): There's a bug with scheduling idle tasks in an
// OOPIF with site isolation if there are no other main frames in the process.
// See crbug.com/40785325.
auto new_options = blink::mojom::AIPageContentOptions::New(input);
new_options->on_critical_path = true;
return new_options;
}
std::optional<optimization_guide::RenderFrameInfo> GetRenderFrameInfo(
int child_process_id,
blink::FrameToken frame_token) {
content::RenderFrameHost* render_frame_host = nullptr;
if (frame_token.Is<blink::RemoteFrameToken>()) {
render_frame_host = content::RenderFrameHost::FromPlaceholderToken(
child_process_id, frame_token.GetAs<blink::RemoteFrameToken>());
} else {
render_frame_host = content::RenderFrameHost::FromFrameToken(
content::GlobalRenderFrameHostToken(
child_process_id, frame_token.GetAs<blink::LocalFrameToken>()));
}
if (!render_frame_host) {
return std::nullopt;
}
auto serialized_server_token =
DocumentIdentifierUserData::GetDocumentIdentifier(
render_frame_host->GetGlobalFrameToken());
CHECK(serialized_server_token.has_value());
optimization_guide::RenderFrameInfo render_frame_info;
render_frame_info.serialized_server_token = serialized_server_token.value();
render_frame_info.global_frame_token =
render_frame_host->GetGlobalFrameToken();
// We use the origin instead of last committed URL here to ensure the security
// origin for the iframe's content is accurately tracked.
// For example:
// 1. data URLs use an opaque origin
// 2. about:blank inherits its origin from the initiator while the URL doesn't
// convey that.
render_frame_info.source_origin = render_frame_host->GetLastCommittedOrigin();
render_frame_info.url = render_frame_host->GetLastCommittedURL();
return render_frame_info;
}
// Computes the metrics in one pass.
void ComputeContentNodeMetrics(
const optimization_guide::proto::ContentNode& content_node,
ContentNodeMetrics* metrics) {
bool is_previous_char_whitespace = true;
for (base::i18n::UTF8CharIterator iter(
content_node.content_attributes().text_data().text_content());
metrics->word_count < kMaxWordLimit && !iter.end(); iter.Advance()) {
bool is_current_char_whitespace = base::IsUnicodeWhitespace(iter.get());
if (is_previous_char_whitespace && !is_current_char_whitespace) {
// Count the start of the word.
++metrics->word_count;
}
is_previous_char_whitespace = is_current_char_whitespace;
}
metrics->node_count += 1;
for (const auto& child : content_node.children_nodes()) {
ComputeContentNodeMetrics(child, metrics);
if (metrics->node_count > kMaxNodeLimit) {
break;
}
}
}
void RecordPageContentExtractionMetrics(
base::TimeDelta total_latency,
ukm::SourceId source_id,
optimization_guide::proto::AnnotatedPageContent proto) {
ContentNodeMetrics metrics;
auto total_size = proto.ByteSizeLong();
base::ElapsedTimer elapsed;
ComputeContentNodeMetrics(proto.root_node(), &metrics);
UMA_HISTOGRAM_TIMES("OptimizationGuide.AIPageContent.TotalLatency",
total_latency);
// 10KB bucket up to 5MB.
// TODO(crbug.com/392115749): Use provided metrics when available.
UMA_HISTOGRAM_CUSTOM_COUNTS(
"OptimizationGuide.AnnotatedPageContent.TotalSize2", total_size / 1024,
10, 5000, 50);
UMA_HISTOGRAM_CUSTOM_COUNTS(
"OptimizationGuide.AnnotatedPageContent.TotalNodeCount",
metrics.node_count, 1, kMaxNodeLimit, 50);
UMA_HISTOGRAM_CUSTOM_COUNTS(
"OptimizationGuide.AnnotatedPageContent.TotalWordCount",
metrics.word_count, 1, kMaxWordLimit, 50);
ukm::builders::OptimizationGuide_AnnotatedPageContent(source_id)
.SetTotalSize(ukm::GetExponentialBucketMinForBytes(total_size))
.SetExtractionLatency(ukm::GetExponentialBucketMinForUserTiming(
total_latency.InMilliseconds()))
.SetWordsCount(ukm::GetExponentialBucketMinForBytes(metrics.word_count))
.SetNodeCount(ukm::GetExponentialBucketMinForBytes(metrics.node_count))
.Record(ukm::UkmRecorder::Get());
UMA_HISTOGRAM_CUSTOM_MICROSECONDS_TIMES(
"OptimizationGuide.AnnotatedPageContent.ComputeMetricsLatency",
elapsed.Elapsed(), base::Microseconds(1), base::Milliseconds(5), 50);
}
// Converts gfx::Size to optimization_guide::proto::ViewportGeometry.
void ConvertViewportGeometry(
const gfx::Size& viewport,
optimization_guide::proto::BoundingRect* viewport_geometry) {
viewport_geometry->set_x(0);
viewport_geometry->set_y(0);
viewport_geometry->set_width(viewport.width());
viewport_geometry->set_height(viewport.height());
}
void OnGotAIPageContentForAllFrames(
blink::mojom::AIPageContentOptionsPtr main_frame_options,
base::ElapsedTimer elapsed_timer,
content::GlobalRenderFrameHostToken main_frame_token,
ukm::SourceId source_id,
const gfx::Size& main_frame_viewport,
std::unique_ptr<optimization_guide::AIPageContentMap> page_content_map,
OnAIPageContentDone done_callback) {
optimization_guide::AIPageContentResult page_content;
optimization_guide::FrameTokenSet frame_token_set;
if (!optimization_guide::ConvertAIPageContentToProto(
std::move(main_frame_options), main_frame_token, *page_content_map,
base::BindRepeating(&GetRenderFrameInfo), frame_token_set,
page_content)) {
std::move(done_callback).Run(std::nullopt);
return;
}
ConvertViewportGeometry(main_frame_viewport,
page_content.proto.mutable_viewport_geometry());
// Get all the document identifiers for the frames that were seen.
for (const auto& frame_token : frame_token_set) {
content::RenderFrameHost* render_frame_host =
content::RenderFrameHost::FromFrameToken(frame_token);
CHECK(render_frame_host);
auto token = DocumentIdentifierUserData::GetDocumentIdentifier(frame_token);
CHECK(token.has_value());
page_content.document_identifiers[token.value()] =
render_frame_host->GetWeakDocumentPtr();
}
base::ThreadPool::PostTask(
FROM_HERE, {base::TaskPriority::BEST_EFFORT},
base::BindOnce(RecordPageContentExtractionMetrics,
elapsed_timer.Elapsed(), source_id, page_content.proto));
std::move(done_callback).Run(std::move(page_content));
}
void OnGotAIPageContentForFrame(
content::GlobalRenderFrameHostToken frame_token,
mojo::Remote<blink::mojom::AIPageContentAgent> remote_interface,
optimization_guide::AIPageContentMap* page_content_map,
base::OnceClosure continue_callback,
blink::mojom::AIPageContentPtr result) {
CHECK(page_content_map->find(frame_token) == page_content_map->end());
if (result) {
(*page_content_map)[frame_token] = std::move(result);
}
std::move(continue_callback).Run();
}
} // namespace
AIPageContentResult::AIPageContentResult() {
metadata = optimization_guide::mojom::PageMetadata::New();
}
AIPageContentResult::~AIPageContentResult() = default;
AIPageContentResult::AIPageContentResult(AIPageContentResult&& other) = default;
AIPageContentResult& AIPageContentResult::operator=(
AIPageContentResult&& other) = default;
blink::mojom::AIPageContentOptionsPtr DefaultAIPageContentOptions() {
return blink::mojom::AIPageContentOptions::New();
}
void GetAIPageContent(content::WebContents* web_contents,
blink::mojom::AIPageContentOptionsPtr options,
OnAIPageContentDone done_callback) {
DCHECK(web_contents);
DCHECK(web_contents->GetPrimaryMainFrame());
if (!web_contents->GetPrimaryMainFrame()->IsRenderFrameLive()) {
std::move(done_callback).Run(std::nullopt);
return;
}
ApplyOptionsOverridesForWebContents(web_contents, *options);
auto page_content_map =
std::make_unique<optimization_guide::AIPageContentMap>();
base::ConcurrentClosures concurrent;
const auto* main_frame_rph =
web_contents->GetPrimaryMainFrame()->GetProcess();
web_contents->GetPrimaryMainFrame()->ForEachRenderFrameHost(
[&](content::RenderFrameHost* rfh) {
if (!rfh->IsRenderFrameLive()) {
return;
}
auto* parent_frame = rfh->GetParentOrOuterDocument();
// Skip dispatching IPCs for non-local root frames. The local root
// provides data for itself and all child local frames.
const bool is_local_root =
!parent_frame ||
parent_frame->GetRenderWidgetHost() != rfh->GetRenderWidgetHost();
if (!is_local_root) {
return;
}
const bool is_subframe = parent_frame != nullptr;
auto options_to_use =
is_subframe ? ApplyOptionsOverridesForSubframe(
main_frame_rph, rfh->GetProcess(), *options)
: options.Clone();
mojo::Remote<blink::mojom::AIPageContentAgent> agent;
rfh->GetRemoteInterfaces()->GetInterface(
agent.BindNewPipeAndPassReceiver());
auto* agent_ptr = agent.get();
agent_ptr->GetAIPageContent(
std::move(options_to_use),
mojo::WrapCallbackWithDefaultInvokeIfNotRun(
base::BindOnce(&OnGotAIPageContentForFrame,
rfh->GetGlobalFrameToken(), std::move(agent),
page_content_map.get(),
concurrent.CreateClosure()),
nullptr));
});
std::move(concurrent)
.Done(base::BindOnce(
&OnGotAIPageContentForAllFrames, std::move(options),
base::ElapsedTimer(),
web_contents->GetPrimaryMainFrame()->GetGlobalFrameToken(),
web_contents->GetPrimaryMainFrame()->GetPageUkmSourceId(),
web_contents->GetSize(), std::move(page_content_map),
std::move(done_callback)));
}
// Allows for a DocumentIdentifier to be reused across calls to convert
std::optional<std::string> DocumentIdentifierUserData::GetDocumentIdentifier(
content::GlobalRenderFrameHostToken token) {
content::RenderFrameHost* render_frame_host =
content::RenderFrameHost::FromFrameToken(token);
if (!render_frame_host) {
return std::nullopt;
}
return DocumentIdentifierUserData::GetOrCreateForCurrentDocument(
render_frame_host)
->serialized_token();
}
DOCUMENT_USER_DATA_KEY_IMPL(DocumentIdentifierUserData);
} // namespace optimization_guide
|