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 "oox/ppt/timenode.hxx"
21 :
22 : #include <com/sun/star/beans/XPropertySet.hpp>
23 : #include <com/sun/star/beans/NamedValue.hpp>
24 : #include <com/sun/star/container/XEnumerationAccess.hpp>
25 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
26 : #include <com/sun/star/frame/XModel.hpp>
27 : #include <com/sun/star/animations/XAnimateColor.hpp>
28 : #include <com/sun/star/animations/XAnimateMotion.hpp>
29 : #include <com/sun/star/animations/XAnimateTransform.hpp>
30 : #include <com/sun/star/animations/XCommand.hpp>
31 : #include <com/sun/star/animations/XIterateContainer.hpp>
32 : #include <com/sun/star/animations/XAnimationNodeSupplier.hpp>
33 : #include <com/sun/star/animations/XTimeContainer.hpp>
34 : #include <com/sun/star/animations/AnimationNodeType.hpp>
35 : #include <com/sun/star/animations/Event.hpp>
36 : #include <com/sun/star/animations/EventTrigger.hpp>
37 : #include <com/sun/star/presentation/EffectNodeType.hpp>
38 : #include <com/sun/star/uno/XComponentContext.hpp>
39 :
40 : #include "oox/helper/helper.hxx"
41 : #include "oox/core/xmlfilterbase.hxx"
42 : #include "sal/log.hxx"
43 :
44 : using namespace ::oox::core;
45 : using namespace ::com::sun::star::beans;
46 : using namespace ::com::sun::star::container;
47 : using namespace ::com::sun::star::uno;
48 : using namespace ::com::sun::star::lang;
49 : using namespace ::com::sun::star::animations;
50 : using namespace ::com::sun::star::frame;
51 : using namespace ::com::sun::star::presentation;
52 :
53 : namespace oox { namespace ppt {
54 :
55 54 : OUString TimeNode::getServiceName( sal_Int16 nNodeType )
56 : {
57 54 : OUString sServiceName;
58 54 : switch( nNodeType )
59 : {
60 : case AnimationNodeType::PAR:
61 28 : sServiceName = "com.sun.star.animations.ParallelTimeContainer";
62 28 : break;
63 : case AnimationNodeType::SEQ:
64 8 : sServiceName = "com.sun.star.animations.SequenceTimeContainer";
65 8 : break;
66 : case AnimationNodeType::ANIMATE:
67 0 : sServiceName = "com.sun.star.animations.Animate";
68 0 : break;
69 : case AnimationNodeType::ANIMATECOLOR:
70 0 : sServiceName = "com.sun.star.animations.AnimateColor";
71 0 : break;
72 : case AnimationNodeType::TRANSITIONFILTER:
73 4 : sServiceName = "com.sun.star.animations.TransitionFilter";
74 4 : break;
75 : case AnimationNodeType::ANIMATEMOTION:
76 0 : sServiceName = "com.sun.star.animations.AnimateMotion";
77 0 : break;
78 : case AnimationNodeType::ANIMATETRANSFORM:
79 0 : sServiceName = "com.sun.star.animations.AnimateTransform";
80 0 : break;
81 : case AnimationNodeType::COMMAND:
82 5 : sServiceName = "com.sun.star.animations.Command";
83 5 : break;
84 : case AnimationNodeType::SET:
85 7 : sServiceName = "com.sun.star.animations.AnimateSet";
86 7 : break;
87 : case AnimationNodeType::AUDIO:
88 2 : sServiceName = "com.sun.star.animations.Audio";
89 2 : break;
90 : default:
91 : SAL_INFO("oox.ppt","OOX: uhandled type " << nNodeType );
92 0 : break;
93 : }
94 54 : return sServiceName;
95 : }
96 :
97 89 : TimeNode::TimeNode( sal_Int16 nNodeType )
98 : : mnNodeType( nNodeType )
99 89 : , mbHasEndSyncValue( false )
100 : {
101 89 : }
102 :
103 178 : TimeNode::~TimeNode()
104 : {
105 178 : }
106 :
107 : // BEGIN CUT&PASTE from sd/source/filter/ppt/pptinanimations.hxx
108 :
109 7 : static void fixMainSequenceTiming( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode )
110 : {
111 : try
112 : {
113 7 : bool bFirst = true;
114 7 : Reference< XEnumerationAccess > xEA( xNode, UNO_QUERY_THROW );
115 14 : Reference< XEnumeration > xE( xEA->createEnumeration(), UNO_QUERY_THROW );
116 21 : while( xE->hasMoreElements() )
117 : {
118 : // click node
119 7 : Reference< XAnimationNode > xClickNode( xE->nextElement(), UNO_QUERY );
120 :
121 14 : Event aEvent;
122 7 : aEvent.Trigger = EventTrigger::ON_NEXT;
123 7 : aEvent.Repeat = 0;
124 7 : xClickNode->setBegin( makeAny( aEvent ) );
125 :
126 7 : if( bFirst )
127 : {
128 4 : bFirst = false;
129 4 : Reference< XEnumerationAccess > xEA2( xClickNode, UNO_QUERY_THROW );
130 8 : Reference< XEnumeration > xE2( xEA2->createEnumeration(), UNO_QUERY_THROW );
131 4 : if( xE2->hasMoreElements() )
132 : {
133 : // with node
134 4 : xE2->nextElement() >>= xEA2;
135 4 : if( xEA2.is() )
136 4 : xE2.set(xEA2->createEnumeration(), css::uno::UNO_QUERY);
137 : else
138 0 : xE2.clear();
139 :
140 4 : if( xE2.is() && xE2->hasMoreElements() )
141 : {
142 4 : Reference< XAnimationNode > xEffectNode( xE2->nextElement(), UNO_QUERY_THROW );
143 8 : const Sequence< NamedValue > aUserData( xEffectNode->getUserData() );
144 4 : const NamedValue* p = aUserData.getConstArray();
145 4 : sal_Int32 nLength = aUserData.getLength();
146 12 : while( nLength-- )
147 : {
148 7 : if ( p->Name == "node-type" )
149 : {
150 4 : sal_Int16 nNodeType = 0;
151 4 : p->Value >>= nNodeType;
152 4 : if( nNodeType != ::com::sun::star::presentation::EffectNodeType::ON_CLICK )
153 : {
154 : // first effect does not start on click, so correct
155 : // first click nodes begin to 0s
156 3 : xClickNode->setBegin( makeAny( (double)0.0 ) );
157 3 : break;
158 : }
159 : }
160 4 : p++;
161 4 : }
162 : }
163 4 : }
164 : }
165 14 : }
166 : }
167 0 : catch( Exception& e )
168 : {
169 : (void)e;
170 : SAL_INFO("oox.ppt","fixMainSequenceTiming(), exception caught!" );
171 : }
172 7 : }
173 :
174 1 : static void fixInteractiveSequenceTiming( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode )
175 : {
176 : try
177 : {
178 1 : Any aBegin( xNode->getBegin() );
179 2 : Any aEmpty;
180 1 : xNode->setBegin( aEmpty );
181 :
182 2 : Reference< XEnumerationAccess > xEA( xNode, UNO_QUERY_THROW );
183 2 : Reference< XEnumeration > xE( xEA->createEnumeration(), UNO_QUERY_THROW );
184 3 : while( xE->hasMoreElements() )
185 : {
186 : // click node
187 1 : Reference< XAnimationNode > xClickNode( xE->nextElement(), UNO_QUERY );
188 1 : xClickNode->setBegin( aBegin );
189 2 : }
190 : }
191 0 : catch( Exception& e )
192 : {
193 : (void)e;
194 : SAL_INFO("oox.ppt","fixInteractiveSequenceTiming(), exception caught!" );
195 : }
196 1 : }
197 :
198 : // END CUT&PASTE
199 :
200 54 : void TimeNode::addNode( const XmlFilterBase& rFilter, const Reference< XAnimationNode >& rxNode, const SlidePersistPtr & pSlide )
201 : {
202 : try {
203 54 : OUString sServiceName = getServiceName( mnNodeType );
204 108 : Reference< XAnimationNode > xNode = createAndInsert( rFilter, sServiceName, rxNode );
205 108 : setNode( rFilter, xNode, pSlide );
206 : }
207 0 : catch( const Exception& e )
208 : {
209 : SAL_INFO("oox.ppt","OOX: exception raised in TimeNode::addNode() - " <<
210 : OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).getStr() );
211 : }
212 54 : }
213 :
214 85 : void TimeNode::setNode( const XmlFilterBase& rFilter, const Reference< XAnimationNode >& xNode, const SlidePersistPtr & pSlide )
215 : {
216 : SAL_WARN_IF( !xNode.is(), "oox.ppt", "null node passed" );
217 :
218 : try {
219 85 : if( !msId.isEmpty() )
220 : {
221 83 : pSlide->getAnimNodesMap()[ msId ] = xNode;
222 : }
223 :
224 85 : if( mpTarget )
225 : {
226 16 : sal_Int16 nSubType(0);
227 16 : maNodeProperties[ NP_TARGET ] = mpTarget->convert( pSlide, nSubType );
228 16 : if( mpTarget->mnType == XML_spTgt )
229 : {
230 16 : maNodeProperties[ NP_SUBITEM ] <<= nSubType;
231 : }
232 : }
233 :
234 85 : if( !maStCondList.empty() )
235 : {
236 38 : Any aAny = AnimationCondition::convertList( pSlide, maStCondList );
237 38 : if( aAny.hasValue() )
238 : {
239 38 : xNode->setBegin( aAny );
240 38 : }
241 :
242 : }
243 85 : if( !maEndCondList.empty() )
244 : {
245 0 : Any aAny = AnimationCondition::convertList( pSlide, maEndCondList );
246 0 : if( aAny.hasValue() )
247 : {
248 0 : xNode->setEnd( aAny );
249 0 : }
250 : }
251 : #if 0 // FIXME even the binary filter has this disabled.
252 : if( !maNextCondList.empty() )
253 : {
254 : Any aAny = AnimationCondition::convertList( pSlide, maNextCondList );
255 : if( aAny.hasValue() )
256 : {
257 : xNode->setNext( aAny );
258 : }
259 : }
260 : if( !maPrevCondList.empty() )
261 : {
262 : Any aAny = AnimationCondition::convertList( pSlide, maPrevCondList );
263 : if( aAny.hasValue() )
264 : {
265 : xNode->setPrev( aAny );
266 : }
267 : }
268 : #endif
269 85 : if( mbHasEndSyncValue )
270 : {
271 1 : Any aValue = maEndSyncValue.convert( pSlide );
272 1 : xNode->setEndSync(aValue);
273 : }
274 :
275 85 : if( !maUserData.empty() )
276 : {
277 57 : Sequence< NamedValue > aUserDataSeq( static_cast< sal_Int32 >( maUserData.size() ) );
278 57 : NamedValue* pValues = aUserDataSeq.getArray();
279 138 : for( UserDataMap::const_iterator aIt = maUserData.begin(), aEnd = maUserData.end(); aIt != aEnd; ++aIt, ++pValues )
280 : {
281 81 : pValues->Name = aIt->first;
282 81 : pValues->Value = aIt->second;
283 : }
284 57 : maNodeProperties[ NP_USERDATA ] <<= aUserDataSeq;
285 : }
286 :
287 85 : Reference< XAnimate > xAnimate( xNode, UNO_QUERY );
288 170 : Reference< XAnimateColor > xAnimateColor( xNode, UNO_QUERY );
289 170 : Reference< XAnimateMotion > xAnimateMotion( xNode, UNO_QUERY );
290 170 : Reference< XAnimateTransform > xAnimateTransform( xNode, UNO_QUERY );
291 170 : Reference< XCommand > xCommand( xNode, UNO_QUERY );
292 170 : Reference< XIterateContainer > xIterateContainer( xNode, UNO_QUERY );
293 85 : sal_Int16 nInt16 = 0;
294 85 : bool bBool = false;
295 85 : double fDouble = 0;
296 170 : OUString sString;
297 170 : Sequence< NamedValue > aSeq;
298 :
299 2550 : for( int i = 0; i < _NP_SIZE; i++)
300 : {
301 2465 : Any & aValue( maNodeProperties[ i ] );
302 2465 : if( aValue.hasValue() )
303 : {
304 316 : switch( i )
305 : {
306 : case NP_TO:
307 7 : if( xAnimate.is() )
308 7 : xAnimate->setTo( aValue );
309 7 : break;
310 : case NP_FROM:
311 0 : if( xAnimate.is() )
312 0 : xAnimate->setFrom( aValue );
313 0 : break;
314 : case NP_BY:
315 0 : if( xAnimate.is() )
316 0 : xAnimate->setBy( aValue );
317 0 : break;
318 : case NP_TARGET:
319 16 : if( xAnimate.is() )
320 11 : xAnimate->setTarget( aValue );
321 16 : break;
322 : case NP_SUBITEM:
323 16 : if( xAnimate.is() )
324 : {
325 11 : if( aValue >>= nInt16 )
326 11 : xAnimate->setSubItem( nInt16 );
327 : else
328 : {
329 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
330 : }
331 : }
332 16 : break;
333 : case NP_ATTRIBUTENAME:
334 7 : if( xAnimate.is() )
335 : {
336 7 : if( aValue >>= sString )
337 7 : xAnimate->setAttributeName( sString );
338 : else
339 : {
340 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
341 : }
342 : }
343 7 : break;
344 : case NP_CALCMODE:
345 0 : if( xAnimate.is() )
346 : {
347 0 : if( aValue >>= nInt16 )
348 0 : xAnimate->setCalcMode( nInt16 );
349 : else
350 : {
351 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
352 : }
353 : }
354 0 : break;
355 : case NP_KEYTIMES:
356 0 : if( xAnimate.is() )
357 : {
358 0 : Sequence<double> aKeyTimes;
359 0 : if( aValue >>= aKeyTimes )
360 0 : xAnimate->setKeyTimes(aKeyTimes);
361 : else
362 : {
363 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
364 0 : }
365 : }
366 0 : break;
367 : case NP_VALUES:
368 0 : if( xAnimate.is() )
369 : {
370 0 : Sequence<Any> aValues;
371 0 : if( aValue >>= aValues )
372 0 : xAnimate->setValues(aValues);
373 : else
374 : {
375 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
376 0 : }
377 : }
378 0 : break;
379 : case NP_FORMULA:
380 0 : if( xAnimate.is() )
381 : {
382 0 : if( aValue >>= sString )
383 0 : xAnimate->setFormula(sString);
384 : else
385 : {
386 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
387 : }
388 : }
389 0 : break;
390 : case NP_COLORINTERPOLATION:
391 0 : if( xAnimateColor.is() )
392 : {
393 0 : if( aValue >>= nInt16 )
394 0 : xAnimateColor->setColorInterpolation( nInt16 );
395 : else
396 : {
397 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
398 : }
399 : }
400 0 : break;
401 : case NP_DIRECTION:
402 0 : if( xAnimateColor.is() )
403 : {
404 0 : if( aValue >>= bBool )
405 0 : xAnimateColor->setDirection( bBool );
406 : else
407 : {
408 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
409 : }
410 : }
411 0 : break;
412 : case NP_PATH:
413 0 : if( xAnimateMotion.is() )
414 0 : xAnimateMotion->setPath( aValue );
415 0 : break;
416 : case NP_TRANSFORMTYPE:
417 0 : if( xAnimateTransform.is() )
418 : {
419 0 : if( aValue >>= nInt16 )
420 0 : xAnimateTransform->setTransformType( nInt16 );
421 : else
422 : {
423 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
424 : }
425 : }
426 0 : break;
427 : case NP_USERDATA:
428 57 : if( aValue >>= aSeq )
429 57 : xNode->setUserData( aSeq );
430 : else
431 : {
432 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
433 : }
434 57 : break;
435 : case NP_ACCELERATION:
436 0 : if( aValue >>= fDouble )
437 0 : xNode->setAcceleration( fDouble );
438 : else
439 : {
440 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
441 : }
442 0 : break;
443 : case NP_DECELERATE:
444 0 : if( aValue >>= fDouble )
445 0 : xNode->setDecelerate( fDouble );
446 : else
447 : {
448 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
449 : }
450 0 : break;
451 : case NP_AUTOREVERSE:
452 83 : if( aValue >>= bBool )
453 83 : xNode->setAutoReverse( bBool );
454 : else
455 : {
456 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
457 : }
458 83 : break;
459 : case NP_DURATION:
460 51 : xNode->setDuration( aValue );
461 51 : break;
462 : case NP_FILL:
463 38 : if( aValue >>= nInt16 )
464 38 : xNode->setFill( nInt16 );
465 : else
466 : {
467 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
468 : }
469 38 : break;
470 : case NP_REPEATCOUNT:
471 0 : xNode->setRepeatCount( aValue );
472 0 : break;
473 : case NP_REPEATDURATION:
474 0 : xNode->setRepeatDuration( aValue );
475 0 : break;
476 : case NP_RESTART:
477 32 : if( aValue >>= nInt16 )
478 32 : xNode->setRestart( nInt16 );
479 : else
480 : {
481 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
482 : }
483 32 : break;
484 : case NP_COMMAND:
485 5 : if( xCommand.is() )
486 : {
487 5 : if( aValue >>= nInt16 )
488 5 : xCommand->setCommand( nInt16 );
489 : else
490 : {
491 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
492 : }
493 : }
494 5 : break;
495 : case NP_PARAMETER:
496 4 : if( xCommand.is() )
497 4 : xCommand->setParameter( aValue );
498 4 : break;
499 : case NP_ITERATETYPE:
500 0 : if( xIterateContainer.is() )
501 : {
502 0 : if( aValue >>= nInt16 )
503 0 : xIterateContainer->setIterateType( nInt16 );
504 : else
505 : {
506 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
507 : }
508 : }
509 0 : break;
510 : case NP_ITERATEINTERVAL:
511 0 : if( xIterateContainer.is() )
512 : {
513 0 : if( aValue >>= fDouble )
514 0 : xIterateContainer->setIterateInterval( fDouble );
515 : else
516 : {
517 : SAL_INFO("oox.ppt","any >>= failed " << __LINE__ );
518 : }
519 : }
520 0 : break;
521 : default:
522 : SAL_INFO("oox.ppt","ERR-OOX: unknown prop index " << i );
523 0 : break;
524 : }
525 : }
526 : }
527 :
528 85 : if( mnNodeType == AnimationNodeType::TRANSITIONFILTER )
529 : {
530 :
531 4 : Reference< XTransitionFilter > xFilter( xNode, UNO_QUERY );
532 4 : maTransitionFilter.setTransitionFilterProperties( xFilter );
533 : }
534 :
535 : std::for_each(
536 : maChildren.begin(), maChildren.end(),
537 54 : [&rFilter, &xNode, &pSlide] (TimeNodePtr const & child) {
538 54 : child->addNode(rFilter, xNode, pSlide);
539 139 : } );
540 :
541 85 : switch( mnNodeType )
542 : {
543 : case AnimationNodeType::SEQ:
544 : {
545 8 : sal_Int16 nEnum = 0;
546 8 : if( maUserData[ "node-type" ] >>= nEnum )
547 : {
548 8 : if( nEnum == EffectNodeType::MAIN_SEQUENCE )
549 : {
550 7 : fixMainSequenceTiming( xNode );
551 : }
552 1 : else if( nEnum == EffectNodeType::INTERACTIVE_SEQUENCE )
553 : {
554 1 : fixInteractiveSequenceTiming( xNode );
555 : }
556 : }
557 8 : break;
558 : }
559 : case AnimationNodeType::PAR:
560 : // some other cut&paste... from AnimationImporter::importAnimationContainer()
561 59 : break;
562 85 : }
563 : }
564 0 : catch( const Exception& e )
565 : {
566 : SAL_INFO("oox.ppt","OOX: exception raised in TimeNode::setNode() - " << e.Message );
567 : }
568 85 : }
569 :
570 54 : Reference< XAnimationNode > TimeNode::createAndInsert(
571 : const XmlFilterBase& rFilter,
572 : const OUString& rServiceName,
573 : const Reference< XAnimationNode >& rxNode )
574 : {
575 : try {
576 54 : Reference< XAnimationNode > xNode( Reference<css::lang::XMultiServiceFactory>(rFilter.getComponentContext()->getServiceManager(), UNO_QUERY_THROW)->createInstance( rServiceName ), UNO_QUERY_THROW );;
577 108 : Reference< XTimeContainer > xParentContainer( rxNode, UNO_QUERY_THROW );
578 :
579 54 : xParentContainer->appendChild( xNode );
580 108 : return xNode;
581 : }
582 0 : catch( const Exception& e )
583 : {
584 : SAL_INFO("oox.ppt","OOX: exception raised in TimeNode::createAndInsert() trying to create a service " << OUStringToOString( rServiceName, RTL_TEXTENCODING_ASCII_US).getStr() << " = " << OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).getStr() );
585 : }
586 :
587 0 : return Reference< XAnimationNode >();
588 : }
589 :
590 87 : void TimeNode::setId( sal_Int32 nId )
591 : {
592 87 : msId = OUString::number(nId);
593 87 : }
594 :
595 7 : void TimeNode::setTo( const Any & aTo )
596 : {
597 7 : maNodeProperties[ NP_TO ] = aTo;
598 7 : }
599 :
600 0 : void TimeNode::setFrom( const Any & aFrom )
601 : {
602 0 : maNodeProperties[ NP_FROM ] = aFrom;
603 0 : }
604 :
605 0 : void TimeNode::setBy( const Any & aBy )
606 : {
607 0 : maNodeProperties[ NP_BY ] = aBy;
608 0 : }
609 :
610 246 : } }
611 :
612 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|