|
@@ -60,124 +60,36 @@ void PrintViewManagerElectron::BindPrintManagerHost(
|
|
|
print_manager->BindReceiver(std::move(receiver), rfh);
|
|
|
}
|
|
|
|
|
|
-// static
|
|
|
-std::string PrintViewManagerElectron::PrintResultToString(PrintResult result) {
|
|
|
- switch (result) {
|
|
|
- case kPrintSuccess:
|
|
|
- return std::string(); // no error message
|
|
|
- case kPrintFailure:
|
|
|
- return "Printing failed";
|
|
|
- case kInvalidPrinterSettings:
|
|
|
- return "Show invalid printer settings error";
|
|
|
- case kInvalidMemoryHandle:
|
|
|
- return "Invalid memory handle";
|
|
|
- case kMetafileMapError:
|
|
|
- return "Map to shared memory error";
|
|
|
- case kMetafileInvalidHeader:
|
|
|
- return "Invalid metafile header";
|
|
|
- case kMetafileGetDataError:
|
|
|
- return "Get data from metafile error";
|
|
|
- case kSimultaneousPrintActive:
|
|
|
- return "The previous printing job hasn't finished";
|
|
|
- case kPageRangeSyntaxError:
|
|
|
- return "Page range syntax error";
|
|
|
- case kPageRangeInvalidRange:
|
|
|
- return "Page range is invalid (start > end)";
|
|
|
- case kPageCountExceeded:
|
|
|
- return "Page range exceeds page count";
|
|
|
- case kPrintingInProgress:
|
|
|
- return "Page is already being printed";
|
|
|
- default:
|
|
|
- NOTREACHED();
|
|
|
- return "Unknown PrintResult";
|
|
|
- }
|
|
|
+void PrintViewManagerElectron::DidPrintToPdf(
|
|
|
+ int cookie,
|
|
|
+ PrintToPdfCallback callback,
|
|
|
+ print_to_pdf::PdfPrintResult result,
|
|
|
+ scoped_refptr<base::RefCountedMemory> memory) {
|
|
|
+ base::Erase(pdf_jobs_, cookie);
|
|
|
+ std::move(callback).Run(result, memory);
|
|
|
}
|
|
|
|
|
|
void PrintViewManagerElectron::PrintToPdf(
|
|
|
content::RenderFrameHost* rfh,
|
|
|
const std::string& page_ranges,
|
|
|
printing::mojom::PrintPagesParamsPtr print_pages_params,
|
|
|
- PrintToPDFCallback callback) {
|
|
|
- DCHECK(callback);
|
|
|
-
|
|
|
- if (callback_) {
|
|
|
- std::move(callback).Run(kSimultaneousPrintActive,
|
|
|
- base::MakeRefCounted<base::RefCountedString>());
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (!rfh->IsRenderFrameLive()) {
|
|
|
- std::move(callback).Run(kPrintFailure,
|
|
|
- base::MakeRefCounted<base::RefCountedString>());
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- absl::variant<printing::PageRanges, print_to_pdf::PdfPrintResult>
|
|
|
- parsed_ranges = print_to_pdf::TextPageRangesToPageRanges(page_ranges);
|
|
|
- if (absl::holds_alternative<print_to_pdf::PdfPrintResult>(parsed_ranges)) {
|
|
|
- DCHECK_NE(absl::get<print_to_pdf::PdfPrintResult>(parsed_ranges),
|
|
|
- print_to_pdf::PdfPrintResult::kPrintSuccess);
|
|
|
- std::move(callback).Run(
|
|
|
- static_cast<PrintResult>(
|
|
|
- absl::get<print_to_pdf::PdfPrintResult>(parsed_ranges)),
|
|
|
- base::MakeRefCounted<base::RefCountedString>());
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- printing_rfh_ = rfh;
|
|
|
- print_pages_params->pages = absl::get<printing::PageRanges>(parsed_ranges);
|
|
|
- headless_jobs_.emplace_back(print_pages_params->params->document_cookie);
|
|
|
- callback_ = std::move(callback);
|
|
|
-
|
|
|
- // There is no need for a weak pointer here since the mojo proxy is held
|
|
|
- // in the base class. If we're gone, mojo will discard the callback.
|
|
|
- GetPrintRenderFrame(rfh)->PrintWithParams(
|
|
|
+ PrintToPdfCallback callback) {
|
|
|
+ // Store cookie in order to track job uniqueness and differentiate
|
|
|
+ // between regular and headless print jobs.
|
|
|
+ int cookie = print_pages_params->params->document_cookie;
|
|
|
+ pdf_jobs_.emplace_back(cookie);
|
|
|
+
|
|
|
+ print_to_pdf::PdfPrintJob::StartJob(
|
|
|
+ web_contents(), rfh, GetPrintRenderFrame(rfh), page_ranges,
|
|
|
std::move(print_pages_params),
|
|
|
- base::BindOnce(&PrintViewManagerElectron::OnDidPrintWithParams,
|
|
|
- base::Unretained(this)));
|
|
|
-}
|
|
|
-
|
|
|
-void PrintViewManagerElectron::OnDidPrintWithParams(
|
|
|
- printing::mojom::PrintWithParamsResultPtr result) {
|
|
|
- if (result->is_failure_reason()) {
|
|
|
- switch (result->get_failure_reason()) {
|
|
|
- case printing::mojom::PrintFailureReason::kGeneralFailure:
|
|
|
- FailJob(kPrintFailure);
|
|
|
- return;
|
|
|
- case printing::mojom::PrintFailureReason::kInvalidPageRange:
|
|
|
- FailJob(kPageCountExceeded);
|
|
|
- return;
|
|
|
- case printing::mojom::PrintFailureReason::kPrintingInProgress:
|
|
|
- FailJob(kPrintingInProgress);
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- printing::mojom::DidPrintDocumentParamsPtr& params = result->get_params();
|
|
|
-
|
|
|
- auto& content = *params->content;
|
|
|
- if (!content.metafile_data_region.IsValid()) {
|
|
|
- FailJob(kInvalidMemoryHandle);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- base::ReadOnlySharedMemoryMapping map = content.metafile_data_region.Map();
|
|
|
- if (!map.IsValid()) {
|
|
|
- FailJob(kMetafileMapError);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- std::string data =
|
|
|
- std::string(static_cast<const char*>(map.memory()), map.size());
|
|
|
- std::move(callback_).Run(kPrintSuccess,
|
|
|
- base::RefCountedString::TakeString(&data));
|
|
|
- base::Erase(headless_jobs_, params->document_cookie);
|
|
|
- Reset();
|
|
|
+ base::BindOnce(&PrintViewManagerElectron::DidPrintToPdf,
|
|
|
+ weak_factory_.GetWeakPtr(), cookie, std::move(callback)));
|
|
|
}
|
|
|
|
|
|
void PrintViewManagerElectron::GetDefaultPrintSettings(
|
|
|
GetDefaultPrintSettingsCallback callback) {
|
|
|
- if (printing_rfh_) {
|
|
|
+ // This isn't ideal, but we're not able to access the document cookie here.
|
|
|
+ if (pdf_jobs_.size() > 0) {
|
|
|
LOG(ERROR) << "Scripted print is not supported";
|
|
|
std::move(callback).Run(printing::mojom::PrintParams::New());
|
|
|
} else {
|
|
@@ -188,9 +100,8 @@ void PrintViewManagerElectron::GetDefaultPrintSettings(
|
|
|
void PrintViewManagerElectron::ScriptedPrint(
|
|
|
printing::mojom::ScriptedPrintParamsPtr params,
|
|
|
ScriptedPrintCallback callback) {
|
|
|
- auto entry =
|
|
|
- std::find(headless_jobs_.begin(), headless_jobs_.end(), params->cookie);
|
|
|
- if (entry == headless_jobs_.end()) {
|
|
|
+ auto entry = std::find(pdf_jobs_.begin(), pdf_jobs_.end(), params->cookie);
|
|
|
+ if (entry == pdf_jobs_.end()) {
|
|
|
PrintViewManagerBase::ScriptedPrint(std::move(params), std::move(callback));
|
|
|
return;
|
|
|
}
|
|
@@ -201,22 +112,13 @@ void PrintViewManagerElectron::ScriptedPrint(
|
|
|
std::move(callback).Run(std::move(default_param), /*cancelled*/ false);
|
|
|
}
|
|
|
|
|
|
-void PrintViewManagerElectron::ShowInvalidPrinterSettingsError() {
|
|
|
- if (headless_jobs_.size() == 0) {
|
|
|
- PrintViewManagerBase::ShowInvalidPrinterSettingsError();
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- FailJob(kInvalidPrinterSettings);
|
|
|
-}
|
|
|
-
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
|
|
void PrintViewManagerElectron::UpdatePrintSettings(
|
|
|
int32_t cookie,
|
|
|
base::Value::Dict job_settings,
|
|
|
UpdatePrintSettingsCallback callback) {
|
|
|
- auto entry = std::find(headless_jobs_.begin(), headless_jobs_.end(), cookie);
|
|
|
- if (entry == headless_jobs_.end()) {
|
|
|
+ auto entry = std::find(pdf_jobs_.begin(), pdf_jobs_.end(), cookie);
|
|
|
+ if (entry == pdf_jobs_.end()) {
|
|
|
PrintViewManagerBase::UpdatePrintSettings(cookie, std::move(job_settings),
|
|
|
std::move(callback));
|
|
|
return;
|
|
@@ -247,40 +149,14 @@ void PrintViewManagerElectron::CheckForCancel(int32_t preview_ui_id,
|
|
|
}
|
|
|
#endif // BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
|
|
|
|
|
-void PrintViewManagerElectron::RenderFrameDeleted(
|
|
|
- content::RenderFrameHost* render_frame_host) {
|
|
|
- PrintViewManagerBase::RenderFrameDeleted(render_frame_host);
|
|
|
-
|
|
|
- if (printing_rfh_ != render_frame_host)
|
|
|
- return;
|
|
|
-
|
|
|
- FailJob(kPrintFailure);
|
|
|
-}
|
|
|
-
|
|
|
void PrintViewManagerElectron::DidGetPrintedPagesCount(int32_t cookie,
|
|
|
uint32_t number_pages) {
|
|
|
- auto entry = std::find(headless_jobs_.begin(), headless_jobs_.end(), cookie);
|
|
|
- if (entry == headless_jobs_.end()) {
|
|
|
+ auto entry = std::find(pdf_jobs_.begin(), pdf_jobs_.end(), cookie);
|
|
|
+ if (entry == pdf_jobs_.end()) {
|
|
|
PrintViewManagerBase::DidGetPrintedPagesCount(cookie, number_pages);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void PrintViewManagerElectron::Reset() {
|
|
|
- printing_rfh_ = nullptr;
|
|
|
- callback_.Reset();
|
|
|
- data_.clear();
|
|
|
-}
|
|
|
-
|
|
|
-void PrintViewManagerElectron::FailJob(PrintResult result) {
|
|
|
- DCHECK_NE(result, kPrintSuccess);
|
|
|
- if (callback_) {
|
|
|
- std::move(callback_).Run(result,
|
|
|
- base::MakeRefCounted<base::RefCountedString>());
|
|
|
- }
|
|
|
-
|
|
|
- Reset();
|
|
|
-}
|
|
|
-
|
|
|
WEB_CONTENTS_USER_DATA_KEY_IMPL(PrintViewManagerElectron);
|
|
|
|
|
|
} // namespace electron
|