1 // Copyright 2014 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.
5 // This file contains the keyword autocomplete provider. The keyword provider
6 // is responsible for remembering/suggesting user "search keyword queries"
7 // (e.g. "imdb Godzilla") and then fixing them up into valid URLs. An
8 // instance of it gets created and managed by the autocomplete controller.
9 // KeywordProvider uses a TemplateURLService to find the set of keywords.
11 #ifndef COMPONENTS_OMNIBOX_KEYWORD_PROVIDER_H_
12 #define COMPONENTS_OMNIBOX_KEYWORD_PROVIDER_H_
16 #include "base/basictypes.h"
17 #include "base/compiler_specific.h"
18 #include "base/memory/scoped_ptr.h"
19 #include "components/metrics/proto/omnibox_input_type.pb.h"
20 #include "components/omnibox/autocomplete_input.h"
21 #include "components/omnibox/autocomplete_provider.h"
22 #include "components/omnibox/keyword_extensions_delegate.h"
24 class AutocompleteProviderListener
;
25 class KeywordExtensionsDelegate
;
27 class TemplateURLService
;
29 // Autocomplete provider for keyword input.
31 // After construction, the autocomplete controller repeatedly calls Start()
32 // with some user input, each time expecting to receive a small set of the best
33 // matches (either synchronously or asynchronously).
35 // To construct these matches, the provider treats user input as a series of
36 // whitespace-delimited tokens and tries to match the first token as the prefix
37 // of a known "keyword". A keyword is some string that maps to a search query
38 // URL; the rest of the user's input is taken as the input to the query. For
39 // example, the keyword "bug" might map to the URL "http://b/issue?id=%s", so
40 // input like "bug 123" would become "http://b/issue?id=123".
42 // Because we do prefix matching, user input could match more than one keyword
43 // at once. (Example: the input "f jazz" matches all keywords starting with
44 // "f".) We return the best matches, up to three.
46 // The resulting matches are shown with content specified by the keyword
47 // (usually "Search [name] for %s"), description "(Keyword: [keyword])", and
48 // action "[keyword] %s". If the user has typed a (possibly partial) keyword
49 // but no search terms, the suggested result is shown greyed out, with
50 // "<enter term(s)>" as the substituted input, and does nothing when selected.
51 class KeywordProvider
: public AutocompleteProvider
{
53 KeywordProvider(AutocompleteProviderListener
* listener
,
54 TemplateURLService
* model
);
56 void set_extensions_delegate(
57 scoped_ptr
<KeywordExtensionsDelegate
> extensions_delegate
) {
58 extensions_delegate_
= extensions_delegate
.Pass();
61 // Extracts the next whitespace-delimited token from input and returns it.
62 // Sets |remaining_input| to everything after the first token (skipping over
63 // the first intervening whitespace).
64 // If |trim_leading_whitespace| is true then leading whitespace in
65 // |*remaining_input| will be trimmed.
66 static base::string16
SplitKeywordFromInput(const base::string16
& input
,
67 bool trim_leading_whitespace
,
68 base::string16
* remaining_input
);
70 // Returns the replacement string from the user input. The replacement
71 // string is the portion of the input that does not contain the keyword.
72 // For example, the replacement string for "b blah" is blah.
73 // If |trim_leading_whitespace| is true then leading whitespace in
74 // replacement string will be trimmed.
75 static base::string16
SplitReplacementStringFromInput(
76 const base::string16
& input
,
77 bool trim_leading_whitespace
);
79 // Returns the matching substituting keyword for |input|, or NULL if there
80 // is no keyword for the specified input. If the matching keyword was found,
81 // updates |input|'s text and cursor position.
82 static const TemplateURL
* GetSubstitutingTemplateURLForInput(
83 TemplateURLService
* model
,
84 AutocompleteInput
* input
);
86 // If |text| corresponds (in the sense of
87 // TemplateURLModel::CleanUserInputKeyword()) to an enabled, substituting
88 // keyword, returns that keyword; returns the empty string otherwise.
89 base::string16
GetKeywordForText(const base::string16
& text
) const;
91 // Creates a fully marked-up AutocompleteMatch for a specific keyword.
92 AutocompleteMatch
CreateVerbatimMatch(const base::string16
& text
,
93 const base::string16
& keyword
,
94 const AutocompleteInput
& input
);
96 // AutocompleteProvider:
97 void Start(const AutocompleteInput
& input
,
99 bool called_due_to_focus
) override
;
100 void Stop(bool clear_cached_results
,
101 bool due_to_user_inactivity
) override
;
104 friend class KeywordExtensionsDelegateImpl
;
106 ~KeywordProvider() override
;
108 // Extracts the keyword from |input| into |keyword|. Any remaining characters
109 // after the keyword are placed in |remaining_input|. Returns true if |input|
110 // is valid and has a keyword. This makes use of SplitKeywordFromInput to
111 // extract the keyword and remaining string, and uses
112 // TemplateURLService::CleanUserInputKeyword to remove unnecessary characters.
113 // In general use this instead of SplitKeywordFromInput.
114 // Leading whitespace in |*remaining_input| will be trimmed.
115 static bool ExtractKeywordFromInput(const AutocompleteInput
& input
,
116 base::string16
* keyword
,
117 base::string16
* remaining_input
);
119 // Determines the relevance for some input, given its type, whether the user
120 // typed the complete keyword, and whether the user is in "prefer keyword
121 // matches" mode, and whether the keyword supports replacement.
122 // If |allow_exact_keyword_match| is false, the relevance for complete
123 // keywords that support replacements is degraded.
124 static int CalculateRelevance(metrics::OmniboxInputType::Type type
,
126 bool support_replacement
,
128 bool allow_exact_keyword_match
);
130 // Creates a fully marked-up AutocompleteMatch from the user's input.
131 // If |relevance| is negative, calculate a relevance based on heuristics.
132 AutocompleteMatch
CreateAutocompleteMatch(
133 const TemplateURL
* template_url
,
134 const AutocompleteInput
& input
,
135 size_t prefix_length
,
136 const base::string16
& remaining_input
,
137 bool allowed_to_be_default_match
,
140 // Fills in the "destination_url" and "contents" fields of |match| with the
141 // provided user input and keyword data.
142 void FillInURLAndContents(const base::string16
& remaining_input
,
143 const TemplateURL
* element
,
144 AutocompleteMatch
* match
) const;
146 TemplateURLService
* GetTemplateURLService() const;
148 AutocompleteProviderListener
* listener_
;
150 // Model for the keywords.
151 TemplateURLService
* model_
;
153 // Delegate to handle the extensions-only logic for KeywordProvider.
154 // NULL when extensions are not enabled. May be NULL for tests.
155 scoped_ptr
<KeywordExtensionsDelegate
> extensions_delegate_
;
157 DISALLOW_COPY_AND_ASSIGN(KeywordProvider
);
160 #endif // COMPONENTS_OMNIBOX_KEYWORD_PROVIDER_H_