LCOV - code coverage report
Current view: top level - editeng/source/items - xmlcnitm.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 34 91 37.4 %
Date: 2015-06-13 12:38:46 Functions: 13 26 50.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 <com/sun/star/xml/AttributeData.hpp>
      21             : #include <com/sun/star/lang/XUnoTunnel.hpp>
      22             : #include <xmloff/xmlcnimp.hxx>
      23             : #include <xmloff/unoatrcn.hxx>
      24             : #include <editeng/xmlcnitm.hxx>
      25             : 
      26             : using namespace ::com::sun::star::uno;
      27             : using namespace ::com::sun::star::container;
      28             : using namespace ::com::sun::star::lang;
      29             : using namespace ::com::sun::star::xml;
      30             : 
      31             : 
      32      340717 : TYPEINIT1(SvXMLAttrContainerItem, SfxPoolItem);
      33             : 
      34        6591 : SvXMLAttrContainerItem::SvXMLAttrContainerItem( sal_uInt16 _nWhich ) :
      35        6591 :     SfxPoolItem( _nWhich )
      36             : {
      37        6591 :     pImpl = new SvXMLAttrContainerData;
      38        6591 : }
      39             : 
      40        4768 : SvXMLAttrContainerItem::SvXMLAttrContainerItem(
      41             :                                         const SvXMLAttrContainerItem& rItem ) :
      42        4768 :     SfxPoolItem( rItem )
      43             : {
      44        4768 :     pImpl = new SvXMLAttrContainerData( *rItem.pImpl );
      45        4768 : }
      46             : 
      47       33408 : SvXMLAttrContainerItem::~SvXMLAttrContainerItem()
      48             : {
      49       11153 :     delete pImpl;
      50       22255 : }
      51             : 
      52        6931 : bool SvXMLAttrContainerItem::operator==( const SfxPoolItem& rItem ) const
      53             : {
      54             :     DBG_ASSERT( rItem.ISA(SvXMLAttrContainerItem),
      55             :                "SvXMLAttrContainerItem::operator ==(): Bad type");
      56        6931 :     return *pImpl == *static_cast<const SvXMLAttrContainerItem&>(rItem).pImpl;
      57             : }
      58             : 
      59           0 : int SvXMLAttrContainerItem::Compare( const SfxPoolItem &/*rWith*/ ) const
      60             : {
      61             :     DBG_ASSERT( false, "not yet implemented" );
      62             : 
      63           0 :     return 0;
      64             : }
      65             : 
      66           0 : bool SvXMLAttrContainerItem::GetPresentation(
      67             :                     SfxItemPresentation /*ePresentation*/,
      68             :                     SfxMapUnit /*eCoreMetric*/,
      69             :                     SfxMapUnit /*ePresentationMetric*/,
      70             :                     OUString & /*rText*/,
      71             :                     const IntlWrapper * /*pIntlWrapper*/ ) const
      72             : {
      73           0 :     return false;
      74             : }
      75             : 
      76       25464 : sal_uInt16 SvXMLAttrContainerItem::GetVersion( sal_uInt16 /*nFileFormatVersion*/ ) const
      77             : {
      78             :     // This item should never be stored
      79       25464 :     return USHRT_MAX;
      80             : }
      81             : 
      82         319 : bool SvXMLAttrContainerItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
      83             : {
      84             :     Reference<XNameContainer> xContainer =
      85         319 :         new SvUnoAttributeContainer( new SvXMLAttrContainerData( *pImpl ) );
      86             : 
      87         319 :     rVal.setValue( &xContainer, cppu::UnoType<XNameContainer>::get());
      88         319 :     return true;
      89             : }
      90             : 
      91          29 : bool SvXMLAttrContainerItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
      92             : {
      93          29 :     Reference<XInterface> xRef;
      94          29 :     SvUnoAttributeContainer* pContainer = NULL;
      95             : 
      96          29 :     if( rVal.getValue() != NULL && rVal.getValueType().getTypeClass() == TypeClass_INTERFACE )
      97             :     {
      98          29 :         xRef = *static_cast<Reference<XInterface> const *>(rVal.getValue());
      99          29 :         Reference<XUnoTunnel> xTunnel(xRef, UNO_QUERY);
     100          29 :         if( xTunnel.is() )
     101          29 :             pContainer = reinterpret_cast<SvUnoAttributeContainer*>((sal_uLong)xTunnel->getSomething(SvUnoAttributeContainer::getUnoTunnelId()));
     102             :     }
     103             : 
     104          29 :     if( pContainer )
     105             :     {
     106          29 :         delete pImpl;
     107          29 :         pImpl = new SvXMLAttrContainerData( * pContainer->GetContainerImpl() );
     108             :     }
     109             :     else
     110             :     {
     111           0 :         std::unique_ptr<SvXMLAttrContainerData> pNewImpl(new SvXMLAttrContainerData);
     112             : 
     113             :         try
     114             :         {
     115           0 :             Reference<XNameContainer> xContainer( xRef, UNO_QUERY );
     116           0 :             if( !xContainer.is() )
     117           0 :                 return false;
     118             : 
     119           0 :             const Sequence< OUString > aNameSequence( xContainer->getElementNames() );
     120           0 :             const OUString* pNames = aNameSequence.getConstArray();
     121           0 :             const sal_Int32 nCount = aNameSequence.getLength();
     122           0 :             Any aAny;
     123             :             sal_Int32 nAttr;
     124             : 
     125           0 :             for( nAttr = 0; nAttr < nCount; nAttr++ )
     126             :             {
     127           0 :                 const OUString aName( *pNames++ );
     128             : 
     129           0 :                 aAny = xContainer->getByName( aName );
     130           0 :                 if( aAny.getValue() == NULL || aAny.getValueType() != cppu::UnoType<AttributeData>::get() )
     131           0 :                     return false;
     132             : 
     133           0 :                 AttributeData const * pData = static_cast<AttributeData const *>(aAny.getValue());
     134           0 :                 sal_Int32 pos = aName.indexOf( ':' );
     135           0 :                 if( pos != -1 )
     136             :                 {
     137           0 :                     const OUString aPrefix( aName.copy( 0, pos ));
     138           0 :                     const OUString aLName( aName.copy( pos+1 ));
     139             : 
     140           0 :                     if( pData->Namespace.isEmpty() )
     141             :                     {
     142           0 :                         if( !pNewImpl->AddAttr( aPrefix, aLName, pData->Value ) )
     143           0 :                             break;
     144             :                     }
     145             :                     else
     146             :                     {
     147           0 :                         if( !pNewImpl->AddAttr( aPrefix, pData->Namespace, aLName, pData->Value ) )
     148           0 :                             break;
     149           0 :                     }
     150             :                 }
     151             :                 else
     152             :                 {
     153           0 :                     if( !pNewImpl->AddAttr( aName, pData->Value ) )
     154           0 :                         break;
     155             :                 }
     156           0 :             }
     157             : 
     158           0 :             if( nAttr == nCount )
     159           0 :                 pImpl = pNewImpl.release();
     160             :             else
     161           0 :                 return false;
     162             :         }
     163           0 :         catch(...)
     164             :         {
     165           0 :             return false;
     166           0 :         }
     167             :     }
     168          29 :     return true;
     169             : }
     170             : 
     171             : 
     172           0 : bool SvXMLAttrContainerItem::AddAttr( const OUString& rLName,
     173             :                                         const OUString& rValue )
     174             : {
     175           0 :     return pImpl->AddAttr( rLName, rValue );
     176             : }
     177             : 
     178           0 : bool SvXMLAttrContainerItem::AddAttr( const OUString& rPrefix,
     179             :           const OUString& rNamespace, const OUString& rLName,
     180             :           const OUString& rValue )
     181             : {
     182           0 :     return pImpl->AddAttr( rPrefix, rNamespace, rLName, rValue );
     183             : }
     184             : 
     185          26 : sal_uInt16 SvXMLAttrContainerItem::GetAttrCount() const
     186             : {
     187          26 :     return (sal_uInt16)pImpl->GetAttrCount();
     188             : }
     189             : 
     190           0 : OUString SvXMLAttrContainerItem::GetAttrNamespace( sal_uInt16 i ) const
     191             : {
     192           0 :     return pImpl->GetAttrNamespace( i );
     193             : }
     194             : 
     195           0 : OUString SvXMLAttrContainerItem::GetAttrPrefix( sal_uInt16 i ) const
     196             : {
     197           0 :     return pImpl->GetAttrPrefix( i );
     198             : }
     199             : 
     200           0 : const OUString& SvXMLAttrContainerItem::GetAttrLName( sal_uInt16 i ) const
     201             : {
     202           0 :     return pImpl->GetAttrLName( i );
     203             : }
     204             : 
     205           0 : const OUString& SvXMLAttrContainerItem::GetAttrValue( sal_uInt16 i ) const
     206             : {
     207           0 :     return pImpl->GetAttrValue( i );
     208             : }
     209             : 
     210             : 
     211           0 : sal_uInt16 SvXMLAttrContainerItem::GetFirstNamespaceIndex() const
     212             : {
     213           0 :     return pImpl->GetFirstNamespaceIndex();
     214             : }
     215             : 
     216           0 : sal_uInt16 SvXMLAttrContainerItem::GetNextNamespaceIndex( sal_uInt16 nIdx ) const
     217             : {
     218           0 :     return pImpl->GetNextNamespaceIndex( nIdx );
     219             : }
     220             : 
     221           0 : const OUString& SvXMLAttrContainerItem::GetNamespace( sal_uInt16 i ) const
     222             : {
     223           0 :     return pImpl->GetNamespace( i );
     224             : }
     225             : 
     226           0 : const OUString& SvXMLAttrContainerItem::GetPrefix( sal_uInt16 i ) const
     227             : {
     228           0 :     return pImpl->GetPrefix( i );
     229             : }
     230             : 
     231             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11