shortcuts_provider.cc revision 46d4c2bc3267f3f028f39e7e311b0f89aba2e4fd
1// Copyright (c) 2012 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5#include "chrome/browser/autocomplete/shortcuts_provider.h" 6 7#include <algorithm> 8#include <cmath> 9#include <map> 10#include <vector> 11 12#include "base/i18n/break_iterator.h" 13#include "base/i18n/case_conversion.h" 14#include "base/logging.h" 15#include "base/metrics/histogram.h" 16#include "base/prefs/pref_service.h" 17#include "base/strings/string_number_conversions.h" 18#include "base/strings/string_util.h" 19#include "base/strings/utf_string_conversions.h" 20#include "base/time/time.h" 21#include "chrome/browser/autocomplete/autocomplete_input.h" 22#include "chrome/browser/autocomplete/autocomplete_match.h" 23#include "chrome/browser/autocomplete/autocomplete_provider_listener.h" 24#include "chrome/browser/autocomplete/autocomplete_result.h" 25#include "chrome/browser/autocomplete/history_provider.h" 26#include "chrome/browser/autocomplete/shortcuts_backend_factory.h" 27#include "chrome/browser/autocomplete/url_prefix.h" 28#include "chrome/browser/history/history_notifications.h" 29#include "chrome/browser/history/history_service.h" 30#include "chrome/browser/history/history_service_factory.h" 31#include "chrome/browser/omnibox/omnibox_field_trial.h" 32#include "chrome/browser/profiles/profile.h" 33#include "chrome/common/net/url_fixer_upper.h" 34#include "chrome/common/pref_names.h" 35#include "chrome/common/url_constants.h" 36#include "url/url_parse.h" 37 38namespace { 39 40class DestinationURLEqualsURL { 41 public: 42 explicit DestinationURLEqualsURL(const GURL& url) : url_(url) {} 43 bool operator()(const AutocompleteMatch& match) const { 44 return match.destination_url == url_; 45 } 46 private: 47 const GURL url_; 48}; 49 50} // namespace 51 52const int ShortcutsProvider::kShortcutsProviderDefaultMaxRelevance = 1199; 53 54ShortcutsProvider::ShortcutsProvider(AutocompleteProviderListener* listener, 55 Profile* profile) 56 : AutocompleteProvider(listener, profile, 57 AutocompleteProvider::TYPE_SHORTCUTS), 58 languages_(profile_->GetPrefs()->GetString(prefs::kAcceptLanguages)), 59 initialized_(false) { 60 scoped_refptr<ShortcutsBackend> backend = 61 ShortcutsBackendFactory::GetForProfile(profile_); 62 if (backend.get()) { 63 backend->AddObserver(this); 64 if (backend->initialized()) 65 initialized_ = true; 66 } 67} 68 69void ShortcutsProvider::Start(const AutocompleteInput& input, 70 bool minimal_changes) { 71 matches_.clear(); 72 73 if ((input.type() == AutocompleteInput::INVALID) || 74 (input.type() == AutocompleteInput::FORCED_QUERY)) 75 return; 76 77 if (input.text().empty()) 78 return; 79 80 if (!initialized_) 81 return; 82 83 base::TimeTicks start_time = base::TimeTicks::Now(); 84 GetMatches(input); 85 if (input.text().length() < 6) { 86 base::TimeTicks end_time = base::TimeTicks::Now(); 87 std::string name = "ShortcutsProvider.QueryIndexTime." + 88 base::IntToString(input.text().size()); 89 base::HistogramBase* counter = base::Histogram::FactoryGet( 90 name, 1, 1000, 50, base::Histogram::kUmaTargetedHistogramFlag); 91 counter->Add(static_cast<int>((end_time - start_time).InMilliseconds())); 92 } 93 UpdateStarredStateOfMatches(); 94} 95 96void ShortcutsProvider::DeleteMatch(const AutocompleteMatch& match) { 97 // Copy the URL since deleting from |matches_| will invalidate |match|. 98 GURL url(match.destination_url); 99 DCHECK(url.is_valid()); 100 101 // When a user deletes a match, he probably means for the URL to disappear out 102 // of history entirely. So nuke all shortcuts that map to this URL. 103 scoped_refptr<ShortcutsBackend> backend = 104 ShortcutsBackendFactory::GetForProfileIfExists(profile_); 105 if (backend) // Can be NULL in Incognito. 106 backend->DeleteShortcutsWithURL(url); 107 108 matches_.erase(std::remove_if(matches_.begin(), matches_.end(), 109 DestinationURLEqualsURL(url)), 110 matches_.end()); 111 // NOTE: |match| is now dead! 112 113 // Delete the match from the history DB. This will eventually result in a 114 // second call to DeleteShortcutsWithURL(), which is harmless. 115 HistoryService* const history_service = 116 HistoryServiceFactory::GetForProfile(profile_, Profile::EXPLICIT_ACCESS); 117 DCHECK(history_service); 118 history_service->DeleteURL(url); 119} 120 121ShortcutsProvider::~ShortcutsProvider() { 122 scoped_refptr<ShortcutsBackend> backend = 123 ShortcutsBackendFactory::GetForProfileIfExists(profile_); 124 if (backend.get()) 125 backend->RemoveObserver(this); 126} 127 128void ShortcutsProvider::OnShortcutsLoaded() { 129 initialized_ = true; 130} 131 132void ShortcutsProvider::GetMatches(const AutocompleteInput& input) { 133 scoped_refptr<ShortcutsBackend> backend = 134 ShortcutsBackendFactory::GetForProfileIfExists(profile_); 135 if (!backend.get()) 136 return; 137 // Get the URLs from the shortcuts database with keys that partially or 138 // completely match the search term. 139 base::string16 term_string(base::i18n::ToLower(input.text())); 140 DCHECK(!term_string.empty()); 141 142 const GURL& input_as_gurl = URLFixerUpper::FixupURL( 143 base::UTF16ToUTF8(input.text()), std::string()); 144 const base::string16 fixed_up_input(FixupUserInput(input).second); 145 146 int max_relevance; 147 if (!OmniboxFieldTrial::ShortcutsScoringMaxRelevance( 148 input.current_page_classification(), &max_relevance)) 149 max_relevance = kShortcutsProviderDefaultMaxRelevance; 150 151 for (ShortcutsBackend::ShortcutMap::const_iterator it = 152 FindFirstMatch(term_string, backend.get()); 153 it != backend->shortcuts_map().end() && 154 StartsWith(it->first, term_string, true); ++it) { 155 // Don't return shortcuts with zero relevance. 156 int relevance = CalculateScore(term_string, it->second, max_relevance); 157 if (relevance) { 158 matches_.push_back(ShortcutToACMatch(it->second, relevance, input, 159 fixed_up_input, input_as_gurl)); 160 matches_.back().ComputeStrippedDestinationURL(profile_); 161 } 162 } 163 // Remove duplicates. Duplicates don't need to be preserved in the matches 164 // because they are only used for deletions, and shortcuts deletes matches 165 // based on the URL. 166 AutocompleteResult::DedupMatchesByDestination( 167 input.current_page_classification(), false, &matches_); 168 // Find best matches. 169 std::partial_sort(matches_.begin(), 170 matches_.begin() + 171 std::min(AutocompleteProvider::kMaxMatches, matches_.size()), 172 matches_.end(), &AutocompleteMatch::MoreRelevant); 173 if (matches_.size() > AutocompleteProvider::kMaxMatches) { 174 matches_.erase(matches_.begin() + AutocompleteProvider::kMaxMatches, 175 matches_.end()); 176 } 177 // Guarantee that all scores are decreasing (but do not assign any scores 178 // below 1). 179 for (ACMatches::iterator it = matches_.begin(); it != matches_.end(); ++it) { 180 max_relevance = std::min(max_relevance, it->relevance); 181 it->relevance = max_relevance; 182 if (max_relevance > 1) 183 --max_relevance; 184 } 185} 186 187AutocompleteMatch ShortcutsProvider::ShortcutToACMatch( 188 const history::ShortcutsDatabase::Shortcut& shortcut, 189 int relevance, 190 const AutocompleteInput& input, 191 const base::string16& fixed_up_input_text, 192 const GURL& input_as_gurl) { 193 DCHECK(!input.text().empty()); 194 AutocompleteMatch match; 195 match.provider = this; 196 match.relevance = relevance; 197 match.deletable = true; 198 match.fill_into_edit = shortcut.match_core.fill_into_edit; 199 match.destination_url = shortcut.match_core.destination_url; 200 DCHECK(match.destination_url.is_valid()); 201 match.contents = shortcut.match_core.contents; 202 match.contents_class = AutocompleteMatch::ClassificationsFromString( 203 shortcut.match_core.contents_class); 204 match.description = shortcut.match_core.description; 205 match.description_class = AutocompleteMatch::ClassificationsFromString( 206 shortcut.match_core.description_class); 207 match.transition = 208 static_cast<content::PageTransition>(shortcut.match_core.transition); 209 match.type = static_cast<AutocompleteMatch::Type>(shortcut.match_core.type); 210 match.keyword = shortcut.match_core.keyword; 211 match.RecordAdditionalInfo("number of hits", shortcut.number_of_hits); 212 match.RecordAdditionalInfo("last access time", shortcut.last_access_time); 213 match.RecordAdditionalInfo("original input text", 214 base::UTF16ToUTF8(shortcut.text)); 215 216 // Set |inline_autocompletion| and |allowed_to_be_default_match| if possible. 217 // If the match is a search query this is easy: simply check whether the 218 // user text is a prefix of the query. If the match is a navigation, we 219 // assume the fill_into_edit looks something like a URL, so we use 220 // URLPrefix::GetInlineAutocompleteOffset() to try and strip off any prefixes 221 // that the user might not think would change the meaning, but would 222 // otherwise prevent inline autocompletion. This allows, for example, the 223 // input of "foo.c" to autocomplete to "foo.com" for a fill_into_edit of 224 // "http://foo.com". 225 if (AutocompleteMatch::IsSearchType(match.type)) { 226 if (StartsWith(match.fill_into_edit, input.text(), false)) { 227 match.inline_autocompletion = 228 match.fill_into_edit.substr(input.text().length()); 229 match.allowed_to_be_default_match = 230 !input.prevent_inline_autocomplete() || 231 match.inline_autocompletion.empty(); 232 } 233 } else { 234 const size_t inline_autocomplete_offset = 235 URLPrefix::GetInlineAutocompleteOffset( 236 input.text(), fixed_up_input_text, true, match.fill_into_edit); 237 if (inline_autocomplete_offset != base::string16::npos) { 238 match.inline_autocompletion = 239 match.fill_into_edit.substr(inline_autocomplete_offset); 240 match.allowed_to_be_default_match = 241 !HistoryProvider::PreventInlineAutocomplete(input) || 242 match.inline_autocompletion.empty(); 243 } else { 244 // Also allow a user's input to be marked as default if it would be fixed 245 // up to the same thing as the fill_into_edit. This handles cases like 246 // the user input containing a trailing slash absent in fill_into_edit. 247 match.allowed_to_be_default_match = (input_as_gurl == 248 URLFixerUpper::FixupURL(base::UTF16ToUTF8(match.fill_into_edit), 249 std::string())); 250 } 251 } 252 253 // Try to mark pieces of the contents and description as matches if they 254 // appear in |input.text()|. 255 const base::string16 term_string = base::i18n::ToLower(input.text()); 256 WordMap terms_map(CreateWordMapForString(term_string)); 257 if (!terms_map.empty()) { 258 match.contents_class = ClassifyAllMatchesInString(term_string, terms_map, 259 match.contents, match.contents_class); 260 match.description_class = ClassifyAllMatchesInString(term_string, terms_map, 261 match.description, match.description_class); 262 } 263 return match; 264} 265 266// static 267ShortcutsProvider::WordMap ShortcutsProvider::CreateWordMapForString( 268 const base::string16& text) { 269 // First, convert |text| to a vector of the unique words in it. 270 WordMap word_map; 271 base::i18n::BreakIterator word_iter(text, 272 base::i18n::BreakIterator::BREAK_WORD); 273 if (!word_iter.Init()) 274 return word_map; 275 std::vector<base::string16> words; 276 while (word_iter.Advance()) { 277 if (word_iter.IsWord()) 278 words.push_back(word_iter.GetString()); 279 } 280 if (words.empty()) 281 return word_map; 282 std::sort(words.begin(), words.end()); 283 words.erase(std::unique(words.begin(), words.end()), words.end()); 284 285 // Now create a map from (first character) to (words beginning with that 286 // character). We insert in reverse lexicographical order and rely on the 287 // multimap preserving insertion order for values with the same key. (This 288 // is mandated in C++11, and part of that decision was based on a survey of 289 // existing implementations that found that it was already true everywhere.) 290 std::reverse(words.begin(), words.end()); 291 for (std::vector<base::string16>::const_iterator i(words.begin()); 292 i != words.end(); ++i) 293 word_map.insert(std::make_pair((*i)[0], *i)); 294 return word_map; 295} 296 297// static 298ACMatchClassifications ShortcutsProvider::ClassifyAllMatchesInString( 299 const base::string16& find_text, 300 const WordMap& find_words, 301 const base::string16& text, 302 const ACMatchClassifications& original_class) { 303 DCHECK(!find_text.empty()); 304 DCHECK(!find_words.empty()); 305 306 // The code below assumes |text| is nonempty and therefore the resulting 307 // classification vector should always be nonempty as well. Returning early 308 // if |text| is empty assures we'll return the (correct) empty vector rather 309 // than a vector with a single (0, NONE) match. 310 if (text.empty()) 311 return original_class; 312 313 // First check whether |text| begins with |find_text| and mark that whole 314 // section as a match if so. 315 base::string16 text_lowercase(base::i18n::ToLower(text)); 316 ACMatchClassifications match_class; 317 size_t last_position = 0; 318 if (StartsWith(text_lowercase, find_text, true)) { 319 match_class.push_back( 320 ACMatchClassification(0, ACMatchClassification::MATCH)); 321 last_position = find_text.length(); 322 // If |text_lowercase| is actually equal to |find_text|, we don't need to 323 // (and in fact shouldn't) put a trailing NONE classification after the end 324 // of the string. 325 if (last_position < text_lowercase.length()) { 326 match_class.push_back( 327 ACMatchClassification(last_position, ACMatchClassification::NONE)); 328 } 329 } else { 330 // |match_class| should start at position 0. If the first matching word is 331 // found at position 0, this will be popped from the vector further down. 332 match_class.push_back( 333 ACMatchClassification(0, ACMatchClassification::NONE)); 334 } 335 336 // Now, starting with |last_position|, check each character in 337 // |text_lowercase| to see if we have words starting with that character in 338 // |find_words|. If so, check each of them to see if they match the portion 339 // of |text_lowercase| beginning with |last_position|. Accept the first 340 // matching word found (which should be the longest possible match at this 341 // location, given the construction of |find_words|) and add a MATCH region to 342 // |match_class|, moving |last_position| to be after the matching word. If we 343 // found no matching words, move to the next character and repeat. 344 while (last_position < text_lowercase.length()) { 345 std::pair<WordMap::const_iterator, WordMap::const_iterator> range( 346 find_words.equal_range(text_lowercase[last_position])); 347 size_t next_character = last_position + 1; 348 for (WordMap::const_iterator i(range.first); i != range.second; ++i) { 349 const base::string16& word = i->second; 350 size_t word_end = last_position + word.length(); 351 if ((word_end <= text_lowercase.length()) && 352 !text_lowercase.compare(last_position, word.length(), word)) { 353 // Collapse adjacent ranges into one. 354 if (match_class.back().offset == last_position) 355 match_class.pop_back(); 356 357 AutocompleteMatch::AddLastClassificationIfNecessary(&match_class, 358 last_position, ACMatchClassification::MATCH); 359 if (word_end < text_lowercase.length()) { 360 match_class.push_back( 361 ACMatchClassification(word_end, ACMatchClassification::NONE)); 362 } 363 last_position = word_end; 364 break; 365 } 366 } 367 last_position = std::max(last_position, next_character); 368 } 369 370 return AutocompleteMatch::MergeClassifications(original_class, match_class); 371} 372 373ShortcutsBackend::ShortcutMap::const_iterator 374 ShortcutsProvider::FindFirstMatch(const base::string16& keyword, 375 ShortcutsBackend* backend) { 376 DCHECK(backend); 377 ShortcutsBackend::ShortcutMap::const_iterator it = 378 backend->shortcuts_map().lower_bound(keyword); 379 // Lower bound not necessarily matches the keyword, check for item pointed by 380 // the lower bound iterator to at least start with keyword. 381 return ((it == backend->shortcuts_map().end()) || 382 StartsWith(it->first, keyword, true)) ? it : 383 backend->shortcuts_map().end(); 384} 385 386int ShortcutsProvider::CalculateScore( 387 const base::string16& terms, 388 const history::ShortcutsDatabase::Shortcut& shortcut, 389 int max_relevance) { 390 DCHECK(!terms.empty()); 391 DCHECK_LE(terms.length(), shortcut.text.length()); 392 393 // The initial score is based on how much of the shortcut the user has typed. 394 // Using the square root of the typed fraction boosts the base score rapidly 395 // as characters are typed, compared with simply using the typed fraction 396 // directly. This makes sense since the first characters typed are much more 397 // important for determining how likely it is a user wants a particular 398 // shortcut than are the remaining continued characters. 399 double base_score = max_relevance * 400 sqrt(static_cast<double>(terms.length()) / shortcut.text.length()); 401 402 // Then we decay this by half each week. 403 const double kLn2 = 0.6931471805599453; 404 base::TimeDelta time_passed = base::Time::Now() - shortcut.last_access_time; 405 // Clamp to 0 in case time jumps backwards (e.g. due to DST). 406 double decay_exponent = std::max(0.0, kLn2 * static_cast<double>( 407 time_passed.InMicroseconds()) / base::Time::kMicrosecondsPerWeek); 408 409 // We modulate the decay factor based on how many times the shortcut has been 410 // used. Newly created shortcuts decay at full speed; otherwise, decaying by 411 // half takes |n| times as much time, where n increases by 412 // (1.0 / each 5 additional hits), up to a maximum of 5x as long. 413 const double kMaxDecaySpeedDivisor = 5.0; 414 const double kNumUsesPerDecaySpeedDivisorIncrement = 5.0; 415 double decay_divisor = std::min(kMaxDecaySpeedDivisor, 416 (shortcut.number_of_hits + kNumUsesPerDecaySpeedDivisorIncrement - 1) / 417 kNumUsesPerDecaySpeedDivisorIncrement); 418 419 return static_cast<int>((base_score / exp(decay_exponent / decay_divisor)) + 420 0.5); 421} 422