зеркало из https://github.com/mozilla/gecko-dev.git
164 строки
4.0 KiB
C++
164 строки
4.0 KiB
C++
/* -*- 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 "PDFiumEngineShim.h"
|
|
|
|
|
|
namespace mozilla {
|
|
namespace widget {
|
|
|
|
static PDFiumEngineShim* sPDFiumEngineShim;
|
|
|
|
/* static */
|
|
already_AddRefed<PDFiumEngineShim>
|
|
PDFiumEngineShim::GetInstanceOrNull()
|
|
{
|
|
RefPtr<PDFiumEngineShim> inst = sPDFiumEngineShim;
|
|
if (!inst) {
|
|
inst = new PDFiumEngineShim();
|
|
if (!inst->Init(nsCString("pdfium.dll"))) {
|
|
inst = nullptr;
|
|
}
|
|
sPDFiumEngineShim = inst.get();
|
|
}
|
|
|
|
return inst.forget();
|
|
}
|
|
|
|
/* static */
|
|
already_AddRefed<PDFiumEngineShim>
|
|
PDFiumEngineShim::GetInstanceOrNull(const nsCString& aLibrary)
|
|
{
|
|
RefPtr<PDFiumEngineShim> shim = new PDFiumEngineShim();
|
|
if (!shim->Init(aLibrary)) {
|
|
return nullptr;
|
|
}
|
|
|
|
return shim.forget();
|
|
}
|
|
|
|
PDFiumEngineShim::PDFiumEngineShim()
|
|
: mFPDF_InitLibrary(nullptr)
|
|
, mFPDF_DestroyLibrary(nullptr)
|
|
, mFPDF_CloseDocument(nullptr)
|
|
, mFPDF_GetPageCount(nullptr)
|
|
, mFPDF_LoadPage(nullptr)
|
|
, mFPDF_ClosePage(nullptr)
|
|
, mFPDF_RenderPage(nullptr)
|
|
, mPRLibrary(nullptr)
|
|
, mInitialized(false)
|
|
{
|
|
}
|
|
|
|
PDFiumEngineShim::~PDFiumEngineShim()
|
|
{
|
|
if (mInitialized) {
|
|
mFPDF_DestroyLibrary();
|
|
}
|
|
|
|
sPDFiumEngineShim = nullptr;
|
|
|
|
if (mPRLibrary) {
|
|
PR_UnloadLibrary(mPRLibrary);
|
|
}
|
|
}
|
|
|
|
bool
|
|
PDFiumEngineShim::Init(const nsCString& aLibrary)
|
|
{
|
|
if (mInitialized) {
|
|
return true;
|
|
}
|
|
|
|
mPRLibrary = PR_LoadLibrary(aLibrary.get());
|
|
NS_ENSURE_TRUE(mPRLibrary, false);
|
|
|
|
mFPDF_InitLibrary = (FPDF_InitLibrary_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_InitLibrary");
|
|
NS_ENSURE_TRUE(mFPDF_InitLibrary, false);
|
|
|
|
mFPDF_DestroyLibrary = (FPDF_DestroyLibrary_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_DestroyLibrary");
|
|
NS_ENSURE_TRUE(mFPDF_DestroyLibrary, false);
|
|
|
|
mFPDF_LoadDocument = (FPDF_LoadDocument_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_LoadDocument");
|
|
NS_ENSURE_TRUE(mFPDF_LoadDocument, false);
|
|
|
|
mFPDF_CloseDocument = (FPDF_CloseDocument_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_CloseDocument");
|
|
NS_ENSURE_TRUE(mFPDF_CloseDocument, false);
|
|
|
|
mFPDF_GetPageCount = (FPDF_GetPageCount_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_GetPageCount");
|
|
NS_ENSURE_TRUE(mFPDF_GetPageCount, false);
|
|
|
|
mFPDF_LoadPage = (FPDF_LoadPage_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_LoadPage");
|
|
NS_ENSURE_TRUE(mFPDF_LoadPage, false);
|
|
|
|
mFPDF_ClosePage = (FPDF_ClosePage_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_ClosePage");
|
|
NS_ENSURE_TRUE(mFPDF_ClosePage, false);
|
|
|
|
mFPDF_RenderPage = (FPDF_RenderPage_Pfn)PR_FindFunctionSymbol(
|
|
mPRLibrary, "FPDF_RenderPage");
|
|
NS_ENSURE_TRUE(mFPDF_RenderPage, false);
|
|
|
|
mFPDF_InitLibrary();
|
|
mInitialized = true;
|
|
return true;
|
|
}
|
|
|
|
FPDF_DOCUMENT
|
|
PDFiumEngineShim::LoadDocument(FPDF_STRING file_path,
|
|
FPDF_BYTESTRING aPassword)
|
|
{
|
|
MOZ_ASSERT(mInitialized);
|
|
return mFPDF_LoadDocument(file_path, aPassword);
|
|
}
|
|
|
|
void
|
|
PDFiumEngineShim::CloseDocument(FPDF_DOCUMENT aDocument)
|
|
{
|
|
MOZ_ASSERT(mInitialized);
|
|
mFPDF_CloseDocument(aDocument);
|
|
}
|
|
|
|
int
|
|
PDFiumEngineShim::GetPageCount(FPDF_DOCUMENT aDocument)
|
|
{
|
|
MOZ_ASSERT(mInitialized);
|
|
return mFPDF_GetPageCount(aDocument);
|
|
}
|
|
|
|
FPDF_PAGE
|
|
PDFiumEngineShim::LoadPage(FPDF_DOCUMENT aDocument, int aPageIndex)
|
|
{
|
|
MOZ_ASSERT(mInitialized);
|
|
return mFPDF_LoadPage(aDocument, aPageIndex);
|
|
}
|
|
|
|
void
|
|
PDFiumEngineShim::ClosePage(FPDF_PAGE aPage)
|
|
{
|
|
MOZ_ASSERT(mInitialized);
|
|
mFPDF_ClosePage(aPage);
|
|
}
|
|
|
|
void
|
|
PDFiumEngineShim::RenderPage(HDC aDC, FPDF_PAGE aPage,
|
|
int aStartX, int aStartY,
|
|
int aSizeX, int aSizeY,
|
|
int aRotate, int aFlags)
|
|
{
|
|
MOZ_ASSERT(mInitialized);
|
|
mFPDF_RenderPage(aDC, aPage, aStartX, aStartY,
|
|
aSizeX, aSizeY, aRotate, aFlags);
|
|
}
|
|
|
|
} // namespace widget
|
|
} // namespace mozilla
|