blob: 82fa07339cb7d5a5f29e1df8a6bc7aabbca6b28f [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.
#include "components/dom_distiller/core/dom_distiller_service.h"
#include <memory>
#include <utility>
#include "base/bind.h"
#include "base/guid.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_task_runner_handle.h"
#include "components/dom_distiller/core/distilled_content_store.h"
#include "components/dom_distiller/core/proto/distilled_article.pb.h"
#include "components/dom_distiller/core/task_tracker.h"
#include "url/gurl.h"
namespace dom_distiller {
namespace {
ArticleEntry CreateSkeletonEntryForUrl(const GURL& url) {
ArticleEntry skeleton;
skeleton.set_entry_id(base::GenerateGUID());
ArticleEntryPage* page = skeleton.add_pages();
page->set_url(url.spec());
DCHECK(IsEntryValid(skeleton));
return skeleton;
}
} // namespace
DomDistillerService::DomDistillerService(
std::unique_ptr<DistillerFactory> distiller_factory,
std::unique_ptr<DistillerPageFactory> distiller_page_factory,
std::unique_ptr<DistilledPagePrefs> distilled_page_prefs)
: content_store_(new InMemoryContentStore(kDefaultMaxNumCachedEntries)),
distiller_factory_(std::move(distiller_factory)),
distiller_page_factory_(std::move(distiller_page_factory)),
distilled_page_prefs_(std::move(distilled_page_prefs)) {}
DomDistillerService::~DomDistillerService() {}
std::unique_ptr<DistillerPage> DomDistillerService::CreateDefaultDistillerPage(
const gfx::Size& render_view_size) {
return distiller_page_factory_->CreateDistillerPage(render_view_size);
}
std::unique_ptr<DistillerPage>
DomDistillerService::CreateDefaultDistillerPageWithHandle(
std::unique_ptr<SourcePageHandle> handle) {
return distiller_page_factory_->CreateDistillerPageWithHandle(
std::move(handle));
}
bool DomDistillerService::HasEntry(const std::string& entry_id) {
return false;
}
std::string DomDistillerService::GetUrlForEntry(const std::string& entry_id) {
return "";
}
std::unique_ptr<ViewerHandle> DomDistillerService::ViewEntry(
ViewRequestDelegate* delegate,
std::unique_ptr<DistillerPage> distiller_page,
const std::string& entry_id) {
return nullptr;
}
std::unique_ptr<ViewerHandle> DomDistillerService::ViewUrl(
ViewRequestDelegate* delegate,
std::unique_ptr<DistillerPage> distiller_page,
const GURL& url) {
if (!url.is_valid()) {
return std::unique_ptr<ViewerHandle>();
}
TaskTracker* task_tracker = nullptr;
bool was_created = GetOrCreateTaskTrackerForUrl(url, &task_tracker);
std::unique_ptr<ViewerHandle> viewer_handle =
task_tracker->AddViewer(delegate);
// If a distiller is already running for one URL, don't start another.
if (was_created) {
task_tracker->StartDistiller(distiller_factory_.get(),
std::move(distiller_page));
task_tracker->StartBlobFetcher();
}
return viewer_handle;
}
bool DomDistillerService::GetOrCreateTaskTrackerForUrl(
const GURL& url,
TaskTracker** task_tracker) {
*task_tracker = GetTaskTrackerForUrl(url);
if (*task_tracker) {
return false;
}
ArticleEntry skeleton_entry = CreateSkeletonEntryForUrl(url);
*task_tracker = CreateTaskTracker(skeleton_entry);
return true;
}
TaskTracker* DomDistillerService::GetTaskTrackerForUrl(const GURL& url) const {
for (auto it = tasks_.begin(); it != tasks_.end(); ++it) {
if ((*it)->HasUrl(url)) {
return (*it).get();
}
}
return nullptr;
}
TaskTracker* DomDistillerService::CreateTaskTracker(const ArticleEntry& entry) {
TaskTracker::CancelCallback cancel_callback =
base::Bind(&DomDistillerService::CancelTask, base::Unretained(this));
tasks_.push_back(std::make_unique<TaskTracker>(entry, cancel_callback,
content_store_.get()));
return tasks_.back().get();
}
void DomDistillerService::CancelTask(TaskTracker* task) {
auto it = std::find_if(tasks_.begin(), tasks_.end(),
[task](const std::unique_ptr<TaskTracker>& t) {
return task == t.get();
});
if (it != tasks_.end()) {
it->release();
tasks_.erase(it);
base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, task);
}
}
DistilledPagePrefs* DomDistillerService::GetDistilledPagePrefs() {
return distilled_page_prefs_.get();
}
} // namespace dom_distiller