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