LCOV - code coverage report
Current view: top level - libreoffice/sc/source/ui/unoobj - miscuno.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 72 108 66.7 %
Date: 2012-12-27 Functions: 20 29 69.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 <vcl/svapp.hxx>
      21             : 
      22             : #include "miscuno.hxx"
      23             : 
      24             : using namespace com::sun::star;
      25             : using ::com::sun::star::uno::Reference;
      26             : using ::com::sun::star::uno::Any;
      27             : using ::rtl::OUString;
      28             : 
      29             : //------------------------------------------------------------------------
      30             : 
      31           0 : SC_SIMPLE_SERVICE_INFO( ScNameToIndexAccess, "ScNameToIndexAccess", "stardiv.unknown" )
      32             : 
      33             : //------------------------------------------------------------------------
      34             : 
      35        1006 : uno::Reference<uno::XInterface> ScUnoHelpFunctions::AnyToInterface( const uno::Any& rAny )
      36             : {
      37        1006 :     if ( rAny.getValueTypeClass() == uno::TypeClass_INTERFACE )
      38             :     {
      39        1006 :         return uno::Reference<uno::XInterface>(rAny, uno::UNO_QUERY);
      40             :     }
      41           0 :     return uno::Reference<uno::XInterface>();   //! Exception?
      42             : }
      43             : 
      44         366 : sal_Bool ScUnoHelpFunctions::GetBoolProperty( const uno::Reference<beans::XPropertySet>& xProp,
      45             :                                             const rtl::OUString& rName, sal_Bool bDefault )
      46             : {
      47         366 :     sal_Bool bRet = bDefault;
      48         366 :     if ( xProp.is() )
      49             :     {
      50             :         try
      51             :         {
      52         366 :             uno::Any aAny(xProp->getPropertyValue( rName ));
      53             :             //! type conversion???
      54             :             //  operator >>= shouldn't be used for bool (?)
      55         366 :             if ( aAny.getValueTypeClass() == uno::TypeClass_BOOLEAN )
      56             :             {
      57             :                 //! safe way to get bool value from any???
      58         366 :                 bRet = *(sal_Bool*)aAny.getValue();
      59         366 :             }
      60             :         }
      61           0 :         catch(uno::Exception&)
      62             :         {
      63             :             // keep default
      64             :         }
      65             :     }
      66         366 :     return bRet;
      67             : }
      68             : 
      69         236 : sal_Int32 ScUnoHelpFunctions::GetLongProperty( const uno::Reference<beans::XPropertySet>& xProp,
      70             :                                             const rtl::OUString& rName, long nDefault )
      71             : {
      72         236 :     sal_Int32 nRet = nDefault;
      73         236 :     if ( xProp.is() )
      74             :     {
      75             :         try
      76             :         {
      77             :             //! type conversion???
      78         236 :             xProp->getPropertyValue( rName ) >>= nRet;
      79             :         }
      80           0 :         catch(uno::Exception&)
      81             :         {
      82             :             // keep default
      83             :         }
      84             :     }
      85         236 :     return nRet;
      86             : }
      87             : 
      88         206 : sal_Int32 ScUnoHelpFunctions::GetEnumProperty( const uno::Reference<beans::XPropertySet>& xProp,
      89             :                                             const rtl::OUString& rName, long nDefault )
      90             : {
      91         206 :     sal_Int32 nRet = nDefault;
      92         206 :     if ( xProp.is() )
      93             :     {
      94             :         try
      95             :         {
      96         206 :             uno::Any aAny(xProp->getPropertyValue( rName ));
      97             : 
      98         206 :             if ( aAny.getValueTypeClass() == uno::TypeClass_ENUM )
      99             :             {
     100             :                 //! get enum value from any???
     101         206 :                 nRet = *(sal_Int32*)aAny.getValue();
     102             :             }
     103             :             else
     104             :             {
     105             :                 //! type conversion???
     106           0 :                 aAny >>= nRet;
     107         206 :             }
     108             :         }
     109           0 :         catch(uno::Exception&)
     110             :         {
     111             :             // keep default
     112             :         }
     113             :     }
     114         206 :     return nRet;
     115             : }
     116             : 
     117         134 : OUString ScUnoHelpFunctions::GetStringProperty(
     118             :     const Reference<beans::XPropertySet>& xProp, const OUString& rName, const OUString& rDefault )
     119             : {
     120         134 :     OUString aRet = rDefault;
     121         134 :     if (!xProp.is())
     122           0 :         return aRet;
     123             : 
     124             :     try
     125             :     {
     126         134 :         Any any = xProp->getPropertyValue(rName);
     127         134 :         any >>= aRet;
     128             :     }
     129           0 :     catch (const uno::Exception&)
     130             :     {
     131             :     }
     132             : 
     133         134 :     return aRet;
     134             : }
     135             : 
     136        1046 : sal_Bool ScUnoHelpFunctions::GetBoolFromAny( const uno::Any& aAny )
     137             : {
     138        1046 :     if ( aAny.getValueTypeClass() == uno::TypeClass_BOOLEAN )
     139        1046 :         return *(sal_Bool*)aAny.getValue();
     140           0 :     return false;
     141             : }
     142             : 
     143          44 : sal_Int16 ScUnoHelpFunctions::GetInt16FromAny( const uno::Any& aAny )
     144             : {
     145          44 :     sal_Int16 nRet = 0;
     146          44 :     if ( aAny >>= nRet )
     147          44 :         return nRet;
     148           0 :     return 0;
     149             : }
     150             : 
     151          88 : sal_Int32 ScUnoHelpFunctions::GetInt32FromAny( const uno::Any& aAny )
     152             : {
     153          88 :     sal_Int32 nRet = 0;
     154          88 :     if ( aAny >>= nRet )
     155          88 :         return nRet;
     156           0 :     return 0;
     157             : }
     158             : 
     159           1 : sal_Int32 ScUnoHelpFunctions::GetEnumFromAny( const uno::Any& aAny )
     160             : {
     161           1 :     sal_Int32 nRet = 0;
     162           1 :     if ( aAny.getValueTypeClass() == uno::TypeClass_ENUM )
     163           1 :         nRet = *(sal_Int32*)aAny.getValue();
     164             :     else
     165           0 :         aAny >>= nRet;
     166           1 :     return nRet;
     167             : }
     168             : 
     169         412 : void ScUnoHelpFunctions::SetBoolInAny( uno::Any& rAny, sal_Bool bValue )
     170             : {
     171         412 :     rAny.setValue( &bValue, getBooleanCppuType() );
     172         412 : }
     173             : 
     174         225 : void ScUnoHelpFunctions::SetOptionalPropertyValue(
     175             :     Reference<beans::XPropertySet>& rPropSet, const sal_Char* pPropName, const Any& rVal )
     176             : {
     177             :     try
     178             :     {
     179         225 :         rPropSet->setPropertyValue(OUString::createFromAscii(pPropName), rVal);
     180             :     }
     181           0 :     catch (const beans::UnknownPropertyException&)
     182             :     {
     183             :         // ignored - not supported.
     184             :     }
     185         225 : }
     186             : 
     187             : //------------------------------------------------------------------------
     188             : 
     189           2 : ScIndexEnumeration::ScIndexEnumeration(const uno::Reference<container::XIndexAccess>& rInd,
     190             :                                        const rtl::OUString& rServiceName) :
     191             :     xIndex( rInd ),
     192             :     sServiceName(rServiceName),
     193           2 :     nPos( 0 )
     194             : {
     195           2 : }
     196             : 
     197           4 : ScIndexEnumeration::~ScIndexEnumeration()
     198             : {
     199           4 : }
     200             : 
     201             : // XEnumeration
     202             : 
     203           2 : sal_Bool SAL_CALL ScIndexEnumeration::hasMoreElements() throw(uno::RuntimeException)
     204             : {
     205           2 :     SolarMutexGuard aGuard;
     206           2 :     return ( nPos < xIndex->getCount() );
     207             : }
     208             : 
     209           0 : uno::Any SAL_CALL ScIndexEnumeration::nextElement() throw(container::NoSuchElementException,
     210             :                                         lang::WrappedTargetException, uno::RuntimeException)
     211             : {
     212           0 :     SolarMutexGuard aGuard;
     213           0 :     uno::Any aReturn;
     214             :     try
     215             :     {
     216           0 :         aReturn = xIndex->getByIndex(nPos++);
     217             :     }
     218           0 :     catch (lang::IndexOutOfBoundsException&)
     219             :     {
     220           0 :         throw container::NoSuchElementException();
     221             :     }
     222           0 :     return aReturn;
     223             : }
     224             : 
     225           0 : ::rtl::OUString SAL_CALL ScIndexEnumeration::getImplementationName()
     226             :     throw(::com::sun::star::uno::RuntimeException)
     227             : {
     228           0 :     return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ScIndexEnumeration"));
     229             : }
     230             : 
     231           0 : sal_Bool SAL_CALL ScIndexEnumeration::supportsService( const ::rtl::OUString& ServiceName )
     232             :     throw(::com::sun::star::uno::RuntimeException)
     233             : {
     234           0 :     return sServiceName == ServiceName;
     235             : }
     236             : 
     237             : ::com::sun::star::uno::Sequence< ::rtl::OUString >
     238           0 :     SAL_CALL ScIndexEnumeration::getSupportedServiceNames(void)
     239             :     throw(::com::sun::star::uno::RuntimeException)
     240             : {
     241           0 :     ::com::sun::star::uno::Sequence< ::rtl::OUString > aRet(1);
     242           0 :     ::rtl::OUString* pArray = aRet.getArray();
     243           0 :     pArray[0] = sServiceName;
     244           0 :     return aRet;
     245             : }
     246             : 
     247             : //------------------------------------------------------------------------
     248             : 
     249             : //------------------------------------------------------------------------
     250             : 
     251         488 : ScNameToIndexAccess::ScNameToIndexAccess( const com::sun::star::uno::Reference<
     252             :                                             com::sun::star::container::XNameAccess>& rNameObj ) :
     253         488 :     xNameAccess( rNameObj )
     254             : {
     255             :     //! test for XIndexAccess interface at rNameObj, use that instead!
     256             : 
     257         488 :     if ( xNameAccess.is() )
     258         488 :         aNames = xNameAccess->getElementNames();
     259         488 : }
     260             : 
     261         976 : ScNameToIndexAccess::~ScNameToIndexAccess()
     262             : {
     263         976 : }
     264             : 
     265             : // XIndexAccess
     266             : 
     267         498 : sal_Int32 SAL_CALL ScNameToIndexAccess::getCount(  ) throw(::com::sun::star::uno::RuntimeException)
     268             : {
     269         498 :     return aNames.getLength();
     270             : }
     271             : 
     272        1010 : ::com::sun::star::uno::Any SAL_CALL ScNameToIndexAccess::getByIndex( sal_Int32 nIndex )
     273             :                                 throw(::com::sun::star::lang::IndexOutOfBoundsException,
     274             :                                         ::com::sun::star::lang::WrappedTargetException,
     275             :                                         ::com::sun::star::uno::RuntimeException)
     276             : {
     277        1010 :     if ( xNameAccess.is() && nIndex >= 0 && nIndex < aNames.getLength() )
     278        2020 :         return xNameAccess->getByName( aNames.getConstArray()[nIndex] );
     279             : 
     280           0 :     throw lang::IndexOutOfBoundsException();
     281             : }
     282             : 
     283             : // XElementAccess
     284             : 
     285           0 : ::com::sun::star::uno::Type SAL_CALL ScNameToIndexAccess::getElementType(  )
     286             :                                 throw(::com::sun::star::uno::RuntimeException)
     287             : {
     288           0 :     if ( xNameAccess.is() )
     289           0 :         return xNameAccess->getElementType();
     290             :     else
     291           0 :         return uno::Type();
     292             : }
     293             : 
     294           0 : sal_Bool SAL_CALL ScNameToIndexAccess::hasElements(  ) throw(::com::sun::star::uno::RuntimeException)
     295             : {
     296           0 :     return getCount() > 0;
     297             : }
     298             : 
     299             : //------------------------------------------------------------------------
     300             : 
     301             : 
     302             : 
     303             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10