Add abhijeet.k@samsung.com to AUTHORS list.
[chromium-blink-merge.git] / components / dom_distiller / core / dom_distiller_service.h
blobf227c73a41a324c6085f8703d67d58d0c624ed3c
1 // Copyright 2013 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 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_H_
6 #define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_H_
8 #include <string>
9 #include <vector>
11 #include "base/callback.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/scoped_vector.h"
14 #include "base/memory/weak_ptr.h"
15 #include "components/dom_distiller/core/article_entry.h"
16 #include "components/dom_distiller/core/distilled_page_prefs.h"
17 #include "components/dom_distiller/core/distiller_page.h"
19 class GURL;
21 namespace syncer {
22 class SyncableService;
25 namespace dom_distiller {
27 class DistilledArticleProto;
28 class DistilledContentStore;
29 class DistillerFactory;
30 class DistillerPageFactory;
31 class DomDistillerObserver;
32 class DomDistillerStoreInterface;
33 class TaskTracker;
34 class ViewerHandle;
35 class ViewRequestDelegate;
37 // Service for interacting with the Dom Distiller.
38 // Construction, destruction, and usage of this service must happen on the same
39 // thread. Callbacks will be called on that same thread.
40 class DomDistillerServiceInterface {
41 public:
42 typedef base::Callback<void(bool)> ArticleAvailableCallback;
43 virtual ~DomDistillerServiceInterface() {}
45 virtual syncer::SyncableService* GetSyncableService() const = 0;
47 // Distill the article at |url| and add the resulting entry to the DOM
48 // distiller list. |article_cb| is always invoked, and the bool argument to it
49 // represents whether the article is available offline.
50 // Use CreateDefaultDistillerPage() to create a default |distiller_page|.
51 // The provided |distiller_page| is only used if there is not already a
52 // distillation task in progress for the given |url|.
53 virtual const std::string AddToList(
54 const GURL& url,
55 scoped_ptr<DistillerPage> distiller_page,
56 const ArticleAvailableCallback& article_cb) = 0;
58 // Returns whether an article stored has the given entry id.
59 virtual bool HasEntry(const std::string& entry_id) = 0;
61 // Returns the source URL given an entry ID. If the entry ID article has
62 // multiple pages, this will return the URL of the first page. Returns an
63 // empty string if there is no entry associated with the given entry ID.
64 virtual std::string GetUrlForEntry(const std::string& entry_id) = 0;
66 // Gets the full list of entries.
67 virtual std::vector<ArticleEntry> GetEntries() const = 0;
69 // Removes the specified entry from the dom distiller store.
70 virtual scoped_ptr<ArticleEntry> RemoveEntry(const std::string& entry_id) = 0;
72 // Request to view an article by entry id. Returns a null pointer if no entry
73 // with |entry_id| exists. The ViewerHandle should be destroyed before the
74 // ViewRequestDelegate. The request will be cancelled when the handle is
75 // destroyed (or when this service is destroyed), which also ensures that
76 // the |delegate| is not called after that.
77 // Use CreateDefaultDistillerPage() to create a default |distiller_page|.
78 // The provided |distiller_page| is only used if there is not already a
79 // distillation task in progress for the given |entry_id|.
80 virtual scoped_ptr<ViewerHandle> ViewEntry(
81 ViewRequestDelegate* delegate,
82 scoped_ptr<DistillerPage> distiller_page,
83 const std::string& entry_id) = 0;
85 // Request to view an article by url.
86 // Use CreateDefaultDistillerPage() to create a default |distiller_page|.
87 // The provided |distiller_page| is only used if there is not already a
88 // distillation task in progress for the given |url|.
89 virtual scoped_ptr<ViewerHandle> ViewUrl(
90 ViewRequestDelegate* delegate,
91 scoped_ptr<DistillerPage> distiller_page,
92 const GURL& url) = 0;
94 // Creates a default DistillerPage.
95 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPage(
96 const gfx::Size& render_view_size) = 0;
97 virtual scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle(
98 scoped_ptr<SourcePageHandle> handle) = 0;
100 virtual void AddObserver(DomDistillerObserver* observer) = 0;
101 virtual void RemoveObserver(DomDistillerObserver* observer) = 0;
103 // Returns the DistilledPagePrefs owned by the instance of
104 // DomDistillerService.
105 virtual DistilledPagePrefs* GetDistilledPagePrefs() = 0;
107 protected:
108 DomDistillerServiceInterface() {}
110 private:
111 DISALLOW_COPY_AND_ASSIGN(DomDistillerServiceInterface);
114 // Provide a view of the article list and ways of interacting with it.
115 class DomDistillerService : public DomDistillerServiceInterface {
116 public:
117 DomDistillerService(scoped_ptr<DomDistillerStoreInterface> store,
118 scoped_ptr<DistillerFactory> distiller_factory,
119 scoped_ptr<DistillerPageFactory> distiller_page_factory,
120 scoped_ptr<DistilledPagePrefs> distilled_page_prefs);
121 ~DomDistillerService() override;
123 // DomDistillerServiceInterface implementation.
124 syncer::SyncableService* GetSyncableService() const override;
125 const std::string AddToList(
126 const GURL& url,
127 scoped_ptr<DistillerPage> distiller_page,
128 const ArticleAvailableCallback& article_cb) override;
129 bool HasEntry(const std::string& entry_id) override;
130 std::string GetUrlForEntry(const std::string& entry_id) override;
131 std::vector<ArticleEntry> GetEntries() const override;
132 scoped_ptr<ArticleEntry> RemoveEntry(const std::string& entry_id) override;
133 scoped_ptr<ViewerHandle> ViewEntry(ViewRequestDelegate* delegate,
134 scoped_ptr<DistillerPage> distiller_page,
135 const std::string& entry_id) override;
136 scoped_ptr<ViewerHandle> ViewUrl(ViewRequestDelegate* delegate,
137 scoped_ptr<DistillerPage> distiller_page,
138 const GURL& url) override;
139 scoped_ptr<DistillerPage> CreateDefaultDistillerPage(
140 const gfx::Size& render_view_size) override;
141 scoped_ptr<DistillerPage> CreateDefaultDistillerPageWithHandle(
142 scoped_ptr<SourcePageHandle> handle) override;
143 void AddObserver(DomDistillerObserver* observer) override;
144 void RemoveObserver(DomDistillerObserver* observer) override;
145 DistilledPagePrefs* GetDistilledPagePrefs() override;
147 private:
148 void CancelTask(TaskTracker* task);
149 void AddDistilledPageToList(const ArticleEntry& entry,
150 const DistilledArticleProto* article_proto,
151 bool distillation_succeeded);
153 TaskTracker* CreateTaskTracker(const ArticleEntry& entry);
155 TaskTracker* GetTaskTrackerForEntry(const ArticleEntry& entry) const;
157 // Gets the task tracker for the given |url| or |entry|. If no appropriate
158 // tracker exists, this will create one, initialize it, and add it to
159 // |tasks_|.
160 TaskTracker* GetOrCreateTaskTrackerForUrl(const GURL& url);
161 TaskTracker* GetOrCreateTaskTrackerForEntry(const ArticleEntry& entry);
163 scoped_ptr<DomDistillerStoreInterface> store_;
164 scoped_ptr<DistilledContentStore> content_store_;
165 scoped_ptr<DistillerFactory> distiller_factory_;
166 scoped_ptr<DistillerPageFactory> distiller_page_factory_;
167 scoped_ptr<DistilledPagePrefs> distilled_page_prefs_;
169 typedef ScopedVector<TaskTracker> TaskList;
170 TaskList tasks_;
172 DISALLOW_COPY_AND_ASSIGN(DomDistillerService);
175 } // namespace dom_distiller
177 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_H_