LCOV - code coverage report
Current view: top level - xmloff/source/core - unoatrcn.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 74 116 63.8 %
Date: 2014-11-03 Functions: 11 18 61.1 %
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 <string.h>
      21             : #include <com/sun/star/xml/AttributeData.hpp>
      22             : #include <rtl/ustrbuf.hxx>
      23             : #include <comphelper/servicehelper.hxx>
      24             : #include <cppuhelper/supportsservice.hxx>
      25             : #include <limits.h>
      26             : 
      27             : #include <xmloff/xmlcnimp.hxx>
      28             : 
      29             : #include <xmloff/unoatrcn.hxx>
      30             : 
      31             : using namespace ::com::sun::star;
      32             : 
      33             : // Interface implementation
      34             : 
      35           0 : uno::Reference< uno::XInterface >  SvUnoAttributeContainer_CreateInstance()
      36             : {
      37           0 :     return *(new SvUnoAttributeContainer);
      38             : }
      39             : 
      40         598 : SvUnoAttributeContainer::SvUnoAttributeContainer( SvXMLAttrContainerData* pContainer)
      41         598 : : mpContainer( pContainer )
      42             : {
      43         598 :     if( mpContainer == NULL )
      44           0 :         mpContainer = new SvXMLAttrContainerData;
      45         598 : }
      46             : 
      47        1794 : SvUnoAttributeContainer::~SvUnoAttributeContainer()
      48             : {
      49         598 :     delete mpContainer;
      50        1196 : }
      51             : 
      52             : // container::XElementAccess
      53           0 : uno::Type SAL_CALL SvUnoAttributeContainer::getElementType(void)
      54             :     throw( uno::RuntimeException, std::exception )
      55             : {
      56           0 :     return cppu::UnoType<xml::AttributeData>::get();
      57             : }
      58             : 
      59           0 : sal_Bool SAL_CALL SvUnoAttributeContainer::hasElements(void)
      60             :     throw( uno::RuntimeException, std::exception )
      61             : {
      62           0 :     return mpContainer->GetAttrCount() != 0;
      63             : }
      64             : 
      65         134 : sal_uInt16 SvUnoAttributeContainer::getIndexByName(const OUString& aName ) const
      66             : {
      67         134 :     const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
      68             : 
      69         134 :     sal_Int32 nPos = aName.indexOf( ':' );
      70         134 :     if( nPos == -1L )
      71             :     {
      72         118 :         for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
      73             :         {
      74         336 :             if( mpContainer->GetAttrLName(nAttr) == aName &&
      75         304 :                 mpContainer->GetAttrPrefix(nAttr).isEmpty() )
      76          72 :                 return nAttr;
      77             :         }
      78             :     }
      79             :     else
      80             :     {
      81          32 :         const OUString aPrefix( aName.copy( 0L, nPos ) );
      82          48 :         const OUString aLName( aName.copy( nPos+1L ) );
      83             : 
      84          32 :         for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
      85             :         {
      86          64 :             if( mpContainer->GetAttrLName(nAttr) == aLName &&
      87          64 :                 mpContainer->GetAttrPrefix(nAttr) == aPrefix )
      88          16 :                 return nAttr;
      89          16 :         }
      90             :     }
      91             : 
      92          46 :     return USHRT_MAX;
      93             : }
      94             : 
      95             : namespace
      96             : {
      97             :     class theSvUnoAttributeContainerUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSvUnoAttributeContainerUnoTunnelId> {};
      98             : }
      99             : 
     100          84 : const ::com::sun::star::uno::Sequence< sal_Int8 > & SvUnoAttributeContainer::getUnoTunnelId() throw()
     101             : {
     102          84 :     return theSvUnoAttributeContainerUnoTunnelId::get().getSeq();
     103             : }
     104             : 
     105          44 : sal_Int64 SAL_CALL SvUnoAttributeContainer::getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw(::com::sun::star::uno::RuntimeException, std::exception)
     106             : {
     107         132 :     if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(),
     108          88 :                                                          rId.getConstArray(), 16 ) )
     109             :     {
     110          40 :         return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_uIntPtr>(this));
     111             :     }
     112           4 :     return 0;
     113             : }
     114             : 
     115             : // container::XNameAccess
     116          44 : uno::Any SAL_CALL SvUnoAttributeContainer::getByName(const OUString& aName)
     117             :     throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
     118             : {
     119          44 :     sal_uInt16 nAttr = getIndexByName(aName );
     120             : 
     121          44 :     if( nAttr == USHRT_MAX )
     122           0 :         throw container::NoSuchElementException();
     123             : 
     124          44 :     xml::AttributeData aData;
     125          44 :     aData.Namespace = mpContainer->GetAttrNamespace(nAttr);
     126          44 :     aData.Type = "CDATA";
     127          44 :     aData.Value = mpContainer->GetAttrValue(nAttr);
     128             : 
     129          44 :     uno::Any aAny;
     130          44 :     aAny <<= aData;
     131          44 :     return aAny;
     132             : }
     133             : 
     134          94 : uno::Sequence< OUString > SAL_CALL SvUnoAttributeContainer::getElementNames(void) throw( uno::RuntimeException, std::exception )
     135             : {
     136          94 :     const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
     137             : 
     138          94 :     uno::Sequence< OUString > aElementNames( (sal_Int32)nAttrCount );
     139          94 :     OUString *pNames = aElementNames.getArray();
     140             : 
     141         126 :     for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
     142             :     {
     143          32 :         OUStringBuffer sBuffer( mpContainer->GetAttrPrefix(nAttr) );
     144          32 :         if( !sBuffer.isEmpty() )
     145          32 :             sBuffer.append( ':' );
     146          32 :         sBuffer.append( mpContainer->GetAttrLName(nAttr) );
     147          32 :         *pNames++ = sBuffer.makeStringAndClear();
     148          32 :     }
     149             : 
     150          94 :     return aElementNames;
     151             : }
     152             : 
     153          56 : sal_Bool SAL_CALL SvUnoAttributeContainer::hasByName(const OUString& aName) throw( uno::RuntimeException, std::exception )
     154             : {
     155          56 :     return getIndexByName(aName ) != USHRT_MAX;
     156             : }
     157             : 
     158             : // container::XNameReplace
     159           0 : void SAL_CALL SvUnoAttributeContainer::replaceByName(const OUString& aName, const uno::Any& aElement)
     160             :     throw( lang::IllegalArgumentException, container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
     161             : {
     162           0 :     if( aElement.hasValue() && aElement.getValueType() == cppu::UnoType<xml::AttributeData>::get())
     163             :     {
     164           0 :         sal_uInt16 nAttr = getIndexByName(aName );
     165           0 :         if( nAttr == USHRT_MAX )
     166           0 :             throw container::NoSuchElementException();
     167             : 
     168           0 :         xml::AttributeData* pData = (xml::AttributeData*)aElement.getValue();
     169             : 
     170           0 :         sal_Int32 nPos = aName.indexOf( ':' );
     171           0 :         if( nPos != -1L )
     172             :         {
     173           0 :             const OUString aPrefix( aName.copy( 0L, nPos ));
     174           0 :             const OUString aLName( aName.copy( nPos+1L ));
     175             : 
     176           0 :             if( pData->Namespace.isEmpty() )
     177             :             {
     178           0 :                 if( mpContainer->SetAt( nAttr, aPrefix, aLName, pData->Value ) )
     179           0 :                     return;
     180             :             }
     181             :             else
     182             :             {
     183           0 :                 if( mpContainer->SetAt( nAttr, aPrefix, pData->Namespace, aLName, pData->Value ) )
     184           0 :                     return;
     185           0 :             }
     186             :         }
     187             :         else
     188             :         {
     189           0 :             if( pData->Namespace.isEmpty() )
     190             :             {
     191           0 :                 if( mpContainer->SetAt( nAttr, aName, pData->Value ) )
     192           0 :                     return;
     193             :             }
     194             :         }
     195             :     }
     196             : 
     197           0 :     throw lang::IllegalArgumentException();
     198             : }
     199             : 
     200             : // container::XNameContainer
     201          26 : void SAL_CALL SvUnoAttributeContainer::insertByName(const OUString& aName, const uno::Any& aElement)
     202             : throw( lang::IllegalArgumentException, container::ElementExistException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
     203             : {
     204          26 :     if( !aElement.hasValue() || aElement.getValueType() != cppu::UnoType<xml::AttributeData>::get())
     205           0 :         throw lang::IllegalArgumentException();
     206             : 
     207          26 :     sal_uInt16 nAttr = getIndexByName(aName );
     208          26 :     if( nAttr != USHRT_MAX )
     209           0 :         throw container::ElementExistException();
     210             : 
     211          26 :     xml::AttributeData* pData = (xml::AttributeData*)aElement.getValue();
     212             : 
     213          26 :     sal_Int32 nPos = aName.indexOf( ':' );
     214          26 :     if( nPos != -1L )
     215             :     {
     216          16 :         const OUString aPrefix( aName.copy( 0L, nPos ));
     217          16 :         const OUString aLName( aName.copy( nPos+1L ));
     218             : 
     219          16 :         if( pData->Namespace.isEmpty() )
     220             :         {
     221           0 :             if( mpContainer->AddAttr( aPrefix, aLName, pData->Value ) )
     222           0 :                 return;
     223             :         }
     224             :         else
     225             :         {
     226          16 :             if( mpContainer->AddAttr( aPrefix, pData->Namespace, aLName, pData->Value ) )
     227          16 :                 return;
     228           0 :         }
     229             :     }
     230             :     else
     231             :     {
     232          10 :         if( pData->Namespace.isEmpty() )
     233             :         {
     234          10 :             if( mpContainer->AddAttr( aName, pData->Value ) )
     235          10 :                 return;
     236             :         }
     237             :     }
     238             : }
     239             : 
     240           8 : void SAL_CALL SvUnoAttributeContainer::removeByName(const OUString& Name)
     241             :     throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
     242             : {
     243           8 :     sal_uInt16 nAttr = getIndexByName(Name);
     244           8 :     if( nAttr == USHRT_MAX )
     245           0 :         throw container::NoSuchElementException();
     246             : 
     247           8 :     mpContainer->Remove( nAttr );
     248           8 : }
     249             : 
     250             : //XServiceInfo
     251           0 : OUString SAL_CALL SvUnoAttributeContainer::getImplementationName(void) throw( uno::RuntimeException, std::exception )
     252             : {
     253           0 :     return OUString( "SvUnoAttributeContainer" );
     254             : }
     255             : 
     256           0 : uno::Sequence< OUString > SvUnoAttributeContainer::getSupportedServiceNames(void)
     257             :     throw( uno::RuntimeException, std::exception )
     258             : {
     259           0 :     OUString aSN( "com.sun.star.xml.AttributeContainer" );
     260           0 :     uno::Sequence< OUString > aNS( &aSN, 1L );
     261           0 :     return aNS;
     262             : }
     263             : 
     264           0 : sal_Bool SvUnoAttributeContainer::supportsService(const OUString& ServiceName)
     265             :     throw( uno::RuntimeException, std::exception )
     266             : {
     267           0 :     return cppu::supportsService(this, ServiceName);
     268             : }
     269             : 
     270             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10