blob: ce4f26688cfaf8865022c8d6c673dcf282d8d6cd [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_H_
#define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_H_
#include <string>
#include <vector>
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "base/memory/weak_ptr.h"
#include "components/dom_distiller/core/article_entry.h"
class GURL;
namespace syncer {
class SyncableService;
}
namespace dom_distiller {
class DistilledPageProto;
class DistillerFactory;
class DomDistillerObserver;
class DomDistillerStoreInterface;
class TaskTracker;
class ViewerHandle;
class ViewRequestDelegate;
// Provide a view of the article list and ways of interacting with it.
class DomDistillerService {
public:
DomDistillerService(scoped_ptr<DomDistillerStoreInterface> store,
scoped_ptr<DistillerFactory> distiller_factory);
~DomDistillerService();
syncer::SyncableService* GetSyncableService() const;
// Distill the article at |url| and add the resulting entry to the DOM
// distiller list.
void AddToList(const GURL& url);
// Gets the full list of entries.
std::vector<ArticleEntry> GetEntries() const;
// Removes the specified entry from the dom distiller store.
void RemoveEntry(const std::string& entry_id);
// Request to view an article by entry id. Returns a null pointer if no entry
// with |entry_id| exists. The ViewerHandle should be destroyed before the
// ViewRequestDelegate. The request will be cancelled when the handle is
// destroyed (or when this service is destroyed).
scoped_ptr<ViewerHandle> ViewEntry(ViewRequestDelegate* delegate,
const std::string& entry_id);
// Request to view an article by url.
scoped_ptr<ViewerHandle> ViewUrl(ViewRequestDelegate* delegate,
const GURL& url);
void AddObserver(DomDistillerObserver* observer);
void RemoveObserver(DomDistillerObserver* observer);
private:
void CancelTask(TaskTracker* task);
void AddDistilledPageToList(const ArticleEntry& entry,
DistilledPageProto* proto);
TaskTracker* CreateTaskTracker(const ArticleEntry& entry);
// Gets the task tracker for the given |url| or |entry|. If no appropriate
// tracker exists, this will create one, initialize it, and add it to
// |tasks_|.
TaskTracker* GetTaskTrackerForUrl(const GURL& url);
TaskTracker* GetTaskTrackerForEntry(const ArticleEntry& entry);
scoped_ptr<DomDistillerStoreInterface> store_;
scoped_ptr<DistillerFactory> distiller_factory_;
typedef ScopedVector<TaskTracker> TaskList;
TaskList tasks_;
DISALLOW_COPY_AND_ASSIGN(DomDistillerService);
};
} // namespace dom_distiller
#endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_H_