LCOV - code coverage report
Current view: top level - svgio/source/svgreader - svgdocumenthandler.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 109 184 59.2 %
Date: 2015-06-13 12:38:46 Functions: 9 12 75.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/svgdocumenthandler.hxx>
      21             : #include <svgio/svgreader/svgtoken.hxx>
      22             : #include <svgio/svgreader/svgsvgnode.hxx>
      23             : #include <svgio/svgreader/svggnode.hxx>
      24             : #include <svgio/svgreader/svgnode.hxx>
      25             : #include <svgio/svgreader/svgpathnode.hxx>
      26             : #include <svgio/svgreader/svgrectnode.hxx>
      27             : #include <svgio/svgreader/svggradientnode.hxx>
      28             : #include <svgio/svgreader/svggradientstopnode.hxx>
      29             : #include <svgio/svgreader/svgsymbolnode.hxx>
      30             : #include <svgio/svgreader/svgusenode.hxx>
      31             : #include <svgio/svgreader/svgcirclenode.hxx>
      32             : #include <svgio/svgreader/svgellipsenode.hxx>
      33             : #include <svgio/svgreader/svglinenode.hxx>
      34             : #include <svgio/svgreader/svgpolynode.hxx>
      35             : #include <svgio/svgreader/svgtextnode.hxx>
      36             : #include <svgio/svgreader/svgcharacternode.hxx>
      37             : #include <svgio/svgreader/svgtspannode.hxx>
      38             : #include <svgio/svgreader/svgtrefnode.hxx>
      39             : #include <svgio/svgreader/svgtextpathnode.hxx>
      40             : #include <svgio/svgreader/svgstylenode.hxx>
      41             : #include <svgio/svgreader/svgimagenode.hxx>
      42             : #include <svgio/svgreader/svgclippathnode.hxx>
      43             : #include <svgio/svgreader/svgmasknode.hxx>
      44             : #include <svgio/svgreader/svgmarkernode.hxx>
      45             : #include <svgio/svgreader/svgpatternnode.hxx>
      46             : #include <svgio/svgreader/svgtitledescnode.hxx>
      47             : 
      48             : using namespace com::sun::star;
      49             : 
      50             : namespace
      51             : {
      52           0 :     svgio::svgreader::SvgCharacterNode* whiteSpaceHandling(svgio::svgreader::SvgNode* pNode, svgio::svgreader::SvgCharacterNode* pLast)
      53             :     {
      54           0 :         if(pNode)
      55             :         {
      56           0 :             const svgio::svgreader::SvgNodeVector& rChilds = pNode->getChildren();
      57           0 :             const sal_uInt32 nCount(rChilds.size());
      58             : 
      59           0 :             for(sal_uInt32 a(0); a < nCount; a++)
      60             :             {
      61           0 :                 svgio::svgreader::SvgNode* pCandidate = rChilds[a];
      62             : 
      63           0 :                 if(pCandidate)
      64             :                 {
      65           0 :                     switch(pCandidate->getType())
      66             :                     {
      67             :                         case svgio::svgreader::SVGTokenCharacter:
      68             :                         {
      69             :                             // clean whitespace in text span
      70           0 :                             svgio::svgreader::SvgCharacterNode* pCharNode = static_cast< svgio::svgreader::SvgCharacterNode* >(pCandidate);
      71           0 :                             pCharNode->whiteSpaceHandling();
      72             : 
      73             :                             // pCharNode may have lost all text. If that's the case, ignore
      74             :                             // as invalid character node
      75           0 :                             if(!pCharNode->getText().isEmpty())
      76             :                             {
      77           0 :                                 if(pLast)
      78             :                                 {
      79           0 :                                     bool bAddGap(true);
      80             :                                     static bool bNoGapsForBaselineShift(true);
      81             : 
      82           0 :                                     if(bNoGapsForBaselineShift)
      83             :                                     {
      84             :                                         // With this option a baseline shift between two char parts ('words')
      85             :                                         // will not add a space 'gap' to the end of the (non-last) word. This
      86             :                                         // seems to be the standard behaviour, see last bugdoc attached #122524#
      87           0 :                                         const svgio::svgreader::SvgStyleAttributes* pStyleLast = pLast->getSvgStyleAttributes();
      88           0 :                                         const svgio::svgreader::SvgStyleAttributes* pStyleCurrent = pCandidate->getSvgStyleAttributes();
      89             : 
      90           0 :                                         if(pStyleLast && pStyleCurrent && pStyleLast->getBaselineShift() != pStyleCurrent->getBaselineShift())
      91             :                                         {
      92           0 :                                             bAddGap = false;
      93             :                                         }
      94             :                                     }
      95             : 
      96             :                                     // add in-between whitespace (single space) to last
      97             :                                     // known character node
      98           0 :                                     if(bAddGap)
      99             :                                     {
     100           0 :                                         pLast->addGap();
     101             :                                     }
     102             :                                 }
     103             : 
     104             :                                 // remember new last corected character node
     105           0 :                                 pLast = pCharNode;
     106             :                             }
     107           0 :                             break;
     108             :                         }
     109             :                         case svgio::svgreader::SVGTokenTspan:
     110             :                         case svgio::svgreader::SVGTokenTextPath:
     111             :                         case svgio::svgreader::SVGTokenTref:
     112             :                         {
     113             :                             // recursively clean whitespaces in subhierarchy
     114           0 :                             pLast = whiteSpaceHandling(pCandidate, pLast);
     115           0 :                             break;
     116             :                         }
     117             :                         default:
     118             :                         {
     119             :                             OSL_ENSURE(false, "Unexpected token inside SVGTokenText (!)");
     120           0 :                             break;
     121             :                         }
     122             :                     }
     123             :                 }
     124             :             }
     125             :         }
     126             : 
     127           0 :         return pLast;
     128             :     }
     129             : }
     130             : 
     131             : 
     132             : 
     133             : namespace svgio
     134             : {
     135             :     namespace svgreader
     136             :     {
     137         299 :         SvgDocHdl::SvgDocHdl(const OUString& aAbsolutePath)
     138             :         :   maDocument(aAbsolutePath),
     139             :             mpTarget(0),
     140             :             maCssContents(),
     141         299 :             bSkip(false)
     142             :         {
     143         299 :         }
     144             : 
     145         598 :         SvgDocHdl::~SvgDocHdl()
     146             :         {
     147             : #ifdef DBG_UTIL
     148             :             if(mpTarget)
     149             :             {
     150             :                 OSL_ENSURE(false, "SvgDocHdl destructed with active target (!)");
     151             :                 delete mpTarget;
     152             :             }
     153             :             OSL_ENSURE(!maCssContents.size(), "SvgDocHdl destructed with active css style stack entry (!)");
     154             : #endif
     155         598 :         }
     156             : 
     157         299 :         void SvgDocHdl::startDocument(  ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     158             :         {
     159             :             OSL_ENSURE(!mpTarget, "Already a target at document start (!)");
     160             :             OSL_ENSURE(!maCssContents.size(), "SvgDocHdl startDocument with active css style stack entry (!)");
     161         299 :         }
     162             : 
     163         295 :         void SvgDocHdl::endDocument(  ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     164             :         {
     165             :             OSL_ENSURE(!mpTarget, "Still a target at document end (!)");
     166             :             OSL_ENSURE(!maCssContents.size(), "SvgDocHdl endDocument with active css style stack entry (!)");
     167         295 :         }
     168             : 
     169       11250 :         void SvgDocHdl::startElement( const OUString& aName, const uno::Reference< xml::sax::XAttributeList >& xAttribs ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     170             :         {
     171       11250 :             if (bSkip)
     172       11250 :                 return;
     173       11250 :             if(!aName.isEmpty())
     174             :             {
     175       11250 :                 const SVGToken aSVGToken(StrToSVGToken(aName, false));
     176             : 
     177       11250 :                 switch(aSVGToken)
     178             :                 {
     179             :                     /// structural elements
     180             :                     case SVGTokenSymbol:
     181             :                     {
     182             :                         /// new basic node for Symbol. Content gets scanned, but
     183             :                         /// will not be decomposed (see SvgNode::decomposeSvgNode and bReferenced)
     184           0 :                         mpTarget = new SvgSymbolNode(maDocument, mpTarget);
     185           0 :                         mpTarget->parseAttributes(xAttribs);
     186           0 :                         break;
     187             :                     }
     188             :                     case SVGTokenDefs:
     189             :                     case SVGTokenG:
     190             :                     {
     191             :                         /// new node for Defs/G
     192        2157 :                         mpTarget = new SvgGNode(aSVGToken, maDocument, mpTarget);
     193        2157 :                         mpTarget->parseAttributes(xAttribs);
     194        2157 :                         break;
     195             :                     }
     196             :                     case SVGTokenSvg:
     197             :                     {
     198             :                         /// new node for Svg
     199         299 :                         mpTarget = new SvgSvgNode(maDocument, mpTarget);
     200         299 :                         mpTarget->parseAttributes(xAttribs);
     201         299 :                         break;
     202             :                     }
     203             :                     case SVGTokenUse:
     204             :                     {
     205             :                         /// new node for Use
     206         130 :                         mpTarget = new SvgUseNode(maDocument, mpTarget);
     207         130 :                         mpTarget->parseAttributes(xAttribs);
     208         130 :                         break;
     209             :                     }
     210             : 
     211             :                     /// shape elements
     212             :                     case SVGTokenCircle:
     213             :                     {
     214             :                         /// new node for Circle
     215         208 :                         mpTarget = new SvgCircleNode(maDocument, mpTarget);
     216         208 :                         mpTarget->parseAttributes(xAttribs);
     217         208 :                         break;
     218             :                     }
     219             :                     case SVGTokenEllipse:
     220             :                     {
     221             :                         /// new node for Ellipse
     222          66 :                         mpTarget = new SvgEllipseNode(maDocument, mpTarget);
     223          66 :                         mpTarget->parseAttributes(xAttribs);
     224          66 :                         break;
     225             :                     }
     226             :                     case SVGTokenLine:
     227             :                     {
     228             :                         /// new node for Line
     229           3 :                         mpTarget = new SvgLineNode(maDocument, mpTarget);
     230           3 :                         mpTarget->parseAttributes(xAttribs);
     231           3 :                         break;
     232             :                     }
     233             :                     case SVGTokenPath:
     234             :                     {
     235             :                         /// new node for Path
     236        1819 :                         mpTarget = new SvgPathNode(maDocument, mpTarget);
     237        1819 :                         mpTarget->parseAttributes(xAttribs);
     238        1819 :                         break;
     239             :                     }
     240             :                     case SVGTokenPolygon:
     241             :                     {
     242             :                         /// new node for Polygon
     243         673 :                         mpTarget = new SvgPolyNode(maDocument, mpTarget, false);
     244         673 :                         mpTarget->parseAttributes(xAttribs);
     245         673 :                         break;
     246             :                     }
     247             :                     case SVGTokenPolyline:
     248             :                     {
     249             :                         /// new node for Polyline
     250          37 :                         mpTarget = new SvgPolyNode(maDocument, mpTarget, true);
     251          37 :                         mpTarget->parseAttributes(xAttribs);
     252          37 :                         break;
     253             :                     }
     254             :                     case SVGTokenRect:
     255             :                     {
     256             :                         /// new node for Rect
     257         130 :                         mpTarget = new SvgRectNode(maDocument, mpTarget);
     258         130 :                         mpTarget->parseAttributes(xAttribs);
     259         130 :                         break;
     260             :                     }
     261             :                     case SVGTokenImage:
     262             :                     {
     263             :                         /// new node for Image
     264         238 :                         mpTarget = new SvgImageNode(maDocument, mpTarget);
     265         238 :                         mpTarget->parseAttributes(xAttribs);
     266         238 :                         break;
     267             :                     }
     268             : 
     269             :                     /// title and description
     270             :                     case SVGTokenTitle:
     271             :                     case SVGTokenDesc:
     272             :                     {
     273             :                         /// new node for Title and/or Desc
     274           0 :                         mpTarget = new SvgTitleDescNode(aSVGToken, maDocument, mpTarget);
     275           0 :                         break;
     276             :                     }
     277             : 
     278             :                     /// gradients
     279             :                     case SVGTokenLinearGradient:
     280             :                     case SVGTokenRadialGradient:
     281             :                     {
     282        1300 :                         mpTarget = new SvgGradientNode(aSVGToken, maDocument, mpTarget);
     283        1300 :                         mpTarget->parseAttributes(xAttribs);
     284        1300 :                         break;
     285             :                     }
     286             : 
     287             :                     /// gradient stops
     288             :                     case SVGTokenStop:
     289             :                     {
     290        3433 :                         mpTarget = new SvgGradientStopNode(maDocument, mpTarget);
     291        3433 :                         mpTarget->parseAttributes(xAttribs);
     292        3433 :                         break;
     293             :                     }
     294             : 
     295             :                     /// text
     296             :                     case SVGTokenText:
     297             :                     {
     298           0 :                         mpTarget = new SvgTextNode(maDocument, mpTarget);
     299           0 :                         mpTarget->parseAttributes(xAttribs);
     300           0 :                         break;
     301             :                     }
     302             :                     case SVGTokenTspan:
     303             :                     {
     304           0 :                         mpTarget = new SvgTspanNode(maDocument, mpTarget);
     305           0 :                         mpTarget->parseAttributes(xAttribs);
     306           0 :                         break;
     307             :                     }
     308             :                     case SVGTokenTref:
     309             :                     {
     310           0 :                         mpTarget = new SvgTrefNode(maDocument, mpTarget);
     311           0 :                         mpTarget->parseAttributes(xAttribs);
     312           0 :                         break;
     313             :                     }
     314             :                     case SVGTokenTextPath:
     315             :                     {
     316           0 :                         mpTarget = new SvgTextPathNode(maDocument, mpTarget);
     317           0 :                         mpTarget->parseAttributes(xAttribs);
     318           0 :                         break;
     319             :                     }
     320             : 
     321             :                     /// styles (as stylesheets)
     322             :                     case SVGTokenStyle:
     323             :                     {
     324           2 :                         SvgStyleNode* pNew = new SvgStyleNode(maDocument, mpTarget);
     325           2 :                         mpTarget = pNew;
     326           2 :                         const sal_uInt32 nAttributes(xAttribs->getLength());
     327             : 
     328           2 :                         if(0 == nAttributes)
     329             :                         {
     330             :                             // #i125326# no attributes, thus also no type="text/css". This is allowed to be missing,
     331             :                             // thus do mark this style as CssStyle. This is required to read the contained
     332             :                             // text (which defines the css style)
     333           0 :                             pNew->setTextCss(true);
     334             :                         }
     335             :                         else
     336             :                         {
     337             :                             // #i125326# there are attributes, read them. This will set isTextCss to true if
     338             :                             // a type="text/css" is contained as exact match, else not
     339           2 :                             mpTarget->parseAttributes(xAttribs);
     340             :                         }
     341             : 
     342           2 :                         if(pNew->isTextCss())
     343             :                         {
     344             :                             // if it is a Css style, allow reading text between the start and end tag (see
     345             :                             // SvgDocHdl::characters for details)
     346           2 :                             maCssContents.push_back(OUString());
     347             :                         }
     348           2 :                         break;
     349             :                     }
     350             : 
     351             :                     /// structural elements clip-path and mask. Content gets scanned, but
     352             :                     /// will not be decomposed (see SvgNode::decomposeSvgNode and bReferenced)
     353             :                     case SVGTokenClipPathNode:
     354             :                     {
     355             :                         /// new node for ClipPath
     356          93 :                         mpTarget = new SvgClipPathNode(maDocument, mpTarget);
     357          93 :                         mpTarget->parseAttributes(xAttribs);
     358          93 :                         break;
     359             :                     }
     360             :                     case SVGTokenMask:
     361             :                     {
     362             :                         /// new node for Mask
     363         189 :                         mpTarget = new SvgMaskNode(maDocument, mpTarget);
     364         189 :                         mpTarget->parseAttributes(xAttribs);
     365         189 :                         break;
     366             :                     }
     367             : 
     368             :                     /// structural element marker
     369             :                     case SVGTokenMarker:
     370             :                     {
     371             :                         /// new node for marker
     372           0 :                         mpTarget = new SvgMarkerNode(maDocument, mpTarget);
     373           0 :                         mpTarget->parseAttributes(xAttribs);
     374           0 :                         break;
     375             :                     }
     376             : 
     377             :                     /// structural element pattern
     378             :                     case SVGTokenPattern:
     379             :                     {
     380             :                         /// new node for pattern
     381           0 :                         mpTarget = new SvgPatternNode(maDocument, mpTarget);
     382           0 :                         mpTarget->parseAttributes(xAttribs);
     383           0 :                         break;
     384             :                     }
     385             : 
     386             :                     // ignore FlowRoot and child nodes
     387             :                     case SVGTokenFlowRoot:
     388             :                     {
     389           0 :                         bSkip = true;
     390           0 :                         break;
     391             :                     }
     392             : 
     393             :                     default:
     394             :                     {
     395             :                         /// invalid token, ignore
     396             : #ifdef DBG_UTIL
     397             :                         myAssert( "Unknown Base SvgToken <" + aName + "> (!)" );
     398             : #endif
     399         473 :                         break;
     400             :                     }
     401             :                 }
     402             :             }
     403             :         }
     404             : 
     405       11250 :         void SvgDocHdl::endElement( const OUString& aName ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     406             :         {
     407       11250 :             if(!aName.isEmpty())
     408             :             {
     409       11250 :                 const SVGToken aSVGToken(StrToSVGToken(aName, false));
     410       11250 :                 SvgNode* pWhitespaceCheck(SVGTokenText == aSVGToken ? mpTarget : 0);
     411       11250 :                 SvgStyleNode* pCssStyle(SVGTokenStyle == aSVGToken ? static_cast< SvgStyleNode* >(mpTarget) : 0);
     412       11250 :                 SvgTitleDescNode* pSvgTitleDescNode(SVGTokenTitle == aSVGToken || SVGTokenDesc == aSVGToken ? static_cast< SvgTitleDescNode* >(mpTarget) : 0);
     413             : 
     414             :                 // if we are in skipping mode and we reach the flowRoot end tag: stop skipping mode
     415       11250 :                 if(bSkip && aSVGToken == SVGTokenFlowRoot)
     416           0 :                     bSkip = false;
     417             :                 // we are in skipping mode: do nothing until we found the flowRoot end tag
     418       11250 :                 else if(bSkip)
     419       11250 :                     return;
     420             : 
     421       11250 :                 switch(aSVGToken)
     422             :                 {
     423             :                     /// valid tokens for which a new one was created
     424             : 
     425             :                     /// structural elements
     426             :                     case SVGTokenDefs:
     427             :                     case SVGTokenG:
     428             :                     case SVGTokenSvg:
     429             :                     case SVGTokenSymbol:
     430             :                     case SVGTokenUse:
     431             : 
     432             :                     /// shape elements
     433             :                     case SVGTokenCircle:
     434             :                     case SVGTokenEllipse:
     435             :                     case SVGTokenLine:
     436             :                     case SVGTokenPath:
     437             :                     case SVGTokenPolygon:
     438             :                     case SVGTokenPolyline:
     439             :                     case SVGTokenRect:
     440             :                     case SVGTokenImage:
     441             : 
     442             :                     /// title and description
     443             :                     case SVGTokenTitle:
     444             :                     case SVGTokenDesc:
     445             : 
     446             :                     /// gradients
     447             :                     case SVGTokenLinearGradient:
     448             :                     case SVGTokenRadialGradient:
     449             : 
     450             :                     /// gradient stops
     451             :                     case SVGTokenStop:
     452             : 
     453             :                     /// text
     454             :                     case SVGTokenText:
     455             :                     case SVGTokenTspan:
     456             :                     case SVGTokenTextPath:
     457             :                     case SVGTokenTref:
     458             : 
     459             :                     /// styles (as stylesheets)
     460             :                     case SVGTokenStyle:
     461             : 
     462             :                     /// structural elements clip-path and mask
     463             :                     case SVGTokenClipPathNode:
     464             :                     case SVGTokenMask:
     465             : 
     466             :                     /// structural element marker
     467             :                     case SVGTokenMarker:
     468             : 
     469             :                     /// structural element pattern
     470             :                     case SVGTokenPattern:
     471             : 
     472             :                     /// content handling after parsing
     473             :                     {
     474       10777 :                         if(mpTarget)
     475             :                         {
     476       10777 :                             if(!mpTarget->getParent())
     477             :                             {
     478             :                                 // last element closing, save this tree
     479         299 :                                 maDocument.appendNode(mpTarget);
     480             :                             }
     481             : 
     482       10777 :                             mpTarget = const_cast< SvgNode* >(mpTarget->getParent());
     483             :                         }
     484             :                         else
     485             :                         {
     486             :                             OSL_ENSURE(false, "Closing token, but no context (!)");
     487             :                         }
     488       10777 :                         break;
     489             :                     }
     490             :                     default:
     491             :                     {
     492             :                         /// invalid token, ignore
     493             :                     }
     494             :                 }
     495             : 
     496       11250 :                 if(pSvgTitleDescNode && mpTarget)
     497             :                 {
     498           0 :                     const OUString aText(pSvgTitleDescNode->getText());
     499             : 
     500           0 :                     if(!aText.isEmpty())
     501             :                     {
     502           0 :                         if(SVGTokenTitle == aSVGToken)
     503             :                         {
     504           0 :                             mpTarget->parseAttribute(getStrTitle(), aSVGToken, aText);
     505             :                         }
     506             :                         else // if(SVGTokenDesc == aSVGToken)
     507             :                         {
     508           0 :                             mpTarget->parseAttribute(getStrDesc(), aSVGToken, aText);
     509             :                         }
     510           0 :                     }
     511             :                 }
     512             : 
     513       11250 :                 if(pCssStyle && pCssStyle->isTextCss())
     514             :                 {
     515             :                     // css style parsing
     516           2 :                     if(maCssContents.size())
     517             :                     {
     518             :                         // need to interpret css styles and remember them as StyleSheets
     519             :                         // #125325# Caution! the Css content may contain block comments
     520             :                         // (see http://www.w3.org/wiki/CSS_basics#CSS_comments). These need
     521             :                         // to be removed first
     522           2 :                         const OUString aCommentFreeSource(removeBlockComments(*(maCssContents.end() - 1)));
     523             : 
     524           2 :                         if(aCommentFreeSource.getLength())
     525             :                         {
     526           2 :                             pCssStyle->addCssStyleSheet(aCommentFreeSource);
     527             :                         }
     528             : 
     529           2 :                         maCssContents.pop_back();
     530             :                     }
     531             :                     else
     532             :                     {
     533             :                         OSL_ENSURE(false, "Closing CssStyle, but no collector string on stack (!)");
     534             :                     }
     535             :                 }
     536             : 
     537       11250 :                 if(pWhitespaceCheck)
     538             :                 {
     539             :                     // cleanup read strings
     540           0 :                     whiteSpaceHandling(pWhitespaceCheck, 0);
     541             :                 }
     542             :             }
     543             :         }
     544             : 
     545       30574 :         void SvgDocHdl::characters( const OUString& aChars ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     546             :         {
     547       30574 :             const sal_uInt32 nLength(aChars.getLength());
     548             : 
     549       30574 :             if(mpTarget && nLength)
     550             :             {
     551       30574 :                 switch(mpTarget->getType())
     552             :                 {
     553             :                     case SVGTokenText:
     554             :                     case SVGTokenTspan:
     555             :                     case SVGTokenTextPath:
     556             :                     {
     557           0 :                         const SvgNodeVector& rChilds = mpTarget->getChildren();
     558           0 :                         SvgCharacterNode* pTarget = 0;
     559             : 
     560           0 :                         if(rChilds.size())
     561             :                         {
     562           0 :                             pTarget = dynamic_cast< SvgCharacterNode* >(rChilds[rChilds.size() - 1]);
     563             :                         }
     564             : 
     565           0 :                         if(pTarget)
     566             :                         {
     567             :                             // concatenate to current character span
     568           0 :                             pTarget->concatenate(aChars);
     569             :                         }
     570             :                         else
     571             :                         {
     572             :                             // add character span as simplified tspan (no arguments)
     573             :                             // as direct child of SvgTextNode/SvgTspanNode/SvgTextPathNode
     574           0 :                             new SvgCharacterNode(maDocument, mpTarget, aChars);
     575             :                         }
     576           0 :                         break;
     577             :                     }
     578             :                     case SVGTokenStyle:
     579             :                     {
     580          32 :                         SvgStyleNode& rSvgStyleNode = static_cast< SvgStyleNode& >(*mpTarget);
     581             : 
     582          32 :                         if(rSvgStyleNode.isTextCss())
     583             :                         {
     584             :                             // collect characters for css style
     585          32 :                             if(maCssContents.size())
     586             :                             {
     587          32 :                                 const OUString aTrimmedChars(aChars.trim());
     588             : 
     589          32 :                                 if(!aTrimmedChars.isEmpty())
     590             :                                 {
     591          10 :                                     std::vector< OUString >::iterator aString(maCssContents.end() - 1);
     592          10 :                                     (*aString) += aTrimmedChars;
     593          32 :                                 }
     594             :                             }
     595             :                             else
     596             :                             {
     597             :                                 OSL_ENSURE(false, "Closing CssStyle, but no collector string on stack (!)");
     598             :                             }
     599             :                         }
     600          32 :                         break;
     601             :                     }
     602             :                     case SVGTokenTitle:
     603             :                     case SVGTokenDesc:
     604             :                     {
     605           0 :                         SvgTitleDescNode& rSvgTitleDescNode = static_cast< SvgTitleDescNode& >(*mpTarget);
     606             : 
     607             :                         // add text directly to SvgTitleDescNode
     608           0 :                         rSvgTitleDescNode.concatenate(aChars);
     609           0 :                         break;
     610             :                     }
     611             :                     default:
     612             :                     {
     613             :                         // characters not used by a known node
     614       30542 :                         break;
     615             :                     }
     616             :                 }
     617             :             }
     618       30574 :         }
     619             : 
     620           0 :         void SvgDocHdl::ignorableWhitespace(const OUString& /*aWhitespaces*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     621             :         {
     622           0 :         }
     623             : 
     624           0 :         void SvgDocHdl::processingInstruction(const OUString& /*aTarget*/, const OUString& /*aData*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     625             :         {
     626           0 :         }
     627             : 
     628         299 :         void SvgDocHdl::setDocumentLocator(const uno::Reference< xml::sax::XLocator >& /*xLocator*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
     629             :         {
     630         299 :         }
     631             :     } // end of namespace svgreader
     632             : } // end of namespace svgio
     633             : 
     634             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11