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

Generated by: LCOV version 1.10