blob: 47fb11113ee9c8d86bf012e124f5bf9c46df5a01 [file] [log] [blame]
// Copyright 2020 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 "pdf/pdf_view_plugin_base.h"
#include <algorithm>
#include <cmath>
#include <memory>
#include <sstream>
#include <string>
#include <utility>
#include "base/auto_reset.h"
#include "base/bind.h"
#include "base/callback.h"
#include "base/check.h"
#include "base/check_op.h"
#include "base/containers/fixed_flat_map.h"
#include "base/containers/span.h"
#include "base/feature_list.h"
#include "base/i18n/time_formatting.h"
#include "base/location.h"
#include "base/memory/weak_ptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/notreached.h"
#include "base/numerics/ranges.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/string_piece.h"
#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "base/values.h"
#include "build/chromeos_buildflags.h"
#include "net/base/escape.h"
#include "pdf/accessibility.h"
#include "pdf/accessibility_structs.h"
#include "pdf/buildflags.h"
#include "pdf/content_restriction.h"
#include "pdf/document_layout.h"
#include "pdf/document_metadata.h"
#include "pdf/paint_ready_rect.h"
#include "pdf/pdf_features.h"
#include "pdf/pdfium/pdfium_engine.h"
#include "pdf/ppapi_migration/image.h"
#include "pdf/ppapi_migration/url_loader.h"
#include "pdf/ui/document_properties.h"
#include "pdf/ui/file_name.h"
#include "pdf/ui/thumbnail.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/common/input/web_mouse_event.h"
#include "third_party/blink/public/common/input/web_touch_event.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/text/bytes_formatting.h"
#include "ui/events/blink/blink_event_util.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/geometry/vector2d.h"
#include "ui/gfx/geometry/vector2d_f.h"
#include "ui/gfx/skia_util.h"
namespace chrome_pdf {
namespace {
// The minimum zoom level allowed.
constexpr double kMinZoom = 0.01;
// A delay to wait between each accessibility page to keep the system
// responsive.
constexpr base::TimeDelta kAccessibilityPageDelay =
base::TimeDelta::FromMilliseconds(100);
// Enumeration of pinch states.
// This should match PinchPhase enum in chrome/browser/resources/pdf/viewport.js
enum class PinchPhase {
kNone = 0,
kStart = 1,
kUpdateZoomOut = 2,
kUpdateZoomIn = 3,
kEnd = 4,
};
// Prepares messages from the plugin that reply to messages from the embedder.
// If the "type" value of `message` is "foo", then the `reply_type` must be
// "fooReply". The `message` from the embedder must have a "messageId" value
// that will be copied to the reply message.
base::Value PrepareReplyMessage(base::StringPiece reply_type,
const base::Value& message) {
DCHECK_EQ(reply_type, *message.FindStringKey("type") + "Reply");
base::Value reply(base::Value::Type::DICTIONARY);
reply.SetStringKey("type", reply_type);
reply.SetStringKey("messageId", *message.FindStringKey("messageId"));
return reply;
}
} // namespace
PdfViewPluginBase::PdfViewPluginBase() = default;
PdfViewPluginBase::~PdfViewPluginBase() = default;
void PdfViewPluginBase::ProposeDocumentLayout(const DocumentLayout& layout) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "documentDimensions");
message.SetIntKey("width", layout.size().width());
message.SetIntKey("height", layout.size().height());
message.SetKey("layoutOptions", layout.options().ToValue());
base::Value page_dimensions_list(base::Value::Type::LIST);
for (size_t i = 0; i < layout.page_count(); ++i) {
const gfx::Rect& page_rect = layout.page_rect(i);
base::Value page_dimensions(base::Value::Type::DICTIONARY);
page_dimensions.SetIntKey("x", page_rect.x());
page_dimensions.SetIntKey("y", page_rect.y());
page_dimensions.SetIntKey("width", page_rect.width());
page_dimensions.SetIntKey("height", page_rect.height());
page_dimensions_list.Append(std::move(page_dimensions));
}
message.SetKey("pageDimensions", std::move(page_dimensions_list));
SendMessage(std::move(message));
// Reload the accessibility tree on layout changes because the relative page
// bounds are no longer valid.
if (layout.dirty() && accessibility_state_ == AccessibilityState::kLoaded)
LoadAccessibility();
}
void PdfViewPluginBase::Invalidate(const gfx::Rect& rect) {
if (in_paint_) {
deferred_invalidates_.push_back(rect);
return;
}
gfx::Rect offset_rect = rect + available_area_.OffsetFromOrigin();
paint_manager_.InvalidateRect(offset_rect);
}
void PdfViewPluginBase::DidScroll(const gfx::Vector2d& offset) {
if (!image_data_.drawsNothing())
paint_manager_.ScrollRect(available_area_, offset);
}
void PdfViewPluginBase::ScrollToX(int x_screen_coords) {
const float x_scroll_pos = x_screen_coords / device_scale_;
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "setScrollPosition");
message.SetDoubleKey("x", x_scroll_pos);
SendMessage(std::move(message));
}
void PdfViewPluginBase::ScrollToY(int y_screen_coords) {
const float y_scroll_pos = y_screen_coords / device_scale_;
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "setScrollPosition");
message.SetDoubleKey("y", y_scroll_pos);
SendMessage(std::move(message));
}
void PdfViewPluginBase::ScrollBy(const gfx::Vector2d& delta) {
const float x_delta = delta.x() / device_scale_;
const float y_delta = delta.y() / device_scale_;
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "scrollBy");
message.SetDoubleKey("x", x_delta);
message.SetDoubleKey("y", y_delta);
SendMessage(std::move(message));
}
void PdfViewPluginBase::ScrollToPage(int page) {
if (!engine_ || engine_->GetNumberOfPages() == 0)
return;
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "goToPage");
message.SetIntKey("page", page);
SendMessage(std::move(message));
}
void PdfViewPluginBase::NavigateTo(const std::string& url,
WindowOpenDisposition disposition) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "navigate");
message.SetStringKey("url", url);
message.SetIntKey("disposition", static_cast<int>(disposition));
SendMessage(std::move(message));
}
void PdfViewPluginBase::NavigateToDestination(int page,
const float* x,
const float* y,
const float* zoom) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "navigateToDestination");
message.SetIntKey("page", page);
if (x)
message.SetDoubleKey("x", *x);
if (y)
message.SetDoubleKey("y", *y);
if (zoom)
message.SetDoubleKey("zoom", *zoom);
SendMessage(std::move(message));
}
void PdfViewPluginBase::NotifyTouchSelectionOccurred() {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "touchSelectionOccurred");
SendMessage(std::move(message));
}
void PdfViewPluginBase::GetDocumentPassword(
base::OnceCallback<void(const std::string&)> callback) {
DCHECK(password_callback_.is_null());
password_callback_ = std::move(callback);
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "getPassword");
SendMessage(std::move(message));
}
void PdfViewPluginBase::Beep() {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "beep");
SendMessage(std::move(message));
}
std::string PdfViewPluginBase::GetURL() {
return url_;
}
void PdfViewPluginBase::Email(const std::string& to,
const std::string& cc,
const std::string& bcc,
const std::string& subject,
const std::string& body) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "email");
message.SetStringKey("to", net::EscapeUrlEncodedData(to, false));
message.SetStringKey("cc", net::EscapeUrlEncodedData(cc, false));
message.SetStringKey("bcc", net::EscapeUrlEncodedData(bcc, false));
message.SetStringKey("subject", net::EscapeUrlEncodedData(subject, false));
message.SetStringKey("body", net::EscapeUrlEncodedData(body, false));
SendMessage(std::move(message));
}
std::unique_ptr<UrlLoader> PdfViewPluginBase::CreateUrlLoader() {
if (full_frame_) {
DidStartLoading();
// Disable save and print until the document is fully loaded, since they
// would generate an incomplete document. This needs to be done each time
// DidStartLoading() is called because that resets the content restrictions.
SetContentRestrictions(kContentRestrictionSave | kContentRestrictionPrint);
}
return CreateUrlLoaderInternal();
}
void PdfViewPluginBase::DocumentLoadComplete() {
DCHECK_EQ(DocumentLoadState::kLoading, document_load_state_);
document_load_state_ = DocumentLoadState::kComplete;
UserMetricsRecordAction("PDF.LoadSuccess");
RecordDocumentMetrics();
// Clear the focus state for on-screen keyboards.
FormTextFieldFocusChange(false);
if (IsPrintPreview())
OnPrintPreviewLoaded();
SendAttachments();
SendBookmarks();
SendMetadata();
SendLoadingProgress(/*percentage=*/100);
if (accessibility_state_ == AccessibilityState::kPending)
LoadAccessibility();
if (!full_frame_)
return;
DidStopLoading();
int content_restrictions = kContentRestrictionCut | kContentRestrictionPaste;
if (!engine()->HasPermission(PDFEngine::PERMISSION_COPY))
content_restrictions |= kContentRestrictionCopy;
if (!engine()->HasPermission(PDFEngine::PERMISSION_PRINT_LOW_QUALITY) &&
!engine()->HasPermission(PDFEngine::PERMISSION_PRINT_HIGH_QUALITY)) {
content_restrictions |= kContentRestrictionPrint;
}
SetContentRestrictions(content_restrictions);
}
void PdfViewPluginBase::DocumentLoadFailed() {
DCHECK_EQ(DocumentLoadState::kLoading, document_load_state_);
document_load_state_ = DocumentLoadState::kFailed;
UserMetricsRecordAction("PDF.LoadFailure");
// Send a progress value of -1 to indicate a failure.
SendLoadingProgress(-1);
DidStopLoading();
paint_manager_.InvalidateRect(gfx::Rect(plugin_rect_.size()));
}
void PdfViewPluginBase::DocumentLoadProgress(uint32_t available,
uint32_t doc_size) {
double progress = 0.0;
if (doc_size > 0) {
progress = 100.0 * static_cast<double>(available) / doc_size;
} else {
// Use heuristics when the document size is unknown.
// Progress logarithmically from 0 to 100M.
static const double kFactor = std::log(100'000'000.0) / 100.0;
if (available > 0)
progress =
std::min(std::log(static_cast<double>(available)) / kFactor, 100.0);
}
// DocumentLoadComplete() will send the 100% load progress.
if (progress >= 100)
return;
// Avoid sending too many progress messages over PostMessage.
if (progress <= last_progress_sent_ + 1)
return;
last_progress_sent_ = progress;
SendLoadingProgress(progress);
}
void PdfViewPluginBase::FormTextFieldFocusChange(bool in_focus) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "formFocusChange");
message.SetBoolKey("focused", in_focus);
SendMessage(std::move(message));
SetFormFieldInFocus(in_focus);
}
SkColor PdfViewPluginBase::GetBackgroundColor() {
return background_color_;
}
void PdfViewPluginBase::SetIsSelecting(bool is_selecting) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "setIsSelecting");
message.SetBoolKey("isSelecting", is_selecting);
SendMessage(std::move(message));
}
void PdfViewPluginBase::EnteredEditMode() {
edit_mode_ = true;
SetPluginCanSave(true);
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "setIsEditing");
SendMessage(std::move(message));
}
void PdfViewPluginBase::DocumentFocusChanged(bool document_has_focus) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "documentFocusChanged");
message.SetBoolKey("hasFocus", document_has_focus);
SendMessage(std::move(message));
}
// TODO(crbug.com/1191817): Add tests for input events. Unit testing should be
// feasible now that the Pepper dependency is removed for input events.
bool PdfViewPluginBase::HandleInputEvent(const blink::WebInputEvent& event) {
// Ignore user input in read-only mode.
if (engine()->IsReadOnly())
return false;
// `engine()` expects input events in device coordinates.
std::unique_ptr<blink::WebInputEvent> transformed_event =
ui::TranslateAndScaleWebInputEvent(
event, gfx::Vector2dF(-available_area_.x() / device_scale_, 0),
device_scale_);
const blink::WebInputEvent& event_to_handle =
transformed_event ? *transformed_event : event;
if (engine()->HandleInputEvent(event_to_handle))
return true;
// Middle click is used for scrolling and is handled by the container page.
if (blink::WebInputEvent::IsMouseEventType(event_to_handle.GetType()) &&
static_cast<const blink::WebMouseEvent&>(event_to_handle).button ==
blink::WebPointerProperties::Button::kMiddle) {
return false;
}
// Return true for unhandled clicks so the plugin takes focus.
return event_to_handle.GetType() == blink::WebInputEvent::Type::kMouseDown;
}
void PdfViewPluginBase::HandleMessage(const base::Value& message) {
using MessageHandler = void (PdfViewPluginBase::*)(const base::Value&);
static constexpr auto kMessageHandlers =
base::MakeFixedFlatMap<base::StringPiece, MessageHandler>({
{"displayAnnotations",
&PdfViewPluginBase::HandleDisplayAnnotationsMessage},
{"getNamedDestination",
&PdfViewPluginBase::HandleGetNamedDestinationMessage},
{"getPasswordComplete",
&PdfViewPluginBase::HandleGetPasswordCompleteMessage},
{"getSelectedText", &PdfViewPluginBase::HandleGetSelectedTextMessage},
{"getThumbnail", &PdfViewPluginBase::HandleGetThumbnailMessage},
{"rotateClockwise", &PdfViewPluginBase::HandleRotateClockwiseMessage},
{"rotateCounterclockwise",
&PdfViewPluginBase::HandleRotateCounterclockwiseMessage},
{"save", &PdfViewPluginBase::HandleSaveMessage},
{"selectAll", &PdfViewPluginBase::HandleSelectAllMessage},
{"setBackgroundColor",
&PdfViewPluginBase::HandleSetBackgroundColorMessage},
{"setReadOnly", &PdfViewPluginBase::HandleSetReadOnlyMessage},
{"setTwoUpView", &PdfViewPluginBase::HandleSetTwoUpViewMessage},
{"stopScrolling", &PdfViewPluginBase::HandleStopScrollingMessage},
{"updateScroll", &PdfViewPluginBase::HandleUpdateScrollMessage},
{"viewport", &PdfViewPluginBase::HandleViewportMessage},
});
// TODO(crbug.com/1109796): Use `fixed_flat_map<>::at()` when migration is
// complete to CHECK out-of-bounds lookups.
const auto* it = kMessageHandlers.find(*message.FindStringKey("type"));
if (it == kMessageHandlers.end()) {
NOTIMPLEMENTED() << message;
return;
}
MessageHandler handler = it->second;
(this->*handler)(message);
}
void PdfViewPluginBase::SaveToBuffer(const std::string& token) {
engine()->KillFormFocus();
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "saveData");
message.SetStringKey("token", token);
message.SetStringKey("fileName", GetFileNameForSaveFromUrl(url_));
base::Value data_to_save;
if (edit_mode_) {
base::Value::BlobStorage data = engine()->GetSaveData();
if (IsSaveDataSizeValid(data.size()))
data_to_save = base::Value(std::move(data));
} else {
#if BUILDFLAG(ENABLE_INK)
uint32_t length = engine()->GetLoadedByteSize();
if (IsSaveDataSizeValid(length)) {
base::Value::BlobStorage data(length);
if (engine()->ReadLoadedBytes(length, data.data()))
data_to_save = base::Value(std::move(data));
}
#else
NOTREACHED();
#endif // BUILDFLAG(ENABLE_INK)
}
message.SetKey("dataToSave", std::move(data_to_save));
SendMessage(std::move(message));
}
void PdfViewPluginBase::ConsumeSaveToken(const std::string& token) {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "consumeSaveToken");
message.SetStringKey("token", token);
SendMessage(std::move(message));
}
void PdfViewPluginBase::SendLoadingProgress(double percentage) {
DCHECK(percentage == -1 || (percentage >= 0 && percentage <= 100));
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "loadProgress");
message.SetDoubleKey("progress", percentage);
SendMessage(std::move(message));
}
void PdfViewPluginBase::SendPrintPreviewLoadedNotification() {
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "printPreviewLoaded");
SendMessage(std::move(message));
}
void PdfViewPluginBase::OnPaint(const std::vector<gfx::Rect>& paint_rects,
std::vector<PaintReadyRect>& ready,
std::vector<gfx::Rect>& pending) {
base::AutoReset<bool> auto_reset_in_paint(&in_paint_, true);
DoPaint(paint_rects, ready, pending);
}
void PdfViewPluginBase::EnableAccessibility() {
if (accessibility_state_ == AccessibilityState::kLoaded)
return;
if (accessibility_state_ == AccessibilityState::kOff)
accessibility_state_ = AccessibilityState::kPending;
if (document_load_state_ == DocumentLoadState::kComplete)
LoadAccessibility();
}
void PdfViewPluginBase::HandleAccessibilityAction(
const AccessibilityActionData& action_data) {
engine_->HandleAccessibilityAction(action_data);
}
void PdfViewPluginBase::InitializeEngine(std::unique_ptr<PDFiumEngine> engine) {
DCHECK(engine);
engine_ = std::move(engine);
}
void PdfViewPluginBase::DestroyEngine() {
engine_.reset();
}
void PdfViewPluginBase::LoadUrl(const std::string& url, bool is_print_preview) {
UrlRequest request;
request.url = url;
request.method = "GET";
request.ignore_redirects = true;
std::unique_ptr<UrlLoader> loader = CreateUrlLoaderInternal();
UrlLoader* raw_loader = loader.get();
raw_loader->Open(
request,
base::BindOnce(is_print_preview ? &PdfViewPluginBase::DidOpenPreview
: &PdfViewPluginBase::DidOpen,
GetWeakPtr(), std::move(loader)));
}
void PdfViewPluginBase::InvalidateAfterPaintDone() {
if (deferred_invalidates_.empty())
return;
ScheduleTaskOnMainThread(
FROM_HERE,
base::BindOnce(&PdfViewPluginBase::ClearDeferredInvalidates,
GetWeakPtr()),
/*result=*/0, base::TimeDelta());
}
void PdfViewPluginBase::OnGeometryChanged(double old_zoom,
float old_device_scale) {
RecalculateAreas(old_zoom, old_device_scale);
if (accessibility_state_ == AccessibilityState::kLoaded)
PrepareAndSetAccessibilityViewportInfo();
}
void PdfViewPluginBase::UpdateGeometryOnViewChanged(
const gfx::Rect& new_view_rect,
float new_device_scale) {
DCHECK_GT(new_device_scale, 0.0f);
const gfx::Rect new_plugin_rect =
gfx::ScaleToEnclosingRectSafe(new_view_rect, new_device_scale);
if (new_device_scale == device_scale_ && new_plugin_rect == plugin_rect_) {
return;
}
const float old_device_scale = device_scale_;
device_scale_ = new_device_scale;
plugin_rect_ = new_plugin_rect;
plugin_dip_size_ = new_view_rect.size();
paint_manager().SetSize(plugin_rect_.size(), device_scale_);
// Initialize the image data buffer if the context size changes.
const gfx::Size old_image_size = gfx::SkISizeToSize(image_data_.dimensions());
const gfx::Size new_image_size =
PaintManager::GetNewContextSize(old_image_size, plugin_rect_.size());
if (new_image_size != old_image_size) {
InitImageData(new_image_size);
first_paint_ = true;
}
// Skip updating the geometry if the new image data buffer is empty.
if (image_data_.drawsNothing()) {
DCHECK(plugin_rect_.IsEmpty());
return;
}
OnGeometryChanged(zoom_, old_device_scale);
}
Image PdfViewPluginBase::GetPluginImageData() const {
return Image(image_data_);
}
void PdfViewPluginBase::RecalculateAreas(double old_zoom,
float old_device_scale) {
if (zoom_ != old_zoom || device_scale_ != old_device_scale)
engine()->ZoomUpdated(zoom_ * device_scale_);
available_area_ = gfx::Rect(plugin_rect_.size());
int doc_width = GetDocumentPixelWidth();
if (doc_width < available_area_.width()) {
// Center the document horizontally inside the plugin rectangle.
available_area_.Offset((plugin_rect_.width() - doc_width) / 2, 0);
available_area_.set_width(doc_width);
}
// The distance between top of the plugin and the bottom of the document in
// pixels.
int bottom_of_document = GetDocumentPixelHeight();
if (bottom_of_document < plugin_rect_.height())
available_area_.set_height(bottom_of_document);
CalculateBackgroundParts();
engine()->PageOffsetUpdated(available_area_.OffsetFromOrigin());
engine()->PluginSizeUpdated(available_area_.size());
if (document_size_.IsEmpty())
return;
paint_manager_.InvalidateRect(gfx::Rect(plugin_rect_.size()));
}
void PdfViewPluginBase::CalculateBackgroundParts() {
background_parts_.clear();
int left_width = available_area_.x();
int right_start = available_area_.right();
int right_width = std::abs(plugin_rect_.width() - available_area_.right());
int bottom = std::min(available_area_.bottom(), plugin_rect_.height());
// Note: we assume the display of the PDF document is always centered
// horizontally, but not necessarily centered vertically.
// Add the left rectangle.
BackgroundPart part = {gfx::Rect(left_width, bottom), GetBackgroundColor()};
if (!part.location.IsEmpty())
background_parts_.push_back(part);
// Add the right rectangle.
part.location = gfx::Rect(right_start, 0, right_width, bottom);
if (!part.location.IsEmpty())
background_parts_.push_back(part);
// Add the bottom rectangle.
part.location = gfx::Rect(0, bottom, plugin_rect_.width(),
plugin_rect_.height() - bottom);
if (!part.location.IsEmpty())
background_parts_.push_back(part);
}
void PdfViewPluginBase::UpdateScroll() {
DCHECK(!stop_scrolling_);
const gfx::PointF scaled_scroll_position = gfx::ScalePoint(
BoundScrollPositionToDocument(gfx::PointF(scroll_position_)),
device_scale_);
engine()->ScrolledToXPosition(scaled_scroll_position.x());
engine()->ScrolledToYPosition(scaled_scroll_position.y());
}
gfx::PointF PdfViewPluginBase::BoundScrollPositionToDocument(
const gfx::PointF& scroll_position) {
float max_x = std::max(document_size_.width() * static_cast<float>(zoom_) -
plugin_dip_size_.width(),
0.0f);
float x = base::ClampToRange(scroll_position.x(), 0.0f, max_x);
float max_y = std::max(document_size_.height() * static_cast<float>(zoom_) -
plugin_dip_size_.height(),
0.0f);
float y = base::ClampToRange(scroll_position.y(), 0.0f, max_y);
return gfx::PointF(x, y);
}
int PdfViewPluginBase::GetDocumentPixelWidth() const {
return static_cast<int>(
std::ceil(document_size_.width() * zoom() * device_scale()));
}
int PdfViewPluginBase::GetDocumentPixelHeight() const {
return static_cast<int>(
std::ceil(document_size_.height() * zoom() * device_scale()));
}
void PdfViewPluginBase::PrepareAndSetAccessibilityPageInfo(int32_t page_index) {
// Outdated calls are ignored.
if (page_index != next_accessibility_page_index_)
return;
++next_accessibility_page_index_;
AccessibilityPageInfo page_info;
std::vector<AccessibilityTextRunInfo> text_runs;
std::vector<AccessibilityCharInfo> chars;
AccessibilityPageObjects page_objects;
if (!GetAccessibilityInfo(engine(), page_index, page_info, text_runs, chars,
page_objects)) {
return;
}
SetAccessibilityPageInfo(page_info, text_runs, chars, page_objects);
// Schedule loading the next page.
ScheduleTaskOnMainThread(
FROM_HERE,
base::BindOnce(&PdfViewPluginBase::PrepareAndSetAccessibilityPageInfo,
GetWeakPtr()),
/*result=*/page_index + 1, kAccessibilityPageDelay);
}
void PdfViewPluginBase::PrepareAndSetAccessibilityViewportInfo() {
AccessibilityViewportInfo viewport_info;
viewport_info.scroll =
gfx::ScaleToFlooredPoint(plugin_rect_.origin(), -1 / device_scale_);
viewport_info.offset = gfx::ScaleToFlooredPoint(available_area_.origin(),
1 / (device_scale_ * zoom_));
viewport_info.zoom = zoom_;
viewport_info.scale = device_scale_;
viewport_info.focus_info = {FocusObjectType::kNone, 0, 0};
engine_->GetSelection(&viewport_info.selection_start_page_index,
&viewport_info.selection_start_char_index,
&viewport_info.selection_end_page_index,
&viewport_info.selection_end_char_index);
SetAccessibilityViewportInfo(viewport_info);
}
void PdfViewPluginBase::SetZoom(double scale) {
double old_zoom = zoom_;
zoom_ = scale;
OnGeometryChanged(old_zoom, device_scale_);
}
void PdfViewPluginBase::HandleDisplayAnnotationsMessage(
const base::Value& message) {
engine()->DisplayAnnotations(message.FindBoolKey("display").value());
}
void PdfViewPluginBase::HandleGetNamedDestinationMessage(
const base::Value& message) {
absl::optional<PDFEngine::NamedDestination> named_destination =
engine()->GetNamedDestination(*message.FindStringKey("namedDestination"));
const int page_number = named_destination.has_value()
? base::checked_cast<int>(named_destination->page)
: -1;
base::Value reply = PrepareReplyMessage("getNamedDestinationReply", message);
reply.SetIntKey("pageNumber", page_number);
if (named_destination.has_value() && !named_destination->view.empty()) {
std::ostringstream view_stream;
view_stream << named_destination->view;
if (named_destination->xyz_params.empty()) {
for (unsigned long i = 0; i < named_destination->num_params; ++i)
view_stream << "," << named_destination->params[i];
} else {
view_stream << "," << named_destination->xyz_params;
}
reply.SetStringKey("namedDestinationView", view_stream.str());
}
SendMessage(std::move(reply));
}
void PdfViewPluginBase::HandleGetPasswordCompleteMessage(
const base::Value& message) {
DCHECK(password_callback_);
std::move(password_callback_).Run(*message.FindStringKey("password"));
}
void PdfViewPluginBase::HandleGetSelectedTextMessage(
const base::Value& message) {
// Always return unix newlines to JavaScript.
std::string selected_text;
base::RemoveChars(engine()->GetSelectedText(), "\r", &selected_text);
base::Value reply = PrepareReplyMessage("getSelectedTextReply", message);
reply.SetStringKey("selectedText", selected_text);
SendMessage(std::move(reply));
}
void PdfViewPluginBase::HandleGetThumbnailMessage(const base::Value& message) {
const int page_index = message.FindIntKey("page").value();
base::Value reply = PrepareReplyMessage("getThumbnailReply", message);
engine()->RequestThumbnail(page_index, device_scale_,
base::BindOnce(&PdfViewPluginBase::SendThumbnail,
GetWeakPtr(), std::move(reply)));
}
void PdfViewPluginBase::HandleRotateClockwiseMessage(
const base::Value& /*message*/) {
engine()->RotateClockwise();
}
void PdfViewPluginBase::HandleRotateCounterclockwiseMessage(
const base::Value& /*message*/) {
engine()->RotateCounterclockwise();
}
void PdfViewPluginBase::HandleSaveMessage(const base::Value& message) {
const std::string& token = *message.FindStringKey("token");
int request_type = message.FindIntKey("saveRequestType").value();
DCHECK_GE(request_type, static_cast<int>(SaveRequestType::kAnnotation));
DCHECK_LE(request_type, static_cast<int>(SaveRequestType::kEdited));
switch (static_cast<SaveRequestType>(request_type)) {
case SaveRequestType::kAnnotation:
#if BUILDFLAG(ENABLE_INK)
// In annotation mode, assume the user will make edits and prefer saving
// using the plugin data.
SetPluginCanSave(true);
SaveToBuffer(token);
#else
NOTREACHED();
#endif // BUILDFLAG(ENABLE_INK)
break;
case SaveRequestType::kOriginal:
SetPluginCanSave(false);
SaveToFile(token);
SetPluginCanSave(edit_mode_);
break;
case SaveRequestType::kEdited:
SaveToBuffer(token);
break;
}
}
void PdfViewPluginBase::HandleSelectAllMessage(const base::Value& /*message*/) {
engine()->SelectAll();
}
void PdfViewPluginBase::HandleSetBackgroundColorMessage(
const base::Value& message) {
const SkColor background_color =
base::checked_cast<SkColor>(message.FindDoubleKey("color").value());
SetBackgroundColor(background_color);
}
void PdfViewPluginBase::HandleSetReadOnlyMessage(const base::Value& message) {
engine()->SetReadOnly(message.FindBoolKey("enableReadOnly").value());
}
void PdfViewPluginBase::HandleSetTwoUpViewMessage(const base::Value& message) {
engine()->SetTwoUpView(message.FindBoolKey("enableTwoUpView").value());
}
void PdfViewPluginBase::HandleStopScrollingMessage(
const base::Value& /*message*/) {
stop_scrolling_ = true;
}
void PdfViewPluginBase::HandleUpdateScrollMessage(const base::Value& message) {
if (stop_scrolling_)
return;
scroll_position_ =
gfx::Point(base::checked_cast<int>(message.FindDoubleKey("x").value()),
base::checked_cast<int>(message.FindDoubleKey("y").value()));
UpdateScroll();
}
void PdfViewPluginBase::HandleViewportMessage(const base::Value& message) {
const base::Value* layout_options_value =
message.FindDictKey("layoutOptions");
if (layout_options_value) {
DocumentLayout::Options layout_options;
layout_options.FromValue(*layout_options_value);
// TODO(crbug.com/1013800): Eliminate need to get document size from here.
document_size_ = engine()->ApplyDocumentLayout(layout_options);
OnGeometryChanged(zoom_, device_scale_);
}
gfx::PointF scroll_position(message.FindDoubleKey("xOffset").value(),
message.FindDoubleKey("yOffset").value());
double new_zoom = message.FindDoubleKey("zoom").value();
const PinchPhase pinch_phase =
static_cast<PinchPhase>(message.FindIntKey("pinchPhase").value());
received_viewport_message_ = true;
stop_scrolling_ = false;
const double zoom_ratio = new_zoom / zoom_;
if (pinch_phase == PinchPhase::kStart) {
scroll_position_at_last_raster_ = scroll_position;
last_bitmap_smaller_ = false;
needs_reraster_ = false;
return;
}
// When zooming in, we set a layer transform to avoid unneeded rerasters.
// Also, if we're zooming out and the last time we rerastered was when
// we were even further zoomed out (i.e. we pinch zoomed in and are now
// pinch zooming back out in the same gesture), we update the layer
// transform instead of rerastering.
if (pinch_phase == PinchPhase::kUpdateZoomIn ||
(pinch_phase == PinchPhase::kUpdateZoomOut && zoom_ratio > 1.0)) {
// Get the coordinates of the center of the pinch gesture.
const double pinch_x = message.FindDoubleKey("pinchX").value();
const double pinch_y = message.FindDoubleKey("pinchY").value();
gfx::Point pinch_center(pinch_x, pinch_y);
// Get the pinch vector which represents the panning caused by the change in
// pinch center between the start and the end of the gesture.
const double pinch_vector_x = message.FindDoubleKey("pinchVectorX").value();
const double pinch_vector_y = message.FindDoubleKey("pinchVectorY").value();
gfx::Vector2d pinch_vector =
gfx::Vector2d(pinch_vector_x * zoom_ratio, pinch_vector_y * zoom_ratio);
gfx::Vector2d scroll_delta;
// If the rendered document doesn't fill the display area we will
// use `paint_offset` to anchor the paint vertically into the same place.
// We use the scroll bars instead of the pinch vector to get the actual
// position on screen of the paint.
gfx::Vector2d paint_offset;
if (plugin_rect_.width() > GetDocumentPixelWidth() * zoom_ratio) {
// We want to keep the paint in the middle but it must stay in the same
// position relative to the scroll bars.
paint_offset = gfx::Vector2d(0, (1 - zoom_ratio) * pinch_center.y());
scroll_delta =
gfx::Vector2d(0, (scroll_position.y() -
scroll_position_at_last_raster_.y() * zoom_ratio));
pinch_vector = gfx::Vector2d();
last_bitmap_smaller_ = true;
} else if (last_bitmap_smaller_) {
// When the document width covers the display area's width, we will anchor
// the scroll bars disregarding where the actual pinch certer is.
pinch_center = gfx::Point((plugin_rect_.width() / device_scale_) / 2,
(plugin_rect_.height() / device_scale_) / 2);
const double zoom_when_doc_covers_plugin_width =
zoom_ * plugin_rect_.width() / GetDocumentPixelWidth();
paint_offset = gfx::Vector2d(
(1 - new_zoom / zoom_when_doc_covers_plugin_width) * pinch_center.x(),
(1 - zoom_ratio) * pinch_center.y());
pinch_vector = gfx::Vector2d();
scroll_delta =
gfx::Vector2d((scroll_position.x() -
scroll_position_at_last_raster_.x() * zoom_ratio),
(scroll_position.y() -
scroll_position_at_last_raster_.y() * zoom_ratio));
}
paint_manager().SetTransform(zoom_ratio, pinch_center,
pinch_vector + paint_offset + scroll_delta,
true);
needs_reraster_ = false;
return;
}
if (pinch_phase == PinchPhase::kUpdateZoomOut ||
pinch_phase == PinchPhase::kEnd) {
// We reraster on pinch zoom out in order to solve the invalid regions
// that appear after zooming out.
// On pinch end the scale is again 1.f and we request a reraster
// in the new position.
paint_manager().ClearTransform();
last_bitmap_smaller_ = false;
needs_reraster_ = true;
// If we're rerastering due to zooming out, we need to update the scroll
// position for the last raster, in case the user continues the gesture by
// zooming in.
scroll_position_at_last_raster_ = scroll_position;
}
// Bound the input parameters.
new_zoom = std::max(kMinZoom, new_zoom);
DCHECK(message.FindBoolKey("userInitiated").has_value());
SetZoom(new_zoom);
scroll_position = BoundScrollPositionToDocument(scroll_position);
engine()->ScrolledToXPosition(scroll_position.x() * device_scale_);
engine()->ScrolledToYPosition(scroll_position.y() * device_scale_);
}
void PdfViewPluginBase::SaveToFile(const std::string& token) {
engine()->KillFormFocus();
ConsumeSaveToken(token);
SaveAs();
}
void PdfViewPluginBase::DoPaint(const std::vector<gfx::Rect>& paint_rects,
std::vector<PaintReadyRect>& ready,
std::vector<gfx::Rect>& pending) {
if (image_data_.drawsNothing()) {
DCHECK(plugin_rect_.IsEmpty());
return;
}
PrepareForFirstPaint(ready);
if (!received_viewport_message_ || !needs_reraster_)
return;
engine()->PrePaint();
for (const gfx::Rect& paint_rect : paint_rects) {
// Intersect with plugin area since there could be pending invalidates from
// when the plugin area was larger.
gfx::Rect rect =
gfx::IntersectRects(paint_rect, gfx::Rect(plugin_rect_.size()));
if (rect.IsEmpty())
continue;
// Paint the rendering of the PDF document.
gfx::Rect pdf_rect = gfx::IntersectRects(rect, available_area_);
if (!pdf_rect.IsEmpty()) {
pdf_rect.Offset(-available_area_.x(), 0);
std::vector<gfx::Rect> pdf_ready;
std::vector<gfx::Rect> pdf_pending;
engine()->Paint(pdf_rect, image_data_, pdf_ready, pdf_pending);
for (gfx::Rect& ready_rect : pdf_ready) {
ready_rect.Offset(available_area_.OffsetFromOrigin());
ready.push_back(PaintReadyRect(ready_rect, GetPluginImageData()));
}
for (gfx::Rect& pending_rect : pdf_pending) {
pending_rect.Offset(available_area_.OffsetFromOrigin());
pending.push_back(pending_rect);
}
}
// Ensure the region above the first page (if any) is filled;
const int32_t first_page_ypos = 0 == engine()->GetNumberOfPages()
? 0
: engine()->GetPageScreenRect(0).y();
if (rect.y() < first_page_ypos) {
gfx::Rect region = gfx::IntersectRects(
rect, gfx::Rect(gfx::Size(plugin_rect_.width(), first_page_ypos)));
ready.push_back(PaintReadyRect(region, GetPluginImageData()));
image_data_.erase(background_color_, gfx::RectToSkIRect(region));
}
// Ensure the background parts are filled.
for (const BackgroundPart& background_part : background_parts_) {
gfx::Rect intersection =
gfx::IntersectRects(background_part.location, rect);
if (!intersection.IsEmpty()) {
image_data_.erase(background_part.color,
gfx::RectToSkIRect(intersection));
ready.push_back(PaintReadyRect(intersection, GetPluginImageData()));
}
}
}
engine()->PostPaint();
InvalidateAfterPaintDone();
}
void PdfViewPluginBase::PrepareForFirstPaint(
std::vector<PaintReadyRect>& ready) {
if (!first_paint_)
return;
// Fill the image data buffer with the background color.
first_paint_ = false;
image_data_.eraseColor(background_color_);
gfx::Rect rect(gfx::SkISizeToSize(image_data_.dimensions()));
ready.push_back(
PaintReadyRect(rect, GetPluginImageData(), /*flush_now=*/true));
}
void PdfViewPluginBase::ClearDeferredInvalidates(
int32_t /*unused_but_required*/) {
DCHECK(!in_paint_);
for (const gfx::Rect& rect : deferred_invalidates_)
Invalidate(rect);
deferred_invalidates_.clear();
}
void PdfViewPluginBase::SendAttachments() {
const std::vector<DocumentAttachmentInfo>& attachment_infos =
engine()->GetDocumentAttachmentInfoList();
if (attachment_infos.empty())
return;
base::Value attachments(base::Value::Type::LIST);
for (const DocumentAttachmentInfo& attachment_info : attachment_infos) {
// Send `size` as -1 to indicate that the attachment is too large to be
// downloaded.
const int size = attachment_info.size_bytes <= kMaximumSavedFileSize
? static_cast<int>(attachment_info.size_bytes)
: -1;
base::Value attachment(base::Value::Type::DICTIONARY);
attachment.SetStringKey("name", attachment_info.name);
attachment.SetIntKey("size", size);
attachment.SetBoolKey("readable", attachment_info.is_readable);
attachments.Append(std::move(attachment));
}
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "attachments");
message.SetKey("attachmentsData", std::move(attachments));
SendMessage(std::move(message));
}
void PdfViewPluginBase::SendBookmarks() {
base::Value bookmarks = engine()->GetBookmarks();
if (bookmarks.GetList().empty())
return;
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "bookmarks");
message.SetKey("bookmarksData", std::move(bookmarks));
SendMessage(std::move(message));
}
void PdfViewPluginBase::SendMetadata() {
base::Value metadata(base::Value::Type::DICTIONARY);
const DocumentMetadata& document_metadata = engine()->GetDocumentMetadata();
const std::string version = FormatPdfVersion(document_metadata.version);
if (!version.empty())
metadata.SetStringKey("version", version);
metadata.SetStringKey("fileSize",
ui::FormatBytes(document_metadata.size_bytes));
metadata.SetBoolKey("linearized", document_metadata.linearized);
if (!document_metadata.title.empty())
metadata.SetStringKey("title", document_metadata.title);
if (!document_metadata.author.empty())
metadata.SetStringKey("author", document_metadata.author);
if (!document_metadata.subject.empty())
metadata.SetStringKey("subject", document_metadata.subject);
if (!document_metadata.keywords.empty())
metadata.SetStringKey("keywords", document_metadata.keywords);
if (!document_metadata.creator.empty())
metadata.SetStringKey("creator", document_metadata.creator);
if (!document_metadata.producer.empty())
metadata.SetStringKey("producer", document_metadata.producer);
if (!document_metadata.creation_date.is_null()) {
metadata.SetStringKey("creationDate", base::TimeFormatShortDateAndTime(
document_metadata.creation_date));
}
if (!document_metadata.mod_date.is_null()) {
metadata.SetStringKey("modDate", base::TimeFormatShortDateAndTime(
document_metadata.mod_date));
}
metadata.SetStringKey("pageSize",
FormatPageSize(engine()->GetUniformPageSizePoints()));
metadata.SetBoolKey("canSerializeDocument",
IsSaveDataSizeValid(engine()->GetLoadedByteSize()));
base::Value message(base::Value::Type::DICTIONARY);
message.SetStringKey("type", "metadata");
message.SetKey("metadataData", std::move(metadata));
SendMessage(std::move(message));
}
void PdfViewPluginBase::SendThumbnail(base::Value reply, Thumbnail thumbnail) {
const SkBitmap& bitmap = thumbnail.bitmap();
base::Value image_data(base::make_span(
static_cast<uint8_t*>(bitmap.getPixels()), bitmap.computeByteSize()));
DCHECK_EQ(*reply.FindStringKey("type"), "getThumbnailReply");
DCHECK(reply.FindStringKey("messageId"));
reply.SetKey("imageData", std::move(image_data));
reply.SetIntKey("width", bitmap.width());
reply.SetIntKey("height", bitmap.height());
SendMessage(std::move(reply));
}
void PdfViewPluginBase::LoadAccessibility() {
accessibility_state_ = AccessibilityState::kLoaded;
AccessibilityDocInfo doc_info;
doc_info.page_count = engine_->GetNumberOfPages();
doc_info.text_accessible =
engine_->HasPermission(PDFEngine::PERMISSION_COPY_ACCESSIBLE);
doc_info.text_copyable = engine_->HasPermission(PDFEngine::PERMISSION_COPY);
// A new document layout will trigger the creation of a new accessibility
// tree, so `next_accessibility_page_index_` should be reset to ignore
// outdated asynchronous calls of PrepareAndSetAccessibilityPageInfo().
next_accessibility_page_index_ = 0;
SetAccessibilityDocInfo(doc_info);
// If the document contents isn't accessible, don't send anything more.
if (!(engine_->HasPermission(PDFEngine::PERMISSION_COPY) ||
engine_->HasPermission(PDFEngine::PERMISSION_COPY_ACCESSIBLE))) {
return;
}
PrepareAndSetAccessibilityViewportInfo();
// Schedule loading the first page.
ScheduleTaskOnMainThread(
FROM_HERE,
base::BindOnce(&PdfViewPluginBase::PrepareAndSetAccessibilityPageInfo,
GetWeakPtr()),
/*result=*/0, kAccessibilityPageDelay);
}
namespace {
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class PdfHasAttachment {
kNo = 0,
kYes = 1,
kMaxValue = kYes,
};
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class PdfIsTagged {
kNo = 0,
kYes = 1,
kMaxValue = kYes,
};
} // namespace
void PdfViewPluginBase::RecordDocumentMetrics() {
const DocumentMetadata& document_metadata = engine()->GetDocumentMetadata();
HistogramEnumeration("PDF.Version", document_metadata.version);
HistogramCustomCounts("PDF.PageCount", document_metadata.page_count, 1,
1000000, 50);
HistogramEnumeration("PDF.HasAttachment", document_metadata.has_attachments
? PdfHasAttachment::kYes
: PdfHasAttachment::kNo);
HistogramEnumeration("PDF.IsTagged", document_metadata.tagged
? PdfIsTagged::kYes
: PdfIsTagged::kNo);
HistogramEnumeration("PDF.FormType", document_metadata.form_type);
}
template <typename T>
void PdfViewPluginBase::HistogramEnumeration(const char* name, T sample) {
if (IsPrintPreview())
return;
base::UmaHistogramEnumeration(name, sample);
}
void PdfViewPluginBase::HistogramCustomCounts(const char* name,
int32_t sample,
int32_t min,
int32_t max,
uint32_t bucket_count) {
if (IsPrintPreview())
return;
base::UmaHistogramCustomCounts(name, sample, min, max, bucket_count);
}
} // namespace chrome_pdf