[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - filter/qa filter/source

Miklos Vajna (via logerrit) logerrit at kemper.freedesktop.org
Tue Sep 8 10:28:08 UTC 2020


 filter/qa/unit/data/shape-nographic.odp |binary
 filter/qa/unit/svg.cxx                  |   19 +++++++++++++++++++
 filter/source/svg/svgexport.cxx         |    3 ++-
 filter/source/svg/svgwriter.cxx         |    5 ++++-
 4 files changed, 25 insertions(+), 2 deletions(-)

New commits:
commit 5ebfd7e82fef5c8cf509917ea7f04bc1314be0f7
Author:     Miklos Vajna <vmiklos at collabora.com>
AuthorDate: Mon Sep 7 17:00:44 2020 +0200
Commit:     Miklos Vajna <vmiklos at collabora.com>
CommitDate: Tue Sep 8 12:27:32 2020 +0200

    SVG export: fix failure on trying to read graphic of a 3D shape
    
    Regression from commit 8fc1b60f62c213a0476f3acc9f89cd5eccbf335d (sw SVG
    export: try to reuse original bitmap data for JPG and PNG bitmaps,
    2020-02-27), which generalized the code that tries to get the original
    bitmap of shapes for performance reasons. Originally this worked with
    SdrGrafObj, but now we try every XShape which has a Graphic property.
    
    Add the missing check, so shapes without a graphic property just miss
    the fast path, but doesn't fail the entire SVG export.
    
    (cherry picked from commit fbcdbfef8664430e15b9429187b58dede992accf)
    
    Conflicts:
            filter/qa/unit/svg.cxx
            filter/source/svg/svgexport.cxx
    
    Change-Id: I6b20083110f3269337b9df6a23bd193cc6f7d13b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102223
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.com>

diff --git a/filter/qa/unit/data/shape-nographic.odp b/filter/qa/unit/data/shape-nographic.odp
new file mode 100644
index 000000000000..43186d614986
Binary files /dev/null and b/filter/qa/unit/data/shape-nographic.odp differ
diff --git a/filter/qa/unit/svg.cxx b/filter/qa/unit/svg.cxx
index 4ef95bebdc65..36c7e643466d 100644
--- a/filter/qa/unit/svg.cxx
+++ b/filter/qa/unit/svg.cxx
@@ -120,6 +120,25 @@ CPPUNIT_TEST_FIXTURE(SvgFilterTest, testPreserveJpg)
 #endif
 }
 
+CPPUNIT_TEST_FIXTURE(SvgFilterTest, testShapeNographic)
+{
+    // Load a document containing a 3D shape.
+    load("shape-nographic.odp");
+
+    // Export to SVG.
+    uno::Reference<frame::XStorable> xStorable(getComponent(), uno::UNO_QUERY_THROW);
+    SvMemoryStream aStream;
+    uno::Reference<io::XOutputStream> xOut = new utl::OOutputStreamWrapper(aStream);
+    utl::MediaDescriptor aMediaDescriptor;
+    aMediaDescriptor["FilterName"] <<= OUString("impress_svg_Export");
+    aMediaDescriptor["OutputStream"] <<= xOut;
+
+    // Without the accompanying fix in place, this test would have failed with:
+    // An uncaught exception of type com.sun.star.io.IOException
+    // - SfxBaseModel::impl_store <private:stream> failed: 0xc10(Error Area:Io Class:Write Code:16)
+    xStorable->storeToURL("private:stream", aMediaDescriptor.getAsConstPropertyValueList());
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index accbab0d6965..ac16f7e754f6 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -56,6 +56,7 @@
 #include <xmloff/animationexport.hxx>
 #include <svx/svdograf.hxx>
 #include <svx/svdpage.hxx>
+#include <sal/log.hxx>
 
 #include <memory>
 
@@ -602,7 +603,7 @@ bool SVGFilter::implExportImpressOrDraw( const Reference< XOutputStream >& rxOSt
                 {
                     delete mpSVGDoc;
                     mpSVGDoc = nullptr;
-                    OSL_FAIL( "Exception caught" );
+                    SAL_WARN("filter.svg", "Exception caught");
                 }
 
                 if( nullptr != pSdrModel )
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index 1ea8af01e6eb..1558836a21e9 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -2693,7 +2693,10 @@ void GetGraphicFromXShape(const css::uno::Reference<css::drawing::XShape>* pShap
     }
 
     uno::Reference<graphic::XGraphic> xGraphic;
-    xPropertySet->getPropertyValue("Graphic") >>= xGraphic;
+    if (xPropertySet->getPropertySetInfo()->hasPropertyByName("Graphic"))
+    {
+        xPropertySet->getPropertyValue("Graphic") >>= xGraphic;
+    }
     rGraphic= Graphic(xGraphic);
 }
 }


More information about the Libreoffice-commits mailing list