LCOV - code coverage report
Current view: top level - svgio/source/svgreader - svgimagenode.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 88 121 72.7 %
Date: 2014-11-03 Functions: 9 9 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <svgio/svgreader/svgimagenode.hxx>
      21             : #include <svgio/svgreader/svgdocument.hxx>
      22             : #include <sax/tools/converter.hxx>
      23             : #include <tools/stream.hxx>
      24             : #include <vcl/bitmapex.hxx>
      25             : #include <vcl/graphicfilter.hxx>
      26             : #include <basegfx/matrix/b2dhommatrixtools.hxx>
      27             : #include <drawinglayer/primitive2d/bitmapprimitive2d.hxx>
      28             : #include <drawinglayer/primitive2d/groupprimitive2d.hxx>
      29             : #include <drawinglayer/primitive2d/transformprimitive2d.hxx>
      30             : #include <drawinglayer/primitive2d/maskprimitive2d.hxx>
      31             : #include <basegfx/polygon/b2dpolygontools.hxx>
      32             : #include <basegfx/polygon/b2dpolygon.hxx>
      33             : #include <rtl/uri.hxx>
      34             : #include <drawinglayer/geometry/viewinformation2d.hxx>
      35             : 
      36             : namespace svgio
      37             : {
      38             :     namespace svgreader
      39             :     {
      40         238 :         SvgImageNode::SvgImageNode(
      41             :             SvgDocument& rDocument,
      42             :             SvgNode* pParent)
      43             :         :   SvgNode(SVGTokenRect, rDocument, pParent),
      44             :             maSvgStyleAttributes(*this),
      45             :             maSvgAspectRatio(),
      46             :             mpaTransform(0),
      47             :             maX(0),
      48             :             maY(0),
      49             :             maWidth(0),
      50             :             maHeight(0),
      51             :             maXLink(),
      52             :             maUrl(),
      53             :             maMimeType(),
      54         238 :             maData()
      55             :         {
      56         238 :         }
      57             : 
      58         714 :         SvgImageNode::~SvgImageNode()
      59             :         {
      60         238 :             if(mpaTransform) delete mpaTransform;
      61         476 :         }
      62             : 
      63         474 :         const SvgStyleAttributes* SvgImageNode::getSvgStyleAttributes() const
      64             :         {
      65         474 :             return checkForCssStyle(OUString("image"), maSvgStyleAttributes);
      66             :         }
      67             : 
      68        1148 :         void SvgImageNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent)
      69             :         {
      70             :             // call parent
      71        1148 :             SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
      72             : 
      73             :             // read style attributes
      74        1148 :             maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent, false);
      75             : 
      76             :             // parse own
      77        1148 :             switch(aSVGToken)
      78             :             {
      79             :                 case SVGTokenStyle:
      80             :                 {
      81          10 :                     readLocalCssStyle(aContent);
      82          10 :                     break;
      83             :                 }
      84             :                 case SVGTokenPreserveAspectRatio:
      85             :                 {
      86           0 :                     setSvgAspectRatio(readSvgAspectRatio(aContent));
      87           0 :                     break;
      88             :                 }
      89             :                 case SVGTokenTransform:
      90             :                 {
      91         237 :                     const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
      92             : 
      93         237 :                     if(!aMatrix.isIdentity())
      94             :                     {
      95         237 :                         setTransform(&aMatrix);
      96             :                     }
      97         237 :                     break;
      98             :                 }
      99             :                 case SVGTokenX:
     100             :                 {
     101           1 :                     SvgNumber aNum;
     102             : 
     103           1 :                     if(readSingleNumber(aContent, aNum))
     104             :                     {
     105           1 :                         setX(aNum);
     106             :                     }
     107           1 :                     break;
     108             :                 }
     109             :                 case SVGTokenY:
     110             :                 {
     111           1 :                     SvgNumber aNum;
     112             : 
     113           1 :                     if(readSingleNumber(aContent, aNum))
     114             :                     {
     115           1 :                         setY(aNum);
     116             :                     }
     117           1 :                     break;
     118             :                 }
     119             :                 case SVGTokenWidth:
     120             :                 {
     121         238 :                     SvgNumber aNum;
     122             : 
     123         238 :                     if(readSingleNumber(aContent, aNum))
     124             :                     {
     125         238 :                         if(aNum.isPositive())
     126             :                         {
     127         238 :                             setWidth(aNum);
     128             :                         }
     129             :                     }
     130         238 :                     break;
     131             :                 }
     132             :                 case SVGTokenHeight:
     133             :                 {
     134         238 :                     SvgNumber aNum;
     135             : 
     136         238 :                     if(readSingleNumber(aContent, aNum))
     137             :                     {
     138         238 :                         if(aNum.isPositive())
     139             :                         {
     140         238 :                             setHeight(aNum);
     141             :                         }
     142             :                     }
     143         238 :                     break;
     144             :                 }
     145             :                 case SVGTokenXlinkHref:
     146             :                 {
     147         238 :                     const sal_Int32 nLen(aContent.getLength());
     148             : 
     149         238 :                     if(nLen)
     150             :                     {
     151         238 :                         readImageLink(aContent, maXLink, maUrl, maMimeType, maData);
     152             :                     }
     153         238 :                     break;
     154             :                 }
     155             :                 default:
     156             :                 {
     157         185 :                     break;
     158             :                 }
     159             :             }
     160        1148 :         }
     161             : 
     162         237 :         void extractFromGraphic(
     163             :             const Graphic& rGraphic,
     164             :             drawinglayer::primitive2d::Primitive2DSequence& rEmbedded,
     165             :             basegfx::B2DRange& rViewBox,
     166             :             BitmapEx& rBitmapEx)
     167             :         {
     168         237 :             if(GRAPHIC_BITMAP == rGraphic.GetType())
     169             :             {
     170         237 :                 if(rGraphic.getSvgData().get())
     171             :                 {
     172             :                     // embedded Svg
     173           0 :                     rEmbedded = rGraphic.getSvgData()->getPrimitive2DSequence();
     174             : 
     175             :                     // fill aViewBox
     176           0 :                     rViewBox = rGraphic.getSvgData()->getRange();
     177             :                 }
     178             :                 else
     179             :                 {
     180             :                     // get bitmap
     181         237 :                     rBitmapEx = rGraphic.GetBitmapEx();
     182             :                 }
     183             :             }
     184             :             else
     185             :             {
     186             :                 // evtl. convert to bitmap
     187           0 :                 rBitmapEx = rGraphic.GetBitmapEx();
     188             :             }
     189         237 :         }
     190             : 
     191         237 :         void SvgImageNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool /*bReferenced*/) const
     192             :         {
     193             :             // get size range and create path
     194         237 :             const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
     195             : 
     196         237 :             if(pStyle && getWidth().isSet() && getHeight().isSet())
     197             :             {
     198         237 :                 const double fWidth(getWidth().solve(*this, xcoordinate));
     199         237 :                 const double fHeight(getHeight().solve(*this, ycoordinate));
     200             : 
     201         237 :                 if(fWidth > 0.0 && fHeight > 0.0)
     202             :                 {
     203         237 :                     BitmapEx aBitmapEx;
     204         474 :                     drawinglayer::primitive2d::Primitive2DSequence aNewTarget;
     205             : 
     206             :                     // prepare Target and ViewBox for evtl. AspectRatio mappings
     207         237 :                     const double fX(getX().isSet() ? getX().solve(*this, xcoordinate) : 0.0);
     208         237 :                     const double fY(getY().isSet() ? getY().solve(*this, ycoordinate) : 0.0);
     209         237 :                     const basegfx::B2DRange aTarget(fX, fY, fX + fWidth, fY + fHeight);
     210         237 :                     basegfx::B2DRange aViewBox(aTarget);
     211             : 
     212         237 :                     if(!maMimeType.isEmpty() && !maData.isEmpty())
     213             :                     {
     214             :                         // use embedded base64 encoded data
     215         237 :                         ::com::sun::star::uno::Sequence< sal_Int8 > aPass;
     216         237 :                         ::sax::Converter::decodeBase64(aPass, maData);
     217             : 
     218         237 :                         if(aPass.hasElements())
     219             :                         {
     220         237 :                             SvMemoryStream aStream(aPass.getArray(), aPass.getLength(), STREAM_READ);
     221         474 :                             Graphic aGraphic;
     222             : 
     223         711 :                             if(GRFILTER_OK == GraphicFilter::GetGraphicFilter().ImportGraphic(
     224             :                                 aGraphic,
     225             :                                 OUString(),
     226         711 :                                 aStream))
     227             :                             {
     228         237 :                                 extractFromGraphic(aGraphic, aNewTarget, aViewBox, aBitmapEx);
     229         237 :                             }
     230         237 :                         }
     231             :                     }
     232           0 :                     else if(!maUrl.isEmpty())
     233             :                     {
     234           0 :                         const OUString& rPath = getDocument().getAbsolutePath();
     235           0 :                         OUString aAbsUrl;
     236             :                         try {
     237           0 :                             aAbsUrl = rtl::Uri::convertRelToAbs(rPath, maUrl);
     238           0 :                         } catch (rtl::MalformedUriException & e) {
     239             :                             SAL_WARN(
     240             :                                 "svg",
     241             :                                 "caught rtl::MalformedUriException \""
     242             :                                     << e.getMessage() << "\"");
     243             :                         }
     244             : 
     245           0 :                         if (!aAbsUrl.isEmpty())
     246             :                         {
     247           0 :                             SvFileStream aStream(aAbsUrl, STREAM_STD_READ);
     248           0 :                             Graphic aGraphic;
     249             : 
     250           0 :                             if(GRFILTER_OK == GraphicFilter::GetGraphicFilter().ImportGraphic(
     251             :                                    aGraphic,
     252             :                                    aAbsUrl,
     253           0 :                                    aStream))
     254             :                             {
     255           0 :                                 extractFromGraphic(aGraphic, aNewTarget, aViewBox, aBitmapEx);
     256           0 :                             }
     257           0 :                         }
     258             :                     }
     259           0 :                     else if(!maXLink.isEmpty())
     260             :                     {
     261           0 :                         const SvgNode* mpXLink = getDocument().findSvgNodeById(maXLink);
     262             : 
     263           0 :                         if(mpXLink && Display_none != mpXLink->getDisplay())
     264             :                         {
     265           0 :                             mpXLink->decomposeSvgNode(aNewTarget, true);
     266             : 
     267           0 :                             if(aNewTarget.hasElements())
     268             :                             {
     269             :                                 aViewBox = drawinglayer::primitive2d::getB2DRangeFromPrimitive2DSequence(
     270             :                                     aNewTarget,
     271           0 :                                     drawinglayer::geometry::ViewInformation2D());
     272             :                             }
     273             :                         }
     274             :                     }
     275             : 
     276         237 :                     if(!aBitmapEx.IsEmpty())
     277             :                     {
     278             :                         // create content from created bitmap
     279         237 :                         aNewTarget.realloc(1);
     280         711 :                         aNewTarget[0] = new drawinglayer::primitive2d::BitmapPrimitive2D(
     281             :                             aBitmapEx,
     282         474 :                             basegfx::B2DHomMatrix());
     283             : 
     284             :                         // fill aViewBox. No size set yet, use unit size
     285         237 :                         aViewBox = basegfx::B2DRange(0.0, 0.0, 1.0, 1.0);
     286             :                     }
     287             : 
     288         237 :                     if(aNewTarget.hasElements())
     289             :                     {
     290         237 :                         if(aTarget.equal(aViewBox))
     291             :                         {
     292             :                             // just add to rTarget
     293           0 :                             drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(rTarget, aNewTarget);
     294             :                         }
     295             :                         else
     296             :                         {
     297             :                             // create mapping
     298         237 :                             const SvgAspectRatio& rRatio = getSvgAspectRatio();
     299             : 
     300         237 :                             if(rRatio.isSet())
     301             :                             {
     302             :                                 // let mapping be created from SvgAspectRatio
     303           0 :                                 const basegfx::B2DHomMatrix aEmbeddingTransform(rRatio.createMapping(aTarget, aViewBox));
     304             : 
     305           0 :                                 if(!aEmbeddingTransform.isIdentity())
     306             :                                 {
     307             :                                     const drawinglayer::primitive2d::Primitive2DReference xRef(
     308             :                                         new drawinglayer::primitive2d::TransformPrimitive2D(
     309             :                                             aEmbeddingTransform,
     310           0 :                                             aNewTarget));
     311             : 
     312           0 :                                     aNewTarget = drawinglayer::primitive2d::Primitive2DSequence(&xRef, 1);
     313             :                                 }
     314             : 
     315           0 :                                 if(!rRatio.isMeetOrSlice())
     316             :                                 {
     317             :                                     // need to embed in MaskPrimitive2D to ensure clipping
     318             :                                     const drawinglayer::primitive2d::Primitive2DReference xMask(
     319             :                                         new drawinglayer::primitive2d::MaskPrimitive2D(
     320             :                                             basegfx::B2DPolyPolygon(
     321             :                                                 basegfx::tools::createPolygonFromRect(aTarget)),
     322           0 :                                             aNewTarget));
     323             : 
     324           0 :                                     aNewTarget = drawinglayer::primitive2d::Primitive2DSequence(&xMask, 1);
     325           0 :                                 }
     326             :                             }
     327             :                             else
     328             :                             {
     329             :                                 // choose default mapping
     330         237 :                                 const basegfx::B2DHomMatrix aEmbeddingTransform(SvgAspectRatio::createLinearMapping(aTarget, aViewBox));
     331             : 
     332         237 :                                 if(!aEmbeddingTransform.isIdentity())
     333             :                                 {
     334             :                                     const drawinglayer::primitive2d::Primitive2DReference xRef(
     335             :                                         new drawinglayer::primitive2d::TransformPrimitive2D(
     336             :                                             aEmbeddingTransform,
     337         237 :                                             aNewTarget));
     338             : 
     339         237 :                                     aNewTarget = drawinglayer::primitive2d::Primitive2DSequence(&xRef, 1);
     340         237 :                                 }
     341             :                             }
     342             : 
     343             :                             // embed and add to rTarget, take local extra-transform into account
     344         237 :                             pStyle->add_postProcess(rTarget, aNewTarget, getTransform());
     345             :                         }
     346         237 :                     }
     347             :                 }
     348             :             }
     349         237 :         }
     350             : 
     351             :     } // end of namespace svgreader
     352          24 : } // end of namespace svgio
     353             : 
     354             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10