mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
143 lines
4.8 KiB
C++
143 lines
4.8 KiB
C++
// Copyright (c) 2012 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 "chrome/browser/printing/print_preview_message_handler.h"
|
|
|
|
#include "base/bind.h"
|
|
#include "base/memory/shared_memory.h"
|
|
#include "chrome/browser/browser_process.h"
|
|
#include "chrome/browser/printing/print_job_manager.h"
|
|
#include "chrome/browser/printing/printer_query.h"
|
|
#include "chrome/common/print_messages.h"
|
|
#include "content/public/browser/browser_thread.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 "printing/page_size_margins.h"
|
|
#include "printing/pdf_metafile_skia.h"
|
|
#include "printing/print_job_constants.h"
|
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
using content::BrowserThread;
|
|
using content::WebContents;
|
|
|
|
DEFINE_WEB_CONTENTS_USER_DATA_KEY(printing::PrintPreviewMessageHandler);
|
|
|
|
namespace {
|
|
|
|
void StopWorker(int document_cookie) {
|
|
if (document_cookie <= 0)
|
|
return;
|
|
scoped_refptr<printing::PrintQueriesQueue> queue =
|
|
g_browser_process->print_job_manager()->queue();
|
|
scoped_refptr<printing::PrinterQuery> printer_query =
|
|
queue->PopPrinterQuery(document_cookie);
|
|
if (printer_query.get()) {
|
|
BrowserThread::PostTask(
|
|
BrowserThread::IO, FROM_HERE,
|
|
base::Bind(&printing::PrinterQuery::StopWorker, printer_query));
|
|
}
|
|
}
|
|
|
|
char* CopyPDFDataOnIOThread(
|
|
const PrintHostMsg_DidPreviewDocument_Params& params) {
|
|
DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
|
std::unique_ptr<base::SharedMemory> shared_buf(
|
|
new base::SharedMemory(params.metafile_data_handle, true));
|
|
if (!shared_buf->Map(params.data_size))
|
|
return nullptr;
|
|
char* pdf_data = new char[params.data_size];
|
|
memcpy(pdf_data, shared_buf->memory(), params.data_size);
|
|
return pdf_data;
|
|
}
|
|
|
|
void FreeNodeBufferData(char* data, void* hint) {
|
|
delete[] data;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
namespace printing {
|
|
|
|
PrintPreviewMessageHandler::PrintPreviewMessageHandler(
|
|
WebContents* web_contents)
|
|
: content::WebContentsObserver(web_contents) {
|
|
DCHECK(web_contents);
|
|
}
|
|
|
|
PrintPreviewMessageHandler::~PrintPreviewMessageHandler() {}
|
|
|
|
void PrintPreviewMessageHandler::OnMetafileReadyForPrinting(
|
|
const PrintHostMsg_DidPreviewDocument_Params& params) {
|
|
// Always try to stop the worker.
|
|
StopWorker(params.document_cookie);
|
|
|
|
if (params.expected_pages_count <= 0) {
|
|
NOTREACHED();
|
|
return;
|
|
}
|
|
|
|
BrowserThread::PostTaskAndReplyWithResult(
|
|
BrowserThread::IO, FROM_HERE, base::Bind(&CopyPDFDataOnIOThread, params),
|
|
base::Bind(&PrintPreviewMessageHandler::RunPrintToPDFCallback,
|
|
base::Unretained(this), params.preview_request_id,
|
|
params.data_size));
|
|
}
|
|
|
|
void PrintPreviewMessageHandler::OnPrintPreviewFailed(int document_cookie,
|
|
int request_id) {
|
|
StopWorker(document_cookie);
|
|
RunPrintToPDFCallback(request_id, 0, nullptr);
|
|
}
|
|
|
|
bool PrintPreviewMessageHandler::OnMessageReceived(
|
|
const IPC::Message& message,
|
|
content::RenderFrameHost* render_frame_host) {
|
|
bool handled = true;
|
|
IPC_BEGIN_MESSAGE_MAP(PrintPreviewMessageHandler, message)
|
|
IPC_MESSAGE_HANDLER(PrintHostMsg_MetafileReadyForPrinting,
|
|
OnMetafileReadyForPrinting)
|
|
IPC_MESSAGE_HANDLER(PrintHostMsg_PrintPreviewFailed, OnPrintPreviewFailed)
|
|
IPC_MESSAGE_UNHANDLED(handled = false)
|
|
IPC_END_MESSAGE_MAP()
|
|
return handled;
|
|
}
|
|
|
|
void PrintPreviewMessageHandler::PrintToPDF(
|
|
const base::DictionaryValue& options,
|
|
const atom::api::WebContents::PrintToPDFCallback& callback) {
|
|
int request_id;
|
|
options.GetInteger(printing::kPreviewRequestID, &request_id);
|
|
print_to_pdf_callback_map_[request_id] = callback;
|
|
|
|
content::RenderFrameHost* rfh = web_contents()->GetMainFrame();
|
|
rfh->Send(new PrintMsg_PrintPreview(rfh->GetRoutingID(), options));
|
|
}
|
|
|
|
void PrintPreviewMessageHandler::RunPrintToPDFCallback(int request_id,
|
|
uint32_t data_size,
|
|
char* data) {
|
|
DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
v8::Locker locker(isolate);
|
|
v8::HandleScope handle_scope(isolate);
|
|
if (data) {
|
|
v8::Local<v8::Value> buffer =
|
|
node::Buffer::New(isolate, data, static_cast<size_t>(data_size),
|
|
&FreeNodeBufferData, nullptr)
|
|
.ToLocalChecked();
|
|
print_to_pdf_callback_map_[request_id].Run(v8::Null(isolate), buffer);
|
|
} else {
|
|
v8::Local<v8::String> error_message =
|
|
v8::String::NewFromUtf8(isolate, "Failed to generate PDF");
|
|
print_to_pdf_callback_map_[request_id].Run(
|
|
v8::Exception::Error(error_message), v8::Null(isolate));
|
|
}
|
|
print_to_pdf_callback_map_.erase(request_id);
|
|
}
|
|
|
|
} // namespace printing
|