LCOV - code coverage report
Current view: top level - libreoffice/oox/source/helper - propertyset.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 42 48 87.5 %
Date: 2012-12-27 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 "oox/helper/propertyset.hxx"
      21             : 
      22             : #include <osl/diagnose.h>
      23             : #include <rtl/strbuf.hxx>
      24             : #include "oox/helper/propertymap.hxx"
      25             : 
      26             : namespace oox {
      27             : 
      28             : // ============================================================================
      29             : 
      30             : using namespace ::com::sun::star::beans;
      31             : using namespace ::com::sun::star::uno;
      32             : 
      33             : // ============================================================================
      34             : 
      35        1219 : void PropertySet::set( const Reference< XPropertySet >& rxPropSet )
      36             : {
      37        1219 :     mxPropSet = rxPropSet;
      38        1219 :     mxMultiPropSet.set( mxPropSet, UNO_QUERY );
      39        1219 :     if( mxPropSet.is() ) try
      40             :     {
      41        1202 :         mxPropSetInfo = mxPropSet->getPropertySetInfo();
      42             :     }
      43           0 :     catch( Exception& )
      44             :     {
      45             :     }
      46        1219 : }
      47             : 
      48          30 : bool PropertySet::hasProperty( sal_Int32 nPropId ) const
      49             : {
      50          30 :     if( mxPropSetInfo.is() ) try
      51             :     {
      52          30 :         const OUString& rPropName = PropertyMap::getPropertyName( nPropId );
      53          30 :         return mxPropSetInfo->hasPropertyByName( rPropName );
      54             :     }
      55           0 :     catch( Exception& )
      56             :     {
      57             :     }
      58           0 :     return false;
      59             : }
      60             : 
      61             : // Get properties -------------------------------------------------------------
      62             : 
      63         387 : Any PropertySet::getAnyProperty( sal_Int32 nPropId ) const
      64             : {
      65         387 :     Any aValue;
      66         387 :     return implGetPropertyValue( aValue, PropertyMap::getPropertyName( nPropId ) ) ? aValue : Any();
      67             : }
      68             : 
      69             : // Set properties -------------------------------------------------------------
      70             : 
      71        1158 : bool PropertySet::setAnyProperty( sal_Int32 nPropId, const Any& rValue )
      72             : {
      73        1158 :     return implSetPropertyValue( PropertyMap::getPropertyName( nPropId ), rValue );
      74             : }
      75             : 
      76         408 : void PropertySet::setProperties( const Sequence< OUString >& rPropNames, const Sequence< Any >& rValues )
      77             : {
      78             :     OSL_ENSURE( rPropNames.getLength() == rValues.getLength(),
      79             :         "PropertySet::setProperties - length of sequences different" );
      80             : 
      81         408 :     if( mxMultiPropSet.is() ) try
      82             :     {
      83         291 :         mxMultiPropSet->setPropertyValues( rPropNames, rValues );
      84         699 :         return;
      85             :     }
      86           0 :     catch( Exception& )
      87             :     {
      88             :         OSL_FAIL( "PropertySet::setProperties - cannot set all property values, fallback to single mode" );
      89             :     }
      90             : 
      91         117 :     if( mxPropSet.is() )
      92             :     {
      93         117 :         const OUString* pPropName = rPropNames.getConstArray();
      94         117 :         const OUString* pPropNameEnd = pPropName + rPropNames.getLength();
      95         117 :         const Any* pValue = rValues.getConstArray();
      96        1434 :         for( ; pPropName != pPropNameEnd; ++pPropName, ++pValue )
      97        1317 :             implSetPropertyValue( *pPropName, *pValue );
      98             :     }
      99             : }
     100             : 
     101         441 : void PropertySet::setProperties( const PropertyMap& rPropertyMap )
     102             : {
     103         441 :     if( !rPropertyMap.empty() )
     104             :     {
     105         408 :         Sequence< OUString > aPropNames;
     106         408 :         Sequence< Any > aValues;
     107         408 :         rPropertyMap.fillSequences( aPropNames, aValues );
     108         408 :         setProperties( aPropNames, aValues );
     109             :     }
     110         441 : }
     111             : 
     112             : // private --------------------------------------------------------------------
     113             : 
     114         387 : bool PropertySet::implGetPropertyValue( Any& orValue, const OUString& rPropName ) const
     115             : {
     116         387 :     if( mxPropSet.is() ) try
     117             :     {
     118         387 :         orValue = mxPropSet->getPropertyValue( rPropName );
     119         387 :         return true;
     120             :     }
     121           0 :     catch( Exception& )
     122             :     {
     123             :         OSL_FAIL( OStringBuffer( "PropertySet::implGetPropertyValue - cannot get property \"" ).
     124             :             append( OUStringToOString( rPropName, RTL_TEXTENCODING_ASCII_US ) ).append( '"' ).getStr() );
     125             :     }
     126           0 :     return false;
     127             : }
     128             : 
     129        2475 : bool PropertySet::implSetPropertyValue( const OUString& rPropName, const Any& rValue )
     130             : {
     131        2475 :     if( mxPropSet.is() ) try
     132             :     {
     133        2458 :         mxPropSet->setPropertyValue( rPropName, rValue );
     134        2311 :         return true;
     135             :     }
     136         147 :     catch( Exception& )
     137             :     {
     138             :         OSL_FAIL( OStringBuffer( "PropertySet::implSetPropertyValue - cannot set property \"" ).
     139             :             append( OUStringToOString( rPropName, RTL_TEXTENCODING_ASCII_US ) ).append( '"' ).getStr() );
     140             :     }
     141         164 :     return false;
     142             : }
     143             : 
     144             : #ifdef DBG_UTIL
     145             : void PropertySet::dump()
     146             : {
     147             :     PropertyMap::dump( Reference< XPropertySet >( getXPropertySet(), UNO_QUERY ) );
     148             : }
     149             : #endif
     150             : 
     151             : } // namespace oox
     152             : 
     153             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10