2015-04-30 03:31:17 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
#include "chrome/utility/printing_handler_win.h"
|
2015-04-30 03:31:17 +00:00
|
|
|
|
|
|
|
#include "base/files/file_util.h"
|
|
|
|
#include "base/lazy_instance.h"
|
|
|
|
#include "base/path_service.h"
|
|
|
|
#include "base/scoped_native_library.h"
|
2017-04-17 10:42:12 +00:00
|
|
|
#include "chrome/common/chrome_utility_printing_messages.h"
|
2015-04-30 03:31:17 +00:00
|
|
|
#include "chrome/common/print_messages.h"
|
|
|
|
#include "content/public/utility/utility_thread.h"
|
2016-04-14 08:15:20 +00:00
|
|
|
#include "pdf/pdf.h"
|
2015-05-11 12:57:07 +00:00
|
|
|
#include "printing/emf_win.h"
|
2015-04-30 03:31:17 +00:00
|
|
|
#include "printing/page_range.h"
|
|
|
|
#include "printing/pdf_render_settings.h"
|
|
|
|
#include "ui/gfx/gdi_util.h"
|
|
|
|
|
2016-04-14 08:15:20 +00:00
|
|
|
namespace printing {
|
|
|
|
|
2015-04-30 03:31:17 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool Send(IPC::Message* message) {
|
|
|
|
return content::UtilityThread::Get()->Send(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReleaseProcessIfNeeded() {
|
2017-09-21 14:17:55 +00:00
|
|
|
content::UtilityThread::Get()->ReleaseProcess();
|
2015-04-30 03:31:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 10:18:51 +00:00
|
|
|
void PreCacheFontCharacters(const LOGFONT* logfont,
|
|
|
|
const wchar_t* text,
|
|
|
|
size_t text_length) {
|
|
|
|
Send(new ChromeUtilityHostMsg_PreCacheFontCharacters(
|
|
|
|
*logfont, base::string16(text, text_length)));
|
|
|
|
}
|
|
|
|
|
2015-04-30 03:31:17 +00:00
|
|
|
} // namespace
|
|
|
|
|
2017-01-31 10:18:51 +00:00
|
|
|
PrintingHandlerWin::PrintingHandlerWin() {
|
|
|
|
chrome_pdf::SetPDFEnsureTypefaceCharactersAccessible(PreCacheFontCharacters);
|
|
|
|
}
|
2015-04-30 03:31:17 +00:00
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
PrintingHandlerWin::~PrintingHandlerWin() {}
|
2015-04-30 03:31:17 +00:00
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
bool PrintingHandlerWin::OnMessageReceived(const IPC::Message& message) {
|
2015-04-30 03:31:17 +00:00
|
|
|
bool handled = true;
|
2015-05-11 12:57:07 +00:00
|
|
|
IPC_BEGIN_MESSAGE_MAP(PrintingHandlerWin, message)
|
2015-04-30 03:31:17 +00:00
|
|
|
IPC_MESSAGE_HANDLER(ChromeUtilityMsg_RenderPDFPagesToMetafiles,
|
|
|
|
OnRenderPDFPagesToMetafile)
|
|
|
|
IPC_MESSAGE_HANDLER(ChromeUtilityMsg_RenderPDFPagesToMetafiles_GetPage,
|
|
|
|
OnRenderPDFPagesToMetafileGetPage)
|
|
|
|
IPC_MESSAGE_HANDLER(ChromeUtilityMsg_RenderPDFPagesToMetafiles_Stop,
|
|
|
|
OnRenderPDFPagesToMetafileStop)
|
|
|
|
IPC_MESSAGE_UNHANDLED(handled = false)
|
|
|
|
IPC_END_MESSAGE_MAP()
|
|
|
|
return handled;
|
|
|
|
}
|
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
void PrintingHandlerWin::OnRenderPDFPagesToMetafile(
|
2015-04-30 03:31:17 +00:00
|
|
|
IPC::PlatformFileForTransit pdf_transit,
|
2017-04-17 10:42:12 +00:00
|
|
|
const PdfRenderSettings& settings) {
|
2015-04-30 03:31:17 +00:00
|
|
|
pdf_rendering_settings_ = settings;
|
2017-04-17 10:42:12 +00:00
|
|
|
chrome_pdf::SetPDFUseGDIPrinting(pdf_rendering_settings_.mode ==
|
|
|
|
PdfRenderSettings::Mode::GDI_TEXT);
|
|
|
|
int postscript_level;
|
|
|
|
switch (pdf_rendering_settings_.mode) {
|
|
|
|
case PdfRenderSettings::Mode::POSTSCRIPT_LEVEL2:
|
2017-09-21 14:17:55 +00:00
|
|
|
postscript_level = chrome_pdf::PrintingMode::kPostScript2;
|
2017-04-17 10:42:12 +00:00
|
|
|
break;
|
|
|
|
case PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3:
|
2017-09-21 14:17:55 +00:00
|
|
|
postscript_level = chrome_pdf::PrintingMode::kPostScript3;
|
2017-04-17 10:42:12 +00:00
|
|
|
break;
|
|
|
|
default:
|
2017-09-21 14:17:55 +00:00
|
|
|
postscript_level = chrome_pdf::PrintingMode::kEmf; // Not using postscript.
|
2017-04-17 10:42:12 +00:00
|
|
|
}
|
2017-09-21 14:17:55 +00:00
|
|
|
chrome_pdf::SetPDFUsePrintMode(postscript_level);
|
2017-04-17 10:42:12 +00:00
|
|
|
|
2015-04-30 03:31:17 +00:00
|
|
|
base::File pdf_file = IPC::PlatformFileForTransitToFile(pdf_transit);
|
2016-05-23 07:39:19 +00:00
|
|
|
int page_count = LoadPDF(std::move(pdf_file));
|
2015-04-30 03:31:17 +00:00
|
|
|
Send(
|
|
|
|
new ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageCount(page_count));
|
|
|
|
}
|
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
void PrintingHandlerWin::OnRenderPDFPagesToMetafileGetPage(
|
2015-04-30 03:31:17 +00:00
|
|
|
int page_number,
|
|
|
|
IPC::PlatformFileForTransit output_file) {
|
|
|
|
base::File emf_file = IPC::PlatformFileForTransitToFile(output_file);
|
|
|
|
float scale_factor = 1.0f;
|
2017-04-17 10:42:12 +00:00
|
|
|
bool postscript = pdf_rendering_settings_.mode ==
|
|
|
|
PdfRenderSettings::Mode::POSTSCRIPT_LEVEL2 ||
|
|
|
|
pdf_rendering_settings_.mode ==
|
|
|
|
PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;
|
|
|
|
bool success = RenderPdfPageToMetafile(page_number, std::move(emf_file),
|
|
|
|
&scale_factor, postscript);
|
2015-04-30 03:31:17 +00:00
|
|
|
Send(new ChromeUtilityHostMsg_RenderPDFPagesToMetafiles_PageDone(
|
|
|
|
success, scale_factor));
|
|
|
|
}
|
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
void PrintingHandlerWin::OnRenderPDFPagesToMetafileStop() {
|
2015-04-30 03:31:17 +00:00
|
|
|
ReleaseProcessIfNeeded();
|
|
|
|
}
|
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
int PrintingHandlerWin::LoadPDF(base::File pdf_file) {
|
2016-03-08 14:28:53 +00:00
|
|
|
int64_t length64 = pdf_file.GetLength();
|
2015-04-30 03:31:17 +00:00
|
|
|
if (length64 <= 0 || length64 > std::numeric_limits<int>::max())
|
|
|
|
return 0;
|
|
|
|
int length = static_cast<int>(length64);
|
|
|
|
|
|
|
|
pdf_data_.resize(length);
|
|
|
|
if (length != pdf_file.Read(0, pdf_data_.data(), pdf_data_.size()))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
int total_page_count = 0;
|
2016-04-14 08:15:20 +00:00
|
|
|
if (!chrome_pdf::GetPDFDocInfo(&pdf_data_.front(), pdf_data_.size(),
|
|
|
|
&total_page_count, nullptr)) {
|
2015-04-30 03:31:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return total_page_count;
|
|
|
|
}
|
|
|
|
|
2015-05-11 12:57:07 +00:00
|
|
|
bool PrintingHandlerWin::RenderPdfPageToMetafile(int page_number,
|
|
|
|
base::File output_file,
|
2017-04-17 10:42:12 +00:00
|
|
|
float* scale_factor,
|
|
|
|
bool postscript) {
|
2016-04-14 08:15:20 +00:00
|
|
|
Emf metafile;
|
2015-04-30 03:31:17 +00:00
|
|
|
metafile.Init();
|
|
|
|
|
|
|
|
// We need to scale down DC to fit an entire page into DC available area.
|
|
|
|
// Current metafile is based on screen DC and have current screen size.
|
|
|
|
// Writing outside of those boundaries will result in the cut-off output.
|
|
|
|
// On metafiles (this is the case here), scaling down will still record
|
|
|
|
// original coordinates and we'll be able to print in full resolution.
|
|
|
|
// Before playback we'll need to counter the scaling up that will happen
|
|
|
|
// in the service (print_system_win.cc).
|
2017-04-17 10:42:12 +00:00
|
|
|
//
|
|
|
|
// The postscript driver does not use the metafile size since it outputs
|
|
|
|
// postscript rather than a metafile. Instead it uses the printable area
|
|
|
|
// sent to RenderPDFPageToDC to determine the area to render. Therefore,
|
|
|
|
// don't scale the DC to match the metafile, and send the printer physical
|
|
|
|
// offsets to the driver.
|
|
|
|
if (!postscript) {
|
|
|
|
*scale_factor = gfx::CalculatePageScale(
|
|
|
|
metafile.context(), pdf_rendering_settings_.area.right(),
|
|
|
|
pdf_rendering_settings_.area.bottom());
|
|
|
|
gfx::ScaleDC(metafile.context(), *scale_factor);
|
|
|
|
}
|
2015-04-30 03:31:17 +00:00
|
|
|
|
|
|
|
// The underlying metafile is of type Emf and ignores the arguments passed
|
|
|
|
// to StartPage.
|
|
|
|
metafile.StartPage(gfx::Size(), gfx::Rect(), 1);
|
2017-04-17 10:42:12 +00:00
|
|
|
int offset_x = postscript ? pdf_rendering_settings_.offsets.x() : 0;
|
|
|
|
int offset_y = postscript ? pdf_rendering_settings_.offsets.y() : 0;
|
|
|
|
|
2016-04-14 08:15:20 +00:00
|
|
|
if (!chrome_pdf::RenderPDFPageToDC(
|
2017-01-26 07:10:28 +00:00
|
|
|
&pdf_data_.front(), pdf_data_.size(), page_number, metafile.context(),
|
2017-04-17 10:42:12 +00:00
|
|
|
pdf_rendering_settings_.dpi,
|
|
|
|
pdf_rendering_settings_.area.x() - offset_x,
|
|
|
|
pdf_rendering_settings_.area.y() - offset_y,
|
2017-01-26 07:10:28 +00:00
|
|
|
pdf_rendering_settings_.area.width(),
|
|
|
|
pdf_rendering_settings_.area.height(), true, false, true, true,
|
|
|
|
pdf_rendering_settings_.autorotate)) {
|
2015-04-30 03:31:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
metafile.FinishPage();
|
|
|
|
metafile.FinishDocument();
|
|
|
|
return metafile.SaveTo(&output_file);
|
|
|
|
}
|
2016-04-14 08:15:20 +00:00
|
|
|
|
2017-04-17 10:42:12 +00:00
|
|
|
} // namespace printing
|