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 300 : SvgDocHdl::SvgDocHdl(const OUString& aAbsolutePath)
138 : : maDocument(aAbsolutePath),
139 : mpTarget(0),
140 : maCssContents(),
141 300 : bSkip(false)
142 : {
143 300 : }
144 :
145 600 : 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 600 : }
156 :
157 300 : 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 300 : }
162 :
163 292 : 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 292 : }
168 :
169 11256 : void SvgDocHdl::startElement( const OUString& aName, const uno::Reference< xml::sax::XAttributeList >& xAttribs ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
170 : {
171 11256 : if (bSkip)
172 11256 : return;
173 11256 : if(!aName.isEmpty())
174 : {
175 11256 : const SVGToken aSVGToken(StrToSVGToken(aName, false));
176 :
177 11256 : 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 2159 : mpTarget = new SvgGNode(aSVGToken, maDocument, mpTarget);
193 2159 : mpTarget->parseAttributes(xAttribs);
194 2159 : break;
195 : }
196 : case SVGTokenSvg:
197 : {
198 : /// new node for Svg
199 300 : mpTarget = new SvgSvgNode(maDocument, mpTarget);
200 300 : mpTarget->parseAttributes(xAttribs);
201 300 : 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 1816 : mpTarget = new SvgPathNode(maDocument, mpTarget);
237 1816 : mpTarget->parseAttributes(xAttribs);
238 1816 : 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 134 : mpTarget = new SvgRectNode(maDocument, mpTarget);
258 134 : mpTarget->parseAttributes(xAttribs);
259 134 : 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 4 : SvgStyleNode* pNew = new SvgStyleNode(maDocument, mpTarget);
325 4 : mpTarget = pNew;
326 4 : const sal_uInt32 nAttributes(xAttribs->getLength());
327 :
328 4 : 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 4 : mpTarget->parseAttributes(xAttribs);
340 : }
341 :
342 4 : 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 4 : maCssContents.push_back(OUString());
347 : }
348 4 : 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(
398 : OUString("Unknown Base SvgToken <") +
399 : aName +
400 : OUString("> (!)") );
401 : #endif
402 473 : break;
403 : }
404 : }
405 : }
406 : }
407 :
408 11256 : void SvgDocHdl::endElement( const OUString& aName ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
409 : {
410 11256 : if(!aName.isEmpty())
411 : {
412 11256 : const SVGToken aSVGToken(StrToSVGToken(aName, false));
413 11256 : SvgNode* pWhitespaceCheck(SVGTokenText == aSVGToken ? mpTarget : 0);
414 11256 : SvgStyleNode* pCssStyle(SVGTokenStyle == aSVGToken ? static_cast< SvgStyleNode* >(mpTarget) : 0);
415 11256 : SvgTitleDescNode* pSvgTitleDescNode(SVGTokenTitle == aSVGToken || SVGTokenDesc == aSVGToken ? static_cast< SvgTitleDescNode* >(mpTarget) : 0);
416 :
417 : // if we are in skipping mode and we reach the flowRoot end tag: stop skipping mode
418 11256 : if(bSkip && aSVGToken == SVGTokenFlowRoot)
419 0 : bSkip = false;
420 : // we are in skipping mode: do nothing until we found the flowRoot end tag
421 11256 : else if(bSkip)
422 11256 : return;
423 :
424 11256 : switch(aSVGToken)
425 : {
426 : /// valid tokens for which a new one was created
427 :
428 : /// structural elements
429 : case SVGTokenDefs:
430 : case SVGTokenG:
431 : case SVGTokenSvg:
432 : case SVGTokenSymbol:
433 : case SVGTokenUse:
434 :
435 : /// shape elements
436 : case SVGTokenCircle:
437 : case SVGTokenEllipse:
438 : case SVGTokenLine:
439 : case SVGTokenPath:
440 : case SVGTokenPolygon:
441 : case SVGTokenPolyline:
442 : case SVGTokenRect:
443 : case SVGTokenImage:
444 :
445 : /// title and description
446 : case SVGTokenTitle:
447 : case SVGTokenDesc:
448 :
449 : /// gradients
450 : case SVGTokenLinearGradient:
451 : case SVGTokenRadialGradient:
452 :
453 : /// gradient stops
454 : case SVGTokenStop:
455 :
456 : /// text
457 : case SVGTokenText:
458 : case SVGTokenTspan:
459 : case SVGTokenTextPath:
460 : case SVGTokenTref:
461 :
462 : /// styles (as stylesheets)
463 : case SVGTokenStyle:
464 :
465 : /// structural elements clip-path and mask
466 : case SVGTokenClipPathNode:
467 : case SVGTokenMask:
468 :
469 : /// structural element marker
470 : case SVGTokenMarker:
471 :
472 : /// structural element pattern
473 : case SVGTokenPattern:
474 :
475 : /// content handling after parsing
476 : {
477 10783 : if(mpTarget)
478 : {
479 10783 : if(!mpTarget->getParent())
480 : {
481 : // last element closing, save this tree
482 300 : maDocument.appendNode(mpTarget);
483 : }
484 :
485 10783 : mpTarget = const_cast< SvgNode* >(mpTarget->getParent());
486 : }
487 : else
488 : {
489 : OSL_ENSURE(false, "Closing token, but no context (!)");
490 : }
491 10783 : break;
492 : }
493 : default:
494 : {
495 : /// invalid token, ignore
496 : }
497 : }
498 :
499 11256 : if(pSvgTitleDescNode && mpTarget)
500 : {
501 0 : const OUString aText(pSvgTitleDescNode->getText());
502 :
503 0 : if(!aText.isEmpty())
504 : {
505 0 : if(SVGTokenTitle == aSVGToken)
506 : {
507 0 : mpTarget->parseAttribute(getStrTitle(), aSVGToken, aText);
508 : }
509 : else // if(SVGTokenDesc == aSVGToken)
510 : {
511 0 : mpTarget->parseAttribute(getStrDesc(), aSVGToken, aText);
512 : }
513 0 : }
514 : }
515 :
516 11256 : if(pCssStyle && pCssStyle->isTextCss())
517 : {
518 : // css style parsing
519 4 : if(maCssContents.size())
520 : {
521 : // need to interpret css styles and remember them as StyleSheets
522 : // #125325# Caution! the Css content may contain block comments
523 : // (see http://www.w3.org/wiki/CSS_basics#CSS_comments). These need
524 : // to be removed first
525 4 : const OUString aCommentFreeSource(removeBlockComments(*(maCssContents.end() - 1)));
526 :
527 4 : if(aCommentFreeSource.getLength())
528 : {
529 4 : pCssStyle->addCssStyleSheet(aCommentFreeSource);
530 : }
531 :
532 4 : maCssContents.pop_back();
533 : }
534 : else
535 : {
536 : OSL_ENSURE(false, "Closing CssStyle, but no collector string on stack (!)");
537 : }
538 : }
539 :
540 11256 : if(pWhitespaceCheck)
541 : {
542 : // cleanup read strings
543 0 : whiteSpaceHandling(pWhitespaceCheck, 0);
544 : }
545 : }
546 : }
547 :
548 30624 : void SvgDocHdl::characters( const OUString& aChars ) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
549 : {
550 30624 : const sal_uInt32 nLength(aChars.getLength());
551 :
552 30624 : if(mpTarget && nLength)
553 : {
554 30624 : switch(mpTarget->getType())
555 : {
556 : case SVGTokenText:
557 : case SVGTokenTspan:
558 : case SVGTokenTextPath:
559 : {
560 0 : const SvgNodeVector& rChilds = mpTarget->getChildren();
561 0 : SvgCharacterNode* pTarget = 0;
562 :
563 0 : if(rChilds.size())
564 : {
565 0 : pTarget = dynamic_cast< SvgCharacterNode* >(rChilds[rChilds.size() - 1]);
566 : }
567 :
568 0 : if(pTarget)
569 : {
570 : // concatenate to current character span
571 0 : pTarget->concatenate(aChars);
572 : }
573 : else
574 : {
575 : // add character span as simplified tspan (no arguments)
576 : // as direct child of SvgTextNode/SvgTspanNode/SvgTextPathNode
577 0 : new SvgCharacterNode(maDocument, mpTarget, aChars);
578 : }
579 0 : break;
580 : }
581 : case SVGTokenStyle:
582 : {
583 64 : SvgStyleNode& rSvgStyleNode = static_cast< SvgStyleNode& >(*mpTarget);
584 :
585 64 : if(rSvgStyleNode.isTextCss())
586 : {
587 : // collect characters for css style
588 64 : if(maCssContents.size())
589 : {
590 64 : const OUString aTrimmedChars(aChars.trim());
591 :
592 64 : if(!aTrimmedChars.isEmpty())
593 : {
594 20 : std::vector< OUString >::iterator aString(maCssContents.end() - 1);
595 20 : (*aString) += aTrimmedChars;
596 64 : }
597 : }
598 : else
599 : {
600 : OSL_ENSURE(false, "Closing CssStyle, but no collector string on stack (!)");
601 : }
602 : }
603 64 : break;
604 : }
605 : case SVGTokenTitle:
606 : case SVGTokenDesc:
607 : {
608 0 : SvgTitleDescNode& rSvgTitleDescNode = static_cast< SvgTitleDescNode& >(*mpTarget);
609 :
610 : // add text directly to SvgTitleDescNode
611 0 : rSvgTitleDescNode.concatenate(aChars);
612 0 : break;
613 : }
614 : default:
615 : {
616 : // characters not used by a known node
617 30560 : break;
618 : }
619 : }
620 : }
621 30624 : }
622 :
623 0 : void SvgDocHdl::ignorableWhitespace(const OUString& /*aWhitespaces*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
624 : {
625 0 : }
626 :
627 0 : void SvgDocHdl::processingInstruction(const OUString& /*aTarget*/, const OUString& /*aData*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
628 : {
629 0 : }
630 :
631 300 : void SvgDocHdl::setDocumentLocator(const uno::Reference< xml::sax::XLocator >& /*xLocator*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
632 : {
633 300 : }
634 : } // end of namespace svgreader
635 : } // end of namespace svgio
636 :
637 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|