LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/oox/source/ppt - commonbehaviorcontext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 48 52 92.3 %
Date: 2013-07-09 Functions: 8 8 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "comphelper/anytostring.hxx"
      21             : #include "cppuhelper/exc_hlp.hxx"
      22             : #include <rtl/ustrbuf.hxx>
      23             : 
      24             : #include <com/sun/star/animations/XTimeContainer.hpp>
      25             : #include <com/sun/star/animations/XAnimationNode.hpp>
      26             : #include <com/sun/star/animations/XAnimate.hpp>
      27             : 
      28             : #include "oox/core/fragmenthandler.hxx"
      29             : 
      30             : #include "commonbehaviorcontext.hxx"
      31             : #include "commontimenodecontext.hxx"
      32             : #include "timetargetelementcontext.hxx"
      33             : #include "pptfilterhelpers.hxx"
      34             : 
      35             : #include <string.h>
      36             : 
      37             : using namespace ::oox::core;
      38             : using namespace ::com::sun::star::uno;
      39             : using namespace ::com::sun::star::xml::sax;
      40             : using namespace ::com::sun::star::animations;
      41             : 
      42             : namespace oox { namespace ppt {
      43             : 
      44           8 :     CommonBehaviorContext::CommonBehaviorContext( FragmentHandler2& rParent,
      45             :             const Reference< XFastAttributeList >& xAttribs,
      46             :             const TimeNodePtr & pNode )
      47             :         : TimeNodeContext( rParent, PPT_TOKEN( cBhvr ), xAttribs, pNode )
      48             :             , mbInAttrList( false )
      49           8 :             , mbIsInAttrName( false )
      50             :     {
      51           8 :     }
      52             : 
      53             : 
      54          16 :     CommonBehaviorContext::~CommonBehaviorContext( ) throw( )
      55             :     {
      56          16 :     }
      57             : 
      58             : 
      59             : 
      60          16 :     void CommonBehaviorContext::onEndElement()
      61             :     {
      62          16 :         switch( getCurrentElement() )
      63             :         {
      64             :         case PPT_TOKEN( cBhvr ):
      65             :         {
      66           8 :             if( !maAttributes.empty() )
      67             :             {
      68           4 :                 OUStringBuffer sAttributes;
      69           4 :                 std::list< Attribute >::const_iterator iter;
      70           8 :                 for(iter = maAttributes.begin(); iter != maAttributes.end(); ++iter)
      71             :                 {
      72           4 :                     if( !sAttributes.isEmpty() )
      73             :                     {
      74           0 :                         sAttributes.appendAscii( ";" );
      75             :                     }
      76           4 :                     sAttributes.append( iter->name );
      77             :                 }
      78           8 :                 OUString sTmp( sAttributes.makeStringAndClear() );
      79           8 :                 mpNode->getNodeProperties()[ NP_ATTRIBUTENAME ] = makeAny( sTmp );
      80             :             }
      81           8 :             break;
      82             :         }
      83             :         case PPT_TOKEN( attrNameLst ):
      84           4 :             mbInAttrList = false;
      85           4 :             break;
      86             :         case PPT_TOKEN( attrName ):
      87           4 :             if( mbIsInAttrName )
      88             :             {
      89           4 :                 const ImplAttributeNameConversion *attrConv = gImplConversionList;
      90          84 :                 while( attrConv->mpMSName != NULL )
      91             :                 {
      92          80 :                     if(msCurrentAttribute.compareToAscii( attrConv->mpMSName ) == 0 )
      93             :                     {
      94           4 :                         Attribute attr;
      95           8 :                         attr.name = OUString::intern( attrConv->mpAPIName,
      96           4 :                                                              strlen(attrConv->mpAPIName),
      97           4 :                                                              RTL_TEXTENCODING_ASCII_US );
      98           4 :                         attr.type = attrConv->meAttribute;
      99           4 :                         maAttributes.push_back( attr );
     100             :                         SAL_INFO("oox.ppt", "OOX: attrName is " << OUSTRING_TO_CSTR( msCurrentAttribute ) << " -> " << attrConv->mpAPIName );
     101           4 :                         break;
     102             :                     }
     103          76 :                     attrConv++;
     104             :                 }
     105           4 :                 mbIsInAttrName = false;
     106             :             }
     107           4 :             break;
     108             :         default:
     109           0 :             break;
     110             :         }
     111          16 :     }
     112             : 
     113             : 
     114           4 :     void CommonBehaviorContext::onCharacters( const OUString& aChars )
     115             :     {
     116           4 :         if( mbIsInAttrName )
     117             :         {
     118           4 :             msCurrentAttribute += aChars;
     119             :         }
     120           4 :     }
     121             : 
     122             : 
     123          24 :     ::oox::core::ContextHandlerRef CommonBehaviorContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
     124             :     {
     125          24 :         switch ( aElementToken )
     126             :         {
     127             :         case PPT_TOKEN( cTn ):
     128           8 :             return new CommonTimeNodeContext( *this, aElementToken, rAttribs.getFastAttributeList(), mpNode );
     129             :         case PPT_TOKEN( tgtEl ):
     130           8 :             return new TimeTargetElementContext( *this, mpNode->getTarget() );
     131             :         case PPT_TOKEN( attrNameLst ):
     132           4 :             mbInAttrList = true;
     133           4 :             return this;
     134             :         case PPT_TOKEN( attrName ):
     135             :         {
     136           4 :             if( mbInAttrList )
     137             :             {
     138           4 :                 mbIsInAttrName = true;
     139           4 :                 msCurrentAttribute = OUString();
     140             :             }
     141             :             else
     142             :             {
     143             :                 SAL_INFO("oox.ppt", "OOX: Attribute Name outside an Attribute List" );
     144             :             }
     145           4 :             return this;
     146             :         }
     147             :         default:
     148           0 :             break;
     149             :         }
     150             : 
     151           0 :         return this;
     152             :     }
     153             : 
     154         141 : } }
     155             : 
     156             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10