blob: 58fcf619add5093bd99fd9c561e8686b060a01c6 [file] [log] [blame]
// Copyright (c) 2011 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.
#ifndef PRINTING_PRINTING_CONTEXT_H_
#define PRINTING_PRINTING_CONTEXT_H_
#include <memory>
#include <string>
#include "base/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/values.h"
#include "build/build_config.h"
#include "printing/buildflags/buildflags.h"
#include "printing/mojom/print.mojom.h"
#include "printing/native_drawing_context.h"
#include "printing/print_settings.h"
#include "ui/gfx/native_widget_types.h"
namespace printing {
class MetafilePlayer;
class PrintingContextFactoryForTest;
#if BUILDFLAG(IS_WIN)
class PageSetup;
class PrintedPage;
#endif
// An abstraction of a printer context, implemented by objects that describe the
// user selected printing context. This includes the OS-dependent UI to ask the
// user about the print settings. Concrete implementations directly talk to the
// printer and manage the document and page breaks.
class COMPONENT_EXPORT(PRINTING) PrintingContext {
public:
// Printing context delegate.
class Delegate {
public:
Delegate() {}
virtual ~Delegate() {}
// Returns parent view to use for modal dialogs.
virtual gfx::NativeView GetParentView() = 0;
// Returns application locale.
virtual std::string GetAppLocale() = 0;
};
struct PrinterSettings {
#if BUILDFLAG(IS_MAC)
// True if the to-be-printed PDF is going to be opened in external
// preview. Used by macOS only to open Preview.app.
bool external_preview;
#endif
// Whether to show the system dialog.
bool show_system_dialog;
#if BUILDFLAG(IS_WIN)
// If showing the system dialog, the number of pages in the to-be-printed
// PDF. Only used on Windows.
int page_count;
#endif
};
PrintingContext(const PrintingContext&) = delete;
PrintingContext& operator=(const PrintingContext&) = delete;
virtual ~PrintingContext();
// Callback of AskUserForSettings, used to notify the PrintJobWorker when
// print settings are available.
using PrintSettingsCallback = base::OnceCallback<void(mojom::ResultCode)>;
// Asks the user what printer and format should be used to print. Updates the
// context with the select device settings. The result of the call is returned
// in the callback. This is necessary for Linux, which only has an
// asynchronous printing API.
// On Android, when `is_scripted` is true, calling it initiates a full
// printing flow from the framework's PrintManager.
// (see https://codereview.chromium.org/740983002/)
virtual void AskUserForSettings(int max_pages,
bool has_selection,
bool is_scripted,
PrintSettingsCallback callback) = 0;
// Selects the user's default printer and format. Updates the context with the
// default device settings.
virtual mojom::ResultCode UseDefaultSettings() = 0;
// Updates the context with PDF printer settings. The PDF settings are
// guaranteed to be valid.
void UsePdfSettings();
// Returns paper size to be used for PDF or Cloud Print in device units.
virtual gfx::Size GetPdfPaperSizeDeviceUnits() = 0;
// Updates printer settings.
virtual mojom::ResultCode UpdatePrinterSettings(
const PrinterSettings& printer_settings) = 0;
// Updates Print Settings. `job_settings` contains all print job settings
// information.
mojom::ResultCode UpdatePrintSettings(base::Value::Dict job_settings);
#if BUILDFLAG(IS_CHROMEOS)
// Updates Print Settings.
mojom::ResultCode UpdatePrintSettingsFromPOD(
std::unique_ptr<PrintSettings> job_settings);
#endif
// Applies the print settings to this context. Intended to be used only by
// the Print Backend service process.
void ApplyPrintSettings(const PrintSettings& settings);
// Does platform specific setup of the printer before the printing. Signal the
// printer that a document is about to be spooled.
// Warning: This function enters a message loop. That may cause side effects
// like IPC message processing! Some printers have side-effects on this call
// like virtual printers that ask the user for the path of the saved document;
// for example a PDF printer.
virtual mojom::ResultCode NewDocument(
const std::u16string& document_name) = 0;
#if BUILDFLAG(IS_WIN)
// Renders a page.
virtual mojom::ResultCode RenderPage(const PrintedPage& page,
const PageSetup& page_setup) = 0;
#endif
// Prints the document contained in `metafile`.
virtual mojom::ResultCode PrintDocument(const MetafilePlayer& metafile,
const PrintSettings& settings,
uint32_t num_pages) = 0;
// Closes the printing job. After this call the object is ready to start a new
// document.
virtual mojom::ResultCode DocumentDone() = 0;
// Cancels printing. Can be used in a multi-threaded context. Takes effect
// immediately.
virtual void Cancel() = 0;
// Releases the native printing context.
virtual void ReleaseContext() = 0;
// Returns the native context used to print.
virtual printing::NativeDrawingContext context() const = 0;
#if BUILDFLAG(IS_WIN)
// Initializes with predefined settings.
virtual mojom::ResultCode InitWithSettingsForTest(
std::unique_ptr<PrintSettings> settings) = 0;
#endif
// Creates an instance of this object.
static std::unique_ptr<PrintingContext> Create(Delegate* delegate,
bool skip_system_calls);
// Test method for generating printing contexts for testing. This overrides
// the platform-specific implementations of CreateImpl().
static void SetPrintingContextFactoryForTest(
PrintingContextFactoryForTest* factory);
void set_margin_type(mojom::MarginType type);
void set_is_modifiable(bool is_modifiable);
const PrintSettings& settings() const;
std::unique_ptr<PrintSettings> TakeAndResetSettings();
bool PrintingAborted() const { return abort_printing_; }
int job_id() const { return job_id_; }
protected:
explicit PrintingContext(Delegate* delegate);
// Creates an instance of this object. Implementers of this interface should
// implement this method to create an object of their implementation.
static std::unique_ptr<PrintingContext> CreateImpl(Delegate* delegate,
bool skip_system_calls);
// Reinitializes the settings for object reuse.
void ResetSettings();
// Determine if system calls should be skipped by this instance.
bool skip_system_calls() const {
#if BUILDFLAG(ENABLE_OOP_PRINTING)
return skip_system_calls_;
#else
return false;
#endif
}
#if BUILDFLAG(ENABLE_OOP_PRINTING)
// Make the one-way adjustment to have all system calls skipped by this
// `PrintingContext` instance.
void set_skip_system_calls() { skip_system_calls_ = true; }
#endif
// Does bookkeeping when an error occurs.
virtual mojom::ResultCode OnError();
// Complete print context settings.
std::unique_ptr<PrintSettings> settings_;
// Printing context delegate.
const raw_ptr<Delegate> delegate_;
// Is a print job being done.
volatile bool in_print_job_;
// Did the user cancel the print job.
volatile bool abort_printing_;
// The job id for the current job. The value is 0 if no jobs are active.
int job_id_;
private:
#if BUILDFLAG(ENABLE_OOP_PRINTING)
// If this instance of PrintingContext should skip making any system calls
// to the operating system.
bool skip_system_calls_ = false;
#endif
};
} // namespace printing
#endif // PRINTING_PRINTING_CONTEXT_H_