Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/browser/search_engines/template_url_service.h

Issue 368273011: Revert of Componentize TemplateURLService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_
6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_
7
8 #include <list>
9 #include <map>
10 #include <set>
11 #include <string>
12 #include <vector>
13
14 #include "base/callback_list.h"
15 #include "base/gtest_prod_util.h"
16 #include "base/memory/scoped_ptr.h"
17 #include "base/observer_list.h"
18 #include "base/prefs/pref_change_registrar.h"
19 #include "chrome/browser/webdata/keyword_web_data_service.h"
20 #include "components/google/core/browser/google_url_tracker.h"
21 #include "components/keyed_service/core/keyed_service.h"
22 #include "components/search_engines/default_search_manager.h"
23 #include "components/search_engines/template_url.h"
24 #include "components/search_engines/template_url_id.h"
25 #include "components/webdata/common/web_data_service_consumer.h"
26 #include "sync/api/sync_change.h"
27 #include "sync/api/syncable_service.h"
28
29 class GURL;
30 class PrefService;
31 class SearchHostToURLsMap;
32 class SearchTermsData;
33 class TemplateURL;
34 struct TemplateURLData;
35 class TemplateURLServiceClient;
36 class TemplateURLServiceObserver;
37
38 namespace rappor {
39 class RapporService;
40 }
41
42 namespace syncer {
43 class SyncData;
44 class SyncErrorFactory;
45 }
46
47 // TemplateURLService is the backend for keywords. It's used by
48 // KeywordAutocomplete.
49 //
50 // TemplateURLService stores a vector of TemplateURLs. The TemplateURLs are
51 // persisted to the database maintained by KeywordWebDataService.
52 // *ALL* mutations to the TemplateURLs must funnel through TemplateURLService.
53 // This allows TemplateURLService to notify listeners of changes as well as keep
54 // the database in sync.
55 //
56 // TemplateURLService does not load the vector of TemplateURLs in its
57 // constructor (except for testing). Use the Load method to trigger a load.
58 // When TemplateURLService has completed loading, observers are notified via
59 // OnTemplateURLServiceChanged, or by a callback registered prior to calling
60 // the Load method.
61 //
62 // TemplateURLService takes ownership of any TemplateURL passed to it. If there
63 // is a KeywordWebDataService, deletion is handled by KeywordWebDataService,
64 // otherwise TemplateURLService handles deletion.
65
66 class TemplateURLService : public WebDataServiceConsumer,
67 public KeyedService,
68 public syncer::SyncableService {
69 public:
70 typedef std::map<std::string, std::string> QueryTerms;
71 typedef std::vector<TemplateURL*> TemplateURLVector;
72 // Type for a static function pointer that acts as a time source.
73 typedef base::Time(TimeProvider)();
74 typedef std::map<std::string, syncer::SyncData> SyncDataMap;
75 typedef base::CallbackList<void(void)>::Subscription Subscription;
76
77 // Struct used for initializing the data store with fake data.
78 // Each initializer is mapped to a TemplateURL.
79 struct Initializer {
80 const char* const keyword;
81 const char* const url;
82 const char* const content;
83 };
84
85 struct URLVisitedDetails {
86 GURL url;
87 bool is_keyword_transition;
88 };
89
90 TemplateURLService(PrefService* prefs,
91 scoped_ptr<SearchTermsData> search_terms_data,
92 KeywordWebDataService* web_data_service,
93 scoped_ptr<TemplateURLServiceClient> client,
94 GoogleURLTracker* google_url_tracker,
95 rappor::RapporService* rappor_service,
96 const base::Closure& dsp_change_callback);
97 // The following is for testing.
98 TemplateURLService(const Initializer* initializers, const int count);
99 virtual ~TemplateURLService();
100
101 // Creates a TemplateURLData that was previously saved to |prefs| via
102 // SaveDefaultSearchProviderToPrefs or set via policy.
103 // Returns true if successful, false otherwise.
104 // If the user or the policy has opted for no default search, this
105 // returns true but default_provider is set to NULL.
106 // |*is_managed| specifies whether the default is managed via policy.
107 static bool LoadDefaultSearchProviderFromPrefs(
108 PrefService* prefs,
109 scoped_ptr<TemplateURLData>* default_provider_data,
110 bool* is_managed);
111
112 // Removes any unnecessary characters from a user input keyword.
113 // This removes the leading scheme, "www." and any trailing slash.
114 static base::string16 CleanUserInputKeyword(const base::string16& keyword);
115
116 // Saves enough of url to |prefs| so that it can be loaded from preferences on
117 // start up.
118 static void SaveDefaultSearchProviderToPrefs(const TemplateURL* url,
119 PrefService* prefs);
120
121 // Returns true if there is no TemplateURL that conflicts with the
122 // keyword/url pair, or there is one but it can be replaced. If there is an
123 // existing keyword that can be replaced and template_url_to_replace is
124 // non-NULL, template_url_to_replace is set to the keyword to replace.
125 //
126 // url gives the url of the search query. The url is used to avoid generating
127 // a TemplateURL for an existing TemplateURL that shares the same host.
128 bool CanReplaceKeyword(const base::string16& keyword,
129 const GURL& url,
130 TemplateURL** template_url_to_replace);
131
132 // Returns (in |matches|) all TemplateURLs whose keywords begin with |prefix|,
133 // sorted shortest keyword-first. If |support_replacement_only| is true, only
134 // TemplateURLs that support replacement are returned.
135 void FindMatchingKeywords(const base::string16& prefix,
136 bool support_replacement_only,
137 TemplateURLVector* matches);
138
139 // Looks up |keyword| and returns the element it maps to. Returns NULL if
140 // the keyword was not found.
141 // The caller should not try to delete the returned pointer; the data store
142 // retains ownership of it.
143 TemplateURL* GetTemplateURLForKeyword(const base::string16& keyword);
144
145 // Returns that TemplateURL with the specified GUID, or NULL if not found.
146 // The caller should not try to delete the returned pointer; the data store
147 // retains ownership of it.
148 TemplateURL* GetTemplateURLForGUID(const std::string& sync_guid);
149
150 // Returns the first TemplateURL found with a URL using the specified |host|,
151 // or NULL if there are no such TemplateURLs
152 TemplateURL* GetTemplateURLForHost(const std::string& host);
153
154 // Takes ownership of |template_url| and adds it to this model. For obvious
155 // reasons, it is illegal to Add() the same |template_url| pointer twice.
156 // Returns true if the Add is successful.
157 bool Add(TemplateURL* template_url);
158
159 // Like Add(), but overwrites the |template_url|'s values with the provided
160 // ones.
161 void AddWithOverrides(TemplateURL* template_url,
162 const base::string16& short_name,
163 const base::string16& keyword,
164 const std::string& url);
165
166 // Adds a search engine with the specified info.
167 void AddExtensionControlledTURL(
168 TemplateURL* template_url,
169 scoped_ptr<TemplateURL::AssociatedExtensionInfo> info);
170
171 // Removes the keyword from the model. This deletes the supplied TemplateURL.
172 // This fails if the supplied template_url is the default search provider.
173 void Remove(TemplateURL* template_url);
174
175 // Removes any TemplateURL of the specified |type| associated with
176 // |extension_id|. Unlike with Remove(), this can be called when the
177 // TemplateURL in question is the current default search provider.
178 void RemoveExtensionControlledTURL(const std::string& extension_id,
179 TemplateURL::Type type);
180
181 // Removes all auto-generated keywords that were created on or after the
182 // date passed in.
183 void RemoveAutoGeneratedSince(base::Time created_after);
184
185 // Removes all auto-generated keywords that were created in the specified
186 // range.
187 void RemoveAutoGeneratedBetween(base::Time created_after,
188 base::Time created_before);
189
190 // Removes all auto-generated keywords that were created in the specified
191 // range for a specified |origin|. If |origin| is empty, deletes all
192 // auto-generated keywords in the range.
193 void RemoveAutoGeneratedForOriginBetween(const GURL& origin,
194 base::Time created_after,
195 base::Time created_before);
196
197 // Adds a TemplateURL for an extension with an omnibox keyword.
198 // Only 1 keyword is allowed for a given extension. If a keyword
199 // already exists for this extension, does nothing.
200 void RegisterOmniboxKeyword(const std::string& extension_id,
201 const std::string& extension_name,
202 const std::string& keyword,
203 const std::string& template_url_string);
204
205 // Returns the set of URLs describing the keywords. The elements are owned
206 // by TemplateURLService and should not be deleted.
207 TemplateURLVector GetTemplateURLs();
208
209 // Increment the usage count of a keyword.
210 // Called when a URL is loaded that was generated from a keyword.
211 void IncrementUsageCount(TemplateURL* url);
212
213 // Resets the title, keyword and search url of the specified TemplateURL.
214 // The TemplateURL is marked as not replaceable.
215 void ResetTemplateURL(TemplateURL* url,
216 const base::string16& title,
217 const base::string16& keyword,
218 const std::string& search_url);
219
220 // Return true if the given |url| can be made the default. This returns false
221 // regardless of |url| if the default search provider is managed by policy or
222 // controlled by an extension.
223 bool CanMakeDefault(const TemplateURL* url);
224
225 // Set the default search provider. |url| may be null.
226 // This will assert if the default search is managed; the UI should not be
227 // invoking this method in that situation.
228 void SetUserSelectedDefaultSearchProvider(TemplateURL* url);
229
230 // Returns the default search provider. If the TemplateURLService hasn't been
231 // loaded, the default search provider is pulled from preferences.
232 //
233 // NOTE: At least in unittest mode, this may return NULL.
234 TemplateURL* GetDefaultSearchProvider();
235
236 // Returns true if the |url| is a search results page from the default search
237 // provider.
238 bool IsSearchResultsPageFromDefaultSearchProvider(const GURL& url);
239
240 // Returns true if the default search is managed through group policy.
241 bool is_default_search_managed() const {
242 return default_search_provider_source_ == DefaultSearchManager::FROM_POLICY;
243 }
244
245 // Returns true if the default search provider is controlled by an extension.
246 bool IsExtensionControlledDefaultSearch();
247
248 // Returns the default search specified in the prepopulated data, if it
249 // exists. If not, returns first URL in |template_urls_|, or NULL if that's
250 // empty. The returned object is owned by TemplateURLService and can be
251 // destroyed at any time so should be used right after the call.
252 TemplateURL* FindNewDefaultSearchProvider();
253
254 // Performs the same actions that happen when the prepopulate data version is
255 // revved: all existing prepopulated entries are checked against the current
256 // prepopulate data, any now-extraneous safe_for_autoreplace() entries are
257 // removed, any existing engines are reset to the provided data (except for
258 // user-edited names or keywords), and any new prepopulated engines are
259 // added.
260 //
261 // After this, the default search engine is reset to the default entry in the
262 // prepopulate data.
263 void RepairPrepopulatedSearchEngines();
264
265 // Observers used to listen for changes to the model.
266 // TemplateURLService does NOT delete the observers when deleted.
267 void AddObserver(TemplateURLServiceObserver* observer);
268 void RemoveObserver(TemplateURLServiceObserver* observer);
269
270 // Loads the keywords. This has no effect if the keywords have already been
271 // loaded.
272 // Observers are notified when loading completes via the method
273 // OnTemplateURLServiceChanged.
274 void Load();
275
276 // Registers a callback to be called when the service has loaded.
277 //
278 // If the service has already loaded, this function does nothing.
279 scoped_ptr<Subscription> RegisterOnLoadedCallback(
280 const base::Closure& callback);
281
282 #if defined(UNIT_TEST)
283 void set_loaded(bool value) { loaded_ = value; }
284 #endif
285
286 // Whether or not the keywords have been loaded.
287 bool loaded() { return loaded_; }
288
289 // Notification that the keywords have been loaded.
290 // This is invoked from WebDataService, and should not be directly
291 // invoked.
292 virtual void OnWebDataServiceRequestDone(
293 KeywordWebDataService::Handle h,
294 const WDTypedResult* result) OVERRIDE;
295
296 // Returns the locale-direction-adjusted short name for the given keyword.
297 // Also sets the out param to indicate whether the keyword belongs to an
298 // Omnibox extension.
299 base::string16 GetKeywordShortName(const base::string16& keyword,
300 bool* is_omnibox_api_extension_keyword);
301
302 // Called by the history service when a URL is visited.
303 void OnHistoryURLVisited(const URLVisitedDetails& details);
304
305 // KeyedService implementation.
306 virtual void Shutdown() OVERRIDE;
307
308 // syncer::SyncableService implementation.
309
310 // Returns all syncable TemplateURLs from this model as SyncData. This should
311 // include every search engine and no Extension keywords.
312 virtual syncer::SyncDataList GetAllSyncData(
313 syncer::ModelType type) const OVERRIDE;
314 // Process new search engine changes from Sync, merging them into our local
315 // data. This may send notifications if local search engines are added,
316 // updated or removed.
317 virtual syncer::SyncError ProcessSyncChanges(
318 const tracked_objects::Location& from_here,
319 const syncer::SyncChangeList& change_list) OVERRIDE;
320 // Merge initial search engine data from Sync and push any local changes up
321 // to Sync. This may send notifications if local search engines are added,
322 // updated or removed.
323 virtual syncer::SyncMergeResult MergeDataAndStartSyncing(
324 syncer::ModelType type,
325 const syncer::SyncDataList& initial_sync_data,
326 scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
327 scoped_ptr<syncer::SyncErrorFactory> sync_error_factory) OVERRIDE;
328 virtual void StopSyncing(syncer::ModelType type) OVERRIDE;
329
330 // Processes a local TemplateURL change for Sync. |turl| is the TemplateURL
331 // that has been modified, and |type| is the Sync ChangeType that took place.
332 // This may send a new SyncChange to the cloud. If our model has not yet been
333 // associated with Sync, or if this is triggered by a Sync change, then this
334 // does nothing.
335 void ProcessTemplateURLChange(const tracked_objects::Location& from_here,
336 const TemplateURL* turl,
337 syncer::SyncChange::SyncChangeType type);
338
339 // Returns a SearchTermsData which can be used to call TemplateURL methods.
340 const SearchTermsData& search_terms_data() const {
341 return *search_terms_data_;
342 }
343
344 // Returns a SyncData with a sync representation of the search engine data
345 // from |turl|.
346 static syncer::SyncData CreateSyncDataFromTemplateURL(
347 const TemplateURL& turl);
348
349 // Creates a new heap-allocated TemplateURL* which is populated by overlaying
350 // |sync_data| atop |existing_turl|. |existing_turl| may be NULL; if not it
351 // remains unmodified. The caller owns the returned TemplateURL*.
352 //
353 // If the created TemplateURL is migrated in some way from out-of-date sync
354 // data, an appropriate SyncChange is added to |change_list|. If the sync
355 // data is bad for some reason, an ACTION_DELETE change is added and the
356 // function returns NULL.
357 static TemplateURL* CreateTemplateURLFromTemplateURLAndSyncData(
358 PrefService* prefs,
359 const SearchTermsData& search_terms_data,
360 TemplateURL* existing_turl,
361 const syncer::SyncData& sync_data,
362 syncer::SyncChangeList* change_list);
363
364 // Returns a map mapping Sync GUIDs to pointers to syncer::SyncData.
365 static SyncDataMap CreateGUIDToSyncDataMap(
366 const syncer::SyncDataList& sync_data);
367
368 #if defined(UNIT_TEST)
369 // Sets a different time provider function, such as
370 // base::MockTimeProvider::StaticNow, for testing calls to base::Time::Now.
371 void set_time_provider(TimeProvider* time_provider) {
372 time_provider_ = time_provider;
373 }
374 #endif
375
376 protected:
377 // Cover method for the method of the same name on the HistoryService.
378 // url is the one that was visited with the given search terms.
379 //
380 // This exists and is virtual for testing.
381 virtual void SetKeywordSearchTermsForURL(const TemplateURL* t_url,
382 const GURL& url,
383 const base::string16& term);
384
385 private:
386 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceTest, TestManagedDefaultSearch);
387 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceTest,
388 UpdateKeywordSearchTermsForURL);
389 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceTest,
390 DontUpdateKeywordSearchForNonReplaceable);
391 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceTest, ChangeGoogleBaseValue);
392 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceTest, MergeDeletesUnusedProviders);
393 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, UniquifyKeyword);
394 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest,
395 IsLocalTemplateURLBetter);
396 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest,
397 ResolveSyncKeywordConflict);
398 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, PreSyncDeletes);
399 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, MergeInSyncTemplateURL);
400
401 friend class InstantUnitTestBase;
402 friend class TemplateURLServiceTestUtilBase;
403
404 typedef std::map<base::string16, TemplateURL*> KeywordToTemplateMap;
405 typedef std::map<std::string, TemplateURL*> GUIDToTemplateMap;
406
407 // Declaration of values to be used in an enumerated histogram to tally
408 // changes to the default search provider from various entry points. In
409 // particular, we use this to see what proportion of changes are from Sync
410 // entry points, to help spot erroneous Sync activity.
411 enum DefaultSearchChangeOrigin {
412 // Various known Sync entry points.
413 DSP_CHANGE_SYNC_PREF,
414 DSP_CHANGE_SYNC_ADD,
415 DSP_CHANGE_SYNC_DELETE,
416 DSP_CHANGE_SYNC_NOT_MANAGED,
417 // "Other" origins. We differentiate between Sync and not Sync so we know if
418 // certain changes were intentionally from the system, or possibly some
419 // unintentional change from when we were Syncing.
420 DSP_CHANGE_SYNC_UNINTENTIONAL,
421 // All changes that don't fall into another category; we can't reorder the
422 // list for clarity as this would screw up stat collection.
423 DSP_CHANGE_OTHER,
424 // Changed through "Profile Reset" feature.
425 DSP_CHANGE_PROFILE_RESET,
426 // Changed by an extension through the Override Settings API.
427 DSP_CHANGE_OVERRIDE_SETTINGS_EXTENSION,
428 // New DSP during database/prepopulate data load, which was not previously
429 // in the known engine set, and with no previous value in prefs. The
430 // typical time to see this is during first run.
431 DSP_CHANGE_NEW_ENGINE_NO_PREFS,
432 // Boundary value.
433 DSP_CHANGE_MAX,
434 };
435
436 // Helper functor for FindMatchingKeywords(), for finding the range of
437 // keywords which begin with a prefix.
438 class LessWithPrefix;
439
440 void Init(const Initializer* initializers, int num_initializers);
441
442 void RemoveFromMaps(TemplateURL* template_url);
443
444 void AddToMaps(TemplateURL* template_url);
445
446 // Sets the keywords. This is used once the keywords have been loaded.
447 // This does NOT notify the delegate or the database.
448 //
449 // This transfers ownership of the elements in |urls| to |this|, and may
450 // delete some elements, so it's not safe for callers to access any elements
451 // after calling; to reinforce this, this function clears |urls| on exit.
452 void SetTemplateURLs(TemplateURLVector* urls);
453
454 // Transitions to the loaded state.
455 void ChangeToLoadedState();
456
457 // Callback that is called when the Google URL is updated.
458 void OnGoogleURLUpdated(GURL old_url, GURL new_url);
459
460 // Called by DefaultSearchManager when the effective default search engine has
461 // changed.
462 void OnDefaultSearchChange(const TemplateURLData* new_dse_data,
463 DefaultSearchManager::Source source);
464
465 // Applies a DSE change and reports metrics if appropriate.
466 void ApplyDefaultSearchChange(const TemplateURLData* new_dse_data,
467 DefaultSearchManager::Source source);
468
469
470 // Applies a DSE change. May be called at startup or after transitioning to
471 // the loaded state. Returns true if a change actually occurred.
472 bool ApplyDefaultSearchChangeNoMetrics(const TemplateURLData* new_dse_data,
473 DefaultSearchManager::Source source);
474
475 // Returns true if there is no TemplateURL that has a search url with the
476 // specified host, or the only TemplateURLs matching the specified host can
477 // be replaced.
478 bool CanReplaceKeywordForHost(const std::string& host,
479 TemplateURL** to_replace);
480
481 // Returns true if the TemplateURL is replaceable. This doesn't look at the
482 // uniqueness of the keyword or host and is intended to be called after those
483 // checks have been done. This returns true if the TemplateURL doesn't appear
484 // in the default list and is marked as safe_for_autoreplace.
485 bool CanReplace(const TemplateURL* t_url);
486
487 // Like GetTemplateURLForKeyword(), but ignores extension-provided keywords.
488 TemplateURL* FindNonExtensionTemplateURLForKeyword(
489 const base::string16& keyword);
490
491 // Updates the information in |existing_turl| using the information from
492 // |new_values|, but the ID for |existing_turl| is retained. Notifying
493 // observers is the responsibility of the caller. Returns whether
494 // |existing_turl| was found in |template_urls_| and thus could be updated.
495 //
496 // NOTE: This should not be called with an extension keyword as there are no
497 // updates needed in that case.
498 bool UpdateNoNotify(TemplateURL* existing_turl,
499 const TemplateURL& new_values);
500
501 // If the TemplateURL comes from a prepopulated URL available in the current
502 // country, update all its fields save for the keyword, short name and id so
503 // that they match the internal prepopulated URL. TemplateURLs not coming from
504 // a prepopulated URL are not modified.
505 static void UpdateTemplateURLIfPrepopulated(TemplateURL* existing_turl,
506 PrefService* prefs);
507
508 // If the TemplateURL's sync GUID matches the kSyncedDefaultSearchProviderGUID
509 // preference it will be used to update the DSE in memory and as persisted in
510 // preferences.
511 void MaybeUpdateDSEAfterSync(TemplateURL* synced_turl);
512
513 // Iterates through the TemplateURLs to see if one matches the visited url.
514 // For each TemplateURL whose url matches the visited url
515 // SetKeywordSearchTermsForURL is invoked.
516 void UpdateKeywordSearchTermsForURL(const URLVisitedDetails& details);
517
518 // If necessary, generates a visit for the site http:// + t_url.keyword().
519 void AddTabToSearchVisit(const TemplateURL& t_url);
520
521 // Requests the Google URL tracker to check the server if necessary.
522 void RequestGoogleURLTrackerServerCheckIfNecessary();
523
524 // Invoked when the Google base URL has changed. Updates the mapping for all
525 // TemplateURLs that have a replacement term of {google:baseURL} or
526 // {google:baseSuggestURL}.
527 void GoogleBaseURLChanged();
528
529 // Adds a new TemplateURL to this model. TemplateURLService will own the
530 // reference, and delete it when the TemplateURL is removed.
531 // If |newly_adding| is false, we assume that this TemplateURL was already
532 // part of the model in the past, and therefore we don't need to do things
533 // like assign it an ID or notify sync.
534 // This function guarantees that on return the model will not have two
535 // non-extension TemplateURLs with the same keyword. If that means that it
536 // cannot add the provided argument, it will delete it and return false.
537 // Caller is responsible for notifying observers if this function returns
538 // true.
539 bool AddNoNotify(TemplateURL* template_url, bool newly_adding);
540
541 // Removes the keyword from the model. This deletes the supplied TemplateURL.
542 // This fails if the supplied template_url is the default search provider.
543 // Caller is responsible for notifying observers.
544 void RemoveNoNotify(TemplateURL* template_url);
545
546 // Like ResetTemplateURL(), but instead of notifying observers, returns
547 // whether anything has changed.
548 bool ResetTemplateURLNoNotify(TemplateURL* url,
549 const base::string16& title,
550 const base::string16& keyword,
551 const std::string& search_url);
552
553 // Notify the observers that the model has changed. This is done only if the
554 // model is loaded.
555 void NotifyObservers();
556
557 // Updates |template_urls| so that the only "created by policy" entry is
558 // |default_from_prefs|. |default_from_prefs| may be NULL if there is no
559 // policy-defined DSE in effect.
560 void UpdateProvidersCreatedByPolicy(
561 TemplateURLVector* template_urls,
562 const TemplateURLData* default_from_prefs);
563
564 // Resets the sync GUID of the specified TemplateURL and persists the change
565 // to the database. This does not notify observers.
566 void ResetTemplateURLGUID(TemplateURL* url, const std::string& guid);
567
568 // Attempts to generate a unique keyword for |turl| based on its original
569 // keyword. If its keyword is already unique, that is returned. Otherwise, it
570 // tries to return the autogenerated keyword if that is unique to the Service,
571 // and finally it repeatedly appends special characters to the keyword until
572 // it is unique to the Service. If |force| is true, then this will only
573 // execute the special character appending functionality.
574 base::string16 UniquifyKeyword(const TemplateURL& turl, bool force);
575
576 // Returns true iff |local_turl| is considered "better" than |sync_turl| for
577 // the purposes of resolving conflicts. |local_turl| must be a TemplateURL
578 // known to the local model (though it may already be synced), and |sync_turl|
579 // is a new TemplateURL known to Sync but not yet known to the local model.
580 // The criteria for if |local_turl| is better than |sync_turl| is whether any
581 // of the following are true:
582 // * |local_turl|'s last_modified timestamp is newer than sync_turl.
583 // * |local_turl| is created by policy.
584 // * |local_turl| is the local default search provider.
585 bool IsLocalTemplateURLBetter(const TemplateURL* local_turl,
586 const TemplateURL* sync_turl);
587
588 // Given two synced TemplateURLs with a conflicting keyword, one of which
589 // needs to be added to or updated in the local model (|unapplied_sync_turl|)
590 // and one which is already known to the local model (|applied_sync_turl|),
591 // prepares the local model so that |unapplied_sync_turl| can be added to it,
592 // or applied as an update to an existing TemplateURL.
593 // Since both entries are known to Sync and one of their keywords will change,
594 // an ACTION_UPDATE will be appended to |change_list| to reflect this change.
595 // Note that |applied_sync_turl| must not be an extension keyword.
596 void ResolveSyncKeywordConflict(TemplateURL* unapplied_sync_turl,
597 TemplateURL* applied_sync_turl,
598 syncer::SyncChangeList* change_list);
599
600 // Adds |sync_turl| into the local model, possibly removing or updating a
601 // local TemplateURL to make room for it. This expects |sync_turl| to be a new
602 // entry from Sync, not currently known to the local model. |sync_data| should
603 // be a SyncDataMap where the contents are entries initially known to Sync
604 // during MergeDataAndStartSyncing.
605 // Any necessary updates to Sync will be appended to |change_list|. This can
606 // include updates on local TemplateURLs, if they are found in |sync_data|.
607 // |initial_data| should be a SyncDataMap of the entries known to the local
608 // model during MergeDataAndStartSyncing. If |sync_turl| replaces a local
609 // entry, that entry is removed from |initial_data| to prevent it from being
610 // sent up to Sync.
611 // |merge_result| tracks the changes made to the local model. Added/modified/
612 // deleted are updated depending on how the |sync_turl| is merged in.
613 // This should only be called from MergeDataAndStartSyncing.
614 void MergeInSyncTemplateURL(TemplateURL* sync_turl,
615 const SyncDataMap& sync_data,
616 syncer::SyncChangeList* change_list,
617 SyncDataMap* local_data,
618 syncer::SyncMergeResult* merge_result);
619
620 // Goes through a vector of TemplateURLs and ensure that both the in-memory
621 // and database copies have valid sync_guids. This is to fix crbug.com/102038,
622 // where old entries were being pushed to Sync without a sync_guid.
623 void PatchMissingSyncGUIDs(TemplateURLVector* template_urls);
624
625 void OnSyncedDefaultSearchProviderGUIDChanged();
626
627 // Adds |template_urls| to |template_urls_|.
628 //
629 // This transfers ownership of the elements in |template_urls| to |this|, and
630 // may delete some elements, so it's not safe for callers to access any
631 // elements after calling; to reinforce this, this function clears
632 // |template_urls| on exit.
633 void AddTemplateURLs(TemplateURLVector* template_urls);
634
635 // Returns the TemplateURL corresponding to |prepopulated_id|, if any.
636 TemplateURL* FindPrepopulatedTemplateURL(int prepopulated_id);
637
638 // Returns the TemplateURL associated with |extension_id|, if any.
639 TemplateURL* FindTemplateURLForExtension(const std::string& extension_id,
640 TemplateURL::Type type);
641
642 // Finds the extension-supplied TemplateURL that matches |data|, if any.
643 TemplateURL* FindMatchingExtensionTemplateURL(const TemplateURLData& data,
644 TemplateURL::Type type);
645
646 // Finds the most recently-installed NORMAL_CONTROLLED_BY_EXTENSION engine
647 // that supports replacement and wants to be default, if any. Notifies the
648 // DefaultSearchManager, which might change the effective default search
649 // engine.
650 void UpdateExtensionDefaultSearchEngine();
651
652
653 // ---------- Browser state related members ---------------------------------
654 PrefService* prefs_;
655
656 scoped_ptr<SearchTermsData> search_terms_data_;
657
658 // ---------- Dependencies on other components ------------------------------
659 // Service used to store entries.
660 scoped_refptr<KeywordWebDataService> web_data_service_;
661
662 scoped_ptr<TemplateURLServiceClient> client_;
663
664 GoogleURLTracker* google_url_tracker_;
665
666 // ---------- Metrics related members ---------------------------------------
667 rappor::RapporService* rappor_service_;
668
669 // This closure is run when the default search provider is set to Google.
670 base::Closure dsp_change_callback_;
671
672
673 PrefChangeRegistrar pref_change_registrar_;
674
675 // Mapping from keyword to the TemplateURL.
676 KeywordToTemplateMap keyword_to_template_map_;
677
678 // Mapping from Sync GUIDs to the TemplateURL.
679 GUIDToTemplateMap guid_to_template_map_;
680
681 TemplateURLVector template_urls_;
682
683 ObserverList<TemplateURLServiceObserver> model_observers_;
684
685 // Maps from host to set of TemplateURLs whose search url host is host.
686 // NOTE: This is always non-NULL; we use a scoped_ptr<> to avoid circular
687 // header dependencies.
688 scoped_ptr<SearchHostToURLsMap> provider_map_;
689
690 // Whether the keywords have been loaded.
691 bool loaded_;
692
693 // Set when the web data service fails to load properly. This prevents
694 // further communication with sync or writing to prefs, so we don't persist
695 // inconsistent state data anywhere.
696 bool load_failed_;
697
698 // If non-zero, we're waiting on a load.
699 KeywordWebDataService::Handle load_handle_;
700
701 // All visits that occurred before we finished loading. Once loaded
702 // UpdateKeywordSearchTermsForURL is invoked for each element of the vector.
703 std::vector<URLVisitedDetails> visits_to_add_;
704
705 // Once loaded, the default search provider. This is a pointer to a
706 // TemplateURL owned by |template_urls_|.
707 TemplateURL* default_search_provider_;
708
709 // A temporary location for the DSE until Web Data has been loaded and it can
710 // be merged into |template_urls_|.
711 scoped_ptr<TemplateURL> initial_default_search_provider_;
712
713 // Source of the default search provider.
714 DefaultSearchManager::Source default_search_provider_source_;
715
716 // ID assigned to next TemplateURL added to this model. This is an ever
717 // increasing integer that is initialized from the database.
718 TemplateURLID next_id_;
719
720 // Function returning current time in base::Time units.
721 TimeProvider* time_provider_;
722
723 // Do we have an active association between the TemplateURLs and sync models?
724 // Set in MergeDataAndStartSyncing, reset in StopSyncing. While this is not
725 // set, we ignore any local search engine changes (when we start syncing we
726 // will look up the most recent values anyways).
727 bool models_associated_;
728
729 // Whether we're currently processing changes from the syncer. While this is
730 // true, we ignore any local search engine changes, since we triggered them.
731 bool processing_syncer_changes_;
732
733 // Sync's syncer::SyncChange handler. We push all our changes through this.
734 scoped_ptr<syncer::SyncChangeProcessor> sync_processor_;
735
736 // Sync's error handler. We use it to create a sync error.
737 scoped_ptr<syncer::SyncErrorFactory> sync_error_factory_;
738
739 // A set of sync GUIDs denoting TemplateURLs that have been removed from this
740 // model or the underlying KeywordWebDataService prior to
741 // MergeDataAndStartSyncing.
742 // This set is used to determine what entries from the server we want to
743 // ignore locally and return a delete command for.
744 std::set<std::string> pre_sync_deletes_;
745
746 // This is used to log the origin of changes to the default search provider.
747 // We set this value to increasingly specific values when we know what is the
748 // cause/origin of a default search change.
749 DefaultSearchChangeOrigin dsp_change_origin_;
750
751 // Stores a list of callbacks to be run after TemplateURLService has loaded.
752 base::CallbackList<void(void)> on_loaded_callbacks_;
753
754 // Helper class to manage the default search engine.
755 DefaultSearchManager default_search_manager_;
756
757 scoped_ptr<GoogleURLTracker::Subscription> google_url_updated_subscription_;
758
759 DISALLOW_COPY_AND_ASSIGN(TemplateURLService);
760 };
761
762 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/search_engines/template_url_scraper_unittest.cc ('k') | chrome/browser/search_engines/template_url_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698