File: distiller_page_web_contents.cc

package info (click to toggle)
chromium 141.0.7390.107-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,246,132 kB
  • sloc: cpp: 35,264,965; ansic: 7,169,920; javascript: 4,250,185; python: 1,460,635; asm: 950,788; xml: 751,751; pascal: 187,972; sh: 89,459; perl: 88,691; objc: 79,953; sql: 53,924; cs: 44,622; fortran: 24,137; makefile: 22,313; tcl: 15,277; php: 14,018; yacc: 8,995; ruby: 7,553; awk: 3,720; lisp: 3,096; lex: 1,330; ada: 727; jsp: 228; sed: 36
file content (267 lines) | stat: -rw-r--r-- 9,903 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/dom_distiller/content/browser/distiller_page_web_contents.h"

#include <memory>
#include <utility>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/utf_string_conversions.h"
#include "components/dom_distiller/content/browser/distiller_javascript_utils.h"
#include "components/dom_distiller/core/distiller_page.h"
#include "components/dom_distiller/core/dom_distiller_constants.h"
#include "components/dom_distiller/core/dom_distiller_features.h"
#include "components/dom_distiller/core/dom_distiller_service.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/navigation_throttle.h"
#include "content/public/browser/page.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_observer.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "url/gurl.h"

namespace dom_distiller {

namespace {

// UserData key to identify DistillerPageWebContents.
const char kDistillerPageWebContentsUserDataTag[] =
    "DistillerPageWebContentsUserDataTag";

// Trivial SupportsUserData::Data implementation.
class DistillerPageWebContentsUserData : public base::SupportsUserData::Data {
 public:
  explicit DistillerPageWebContentsUserData() = default;
};

// Blocks redirects for the web contents created for distillation viewing.
class RedirectBlockingNavigationThrottle : public content::NavigationThrottle {
 public:
  explicit RedirectBlockingNavigationThrottle(
      content::NavigationThrottleRegistry& registry)
      : content::NavigationThrottle(registry) {}
  ~RedirectBlockingNavigationThrottle() override = default;

  // content::NavigationThrottle:
  ThrottleCheckResult WillRedirectRequest() override {
    return content::NavigationThrottle::CANCEL;
  }
  const char* GetNameForLogging() override {
    return "DistillerViewerSourceNavigationThrottle";
  }
};

}  // namespace

SourcePageHandleWebContents::SourcePageHandleWebContents(
    content::WebContents* web_contents,
    bool owned)
    : web_contents_(web_contents), owned_(owned) {
  if (web_contents_ && owned) {
    web_contents_->SetOwnerLocationForDebug(FROM_HERE);
  }
}

SourcePageHandleWebContents::~SourcePageHandleWebContents() {
  if (owned_) {
    delete web_contents_;
  }
}

std::unique_ptr<DistillerPage>
DistillerPageWebContentsFactory::CreateDistillerPage(
    const gfx::Size& render_view_size) const {
  DCHECK(browser_context_);
  return std::unique_ptr<DistillerPage>(new DistillerPageWebContents(
      browser_context_, render_view_size,
      std::unique_ptr<SourcePageHandleWebContents>()));
}

std::unique_ptr<DistillerPage>
DistillerPageWebContentsFactory::CreateDistillerPageWithHandle(
    std::unique_ptr<SourcePageHandle> handle) const {
  DCHECK(browser_context_);
  std::unique_ptr<SourcePageHandleWebContents> web_contents_handle =
      std::unique_ptr<SourcePageHandleWebContents>(
          static_cast<SourcePageHandleWebContents*>(handle.release()));
  return std::unique_ptr<DistillerPage>(new DistillerPageWebContents(
      browser_context_, gfx::Size(), std::move(web_contents_handle)));
}

// static
void DistillerPageWebContents::MaybeCreateAndAddNavigationThrottle(
    content::NavigationThrottleRegistry& registry) {
  auto* web_contents = registry.GetNavigationHandle().GetWebContents();
  if (web_contents->GetUserData(kDistillerPageWebContentsUserDataTag)) {
    registry.AddThrottle(
        std::make_unique<RedirectBlockingNavigationThrottle>(registry));
  }
}

DistillerPageWebContents::DistillerPageWebContents(
    content::BrowserContext* browser_context,
    const gfx::Size& render_view_size,
    std::unique_ptr<SourcePageHandleWebContents> optional_web_contents_handle)
    : state_(IDLE),
      source_page_handle_(nullptr),
      browser_context_(browser_context),
      render_view_size_(render_view_size) {
  if (optional_web_contents_handle) {
    source_page_handle_ = std::move(optional_web_contents_handle);
    if (render_view_size.IsEmpty())
      render_view_size_ =
          source_page_handle_->web_contents()->GetContainerBounds().size();
  }
}

DistillerPageWebContents::~DistillerPageWebContents() = default;

bool DistillerPageWebContents::ShouldFetchOfflineData() {
  return false;
}

DistillerType DistillerPageWebContents::GetDistillerType() {
  return ShouldUseReadabilityDistiller() ? DistillerType::kReadability
                                         : DistillerType::kDOMDistiller;
}

void DistillerPageWebContents::DistillPageImpl(const GURL& url,
                                               const std::string& script) {
  DCHECK(browser_context_);
  DCHECK(state_ == IDLE);
  state_ = LOADING_PAGE;
  script_ = script;

  if (source_page_handle_ && source_page_handle_->web_contents() &&
      TargetRenderFrameHost().GetLastCommittedURL() == url) {
    if (TargetRenderFrameHost().IsDOMContentLoaded()) {
      // Main frame has already loaded for the current WebContents, so execute
      // JavaScript immediately.
      ExecuteJavaScript();
    } else {
      // Main frame document has not loaded yet, so wait until it has before
      // executing JavaScript. It will trigger after DOMContentLoaded is
      // called for the main frame.
      content::WebContentsObserver::Observe(
          source_page_handle_->web_contents());
    }
  } else {
    CreateNewWebContents(url);
  }
}

void DistillerPageWebContents::CreateNewWebContents(const GURL& url) {
  // Create new WebContents to use for distilling the content.
  content::WebContents::CreateParams create_params(browser_context_);
  create_params.initially_hidden = true;
  std::unique_ptr<content::WebContents> web_contents =
      content::WebContents::Create(create_params);
  DCHECK(web_contents);

  // Add a tag to the WebContents so that we can identify it later.
  web_contents->SetUserData(
      kDistillerPageWebContentsUserDataTag,
      std::make_unique<DistillerPageWebContentsUserData>());

  web_contents->SetDelegate(this);

  // Start observing WebContents and load the requested URL.
  content::WebContentsObserver::Observe(web_contents.get());
  content::NavigationController::LoadURLParams params(url);
  web_contents->GetController().LoadURLWithParams(params);

  // SourcePageHandleWebContents takes ownership of |web_contents|.
  source_page_handle_ = std::make_unique<SourcePageHandleWebContents>(
      web_contents.release(), true);
}

gfx::Size DistillerPageWebContents::GetSizeForNewRenderView(
    content::WebContents* web_contents) {
  gfx::Size size(render_view_size_);
  if (size.IsEmpty())
    size = web_contents->GetContainerBounds().size();
  // If size is still empty, set it to fullscreen so that document.offsetWidth
  // in the executed domdistiller.js won't be 0.
  if (size.IsEmpty()) {
    DVLOG(1) << "Using fullscreen as default RenderView size";
    size = display::Screen::Get()->GetPrimaryDisplay().size();
  }
  return size;
}

void DistillerPageWebContents::DOMContentLoaded(
    content::RenderFrameHost* render_frame_host) {
  if (render_frame_host == &TargetRenderFrameHost()) {
    ExecuteJavaScript();
  }
}

void DistillerPageWebContents::DidFinishNavigation(
    content::NavigationHandle* navigation_handle) {
  if (!navigation_handle->HasCommitted()) {
    content::WebContentsObserver::Observe(nullptr);
    DCHECK(state_ == LOADING_PAGE || state_ == EXECUTING_JAVASCRIPT);
    state_ = PAGELOAD_FAILED;
    OnWebContentsDistillationDone(GURL(), base::TimeTicks(), base::Value());
  }
}

void DistillerPageWebContents::ExecuteJavaScript() {
  DCHECK_EQ(LOADING_PAGE, state_);
  state_ = EXECUTING_JAVASCRIPT;
  content::WebContentsObserver::Observe(nullptr);
  // Stop any pending navigation since the intent is to distill the current
  // page.
  source_page_handle_->web_contents()->Stop();
  RunIsolatedJavaScript(
      &TargetRenderFrameHost(), script_,
      base::BindOnce(&DistillerPageWebContents::OnWebContentsDistillationDone,
                     weak_factory_.GetWeakPtr(),
                     source_page_handle_->web_contents()->GetLastCommittedURL(),
                     base::TimeTicks::Now()));
}

void DistillerPageWebContents::OnWebContentsDistillationDone(
    const GURL& page_url,
    const base::TimeTicks& javascript_start,
    base::Value value) {
  DCHECK(state_ == IDLE || state_ == LOADING_PAGE ||  // TODO(nyquist): 493795.
         state_ == PAGELOAD_FAILED || state_ == EXECUTING_JAVASCRIPT);
  state_ = IDLE;

  if (!javascript_start.is_null()) {
    base::TimeDelta javascript_time = base::TimeTicks::Now() - javascript_start;
    base::UmaHistogramTimes("DomDistiller.Time.RunDistillationJavaScript",
                            javascript_time);
  }

  DistillerPage::OnDistillationDone(page_url, &value);
}

content::RenderFrameHost& DistillerPageWebContents::TargetRenderFrameHost() {
  // Distiller is invoked through an explicit user gesture. We don't have code
  // path for triggering this on non-primary pages.
  // We target the currently visible primary page's main document to run the
  // distiller script, thus `GetPrimaryPage().GetMainDocument()` usage is valid
  // here.
  return source_page_handle_->web_contents()
      ->GetPrimaryPage()
      .GetMainDocument();
}

base::SupportsUserData::Data*
DistillerPageWebContents::GetUserDataForTesting() {
  return source_page_handle_->web_contents()->GetUserData(
      kDistillerPageWebContentsUserDataTag);
}

}  // namespace dom_distiller