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 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
|
// Copyright 2014 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 "components/omnibox/browser/omnibox_field_trial.h"
#include <cmath>
#include <string>
#include "base/command_line.h"
#include "base/metrics/field_trial.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/metrics/proto/omnibox_event.pb.h"
#include "components/omnibox/browser/omnibox_switches.h"
#include "components/omnibox/browser/url_index_private_data.h"
#include "components/search/search.h"
#include "components/variations/active_field_trials.h"
#include "components/variations/metrics_util.h"
#include "components/variations/variations_associated_data.h"
using metrics::OmniboxEventProto;
namespace {
typedef std::map<std::string, std::string> VariationParams;
typedef HUPScoringParams::ScoreBuckets ScoreBuckets;
// Field trial names.
const char kStopTimerFieldTrialName[] = "OmniboxStopTimer";
void InitializeBucketsFromString(const std::string& bucket_string,
ScoreBuckets* score_buckets) {
// Clear the buckets.
score_buckets->buckets().clear();
base::StringPairs kv_pairs;
if (base::SplitStringIntoKeyValuePairs(bucket_string, ':', ',', &kv_pairs)) {
for (base::StringPairs::const_iterator it = kv_pairs.begin();
it != kv_pairs.end(); ++it) {
ScoreBuckets::CountMaxRelevance bucket;
base::StringToDouble(it->first, &bucket.first);
base::StringToInt(it->second, &bucket.second);
score_buckets->buckets().push_back(bucket);
}
std::sort(score_buckets->buckets().begin(),
score_buckets->buckets().end(),
std::greater<ScoreBuckets::CountMaxRelevance>());
}
}
void InitializeScoreBuckets(const VariationParams& params,
const char* relevance_cap_param,
const char* half_life_param,
const char* score_buckets_param,
const char* use_decay_factor_param,
ScoreBuckets* score_buckets) {
VariationParams::const_iterator it = params.find(relevance_cap_param);
if (it != params.end()) {
int relevance_cap;
if (base::StringToInt(it->second, &relevance_cap))
score_buckets->set_relevance_cap(relevance_cap);
}
it = params.find(use_decay_factor_param);
if (it != params.end()) {
int use_decay_factor;
if (base::StringToInt(it->second, &use_decay_factor))
score_buckets->set_use_decay_factor(use_decay_factor != 0);
}
it = params.find(half_life_param);
if (it != params.end()) {
int half_life_days;
if (base::StringToInt(it->second, &half_life_days))
score_buckets->set_half_life_days(half_life_days);
}
it = params.find(score_buckets_param);
if (it != params.end()) {
// The value of the score bucket is a comma-separated list of
// {DecayedCount/DecayedFactor + ":" + MaxRelevance}.
InitializeBucketsFromString(it->second, score_buckets);
}
}
} // namespace
HUPScoringParams::ScoreBuckets::ScoreBuckets()
: relevance_cap_(-1),
half_life_days_(-1),
use_decay_factor_(false) {
}
HUPScoringParams::ScoreBuckets::ScoreBuckets(const ScoreBuckets& other) =
default;
HUPScoringParams::ScoreBuckets::~ScoreBuckets() {
}
double HUPScoringParams::ScoreBuckets::HalfLifeTimeDecay(
const base::TimeDelta& elapsed_time) const {
double time_ms;
if ((half_life_days_ <= 0) ||
((time_ms = elapsed_time.InMillisecondsF()) <= 0))
return 1.0;
const double half_life_intervals =
time_ms / base::TimeDelta::FromDays(half_life_days_).InMillisecondsF();
return pow(2.0, -half_life_intervals);
}
int OmniboxFieldTrial::GetDisabledProviderTypes() {
const std::string& types_string = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kDisableProvidersRule);
int types = 0;
if (types_string.empty() || !base::StringToInt(types_string, &types)) {
return 0;
}
return types;
}
void OmniboxFieldTrial::GetActiveSuggestFieldTrialHashes(
std::vector<uint32_t>* field_trial_hashes) {
field_trial_hashes->clear();
if (base::FieldTrialList::TrialExists(kBundledExperimentFieldTrialName)) {
field_trial_hashes->push_back(
metrics::HashName(kBundledExperimentFieldTrialName));
}
}
base::TimeDelta OmniboxFieldTrial::StopTimerFieldTrialDuration() {
int stop_timer_ms;
if (base::StringToInt(
base::FieldTrialList::FindFullName(kStopTimerFieldTrialName),
&stop_timer_ms))
return base::TimeDelta::FromMilliseconds(stop_timer_ms);
return base::TimeDelta::FromMilliseconds(1500);
}
bool OmniboxFieldTrial::InZeroSuggestFieldTrial() {
if (variations::GetVariationParamValue(
kBundledExperimentFieldTrialName, kZeroSuggestRule) == "true")
return true;
if (variations::GetVariationParamValue(
kBundledExperimentFieldTrialName, kZeroSuggestRule) == "false")
return false;
#if defined(OS_IOS)
return false;
#else
return true;
#endif
}
bool OmniboxFieldTrial::InZeroSuggestMostVisitedFieldTrial() {
return InZeroSuggestMostVisitedWithoutSerpFieldTrial() ||
variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kZeroSuggestVariantRule) == "MostVisited";
}
bool OmniboxFieldTrial::InZeroSuggestMostVisitedWithoutSerpFieldTrial() {
std::string variant(variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kZeroSuggestVariantRule));
if (variant == "MostVisitedWithoutSERP")
return true;
#if defined(OS_ANDROID)
// Android defaults to MostVisitedWithoutSERP
return variant.empty();
#else
return false;
#endif
}
bool OmniboxFieldTrial::InZeroSuggestAfterTypingFieldTrial() {
if (variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kSuggestVariantRule) == "AfterTyping")
return true;
#if defined(OS_IOS) || defined(OS_ANDROID)
return false;
#else
return true;
#endif
}
bool OmniboxFieldTrial::InZeroSuggestPersonalizedFieldTrial() {
return variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kZeroSuggestVariantRule) == "Personalized";
}
bool OmniboxFieldTrial::ShortcutsScoringMaxRelevance(
OmniboxEventProto::PageClassification current_page_classification,
int* max_relevance) {
// The value of the rule is a string that encodes an integer containing
// the max relevance.
const std::string& max_relevance_str =
OmniboxFieldTrial::GetValueForRuleInContext(
kShortcutsScoringMaxRelevanceRule, current_page_classification);
if (max_relevance_str.empty())
return false;
if (!base::StringToInt(max_relevance_str, max_relevance))
return false;
return true;
}
bool OmniboxFieldTrial::SearchHistoryPreventInlining(
OmniboxEventProto::PageClassification current_page_classification) {
return OmniboxFieldTrial::GetValueForRuleInContext(
kSearchHistoryRule, current_page_classification) == "PreventInlining";
}
bool OmniboxFieldTrial::SearchHistoryDisable(
OmniboxEventProto::PageClassification current_page_classification) {
return OmniboxFieldTrial::GetValueForRuleInContext(
kSearchHistoryRule, current_page_classification) == "Disable";
}
void OmniboxFieldTrial::GetDemotionsByType(
OmniboxEventProto::PageClassification current_page_classification,
DemotionMultipliers* demotions_by_type) {
demotions_by_type->clear();
std::string demotion_rule = OmniboxFieldTrial::GetValueForRuleInContext(
kDemoteByTypeRule, current_page_classification);
// If there is no demotion rule for this context, then use the default
// value for that context.
if (demotion_rule.empty()) {
// This rule demotes URLs as strongly as possible without violating user
// expectations. In particular, for URL-seeking inputs, if the user would
// likely expect a URL first (i.e., it would be inline autocompleted), then
// that URL will still score strongly enough to be first. This is done
// using a demotion multipler of 0.61. If a URL would get a score high
// enough to be inline autocompleted (1400+), even after demotion it will
// score above 850 ( 1400 * 0.61 > 850). 850 is the maximum score for
// queries when the input has been detected as URL-seeking.
constexpr char kDemoteURLs[] = "1:61,2:61,3:61,4:61,16:61";
#if defined(OS_ANDROID)
if (current_page_classification == OmniboxEventProto::
SEARCH_RESULT_PAGE_NO_SEARCH_TERM_REPLACEMENT)
demotion_rule = kDemoteURLs;
#endif
if (current_page_classification ==
OmniboxEventProto::INSTANT_NTP_WITH_FAKEBOX_AS_STARTING_FOCUS)
demotion_rule = kDemoteURLs;
}
// The value of the DemoteByType rule is a comma-separated list of
// {ResultType + ":" + Number} where ResultType is an AutocompleteMatchType::
// Type enum represented as an integer and Number is an integer number
// between 0 and 100 inclusive. Relevance scores of matches of that result
// type are multiplied by Number / 100. 100 means no change.
base::StringPairs kv_pairs;
if (base::SplitStringIntoKeyValuePairs(demotion_rule, ':', ',', &kv_pairs)) {
for (base::StringPairs::const_iterator it = kv_pairs.begin();
it != kv_pairs.end(); ++it) {
// This is a best-effort conversion; we trust the hand-crafted parameters
// downloaded from the server to be perfect. There's no need to handle
// errors smartly.
int k, v;
base::StringToInt(it->first, &k);
base::StringToInt(it->second, &v);
(*demotions_by_type)[static_cast<AutocompleteMatchType::Type>(k)] =
static_cast<float>(v) / 100.0f;
}
}
}
void OmniboxFieldTrial::GetDefaultHUPScoringParams(
HUPScoringParams* scoring_params) {
ScoreBuckets* type_score_buckets = &scoring_params->typed_count_buckets;
type_score_buckets->set_half_life_days(30);
type_score_buckets->set_use_decay_factor(false);
// Default typed count buckets based on decayed typed count. The
// values here are based on the results of field trials to determine what
// maximized overall result quality.
const std::string& typed_count_score_buckets_str =
"1.0:1413,0.97:1390,0.93:1360,0.85:1340,0.72:1320,0.50:1250,0.0:1203";
InitializeBucketsFromString(typed_count_score_buckets_str,
type_score_buckets);
ScoreBuckets* visit_score_buckets = &scoring_params->visited_count_buckets;
visit_score_buckets->set_half_life_days(30);
visit_score_buckets->set_use_decay_factor(false);
// Buckets based on visit count. Like the typed count buckets above, the
// values here were chosen based on field trials. Note that when a URL hasn't
// been visited in the last 30 days, we clamp its score to 100, which
// basically demotes it below any other results in the dropdown.
const std::string& visit_count_score_buckets_str = "4.0:790,0.5:590,0.0:100";
InitializeBucketsFromString(visit_count_score_buckets_str,
visit_score_buckets);
}
void OmniboxFieldTrial::GetExperimentalHUPScoringParams(
HUPScoringParams* scoring_params) {
scoring_params->experimental_scoring_enabled = false;
VariationParams params;
if (!variations::GetVariationParams(kBundledExperimentFieldTrialName,
¶ms))
return;
VariationParams::const_iterator it = params.find(kHUPNewScoringEnabledParam);
if (it != params.end()) {
int enabled = 0;
if (base::StringToInt(it->second, &enabled))
scoring_params->experimental_scoring_enabled = (enabled != 0);
}
InitializeScoreBuckets(params, kHUPNewScoringTypedCountRelevanceCapParam,
kHUPNewScoringTypedCountHalfLifeTimeParam,
kHUPNewScoringTypedCountScoreBucketsParam,
kHUPNewScoringTypedCountUseDecayFactorParam,
&scoring_params->typed_count_buckets);
InitializeScoreBuckets(params, kHUPNewScoringVisitedCountRelevanceCapParam,
kHUPNewScoringVisitedCountHalfLifeTimeParam,
kHUPNewScoringVisitedCountScoreBucketsParam,
kHUPNewScoringVisitedCountUseDecayFactorParam,
&scoring_params->visited_count_buckets);
}
float OmniboxFieldTrial::HQPBookmarkValue() {
std::string bookmark_value_str =
variations::GetVariationParamValue(kBundledExperimentFieldTrialName,
kHQPBookmarkValueRule);
if (bookmark_value_str.empty())
return 10;
// This is a best-effort conversion; we trust the hand-crafted parameters
// downloaded from the server to be perfect. There's no need for handle
// errors smartly.
double bookmark_value;
base::StringToDouble(bookmark_value_str, &bookmark_value);
return bookmark_value;
}
bool OmniboxFieldTrial::HQPAllowMatchInTLDValue() {
return variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kHQPAllowMatchInTLDRule) == "true";
}
bool OmniboxFieldTrial::HQPAllowMatchInSchemeValue() {
return variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kHQPAllowMatchInSchemeRule) == "true";
}
bool OmniboxFieldTrial::DisableResultsCaching() {
return variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kDisableResultsCachingRule) == "true";
}
void OmniboxFieldTrial::GetSuggestPollingStrategy(bool* from_last_keystroke,
int* polling_delay_ms) {
*from_last_keystroke = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kMeasureSuggestPollingDelayFromLastKeystrokeRule) == "true";
const std::string& polling_delay_string = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kSuggestPollingDelayMsRule);
if (polling_delay_string.empty() ||
!base::StringToInt(polling_delay_string, polling_delay_ms) ||
(*polling_delay_ms <= 0)) {
*polling_delay_ms = kDefaultMinimumTimeBetweenSuggestQueriesMs;
}
}
std::string OmniboxFieldTrial::HQPExperimentalScoringBuckets() {
return variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kHQPExperimentalScoringBucketsParam);
}
float OmniboxFieldTrial::HQPExperimentalTopicalityThreshold() {
std::string topicality_threshold_str = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kHQPExperimentalScoringTopicalityThresholdParam);
double topicality_threshold;
if (topicality_threshold_str.empty() ||
!base::StringToDouble(topicality_threshold_str, &topicality_threshold))
return 0.8f;
return static_cast<float>(topicality_threshold);
}
bool OmniboxFieldTrial::HQPFixFewVisitsBug() {
return variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kHQPFixFewVisitsBugRule) == "true";
}
bool OmniboxFieldTrial::HQPFreqencyUsesSum() {
return variations::GetVariationParamValue(kBundledExperimentFieldTrialName,
kHQPFreqencyUsesSumRule) == "true";
}
size_t OmniboxFieldTrial::HQPMaxVisitsToScore() {
std::string max_visits_str = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName, kHQPMaxVisitsToScoreRule);
constexpr size_t kDefaultMaxVisitsToScore = 10;
static_assert(
URLIndexPrivateData::kMaxVisitsToStoreInCache >= kDefaultMaxVisitsToScore,
"HQP should store at least as many visits as it expects to score");
if (max_visits_str.empty())
return kDefaultMaxVisitsToScore;
// This is a best-effort conversion; we trust the hand-crafted parameters
// downloaded from the server to be perfect. There's no need for handle
// errors smartly.
size_t max_visits_value;
base::StringToSizeT(max_visits_str, &max_visits_value);
return max_visits_value;
}
float OmniboxFieldTrial::HQPTypedValue() {
std::string typed_value_str = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName, kHQPTypedValueRule);
if (typed_value_str.empty())
return 20;
// This is a best-effort conversion; we trust the hand-crafted parameters
// downloaded from the server to be perfect. There's no need for handle
// errors smartly.
double typed_value;
base::StringToDouble(typed_value_str, &typed_value);
return typed_value;
}
OmniboxFieldTrial::NumMatchesScores OmniboxFieldTrial::HQPNumMatchesScores() {
std::string str = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName, kHQPNumMatchesScoresRule);
// The parameter is a comma-separated list of (number, value) pairs, e.g.
// "1:3,2:2.5,3:2,4:1.5".
// This is a best-effort conversion; we trust the hand-crafted parameters
// downloaded from the server to be perfect. There's no need to handle
// errors smartly.
base::StringPairs kv_pairs;
if (!base::SplitStringIntoKeyValuePairs(str, ':', ',', &kv_pairs))
return NumMatchesScores{};
NumMatchesScores num_matches_scores(kv_pairs.size());
for (size_t i = 0; i < kv_pairs.size(); ++i) {
base::StringToSizeT(kv_pairs[i].first, &num_matches_scores[i].first);
// The input must be sorted by number of matches.
DCHECK((i == 0) ||
(num_matches_scores[i].first > num_matches_scores[i - 1].first));
base::StringToDouble(kv_pairs[i].second, &num_matches_scores[i].second);
}
return num_matches_scores;
}
size_t OmniboxFieldTrial::HQPNumTitleWordsToAllow() {
// The value of the rule is a string that encodes an integer (actually
// size_t) containing the number of words.
size_t num_title_words;
if (!base::StringToSizeT(
variations::GetVariationParamValue(kBundledExperimentFieldTrialName,
kHQPNumTitleWordsRule),
&num_title_words))
return 20;
return num_title_words;
}
bool OmniboxFieldTrial::HQPAlsoDoHUPLikeScoring() {
return variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kHQPAlsoDoHUPLikeScoringRule) == "true";
}
bool OmniboxFieldTrial::HUPSearchDatabase() {
const std::string& value = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kHUPSearchDatabaseRule);
return value.empty() || (value == "true");
}
bool OmniboxFieldTrial::KeywordRequiresRegistry() {
const std::string& value = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kKeywordRequiresRegistryRule);
return value.empty() || (value == "true");
}
bool OmniboxFieldTrial::KeywordRequiresPrefixMatch() {
const std::string& value = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kKeywordRequiresPrefixMatchRule);
return value.empty() || (value == "true");
}
int OmniboxFieldTrial::KeywordScoreForSufficientlyCompleteMatch() {
std::string value_str = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kKeywordScoreForSufficientlyCompleteMatchRule);
if (value_str.empty())
return -1;
// This is a best-effort conversion; we trust the hand-crafted parameters
// downloaded from the server to be perfect. There's no need for handle
// errors smartly.
int value;
base::StringToInt(value_str, &value);
return value;
}
OmniboxFieldTrial::EmphasizeTitlesCondition
OmniboxFieldTrial::GetEmphasizeTitlesConditionForInput(
metrics::OmniboxInputType::Type input_type) {
// Look up the parameter named kEmphasizeTitlesRule + ":" + input_type,
// find its value, and return that value as an enum. If the parameter
// isn't redefined, fall back to the generic rule kEmphasizeTitlesRule + ":*"
std::string value_str(variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
std::string(kEmphasizeTitlesRule) + "_" +
base::IntToString(static_cast<int>(input_type))));
if (value_str.empty()) {
value_str = variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
std::string(kEmphasizeTitlesRule) + "_*");
}
if (value_str.empty())
return EMPHASIZE_NEVER;
// This is a best-effort conversion; we trust the hand-crafted parameters
// downloaded from the server to be perfect. There's no need for handle
// errors smartly.
int value;
base::StringToInt(value_str, &value);
return static_cast<EmphasizeTitlesCondition>(value);
}
// static
bool OmniboxFieldTrial::InPhysicalWebZeroSuggestFieldTrial() {
return variations::GetVariationParamValue(kBundledExperimentFieldTrialName,
kPhysicalWebZeroSuggestRule) ==
"true";
}
// static
bool OmniboxFieldTrial::InPhysicalWebAfterTypingFieldTrial() {
return variations::GetVariationParamValue(kBundledExperimentFieldTrialName,
kPhysicalWebAfterTypingRule) ==
"true";
}
// static
int OmniboxFieldTrial::GetPhysicalWebZeroSuggestBaseRelevance() {
std::string param_value(variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kPhysicalWebZeroSuggestBaseRelevanceParam));
int base_relevance;
if (!param_value.empty() && base::StringToInt(param_value, &base_relevance))
return base_relevance;
// Default relevance score of the first Physical Web URL autocomplete match
// when the user has not typed in the omnibox. This score is intended to be
// between ClipboardURLProvider and ZeroSuggestProvider.
return 700;
}
// static
int OmniboxFieldTrial::GetPhysicalWebAfterTypingBaseRelevance() {
std::string param_value(variations::GetVariationParamValue(
kBundledExperimentFieldTrialName,
kPhysicalWebAfterTypingBaseRelevanceParam));
int base_relevance;
if (!param_value.empty() && base::StringToInt(param_value, &base_relevance))
return base_relevance;
// Default relevance score of the first Physical Web URL autocomplete match
// when the user is typing in the omnibox.
return 700;
}
const char OmniboxFieldTrial::kBundledExperimentFieldTrialName[] =
"OmniboxBundledExperimentV1";
const char OmniboxFieldTrial::kDisableProvidersRule[] = "DisableProviders";
const char OmniboxFieldTrial::kShortcutsScoringMaxRelevanceRule[] =
"ShortcutsScoringMaxRelevance";
const char OmniboxFieldTrial::kSearchHistoryRule[] = "SearchHistory";
const char OmniboxFieldTrial::kDemoteByTypeRule[] = "DemoteByType";
const char OmniboxFieldTrial::kHQPBookmarkValueRule[] =
"HQPBookmarkValue";
const char OmniboxFieldTrial::kHQPTypedValueRule[] = "HQPTypedValue";
const char OmniboxFieldTrial::kHQPAllowMatchInTLDRule[] = "HQPAllowMatchInTLD";
const char OmniboxFieldTrial::kHQPAllowMatchInSchemeRule[] =
"HQPAllowMatchInScheme";
const char OmniboxFieldTrial::kZeroSuggestRule[] = "ZeroSuggest";
const char OmniboxFieldTrial::kZeroSuggestVariantRule[] = "ZeroSuggestVariant";
const char OmniboxFieldTrial::kSuggestVariantRule[] = "SuggestVariant";
const char OmniboxFieldTrial::kDisableResultsCachingRule[] =
"DisableResultsCaching";
const char
OmniboxFieldTrial::kMeasureSuggestPollingDelayFromLastKeystrokeRule[] =
"MeasureSuggestPollingDelayFromLastKeystroke";
const char OmniboxFieldTrial::kSuggestPollingDelayMsRule[] =
"SuggestPollingDelayMs";
const char OmniboxFieldTrial::kHQPFixFewVisitsBugRule[] = "HQPFixFewVisitsBug";
const char OmniboxFieldTrial::kHQPFreqencyUsesSumRule[] = "HQPFreqencyUsesSum";
const char OmniboxFieldTrial::kHQPMaxVisitsToScoreRule[] =
"HQPMaxVisitsToScoreRule";
const char OmniboxFieldTrial::kHQPNumMatchesScoresRule[] =
"HQPNumMatchesScores";
const char OmniboxFieldTrial::kHQPNumTitleWordsRule[] = "HQPNumTitleWords";
const char OmniboxFieldTrial::kHQPAlsoDoHUPLikeScoringRule[] =
"HQPAlsoDoHUPLikeScoring";
const char OmniboxFieldTrial::kHUPSearchDatabaseRule[] =
"HUPSearchDatabase";
const char OmniboxFieldTrial::kKeywordRequiresRegistryRule[] =
"KeywordRequiresRegistry";
const char OmniboxFieldTrial::kKeywordRequiresPrefixMatchRule[] =
"KeywordRequiresPrefixMatch";
const char OmniboxFieldTrial::kKeywordScoreForSufficientlyCompleteMatchRule[] =
"KeywordScoreForSufficientlyCompleteMatch";
const char OmniboxFieldTrial::kEmphasizeTitlesRule[] = "EmphasizeTitles";
const char OmniboxFieldTrial::kPhysicalWebZeroSuggestRule[] =
"PhysicalWebZeroSuggest";
const char OmniboxFieldTrial::kPhysicalWebAfterTypingRule[] =
"PhysicalWebAfterTyping";
const char OmniboxFieldTrial::kHUPNewScoringEnabledParam[] =
"HUPExperimentalScoringEnabled";
const char OmniboxFieldTrial::kHUPNewScoringTypedCountRelevanceCapParam[] =
"TypedCountRelevanceCap";
const char OmniboxFieldTrial::kHUPNewScoringTypedCountHalfLifeTimeParam[] =
"TypedCountHalfLifeTime";
const char OmniboxFieldTrial::kHUPNewScoringTypedCountScoreBucketsParam[] =
"TypedCountScoreBuckets";
const char OmniboxFieldTrial::kHUPNewScoringTypedCountUseDecayFactorParam[] =
"TypedCountUseDecayFactor";
const char OmniboxFieldTrial::kHUPNewScoringVisitedCountRelevanceCapParam[] =
"VisitedCountRelevanceCap";
const char OmniboxFieldTrial::kHUPNewScoringVisitedCountHalfLifeTimeParam[] =
"VisitedCountHalfLifeTime";
const char OmniboxFieldTrial::kHUPNewScoringVisitedCountScoreBucketsParam[] =
"VisitedCountScoreBuckets";
const char OmniboxFieldTrial::kHUPNewScoringVisitedCountUseDecayFactorParam[] =
"VisitedCountUseDecayFactor";
const char OmniboxFieldTrial::kHQPExperimentalScoringBucketsParam[] =
"HQPExperimentalScoringBuckets";
const char
OmniboxFieldTrial::kHQPExperimentalScoringTopicalityThresholdParam[] =
"HQPExperimentalScoringTopicalityThreshold";
const char OmniboxFieldTrial::kPhysicalWebZeroSuggestBaseRelevanceParam[] =
"PhysicalWebZeroSuggestBaseRelevance";
const char OmniboxFieldTrial::kPhysicalWebAfterTypingBaseRelevanceParam[] =
"PhysicalWebAfterTypingBaseRelevanceParam";
// static
int OmniboxFieldTrial::kDefaultMinimumTimeBetweenSuggestQueriesMs = 100;
// Background and implementation details:
//
// Each experiment group in any field trial can come with an optional set of
// parameters (key-value pairs). In the bundled omnibox experiment
// (kBundledExperimentFieldTrialName), each experiment group comes with a
// list of parameters in the form:
// key=<Rule>:
// <OmniboxEventProto::PageClassification (as an int)>:
// <whether Instant Extended is enabled (as a 1 or 0)>
// (note that there are no linebreaks in keys; this format is for
// presentation only>
// value=<arbitrary string>
// Both the OmniboxEventProto::PageClassification and the Instant Extended
// entries can be "*", which means this rule applies for all values of the
// matching portion of the context.
// One example parameter is
// key=SearchHistory:6:1
// value=PreventInlining
// This means in page classification context 6 (a search result page doing
// search term replacement) with Instant Extended enabled, the SearchHistory
// experiment should PreventInlining.
//
// When an exact match to the rule in the current context is missing, we
// give preference to a wildcard rule that matches the instant extended
// context over a wildcard rule that matches the page classification
// context. Hopefully, though, users will write their field trial configs
// so as not to rely on this fall back order.
//
// In short, this function tries to find the value associated with key
// |rule|:|page_classification|:|instant_extended|, failing that it looks up
// |rule|:*:|instant_extended|, failing that it looks up
// |rule|:|page_classification|:*, failing that it looks up |rule|:*:*,
// and failing that it returns the empty string.
std::string OmniboxFieldTrial::GetValueForRuleInContext(
const std::string& rule,
OmniboxEventProto::PageClassification page_classification) {
VariationParams params;
if (!variations::GetVariationParams(kBundledExperimentFieldTrialName,
¶ms)) {
return std::string();
}
const std::string page_classification_str =
base::IntToString(static_cast<int>(page_classification));
const std::string instant_extended =
search::IsInstantExtendedAPIEnabled() ? "1" : "0";
// Look up rule in this exact context.
VariationParams::const_iterator it = params.find(
rule + ":" + page_classification_str + ":" + instant_extended);
if (it != params.end())
return it->second;
// Fall back to the global page classification context.
it = params.find(rule + ":*:" + instant_extended);
if (it != params.end())
return it->second;
// Fall back to the global instant extended context.
it = params.find(rule + ":" + page_classification_str + ":*");
if (it != params.end())
return it->second;
// Look up rule in the global context.
it = params.find(rule + ":*:*");
return (it != params.end()) ? it->second : std::string();
}
|