[API CHANGE] change XPdfDecomposer to use XBinaryDataContainer

Using BinaryDataContainer doesn't require to copy the data as it
is compatible with what is used in Graphic, VectorGraphicData and
GfxLink.

Change-Id: I01589158ae6bf6ac407bde60f07952e3968e3970
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109597
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
This commit is contained in:
Tomaž Vajngerl
2020-12-31 21:10:27 +09:00
committed by Tomaž Vajngerl
parent 05aedcba66
commit 2d0cefae7a
3 changed files with 21 additions and 11 deletions

View File

@@ -17,11 +17,14 @@
#include <vcl/pdfread.hxx> #include <vcl/pdfread.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/BinaryDataContainer.hxx>
#include <vcl/BinaryDataContainerTools.hxx>
#include <toolkit/helper/vclunohelper.hxx> #include <toolkit/helper/vclunohelper.hxx>
#include <com/sun/star/graphic/XPdfDecomposer.hpp> #include <com/sun/star/graphic/XPdfDecomposer.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/util/XBinaryDataContainer.hpp>
using namespace css; using namespace css;
@@ -38,7 +41,7 @@ public:
// XPdfDecomposer // XPdfDecomposer
uno::Sequence<uno::Reference<graphic::XPrimitive2D>> SAL_CALL uno::Sequence<uno::Reference<graphic::XPrimitive2D>> SAL_CALL
getDecomposition(const uno::Sequence<sal_Int8>& xPdfData, getDecomposition(const uno::Reference<util::XBinaryDataContainer>& xDataContainer,
const uno::Sequence<beans::PropertyValue>& xDecompositionParameters) override; const uno::Sequence<beans::PropertyValue>& xDecompositionParameters) override;
// XServiceInfo // XServiceInfo
@@ -49,8 +52,9 @@ public:
XPdfDecomposer::XPdfDecomposer(uno::Reference<uno::XComponentContext> const&) {} XPdfDecomposer::XPdfDecomposer(uno::Reference<uno::XComponentContext> const&) {}
uno::Sequence<uno::Reference<graphic::XPrimitive2D>> SAL_CALL XPdfDecomposer::getDecomposition( uno::Sequence<uno::Reference<graphic::XPrimitive2D>> SAL_CALL
const uno::Sequence<sal_Int8>& xPdfData, const uno::Sequence<beans::PropertyValue>& xParameters) XPdfDecomposer::getDecomposition(const uno::Reference<util::XBinaryDataContainer>& xDataContainer,
const uno::Sequence<beans::PropertyValue>& xParameters)
{ {
sal_Int32 nPageIndex = -1; sal_Int32 nPageIndex = -1;
@@ -66,8 +70,10 @@ uno::Sequence<uno::Reference<graphic::XPrimitive2D>> SAL_CALL XPdfDecomposer::ge
if (nPageIndex < 0) if (nPageIndex < 0)
nPageIndex = 0; nPageIndex = 0;
BinaryDataContainer aDataContainer = vcl::convertUnoBinaryDataContainer(xDataContainer);
std::vector<BitmapEx> aBitmaps; std::vector<BitmapEx> aBitmaps;
int rv = vcl::RenderPDFBitmaps(xPdfData.getConstArray(), xPdfData.getLength(), aBitmaps, int rv = vcl::RenderPDFBitmaps(aDataContainer.getData(), aDataContainer.getSize(), aBitmaps,
nPageIndex, 1); nPageIndex, 1);
if (rv == 0) if (rv == 0)
return {}; // happens if we do not have PDFium return {}; // happens if we do not have PDFium

View File

@@ -11,6 +11,7 @@
#define __com_sun_star_graphic_XPdfDecomposer_idl__ #define __com_sun_star_graphic_XPdfDecomposer_idl__
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/uno/util/XBinaryDataContainer.idl>
module com { module sun { module star { module graphic { module com { module sun { module star { module graphic {
@@ -26,15 +27,15 @@ interface XPdfDecomposer : ::com::sun::star::uno::XInterface
{ {
/** Retrieve decomposed list - in this case a bitmap with the rendered PDF. /** Retrieve decomposed list - in this case a bitmap with the rendered PDF.
@param xPdfData @param xDataContainer
The PDF data. The PDF data in a data container
@param xDecompositionParameters @param xDecompositionParameters
Parameters for decomposition. Parameters include: Parameters for decomposition. Parameters include:
sal_Int32 PageIndex - which page to use sal_Int32 PageIndex - which page to use
*/ */
sequence<XPrimitive2D> getDecomposition([in] sequence<byte> xPdfData, sequence<XPrimitive2D> getDecomposition([in] com::sun::star::util::XBinaryDataContainer xDataContainer,
[in] sequence<com::sun::star::beans::PropertyValue> xDecompositionParameters); [in] sequence<com::sun::star::beans::PropertyValue> xDecompositionParameters);
}; };

View File

@@ -29,6 +29,7 @@
#include <com/sun/star/graphic/Primitive2DTools.hpp> #include <com/sun/star/graphic/Primitive2DTools.hpp>
#include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp> #include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp>
#include <com/sun/star/util/XAccounting.hpp> #include <com/sun/star/util/XAccounting.hpp>
#include <com/sun/star/util/XBinaryDataContainer.hpp>
#include <basegfx/matrix/b2dhommatrixtools.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx>
#include <vcl/canvastools.hxx> #include <vcl/canvastools.hxx>
#include <comphelper/seqstream.hxx> #include <comphelper/seqstream.hxx>
@@ -40,6 +41,7 @@
#include <vcl/wmfexternal.hxx> #include <vcl/wmfexternal.hxx>
#include <vcl/pdfread.hxx> #include <vcl/pdfread.hxx>
#include <unotools/streamwrap.hxx> #include <unotools/streamwrap.hxx>
#include <graphic/UnoBinaryDataContainer.hxx>
using namespace ::com::sun::star; using namespace ::com::sun::star;
@@ -249,10 +251,11 @@ void VectorGraphicData::ensureSequenceAndRange()
uno::Sequence<beans::PropertyValue> aDecompositionParameters = comphelper::InitPropertySequence({ uno::Sequence<beans::PropertyValue> aDecompositionParameters = comphelper::InitPropertySequence({
{"PageIndex", uno::makeAny<sal_Int32>(mnPageIndex)}, {"PageIndex", uno::makeAny<sal_Int32>(mnPageIndex)},
}); });
// TODO: change xPdfDecomposer to use BinaryDataContainer directly
css::uno::Sequence<sal_Int8> aDataSequence(maDataContainer.getSize()); auto* pUnoBinaryDataContainer = new UnoBinaryDataContainer(getBinaryDataContainer());
std::copy(maDataContainer.cbegin(), maDataContainer.cend(), aDataSequence.begin()); uno::Reference<util::XBinaryDataContainer> xDataContainer = pUnoBinaryDataContainer;
auto xPrimitive2D = xPdfDecomposer->getDecomposition(aDataSequence, aDecompositionParameters);
auto xPrimitive2D = xPdfDecomposer->getDecomposition(xDataContainer, aDecompositionParameters);
maSequence = comphelper::sequenceToContainer<std::deque<uno::Reference<graphic::XPrimitive2D>>>(xPrimitive2D); maSequence = comphelper::sequenceToContainer<std::deque<uno::Reference<graphic::XPrimitive2D>>>(xPrimitive2D);
break; break;