/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "PrintTargetCG.h" #include "cairo.h" #include "cairo-quartz.h" #include "mozilla/gfx/HelpersCairo.h" #include "nsObjCExceptions.h" namespace mozilla { namespace gfx { PrintTargetCG::PrintTargetCG(PMPrintSession aPrintSession, PMPageFormat aPageFormat, PMPrintSettings aPrintSettings, const IntSize& aSize) : PrintTarget(/* aCairoSurface */ nullptr, aSize) , mPrintSession(aPrintSession) , mPageFormat(aPageFormat) , mPrintSettings(aPrintSettings) { NS_OBJC_BEGIN_TRY_ABORT_BLOCK; ::PMRetain(mPrintSession); // TODO: Add memory reporting like gfxQuartzSurface. //RecordMemoryUsed(mSize.height * 4 + sizeof(gfxQuartzSurface)); NS_OBJC_END_TRY_ABORT_BLOCK; } PrintTargetCG::~PrintTargetCG() { NS_OBJC_BEGIN_TRY_ABORT_BLOCK; if (mPrintSession) ::PMRelease(mPrintSession); NS_OBJC_END_TRY_ABORT_BLOCK; } /* static */ already_AddRefed PrintTargetCG::CreateOrNull(PMPrintSession aPrintSession, PMPageFormat aPageFormat, PMPrintSettings aPrintSettings, const IntSize& aSize) { if (!Factory::CheckSurfaceSize(aSize)) { return nullptr; } RefPtr target = new PrintTargetCG(aPrintSession, aPageFormat, aPrintSettings, aSize); return target.forget(); } static size_t PutBytesNull(void* info, const void* buffer, size_t count) { return count; } already_AddRefed PrintTargetCG::GetReferenceDrawTarget(DrawEventRecorder* aRecorder) { if (!mRefDT) { const IntSize size(1, 1); CGDataConsumerCallbacks callbacks = {PutBytesNull, nullptr}; CGDataConsumerRef consumer = CGDataConsumerCreate(nullptr, &callbacks); CGContextRef pdfContext = CGPDFContextCreate(consumer, nullptr, nullptr); CGDataConsumerRelease(consumer); cairo_surface_t* similar = cairo_quartz_surface_create_for_cg_context( pdfContext, size.width, size.height); CGContextRelease(pdfContext); if (cairo_surface_status(similar)) { return nullptr; } RefPtr dt = Factory::CreateDrawTargetForCairoSurface(similar, size); // The DT addrefs the surface, so we need drop our own reference to it: cairo_surface_destroy(similar); if (!dt || !dt->IsValid()) { return nullptr; } mRefDT = dt.forget(); } if (aRecorder) { if (!mRecordingRefDT) { RefPtr dt = CreateRecordingDrawTarget(aRecorder, mRefDT); if (!dt || !dt->IsValid()) { return nullptr; } mRecordingRefDT = dt.forget(); #ifdef DEBUG mRecorder = aRecorder; #endif } #ifdef DEBUG else { MOZ_ASSERT(aRecorder == mRecorder, "Caching mRecordingRefDT assumes the aRecorder is an invariant"); } #endif return do_AddRef(mRecordingRefDT); } return do_AddRef(mRefDT); } nsresult PrintTargetCG::BeginPrinting(const nsAString& aTitle, const nsAString& aPrintToFileName, int32_t aStartPage, int32_t aEndPage) { NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT; OSStatus status; status = ::PMSetFirstPage(mPrintSettings, aStartPage, false); NS_ASSERTION(status == noErr, "PMSetFirstPage failed"); status = ::PMSetLastPage(mPrintSettings, aEndPage, false); NS_ASSERTION(status == noErr, "PMSetLastPage failed"); status = ::PMSessionBeginCGDocumentNoDialog(mPrintSession, mPrintSettings, mPageFormat); return status == noErr ? NS_OK : NS_ERROR_ABORT; NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT; } nsresult PrintTargetCG::EndPrinting() { NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT; ::PMSessionEndDocumentNoDialog(mPrintSession); return NS_OK; NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT; } nsresult PrintTargetCG::AbortPrinting() { #ifdef DEBUG mHasActivePage = false; #endif return EndPrinting(); } nsresult PrintTargetCG::BeginPage() { NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT; PMSessionError(mPrintSession); OSStatus status = ::PMSessionBeginPageNoDialog(mPrintSession, mPageFormat, NULL); if (status != noErr) { return NS_ERROR_ABORT; } CGContextRef context; // This call will fail if it wasn't called between the PMSessionBeginPage/ // PMSessionEndPage calls: ::PMSessionGetCGGraphicsContext(mPrintSession, &context); if (!context) { return NS_ERROR_FAILURE; } unsigned int width = static_cast(mSize.width); unsigned int height = static_cast(mSize.height); // Initially, origin is at bottom-left corner of the paper. // Here, we translate it to top-left corner of the paper. CGContextTranslateCTM(context, 0, height); CGContextScaleCTM(context, 1.0, -1.0); cairo_surface_t* surface = cairo_quartz_surface_create_for_cg_context(context, width, height); if (cairo_surface_status(surface)) { return NS_ERROR_FAILURE; } mCairoSurface = surface; return PrintTarget::BeginPage(); NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT; } nsresult PrintTargetCG::EndPage() { NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT; cairo_surface_finish(mCairoSurface); mCairoSurface = nullptr; OSStatus status = ::PMSessionEndPageNoDialog(mPrintSession); if (status != noErr) { return NS_ERROR_ABORT; } return PrintTarget::EndPage(); NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT; } } // namespace gfx } // namespace mozilla