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.
5 #include "chrome/browser/dom_distiller/tab_utils.h"
7 #include "base/message_loop/message_loop.h"
8 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h"
9 #include "chrome/browser/ui/tab_contents/core_tab_helper.h"
10 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h"
11 #include "components/dom_distiller/content/distiller_page_web_contents.h"
12 #include "components/dom_distiller/core/distiller_page.h"
13 #include "components/dom_distiller/core/dom_distiller_service.h"
14 #include "components/dom_distiller/core/task_tracker.h"
15 #include "components/dom_distiller/core/url_constants.h"
16 #include "components/dom_distiller/core/url_utils.h"
17 #include "content/public/browser/browser_context.h"
18 #include "content/public/browser/navigation_controller.h"
19 #include "content/public/browser/web_contents.h"
20 #include "content/public/browser/web_contents_observer.h"
24 using dom_distiller::ViewRequestDelegate
;
25 using dom_distiller::DistilledArticleProto
;
26 using dom_distiller::ArticleDistillationUpdate
;
27 using dom_distiller::ViewerHandle
;
28 using dom_distiller::SourcePageHandleWebContents
;
29 using dom_distiller::DomDistillerService
;
30 using dom_distiller::DomDistillerServiceFactory
;
31 using dom_distiller::DistillerPage
;
32 using dom_distiller::SourcePageHandle
;
34 // An no-op ViewRequestDelegate which holds a ViewerHandle and deletes itself
35 // after the WebContents navigates or goes away. This class is a band-aid to
36 // keep a TaskTracker around until the distillation starts from the viewer.
37 class SelfDeletingRequestDelegate
: public ViewRequestDelegate
,
38 public content::WebContentsObserver
{
40 explicit SelfDeletingRequestDelegate(content::WebContents
* web_contents
);
41 virtual ~SelfDeletingRequestDelegate();
43 // ViewRequestDelegate implementation.
44 virtual void OnArticleReady(
45 const DistilledArticleProto
* article_proto
) override
;
46 virtual void OnArticleUpdated(
47 ArticleDistillationUpdate article_update
) override
;
49 // content::WebContentsObserver implementation.
50 virtual void DidNavigateMainFrame(
51 const content::LoadCommittedDetails
& details
,
52 const content::FrameNavigateParams
& params
) override
;
53 virtual void RenderProcessGone(base::TerminationStatus status
) override
;
54 virtual void WebContentsDestroyed() override
;
56 // Takes ownership of the ViewerHandle to keep distillation alive until |this|
58 void TakeViewerHandle(scoped_ptr
<ViewerHandle
> viewer_handle
);
61 // The handle to the view request towards the DomDistillerService. It
62 // needs to be kept around to ensure the distillation request finishes.
63 scoped_ptr
<ViewerHandle
> viewer_handle_
;
66 void SelfDeletingRequestDelegate::DidNavigateMainFrame(
67 const content::LoadCommittedDetails
& details
,
68 const content::FrameNavigateParams
& params
) {
69 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, this);
72 void SelfDeletingRequestDelegate::RenderProcessGone(
73 base::TerminationStatus status
) {
74 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, this);
77 void SelfDeletingRequestDelegate::WebContentsDestroyed() {
78 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, this);
81 SelfDeletingRequestDelegate::SelfDeletingRequestDelegate(
82 content::WebContents
* web_contents
)
83 : WebContentsObserver(web_contents
) {
86 SelfDeletingRequestDelegate::~SelfDeletingRequestDelegate() {
89 void SelfDeletingRequestDelegate::OnArticleReady(
90 const DistilledArticleProto
* article_proto
) {
93 void SelfDeletingRequestDelegate::OnArticleUpdated(
94 ArticleDistillationUpdate article_update
) {
97 void SelfDeletingRequestDelegate::TakeViewerHandle(
98 scoped_ptr
<ViewerHandle
> viewer_handle
) {
99 viewer_handle_
= viewer_handle
.Pass();
102 // Start loading the viewer URL of the current page in |web_contents|.
103 void StartNavigationToDistillerViewer(content::WebContents
* web_contents
,
105 GURL viewer_url
= dom_distiller::url_utils::GetDistillerViewUrlFromUrl(
106 dom_distiller::kDomDistillerScheme
, url
);
107 content::NavigationController::LoadURLParams
params(viewer_url
);
108 params
.transition_type
= ui::PAGE_TRANSITION_AUTO_BOOKMARK
;
109 web_contents
->GetController().LoadURLWithParams(params
);
112 void StartDistillation(content::WebContents
* web_contents
) {
113 // Start distillation using |web_contents|, and ensure ViewerHandle stays
114 // around until the viewer requests distillation.
115 SelfDeletingRequestDelegate
* view_request_delegate
=
116 new SelfDeletingRequestDelegate(web_contents
);
117 scoped_ptr
<content::WebContents
> old_web_contents_sptr(web_contents
);
118 scoped_ptr
<SourcePageHandleWebContents
> source_page_handle(
119 new SourcePageHandleWebContents(old_web_contents_sptr
.Pass()));
120 DomDistillerService
* dom_distiller_service
=
121 DomDistillerServiceFactory::GetForBrowserContext(
122 web_contents
->GetBrowserContext());
123 scoped_ptr
<DistillerPage
> distiller_page
=
124 dom_distiller_service
->CreateDefaultDistillerPageWithHandle(
125 source_page_handle
.Pass()).Pass();
127 const GURL
& last_committed_url
= web_contents
->GetLastCommittedURL();
128 scoped_ptr
<ViewerHandle
> viewer_handle
= dom_distiller_service
->ViewUrl(
129 view_request_delegate
, distiller_page
.Pass(), last_committed_url
);
130 view_request_delegate
->TakeViewerHandle(viewer_handle
.Pass());
135 void DistillCurrentPageAndView(content::WebContents
* old_web_contents
) {
136 DCHECK(old_web_contents
);
137 // Create new WebContents.
138 content::WebContents::CreateParams
create_params(
139 old_web_contents
->GetBrowserContext());
140 content::WebContents
* new_web_contents
=
141 content::WebContents::Create(create_params
);
142 DCHECK(new_web_contents
);
144 // Copy all navigation state from the old WebContents to the new one.
145 new_web_contents
->GetController().CopyStateFrom(
146 old_web_contents
->GetController());
148 // StartNavigationToDistillerViewer must come before swapping the tab contents
149 // to avoid triggering a reload of the page. This reloadmakes it very
150 // difficult to distinguish between the intermediate reload and a user hitting
152 StartNavigationToDistillerViewer(new_web_contents
,
153 old_web_contents
->GetLastCommittedURL());
155 CoreTabHelper::FromWebContents(old_web_contents
)->delegate()->SwapTabContents(
156 old_web_contents
, new_web_contents
, false, false);
158 StartDistillation(old_web_contents
);