history_service.h revision c2e0dbddbe15c98d52c4786dac06cb8952a8ae6d
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#ifndef CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
6#define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
7
8#include <set>
9#include <vector>
10
11#include "base/basictypes.h"
12#include "base/bind.h"
13#include "base/callback.h"
14#include "base/files/file_path.h"
15#include "base/logging.h"
16#include "base/memory/ref_counted.h"
17#include "base/memory/scoped_ptr.h"
18#include "base/memory/weak_ptr.h"
19#include "base/observer_list.h"
20#include "base/string16.h"
21#include "base/threading/thread_checker.h"
22#include "base/time.h"
23#include "chrome/browser/common/cancelable_request.h"
24#include "chrome/browser/favicon/favicon_service.h"
25#include "chrome/browser/history/delete_directive_handler.h"
26#include "chrome/browser/history/history_types.h"
27#include "chrome/browser/profiles/profile_keyed_service.h"
28#include "chrome/browser/search_engines/template_url_id.h"
29#include "chrome/common/cancelable_task_tracker.h"
30#include "chrome/common/ref_counted_util.h"
31#include "components/visitedlink/browser/visitedlink_delegate.h"
32#include "content/public/browser/notification_observer.h"
33#include "content/public/browser/notification_registrar.h"
34#include "content/public/common/page_transition_types.h"
35#include "sql/init_status.h"
36#include "sync/api/syncable_service.h"
37#include "ui/base/layout.h"
38
39#if defined(OS_ANDROID)
40#include "chrome/browser/history/android/android_history_provider_service.h"
41#endif
42
43class BookmarkService;
44class GURL;
45class HistoryURLProvider;
46class PageUsageData;
47class PageUsageRequest;
48class Profile;
49struct HistoryURLProviderParams;
50
51namespace base {
52class FilePath;
53class Thread;
54}
55
56namespace components {
57class VisitedLinkMaster;
58}  // namespace components
59
60
61namespace history {
62
63class HistoryBackend;
64class HistoryDatabase;
65class HistoryDBTask;
66class HistoryQueryTest;
67class InMemoryHistoryBackend;
68class InMemoryURLIndex;
69class InMemoryURLIndexTest;
70class URLDatabase;
71class VisitDatabaseObserver;
72class VisitFilter;
73struct DownloadRow;
74struct HistoryAddPageArgs;
75struct HistoryDetails;
76
77}  // namespace history
78
79// The history service records page titles, and visit times, as well as
80// (eventually) information about autocomplete.
81//
82// This service is thread safe. Each request callback is invoked in the
83// thread that made the request.
84class HistoryService : public CancelableRequestProvider,
85                       public content::NotificationObserver,
86                       public syncer::SyncableService,
87                       public ProfileKeyedService,
88                       public components::VisitedLinkDelegate {
89 public:
90  // Miscellaneous commonly-used types.
91  typedef std::vector<PageUsageData*> PageUsageDataList;
92
93  // Must call Init after construction.
94  explicit HistoryService(Profile* profile);
95  // The empty constructor is provided only for testing.
96  HistoryService();
97
98  virtual ~HistoryService();
99
100  // Initializes the history service, returning true on success. On false, do
101  // not call any other functions. The given directory will be used for storing
102  // the history files. The BookmarkService is used when deleting URLs to
103  // test if a URL is bookmarked; it may be NULL during testing.
104  bool Init(const base::FilePath& history_dir, BookmarkService* bookmark_service) {
105    return Init(history_dir, bookmark_service, false);
106  }
107
108  // Triggers the backend to load if it hasn't already, and then returns whether
109  // it's finished loading.
110  // Note: Virtual needed for mocking.
111  virtual bool BackendLoaded();
112
113  // Returns true if the backend has finished loading.
114  bool backend_loaded() const { return backend_loaded_; }
115
116  // Unloads the backend without actually shutting down the history service.
117  // This can be used to temporarily reduce the browser process' memory
118  // footprint.
119  void UnloadBackend();
120
121  // Called on shutdown, this will tell the history backend to complete and
122  // will release pointers to it. No other functions should be called once
123  // cleanup has happened that may dispatch to the history thread (because it
124  // will be NULL).
125  //
126  // In practice, this will be called by the service manager (BrowserProcess)
127  // when it is being destroyed. Because that reference is being destroyed, it
128  // should be impossible for anybody else to call the service, even if it is
129  // still in memory (pending requests may be holding a reference to us).
130  void Cleanup();
131
132  // RenderProcessHost pointers are used to scope page IDs (see AddPage). These
133  // objects must tell us when they are being destroyed so that we can clear
134  // out any cached data associated with that scope.
135  //
136  // The given pointer will not be dereferenced, it is only used for
137  // identification purposes, hence it is a void*.
138  void NotifyRenderProcessHostDestruction(const void* host);
139
140  // Triggers the backend to load if it hasn't already, and then returns the
141  // in-memory URL database. The returned pointer MAY BE NULL if the in-memory
142  // database has not been loaded yet. This pointer is owned by the history
143  // system. Callers should not store or cache this value.
144  //
145  // TODO(brettw) this should return the InMemoryHistoryBackend.
146  history::URLDatabase* InMemoryDatabase();
147
148  // Following functions get URL information from in-memory database.
149  // They return false if database is not available (e.g. not loaded yet) or the
150  // URL does not exist.
151
152  // Reads the number of times the user has typed the given URL.
153  bool GetTypedCountForURL(const GURL& url, int* typed_count);
154
155  // Reads the last visit time for the given URL.
156  bool GetLastVisitTimeForURL(const GURL& url, base::Time* last_visit);
157
158  // Reads the number of times this URL has been visited.
159  bool GetVisitCountForURL(const GURL& url, int* visit_count);
160
161  // Return the quick history index.
162  history::InMemoryURLIndex* InMemoryIndex() const {
163    return in_memory_url_index_.get();
164  }
165
166  // ProfileKeyedService:
167  virtual void Shutdown() OVERRIDE;
168
169  // Navigation ----------------------------------------------------------------
170
171  // Adds the given canonical URL to history with the given time as the visit
172  // time. Referrer may be the empty string.
173  //
174  // The supplied render process host is used to scope the given page ID. Page
175  // IDs are only unique inside a given render process, so we need that to
176  // differentiate them. This pointer should not be dereferenced by the history
177  // system.
178  //
179  // The scope/ids can be NULL if there is no meaningful tracking information
180  // that can be performed on the given URL. The 'page_id' should be the ID of
181  // the current session history entry in the given process.
182  //
183  // 'redirects' is an array of redirect URLs leading to this page, with the
184  // page itself as the last item (so when there is no redirect, it will have
185  // one entry). If there are no redirects, this array may also be empty for
186  // the convenience of callers.
187  //
188  // 'did_replace_entry' is true when the navigation entry for this page has
189  // replaced the existing entry. A non-user initiated redirect causes such
190  // replacement.
191  //
192  // All "Add Page" functions will update the visited link database.
193  void AddPage(const GURL& url,
194               base::Time time,
195               const void* id_scope,
196               int32 page_id,
197               const GURL& referrer,
198               const history::RedirectList& redirects,
199               content::PageTransition transition,
200               history::VisitSource visit_source,
201               bool did_replace_entry);
202
203  // For adding pages to history where no tracking information can be done.
204  void AddPage(const GURL& url,
205               base::Time time,
206               history::VisitSource visit_source);
207
208  // All AddPage variants end up here.
209  void AddPage(const history::HistoryAddPageArgs& add_page_args);
210
211  // Adds an entry for the specified url without creating a visit. This should
212  // only be used when bookmarking a page, otherwise the row leaks in the
213  // history db (it never gets cleaned).
214  void AddPageNoVisitForBookmark(const GURL& url, const string16& title);
215
216  // Sets the title for the given page. The page should be in history. If it
217  // is not, this operation is ignored. This call will not update the full
218  // text index. The last title set when the page is indexed will be the
219  // title in the full text index.
220  void SetPageTitle(const GURL& url, const string16& title);
221
222  // Updates the history database with a page's ending time stamp information.
223  // The page can be identified by the combination of the pointer to
224  // a RenderProcessHost, the page id and the url.
225  //
226  // The given pointer will not be dereferenced, it is only used for
227  // identification purposes, hence it is a void*.
228  void UpdateWithPageEndTime(const void* host,
229                             int32 page_id,
230                             const GURL& url,
231                             base::Time end_ts);
232
233  // Indexing ------------------------------------------------------------------
234
235  // Notifies history of the body text of the given recently-visited URL.
236  // If the URL was not visited "recently enough," the history system may
237  // discard it.
238  void SetPageContents(const GURL& url, const string16& contents);
239
240  // Querying ------------------------------------------------------------------
241
242  // Returns the information about the requested URL. If the URL is found,
243  // success will be true and the information will be in the URLRow parameter.
244  // On success, the visits, if requested, will be sorted by date. If they have
245  // not been requested, the pointer will be valid, but the vector will be
246  // empty.
247  //
248  // If success is false, neither the row nor the vector will be valid.
249  typedef base::Callback<void(
250      Handle,
251      bool,  // Success flag, when false, nothing else is valid.
252      const history::URLRow*,
253      history::VisitVector*)> QueryURLCallback;
254
255  // Queries the basic information about the URL in the history database. If
256  // the caller is interested in the visits (each time the URL is visited),
257  // set |want_visits| to true. If these are not needed, the function will be
258  // faster by setting this to false.
259  Handle QueryURL(const GURL& url,
260                  bool want_visits,
261                  CancelableRequestConsumerBase* consumer,
262                  const QueryURLCallback& callback);
263
264  // Provides the result of a query. See QueryResults in history_types.h.
265  // The common use will be to use QueryResults.Swap to suck the contents of
266  // the results out of the passed in parameter and take ownership of them.
267  typedef base::Callback<void(Handle, history::QueryResults*)>
268      QueryHistoryCallback;
269
270  // Queries all history with the given options (see QueryOptions in
271  // history_types.h). If non-empty, the full-text database will be queried with
272  // the given |text_query|. If empty, all results matching the given options
273  // will be returned.
274  //
275  // This isn't totally hooked up yet, this will query the "new" full text
276  // database (see SetPageContents) which won't generally be set yet.
277  Handle QueryHistory(const string16& text_query,
278                      const history::QueryOptions& options,
279                      CancelableRequestConsumerBase* consumer,
280                      const QueryHistoryCallback& callback);
281
282  // Called when the results of QueryRedirectsFrom are available.
283  // The given vector will contain a list of all redirects, not counting
284  // the original page. If A redirects to B, the vector will contain only B,
285  // and A will be in 'source_url'.
286  //
287  // If there is no such URL in the database or the most recent visit has no
288  // redirect, the vector will be empty. If the history system failed for
289  // some reason, success will additionally be false. If the given page
290  // has redirected to multiple destinations, this will pick a random one.
291  typedef base::Callback<void(Handle,
292                              GURL,  // from_url
293                              bool,  // success
294                              history::RedirectList*)> QueryRedirectsCallback;
295
296  // Schedules a query for the most recent redirect coming out of the given
297  // URL. See the RedirectQuerySource above, which is guaranteed to be called
298  // if the request is not canceled.
299  Handle QueryRedirectsFrom(const GURL& from_url,
300                            CancelableRequestConsumerBase* consumer,
301                            const QueryRedirectsCallback& callback);
302
303  // Schedules a query to get the most recent redirects ending at the given
304  // URL.
305  Handle QueryRedirectsTo(const GURL& to_url,
306                          CancelableRequestConsumerBase* consumer,
307                          const QueryRedirectsCallback& callback);
308
309  typedef base::Callback<
310      void(Handle,
311           bool,        // Were we able to determine the # of visits?
312           int,         // Number of visits.
313           base::Time)> // Time of first visit. Only set if bool
314                        // is true and int is > 0.
315      GetVisibleVisitCountToHostCallback;
316
317  // Requests the number of user-visible visits (i.e. no redirects or subframes)
318  // to all urls on the same scheme/host/port as |url|.  This is only valid for
319  // HTTP and HTTPS URLs.
320  Handle GetVisibleVisitCountToHost(
321      const GURL& url,
322      CancelableRequestConsumerBase* consumer,
323      const GetVisibleVisitCountToHostCallback& callback);
324
325  // Called when QueryTopURLsAndRedirects completes. The vector contains a list
326  // of the top |result_count| URLs.  For each of these URLs, there is an entry
327  // in the map containing redirects from the URL.  For example, if we have the
328  // redirect chain A -> B -> C and A is a top visited URL, then A will be in
329  // the vector and "A => {B -> C}" will be in the map.
330  typedef base::Callback<
331      void(Handle,
332           bool,  // Did we get the top urls and redirects?
333           std::vector<GURL>*,  // List of top URLs.
334           history::RedirectMap*)>  // Redirects for top URLs.
335      QueryTopURLsAndRedirectsCallback;
336
337  // Request the top |result_count| most visited URLs and the chain of redirects
338  // leading to each of these URLs.
339  // TODO(Nik): remove this. Use QueryMostVisitedURLs instead.
340  Handle QueryTopURLsAndRedirects(
341      int result_count,
342      CancelableRequestConsumerBase* consumer,
343      const QueryTopURLsAndRedirectsCallback& callback);
344
345  typedef base::Callback<void(Handle, history::MostVisitedURLList)>
346      QueryMostVisitedURLsCallback;
347
348  typedef base::Callback<void(Handle, const history::FilteredURLList&)>
349      QueryFilteredURLsCallback;
350
351  // Request the |result_count| most visited URLs and the chain of
352  // redirects leading to each of these URLs. |days_back| is the
353  // number of days of history to use. Used by TopSites.
354  Handle QueryMostVisitedURLs(int result_count, int days_back,
355                              CancelableRequestConsumerBase* consumer,
356                              const QueryMostVisitedURLsCallback& callback);
357
358  // Request the |result_count| URLs filtered and sorted based on the |filter|.
359  // If |extended_info| is true, additional data will be provided in the
360  // results. Computing this additional data is expensive, likely to become
361  // more expensive as additional data points are added in future changes, and
362  // not useful in most cases. Set |extended_info| to true only if you
363  // explicitly require the additional data.
364  Handle QueryFilteredURLs(
365      int result_count,
366      const history::VisitFilter& filter,
367      bool extended_info,
368      CancelableRequestConsumerBase* consumer,
369      const QueryFilteredURLsCallback& callback);
370
371  // Thumbnails ----------------------------------------------------------------
372
373  // Implemented by consumers to get thumbnail data. Called when a request for
374  // the thumbnail data is complete. Once this callback is made, the request
375  // will be completed and no other calls will be made for that handle.
376  //
377  // This function will be called even on error conditions or if there is no
378  // thumbnail for that page. In these cases, the data pointer will be NULL.
379  typedef base::Callback<void(Handle, scoped_refptr<base::RefCountedBytes>)>
380      ThumbnailDataCallback;
381
382  // Requests a page thumbnail. See ThumbnailDataCallback definition above.
383  Handle GetPageThumbnail(const GURL& page_url,
384                          CancelableRequestConsumerBase* consumer,
385                          const ThumbnailDataCallback& callback);
386
387  // Database management operations --------------------------------------------
388
389  // Delete all the information related to a single url.
390  void DeleteURL(const GURL& url);
391
392  // Delete all the information related to a list of urls.  (Deleting
393  // URLs one by one is slow as it has to flush to disk each time.)
394  void DeleteURLsForTest(const std::vector<GURL>& urls);
395
396  // Removes all visits in the selected time range (including the start time),
397  // updating the URLs accordingly. This deletes the associated data, including
398  // the full text index. This function also deletes the associated favicons,
399  // if they are no longer referenced. |callback| runs when the expiration is
400  // complete. You may use null Time values to do an unbounded delete in
401  // either direction.
402  // If |restrict_urls| is not empty, only visits to the URLs in this set are
403  // removed.
404  void ExpireHistoryBetween(const std::set<GURL>& restrict_urls,
405                            base::Time begin_time,
406                            base::Time end_time,
407                            const base::Closure& callback,
408                            CancelableTaskTracker* tracker);
409
410  // Removes all visits to specified URLs in specific time ranges.
411  // This is the equivalent ExpireHistoryBetween() once for each element in the
412  // vector. The fields of |ExpireHistoryArgs| map directly to the arguments of
413  // of ExpireHistoryBetween().
414  void ExpireHistory(const std::vector<history::ExpireHistoryArgs>& expire_list,
415                     const base::Closure& callback,
416                     CancelableTaskTracker* tracker);
417
418  // Removes all visits to the given URLs in the specified time range. Calls
419  // ExpireHistoryBetween() to delete local visits, and handles deletion of
420  // synced visits if appropriate.
421  void ExpireLocalAndRemoteHistoryBetween(
422      const std::set<GURL>& restrict_urls,
423      base::Time begin_time,
424      base::Time end_time,
425      const base::Closure& callback,
426      CancelableTaskTracker* tracker);
427
428  // Processes the given |delete_directive| and sends it to the
429  // SyncChangeProcessor (if it exists).  Returns any error resulting
430  // from sending the delete directive to sync.
431  syncer::SyncError ProcessLocalDeleteDirective(
432      const sync_pb::HistoryDeleteDirectiveSpecifics& delete_directive);
433
434  // Downloads -----------------------------------------------------------------
435
436  // Implemented by the caller of 'CreateDownload' below, and is called when the
437  // history service has created a new entry for a download in the history db.
438  typedef base::Callback<void(int64)> DownloadCreateCallback;
439
440  // Begins a history request to create a new row for a download. 'info'
441  // contains all the download's creation state, and 'callback' runs when the
442  // history service request is complete. The callback is called on the thread
443  // that calls CreateDownload().
444  void CreateDownload(
445      const history::DownloadRow& info,
446      const DownloadCreateCallback& callback);
447
448  // Implemented by the caller of 'GetNextDownloadId' below.
449  typedef base::Callback<void(int)> DownloadNextIdCallback;
450
451  // Runs the callback with the next available download id. The callback is
452  // called on the thread that calls GetNextDownloadId().
453  void GetNextDownloadId(const DownloadNextIdCallback& callback);
454
455  // Implemented by the caller of 'QueryDownloads' below, and is called when the
456  // history service has retrieved a list of all download state. The call
457  typedef base::Callback<void(
458      scoped_ptr<std::vector<history::DownloadRow> >)>
459          DownloadQueryCallback;
460
461  // Begins a history request to retrieve the state of all downloads in the
462  // history db. 'callback' runs when the history service request is complete,
463  // at which point 'info' contains an array of history::DownloadRow, one per
464  // download. The callback is called on the thread that calls QueryDownloads().
465  void QueryDownloads(const DownloadQueryCallback& callback);
466
467  // Called to update the history service about the current state of a download.
468  // This is a 'fire and forget' query, so just pass the relevant state info to
469  // the database with no need for a callback.
470  void UpdateDownload(const history::DownloadRow& data);
471
472  // Permanently remove some downloads from the history system. This is a 'fire
473  // and forget' operation.
474  void RemoveDownloads(const std::set<int64>& db_handles);
475
476  // Visit Segments ------------------------------------------------------------
477
478  typedef base::Callback<void(Handle, std::vector<PageUsageData*>*)>
479      SegmentQueryCallback;
480
481  // Query usage data for all visit segments since the provided time.
482  //
483  // The request is performed asynchronously and can be cancelled by using the
484  // returned handle.
485  //
486  // The vector provided to the callback and its contents is owned by the
487  // history system. It will be deeply deleted after the callback is invoked.
488  // If you want to preserve any PageUsageData instance, simply remove them
489  // from the vector.
490  //
491  // The vector contains a list of PageUsageData. Each PageUsageData ID is set
492  // to the segment ID. The URL and all the other information is set to the page
493  // representing the segment.
494  Handle QuerySegmentUsageSince(CancelableRequestConsumerBase* consumer,
495                                const base::Time from_time,
496                                int max_result_count,
497                                const SegmentQueryCallback& callback);
498
499  // Increases the amount of time the user actively viewed the url.
500  void IncreaseSegmentDuration(const GURL& url,
501                               base::Time time,
502                               base::TimeDelta delta);
503
504  // Queries segments based on active time viewed.
505  Handle QuerySegmentDurationSince(CancelableRequestConsumerBase* consumer,
506                                   base::Time from_time,
507                                   int max_result_count,
508                                   const SegmentQueryCallback& callback);
509
510  // Keyword search terms -----------------------------------------------------
511
512  // Sets the search terms for the specified url and keyword. url_id gives the
513  // id of the url, keyword_id the id of the keyword and term the search term.
514  void SetKeywordSearchTermsForURL(const GURL& url,
515                                   TemplateURLID keyword_id,
516                                   const string16& term);
517
518  // Deletes all search terms for the specified keyword.
519  void DeleteAllSearchTermsForKeyword(TemplateURLID keyword_id);
520
521  typedef base::Callback<
522      void(Handle, std::vector<history::KeywordSearchTermVisit>*)>
523          GetMostRecentKeywordSearchTermsCallback;
524
525  // Returns up to max_count of the most recent search terms starting with the
526  // specified text. The matching is case insensitive. The results are ordered
527  // in descending order up to |max_count| with the most recent search term
528  // first.
529  Handle GetMostRecentKeywordSearchTerms(
530      TemplateURLID keyword_id,
531      const string16& prefix,
532      int max_count,
533      CancelableRequestConsumerBase* consumer,
534      const GetMostRecentKeywordSearchTermsCallback& callback);
535
536  // Bookmarks -----------------------------------------------------------------
537
538  // Notification that a URL is no longer bookmarked.
539  void URLsNoLongerBookmarked(const std::set<GURL>& urls);
540
541  // Generic Stuff -------------------------------------------------------------
542
543  // Schedules a HistoryDBTask for running on the history backend thread. See
544  // HistoryDBTask for details on what this does.
545  virtual void ScheduleDBTask(history::HistoryDBTask* task,
546                              CancelableRequestConsumerBase* consumer);
547
548  // Returns true if top sites needs to be migrated out of history into its own
549  // db.
550  bool needs_top_sites_migration() const { return needs_top_sites_migration_; }
551
552  // Adds or removes observers for the VisitDatabase.
553  void AddVisitDatabaseObserver(history::VisitDatabaseObserver* observer);
554  void RemoveVisitDatabaseObserver(history::VisitDatabaseObserver* observer);
555
556  void NotifyVisitDBObserversOnAddVisit(const history::BriefVisitInfo& info);
557
558  // Testing -------------------------------------------------------------------
559
560  // Designed for unit tests, this passes the given task on to the history
561  // backend to be called once the history backend has terminated. This allows
562  // callers to know when the history thread is complete and the database files
563  // can be deleted and the next test run. Otherwise, the history thread may
564  // still be running, causing problems in subsequent tests.
565  //
566  // There can be only one closing task, so this will override any previously
567  // set task. We will take ownership of the pointer and delete it when done.
568  // The task will be run on the calling thread (this function is threadsafe).
569  void SetOnBackendDestroyTask(const base::Closure& task);
570
571  // Used for unit testing and potentially importing to get known information
572  // into the database. This assumes the URL doesn't exist in the database
573  //
574  // Calling this function many times may be slow because each call will
575  // dispatch to the history thread and will be a separate database
576  // transaction. If this functionality is needed for importing many URLs,
577  // callers should use AddPagesWithDetails() instead.
578  //
579  // Note that this routine (and AddPageWithDetails()) always adds a single
580  // visit using the |last_visit| timestamp, and a PageTransition type of LINK,
581  // if |visit_source| != SYNCED.
582  void AddPageWithDetails(const GURL& url,
583                          const string16& title,
584                          int visit_count,
585                          int typed_count,
586                          base::Time last_visit,
587                          bool hidden,
588                          history::VisitSource visit_source);
589
590  // The same as AddPageWithDetails() but takes a vector.
591  void AddPagesWithDetails(const history::URLRows& info,
592                           history::VisitSource visit_source);
593
594  // Starts the TopSites migration in the HistoryThread. Called by the
595  // BackendDelegate.
596  void StartTopSitesMigration(int backend_id);
597
598  // Called by TopSites after the thumbnails were read and it is safe
599  // to delete the thumbnails DB.
600  void OnTopSitesReady();
601
602  // Returns true if this looks like the type of URL we want to add to the
603  // history. We filter out some URLs such as JavaScript.
604  static bool CanAddURL(const GURL& url);
605
606  base::WeakPtr<HistoryService> AsWeakPtr();
607
608  // syncer::SyncableService implementation.
609  virtual syncer::SyncMergeResult MergeDataAndStartSyncing(
610      syncer::ModelType type,
611      const syncer::SyncDataList& initial_sync_data,
612      scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
613      scoped_ptr<syncer::SyncErrorFactory> error_handler) OVERRIDE;
614  virtual void StopSyncing(syncer::ModelType type) OVERRIDE;
615  virtual syncer::SyncDataList GetAllSyncData(
616      syncer::ModelType type) const OVERRIDE;
617  virtual syncer::SyncError ProcessSyncChanges(
618      const tracked_objects::Location& from_here,
619      const syncer::SyncChangeList& change_list) OVERRIDE;
620
621 protected:
622  // These are not currently used, hopefully we can do something in the future
623  // to ensure that the most important things happen first.
624  enum SchedulePriority {
625    PRIORITY_UI,      // The highest priority (must respond to UI events).
626    PRIORITY_NORMAL,  // Normal stuff like adding a page.
627    PRIORITY_LOW,     // Low priority things like indexing or expiration.
628  };
629
630 private:
631  class BackendDelegate;
632#if defined(OS_ANDROID)
633  friend class AndroidHistoryProviderService;
634#endif
635  friend class base::RefCountedThreadSafe<HistoryService>;
636  friend class BackendDelegate;
637  friend class FaviconService;
638  friend class history::HistoryBackend;
639  friend class history::HistoryQueryTest;
640  friend class HistoryOperation;
641  friend class HistoryURLProvider;
642  friend class HistoryURLProviderTest;
643  friend class history::InMemoryURLIndexTest;
644  template<typename Info, typename Callback> friend class DownloadRequest;
645  friend class PageUsageRequest;
646  friend class RedirectRequest;
647  friend class TestingProfile;
648
649  // Implementation of content::NotificationObserver.
650  virtual void Observe(int type,
651                       const content::NotificationSource& source,
652                       const content::NotificationDetails& details) OVERRIDE;
653
654  // Implementation of components::VisitedLinkDelegate.
655  virtual void RebuildTable(
656      const scoped_refptr<URLEnumerator>& enumerator) OVERRIDE;
657
658  // Low-level Init().  Same as the public version, but adds a |no_db| parameter
659  // that is only set by unittests which causes the backend to not init its DB.
660  bool Init(const base::FilePath& history_dir,
661            BookmarkService* bookmark_service,
662            bool no_db);
663
664  // Called by the HistoryURLProvider class to schedule an autocomplete, it
665  // will be called back on the internal history thread with the history
666  // database so it can query. See history_autocomplete.cc for a diagram.
667  void ScheduleAutocomplete(HistoryURLProvider* provider,
668                            HistoryURLProviderParams* params);
669
670  // Broadcasts the given notification. This is called by the backend so that
671  // the notification will be broadcast on the main thread.
672  //
673  // Compared to BroadcastNotifications(), this function does not take
674  // ownership of |details|.
675  void BroadcastNotificationsHelper(int type,
676                                    history::HistoryDetails* details);
677
678  // Initializes the backend.
679  void LoadBackendIfNecessary();
680
681  // Notification from the backend that it has finished loading. Sends
682  // notification (NOTIFY_HISTORY_LOADED) and sets backend_loaded_ to true.
683  void OnDBLoaded(int backend_id);
684
685  // Helper function for getting URL information.
686  // Reads a URLRow from in-memory database. Returns false if database is not
687  // available or the URL does not exist.
688  bool GetRowForURL(const GURL& url, history::URLRow* url_row);
689
690  // Favicon -------------------------------------------------------------------
691
692  // These favicon methods are exposed to the FaviconService. Instead of calling
693  // these methods directly you should call the respective method on the
694  // FaviconService.
695
696  // Used by FaviconService to get the favicon bitmaps from the history backend
697  // which most closely match |desired_size_in_dip| x |desired_size_in_dip| and
698  // |desired_scale_factors| for |icon_types|. If |desired_size_in_dip| is 0,
699  // the largest favicon bitmap for |icon_types| is returned. The returned
700  // FaviconBitmapResults will have at most one result for each of
701  // |desired_scale_factors|. If a favicon bitmap is determined to be the best
702  // candidate for multiple scale factors there will be less results.
703  // If |icon_types| has several types, results for only a single type will be
704  // returned in the priority of TOUCH_PRECOMPOSED_ICON, TOUCH_ICON, and
705  // FAVICON.
706  CancelableTaskTracker::TaskId GetFavicons(
707      const std::vector<GURL>& icon_urls,
708      int icon_types,
709      int desired_size_in_dip,
710      const std::vector<ui::ScaleFactor>& desired_scale_factors,
711      const FaviconService::FaviconResultsCallback& callback,
712      CancelableTaskTracker* tracker);
713
714  // Used by the FaviconService to get favicons mapped to |page_url| for
715  // |icon_types| which most closely match |desired_size_in_dip| and
716  // |desired_scale_factors|. If |desired_size_in_dip| is 0, the largest favicon
717  // bitmap for |icon_types| is returned. The returned FaviconBitmapResults will
718  // have at most one result for each of |desired_scale_factors|. If a favicon
719  // bitmap is determined to be the best candidate for multiple scale factors
720  // there will be less results. If |icon_types| has several types, results for
721  // only a single type will be returned in the priority of
722  // TOUCH_PRECOMPOSED_ICON, TOUCH_ICON, and FAVICON.
723  CancelableTaskTracker::TaskId GetFaviconsForURL(
724      const GURL& page_url,
725      int icon_types,
726      int desired_size_in_dip,
727      const std::vector<ui::ScaleFactor>& desired_scale_factors,
728      const FaviconService::FaviconResultsCallback& callback,
729      CancelableTaskTracker* tracker);
730
731  // Used by the FaviconService to get the favicon bitmap which most closely
732  // matches |desired_size_in_dip| and |desired_scale_factor| from the favicon
733  // with |favicon_id| from the history backend. If |desired_size_in_dip| is 0,
734  // the largest favicon bitmap for |favicon_id| is returned.
735  CancelableTaskTracker::TaskId GetFaviconForID(
736      history::FaviconID favicon_id,
737      int desired_size_in_dip,
738      ui::ScaleFactor desired_scale_factor,
739      const FaviconService::FaviconResultsCallback& callback,
740      CancelableTaskTracker* tracker);
741
742  // Used by the FaviconService to replace the favicon mappings to |page_url|
743  // for |icon_types| on the history backend.
744  // Sample |icon_urls|:
745  //  { ICON_URL1 -> TOUCH_ICON, known to the database,
746  //    ICON_URL2 -> TOUCH_ICON, not known to the database,
747  //    ICON_URL3 -> TOUCH_PRECOMPOSED_ICON, known to the database }
748  // The new mappings are computed from |icon_urls| with these rules:
749  // 1) Any urls in |icon_urls| which are not already known to the database are
750  //    rejected.
751  //    Sample new mappings to |page_url|: { ICON_URL1, ICON_URL3 }
752  // 2) If |icon_types| has multiple types, the mappings are only set for the
753  //    largest icon type.
754  //    Sample new mappings to |page_url|: { ICON_URL3 }
755  // |icon_types| can only have multiple IconTypes if
756  // |icon_types| == TOUCH_ICON | TOUCH_PRECOMPOSED_ICON.
757  // The favicon bitmaps which most closely match |desired_size_in_dip|
758  // and |desired_scale_factors| from the favicons which were just mapped
759  // to |page_url| are returned. If |desired_size_in_dip| is 0, the
760  // largest favicon bitmap is returned.
761  CancelableTaskTracker::TaskId UpdateFaviconMappingsAndFetch(
762      const GURL& page_url,
763      const std::vector<GURL>& icon_urls,
764      int icon_types,
765      int desired_size_in_dip,
766      const std::vector<ui::ScaleFactor>& desired_scale_factors,
767      const FaviconService::FaviconResultsCallback& callback,
768      CancelableTaskTracker* tracker);
769
770  // Used by FaviconService to set a favicon for |page_url| and |icon_url| with
771  // |pixel_size|.
772  // Example:
773  //   |page_url|: www.google.com
774  // 2 favicons in history for |page_url|:
775  //   www.google.com/a.ico  16x16
776  //   www.google.com/b.ico  32x32
777  // MergeFavicon(|page_url|, www.google.com/a.ico, ..., ..., 16x16)
778  //
779  // Merging occurs in the following manner:
780  // 1) |page_url| is set to map to only to |icon_url|. In order to not lose
781  //    data, favicon bitmaps mapped to |page_url| but not to |icon_url| are
782  //    copied to the favicon at |icon_url|.
783  //    For the example above, |page_url| will only be mapped to a.ico.
784  //    The 32x32 favicon bitmap at b.ico is copied to a.ico
785  // 2) |bitmap_data| is added to the favicon at |icon_url|, overwriting any
786  //    favicon bitmaps of |pixel_size|.
787  //    For the example above, |bitmap_data| overwrites the 16x16 favicon
788  //    bitmap for a.ico.
789  // TODO(pkotwicz): Remove once no longer required by sync.
790  void MergeFavicon(const GURL& page_url,
791                    const GURL& icon_url,
792                    history::IconType icon_type,
793                    scoped_refptr<base::RefCountedMemory> bitmap_data,
794                    const gfx::Size& pixel_size);
795
796  // Used by the FaviconService to set the favicons for a page on the history
797  // backend.
798  // |favicon_bitmap_data| replaces all the favicon bitmaps mapped to
799  // |page_url|.
800  // |expired| and |icon_type| fields in FaviconBitmapData are ignored.
801  // Use MergeFavicon() if |favicon_bitmap_data| is incomplete, and favicon
802  // bitmaps in the database should be preserved if possible. For instance,
803  // favicon bitmaps from sync are 1x only. MergeFavicon() is used to avoid
804  // deleting the 2x favicon bitmap if it is present in the history backend.
805  // See HistoryBackend::ValidateSetFaviconsParams() for more details on the
806  // criteria for |favicon_bitmap_data| to be valid.
807  void SetFavicons(
808      const GURL& page_url,
809      history::IconType icon_type,
810      const std::vector<history::FaviconBitmapData>& favicon_bitmap_data);
811
812  // Used by the FaviconService to mark the favicon for the page as being out
813  // of date.
814  void SetFaviconsOutOfDateForPage(const GURL& page_url);
815
816  // Used by the FaviconService to clone favicons from one page to another,
817  // provided that other page does not already have favicons.
818  void CloneFavicons(const GURL& old_page_url, const GURL& new_page_url);
819
820  // Used by the FaviconService for importing many favicons for many pages at
821  // once. The pages must exist, any favicon sets for unknown pages will be
822  // discarded. Existing favicons will not be overwritten.
823  void SetImportedFavicons(
824      const std::vector<history::ImportedFaviconUsage>& favicon_usage);
825
826  // Sets the in-memory URL database. This is called by the backend once the
827  // database is loaded to make it available.
828  void SetInMemoryBackend(int backend_id,
829                          history::InMemoryHistoryBackend* mem_backend);
830
831  // Called by our BackendDelegate when there is a problem reading the database.
832  void NotifyProfileError(int backend_id, sql::InitStatus init_status);
833
834  // Call to schedule a given task for running on the history thread with the
835  // specified priority. The task will have ownership taken.
836  void ScheduleTask(SchedulePriority priority, const base::Closure& task);
837
838  // Schedule ------------------------------------------------------------------
839  //
840  // Functions for scheduling operations on the history thread that have a
841  // handle and may be cancelable. For fire-and-forget operations, see
842  // ScheduleAndForget below.
843
844  template<typename BackendFunc, class RequestType>
845  Handle Schedule(SchedulePriority priority,
846                  BackendFunc func,  // Function to call on the HistoryBackend.
847                  CancelableRequestConsumerBase* consumer,
848                  RequestType* request) {
849    DCHECK(thread_) << "History service being called after cleanup";
850    DCHECK(thread_checker_.CalledOnValidThread());
851    LoadBackendIfNecessary();
852    if (consumer)
853      AddRequest(request, consumer);
854    ScheduleTask(priority,
855                 base::Bind(func, history_backend_.get(),
856                            scoped_refptr<RequestType>(request)));
857    return request->handle();
858  }
859
860  template<typename BackendFunc, class RequestType, typename ArgA>
861  Handle Schedule(SchedulePriority priority,
862                  BackendFunc func,  // Function to call on the HistoryBackend.
863                  CancelableRequestConsumerBase* consumer,
864                  RequestType* request,
865                  const ArgA& a) {
866    DCHECK(thread_) << "History service being called after cleanup";
867    DCHECK(thread_checker_.CalledOnValidThread());
868    LoadBackendIfNecessary();
869    if (consumer)
870      AddRequest(request, consumer);
871    ScheduleTask(priority,
872                 base::Bind(func, history_backend_.get(),
873                            scoped_refptr<RequestType>(request), a));
874    return request->handle();
875  }
876
877  template<typename BackendFunc,
878           class RequestType,  // Descendant of CancelableRequestBase.
879           typename ArgA,
880           typename ArgB>
881  Handle Schedule(SchedulePriority priority,
882                  BackendFunc func,  // Function to call on the HistoryBackend.
883                  CancelableRequestConsumerBase* consumer,
884                  RequestType* request,
885                  const ArgA& a,
886                  const ArgB& b) {
887    DCHECK(thread_) << "History service being called after cleanup";
888    DCHECK(thread_checker_.CalledOnValidThread());
889    LoadBackendIfNecessary();
890    if (consumer)
891      AddRequest(request, consumer);
892    ScheduleTask(priority,
893                 base::Bind(func, history_backend_.get(),
894                            scoped_refptr<RequestType>(request), a, b));
895    return request->handle();
896  }
897
898  template<typename BackendFunc,
899           class RequestType,  // Descendant of CancelableRequestBase.
900           typename ArgA,
901           typename ArgB,
902           typename ArgC>
903  Handle Schedule(SchedulePriority priority,
904                  BackendFunc func,  // Function to call on the HistoryBackend.
905                  CancelableRequestConsumerBase* consumer,
906                  RequestType* request,
907                  const ArgA& a,
908                  const ArgB& b,
909                  const ArgC& c) {
910    DCHECK(thread_) << "History service being called after cleanup";
911    DCHECK(thread_checker_.CalledOnValidThread());
912    LoadBackendIfNecessary();
913    if (consumer)
914      AddRequest(request, consumer);
915    ScheduleTask(priority,
916                 base::Bind(func, history_backend_.get(),
917                            scoped_refptr<RequestType>(request), a, b, c));
918    return request->handle();
919  }
920
921  template<typename BackendFunc,
922           class RequestType,  // Descendant of CancelableRequestBase.
923           typename ArgA,
924           typename ArgB,
925           typename ArgC,
926           typename ArgD>
927  Handle Schedule(SchedulePriority priority,
928                  BackendFunc func,  // Function to call on the HistoryBackend.
929                  CancelableRequestConsumerBase* consumer,
930                  RequestType* request,
931                  const ArgA& a,
932                  const ArgB& b,
933                  const ArgC& c,
934                  const ArgD& d) {
935    DCHECK(thread_) << "History service being called after cleanup";
936    DCHECK(thread_checker_.CalledOnValidThread());
937    LoadBackendIfNecessary();
938    if (consumer)
939      AddRequest(request, consumer);
940    ScheduleTask(priority,
941                 base::Bind(func, history_backend_.get(),
942                            scoped_refptr<RequestType>(request), a, b, c, d));
943    return request->handle();
944  }
945
946  // ScheduleAndForget ---------------------------------------------------------
947  //
948  // Functions for scheduling operations on the history thread that do not need
949  // any callbacks and are not cancelable.
950
951  template<typename BackendFunc>
952  void ScheduleAndForget(SchedulePriority priority,
953                         BackendFunc func) {  // Function to call on backend.
954    DCHECK(thread_) << "History service being called after cleanup";
955    DCHECK(thread_checker_.CalledOnValidThread());
956    LoadBackendIfNecessary();
957    ScheduleTask(priority, base::Bind(func, history_backend_.get()));
958  }
959
960  template<typename BackendFunc, typename ArgA>
961  void ScheduleAndForget(SchedulePriority priority,
962                         BackendFunc func,  // Function to call on backend.
963                         const ArgA& a) {
964    DCHECK(thread_) << "History service being called after cleanup";
965    DCHECK(thread_checker_.CalledOnValidThread());
966    LoadBackendIfNecessary();
967    ScheduleTask(priority, base::Bind(func, history_backend_.get(), a));
968  }
969
970  template<typename BackendFunc, typename ArgA, typename ArgB>
971  void ScheduleAndForget(SchedulePriority priority,
972                         BackendFunc func,  // Function to call on backend.
973                         const ArgA& a,
974                         const ArgB& b) {
975    DCHECK(thread_) << "History service being called after cleanup";
976    DCHECK(thread_checker_.CalledOnValidThread());
977    LoadBackendIfNecessary();
978    ScheduleTask(priority, base::Bind(func, history_backend_.get(), a, b));
979  }
980
981  template<typename BackendFunc, typename ArgA, typename ArgB, typename ArgC>
982  void ScheduleAndForget(SchedulePriority priority,
983                         BackendFunc func,  // Function to call on backend.
984                         const ArgA& a,
985                         const ArgB& b,
986                         const ArgC& c) {
987    DCHECK(thread_) << "History service being called after cleanup";
988    DCHECK(thread_checker_.CalledOnValidThread());
989    LoadBackendIfNecessary();
990    ScheduleTask(priority, base::Bind(func, history_backend_.get(), a, b, c));
991  }
992
993  template<typename BackendFunc,
994           typename ArgA,
995           typename ArgB,
996           typename ArgC,
997           typename ArgD>
998  void ScheduleAndForget(SchedulePriority priority,
999                         BackendFunc func,  // Function to call on backend.
1000                         const ArgA& a,
1001                         const ArgB& b,
1002                         const ArgC& c,
1003                         const ArgD& d) {
1004    DCHECK(thread_) << "History service being called after cleanup";
1005    DCHECK(thread_checker_.CalledOnValidThread());
1006    LoadBackendIfNecessary();
1007    ScheduleTask(priority, base::Bind(func, history_backend_.get(),
1008                                      a, b, c, d));
1009  }
1010
1011  template<typename BackendFunc,
1012           typename ArgA,
1013           typename ArgB,
1014           typename ArgC,
1015           typename ArgD,
1016           typename ArgE>
1017  void ScheduleAndForget(SchedulePriority priority,
1018                         BackendFunc func,  // Function to call on backend.
1019                         const ArgA& a,
1020                         const ArgB& b,
1021                         const ArgC& c,
1022                         const ArgD& d,
1023                         const ArgE& e) {
1024    DCHECK(thread_) << "History service being called after cleanup";
1025    DCHECK(thread_checker_.CalledOnValidThread());
1026    LoadBackendIfNecessary();
1027    ScheduleTask(priority, base::Bind(func, history_backend_.get(),
1028                                      a, b, c, d, e));
1029  }
1030
1031  // All vended weak pointers are invalidated in Cleanup().
1032  base::WeakPtrFactory<HistoryService> weak_ptr_factory_;
1033
1034  base::ThreadChecker thread_checker_;
1035
1036  content::NotificationRegistrar registrar_;
1037
1038  // Some void primitives require some internal processing in the main thread
1039  // when done. We use this internal consumer for this purpose.
1040  CancelableRequestConsumer internal_consumer_;
1041
1042  // The thread used by the history service to run complicated operations.
1043  // |thread_| is NULL once |Cleanup| is NULL.
1044  base::Thread* thread_;
1045
1046  // This class has most of the implementation and runs on the 'thread_'.
1047  // You MUST communicate with this class ONLY through the thread_'s
1048  // message_loop().
1049  //
1050  // This pointer will be NULL once Cleanup() has been called, meaning no
1051  // more calls should be made to the history thread.
1052  scoped_refptr<history::HistoryBackend> history_backend_;
1053
1054  // A cache of the user-typed URLs kept in memory that is used by the
1055  // autocomplete system. This will be NULL until the database has been created
1056  // on the background thread.
1057  // TODO(mrossetti): Consider changing ownership. See http://crbug.com/138321
1058  scoped_ptr<history::InMemoryHistoryBackend> in_memory_backend_;
1059
1060  // The profile, may be null when testing.
1061  Profile* profile_;
1062
1063  // Used for propagating link highlighting data across renderers. May be null
1064  // in tests.
1065  scoped_ptr<components::VisitedLinkMaster> visitedlink_master_;
1066
1067  // Has the backend finished loading? The backend is loaded once Init has
1068  // completed.
1069  bool backend_loaded_;
1070
1071  // The id of the current backend. This is only valid when history_backend_
1072  // is not NULL.
1073  int current_backend_id_;
1074
1075  // Cached values from Init(), used whenever we need to reload the backend.
1076  base::FilePath history_dir_;
1077  BookmarkService* bookmark_service_;
1078  bool no_db_;
1079
1080  // True if needs top site migration.
1081  bool needs_top_sites_migration_;
1082
1083  // The index used for quick history lookups.
1084  // TODO(mrossetti): Move in_memory_url_index out of history_service.
1085  // See http://crbug.com/138321
1086  scoped_ptr<history::InMemoryURLIndex> in_memory_url_index_;
1087
1088  ObserverList<history::VisitDatabaseObserver> visit_database_observers_;
1089
1090  history::DeleteDirectiveHandler delete_directive_handler_;
1091
1092  DISALLOW_COPY_AND_ASSIGN(HistoryService);
1093};
1094
1095#endif  // CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
1096