LCOV - code coverage report
Current view: top level - chart2/source/controller/itemsetwrapper - ItemConverter.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 89 0.0 %
Date: 2014-04-14 Functions: 0 13 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 "ItemConverter.hxx"
      21             : #include "macros.hxx"
      22             : #include <com/sun/star/lang/XComponent.hpp>
      23             : #include <svl/itemprop.hxx>
      24             : #include <svl/itemiter.hxx>
      25             : // header for class SfxWhichIter
      26             : #include <svl/whiter.hxx>
      27             : #include <svx/svxids.hrc>
      28             : 
      29             : using namespace ::com::sun::star;
      30             : 
      31             : namespace comphelper
      32             : {
      33             : 
      34           0 : ItemConverter::ItemConverter(
      35             :     const uno::Reference< beans::XPropertySet > & rPropertySet,
      36             :     SfxItemPool& rItemPool ) :
      37             :         m_xPropertySet( rPropertySet ),
      38             :         m_xPropertySetInfo( NULL ),
      39             :         m_rItemPool( rItemPool ),
      40           0 :         m_bIsValid( true )
      41             : {
      42           0 :     resetPropertySet( m_xPropertySet );
      43           0 : }
      44             : 
      45           0 : ItemConverter::~ItemConverter()
      46             : {
      47           0 :     stopAllComponentListening();
      48           0 : }
      49             : 
      50           0 : void ItemConverter::resetPropertySet(
      51             :     const uno::Reference< beans::XPropertySet > & xPropSet )
      52             : {
      53           0 :     if( xPropSet.is())
      54             :     {
      55           0 :         stopAllComponentListening();
      56           0 :         m_xPropertySet = xPropSet;
      57           0 :         m_xPropertySetInfo = m_xPropertySet->getPropertySetInfo();
      58             : 
      59           0 :         uno::Reference< lang::XComponent > xComp( m_xPropertySet, uno::UNO_QUERY );
      60           0 :         if( xComp.is())
      61             :         {
      62             :             // method of base class ::utl::OEventListenerAdapter
      63           0 :             startComponentListening( xComp );
      64           0 :         }
      65             :     }
      66           0 : }
      67             : 
      68           0 : SfxItemPool & ItemConverter::GetItemPool() const
      69             : {
      70           0 :     return m_rItemPool;
      71             : }
      72             : 
      73           0 : SfxItemSet ItemConverter::CreateEmptyItemSet() const
      74             : {
      75           0 :     return SfxItemSet( GetItemPool(), GetWhichPairs() );
      76             : }
      77             : 
      78           0 : uno::Reference< beans::XPropertySet > ItemConverter::GetPropertySet() const
      79             : {
      80           0 :     return m_xPropertySet;
      81             : }
      82             : 
      83           0 : void ItemConverter::_disposing( const lang::EventObject& rSource )
      84             : {
      85           0 :     if( rSource.Source == m_xPropertySet )
      86             :     {
      87           0 :         m_bIsValid = false;
      88             :     }
      89           0 : }
      90             : 
      91           0 : void ItemConverter::FillItemSet( SfxItemSet & rOutItemSet ) const
      92             : {
      93           0 :     const sal_uInt16 * pRanges = rOutItemSet.GetRanges();
      94           0 :     tPropertyNameWithMemberId aProperty;
      95           0 :     SfxItemPool & rPool = GetItemPool();
      96             : 
      97             :     OSL_ASSERT( pRanges != NULL );
      98             :     OSL_ASSERT( m_xPropertySetInfo.is());
      99             :     OSL_ASSERT( m_xPropertySet.is());
     100             : 
     101           0 :     while( (*pRanges) != 0)
     102             :     {
     103           0 :         sal_uInt16 nBeg = (*pRanges);
     104           0 :         ++pRanges;
     105           0 :         sal_uInt16 nEnd = (*pRanges);
     106           0 :         ++pRanges;
     107             : 
     108             :         OSL_ASSERT( nBeg <= nEnd );
     109           0 :         for( sal_uInt16 nWhich = nBeg; nWhich <= nEnd; ++nWhich )
     110             :         {
     111           0 :             if( GetItemProperty( nWhich, aProperty ))
     112             :             {
     113             :                 // put the Property into the itemset
     114           0 :                 SfxPoolItem * pItem = rPool.GetDefaultItem( nWhich ).Clone();
     115             : 
     116           0 :                 if( pItem )
     117             :                 {
     118             :                     try
     119             :                     {
     120           0 :                         if( ! pItem->PutValue( m_xPropertySet->getPropertyValue( aProperty.first ),
     121             :                                                aProperty.second // nMemberId
     122           0 :                                 ))
     123             :                         {
     124           0 :                             delete pItem;
     125             :                         }
     126             :                         else
     127             :                         {
     128           0 :                             rOutItemSet.Put( *pItem, nWhich );
     129           0 :                             delete pItem;
     130             :                         }
     131             :                     }
     132           0 :                     catch( const beans::UnknownPropertyException &ex )
     133             :                     {
     134           0 :                         delete pItem;
     135             :                         (void)ex;
     136             :                         OSL_FAIL(
     137             :                                     OUStringToOString(
     138             :                                         ex.Message +
     139             :                                         " - unknown Property: " + aProperty.first,
     140             :                                         RTL_TEXTENCODING_ASCII_US ).getStr());
     141             :                     }
     142           0 :                     catch( const uno::Exception &ex )
     143             :                     {
     144             :                         ASSERT_EXCEPTION( ex );
     145             :                     }
     146             :                 }
     147             :             }
     148             :             else
     149             :             {
     150             :                 try
     151             :                 {
     152           0 :                     FillSpecialItem( nWhich, rOutItemSet );
     153             :                 }
     154           0 :                 catch( const uno::Exception &ex )
     155             :                 {
     156             :                     ASSERT_EXCEPTION( ex );
     157             :                 }
     158             :             }
     159             :         }
     160           0 :     }
     161           0 : }
     162             : 
     163           0 : void ItemConverter::FillSpecialItem(
     164             :     sal_uInt16 /*nWhichId*/, SfxItemSet & /*rOutItemSet*/ ) const
     165             :     throw( uno::Exception )
     166             : {
     167             :     OSL_FAIL( "ItemConverter: Unhandled special item found!" );
     168           0 : }
     169             : 
     170           0 : bool ItemConverter::ApplySpecialItem(
     171             :     sal_uInt16 /*nWhichId*/, const SfxItemSet & /*rItemSet*/ )
     172             :     throw( uno::Exception )
     173             : {
     174             :     OSL_FAIL( "ItemConverter: Unhandled special item found!" );
     175           0 :     return false;
     176             : }
     177             : 
     178           0 : bool ItemConverter::ApplyItemSet( const SfxItemSet & rItemSet )
     179             : {
     180             :     OSL_ASSERT( m_xPropertySet.is());
     181             : 
     182           0 :     bool bItemsChanged = false;
     183           0 :     SfxItemIter aIter( rItemSet );
     184           0 :     const SfxPoolItem * pItem = aIter.FirstItem();
     185           0 :     tPropertyNameWithMemberId aProperty;
     186           0 :     uno::Any aValue;
     187             : 
     188           0 :     while( pItem )
     189             :     {
     190           0 :         if( rItemSet.GetItemState( pItem->Which(), false ) == SFX_ITEM_SET )
     191             :         {
     192           0 :             if( GetItemProperty( pItem->Which(), aProperty ))
     193             :             {
     194           0 :                 pItem->QueryValue( aValue, aProperty.second /* nMemberId */ );
     195             : 
     196             :                 try
     197             :                 {
     198           0 :                     if( aValue != m_xPropertySet->getPropertyValue( aProperty.first ))
     199             :                     {
     200           0 :                         m_xPropertySet->setPropertyValue( aProperty.first, aValue );
     201           0 :                         bItemsChanged = true;
     202             :                     }
     203             :                 }
     204           0 :                 catch( const beans::UnknownPropertyException &ex )
     205             :                 {
     206             :                     (void)ex;
     207             :                     OSL_FAIL(
     208             :                                 OUStringToOString(
     209             :                                     ex.Message +
     210             :                                     " - unknown Property: " + aProperty.first,
     211             :                                     RTL_TEXTENCODING_ASCII_US).getStr());
     212             :                 }
     213           0 :                 catch( const uno::Exception &ex )
     214             :                 {
     215             :                     (void)ex;
     216             :                     OSL_FAIL( OUStringToOString(
     217             :                                     ex.Message, RTL_TEXTENCODING_ASCII_US ).getStr());
     218             :                 }
     219             :             }
     220             :             else
     221             :             {
     222           0 :                 bItemsChanged = ApplySpecialItem( pItem->Which(), rItemSet ) || bItemsChanged;
     223             :             }
     224             :         }
     225           0 :         pItem = aIter.NextItem();
     226             :     }
     227             : 
     228           0 :     return bItemsChanged;
     229             : }
     230             : 
     231           0 : void ItemConverter::InvalidateUnequalItems( SfxItemSet  &rDestSet, const SfxItemSet &rSourceSet )
     232             : {
     233           0 :     SfxWhichIter      aIter (rSourceSet);
     234           0 :     sal_uInt16            nWhich     = aIter.FirstWhich ();
     235           0 :     const SfxPoolItem *pPoolItem = NULL;
     236             : 
     237           0 :     while (nWhich)
     238             :     {
     239           0 :         if ((rSourceSet.GetItemState(nWhich, true, &pPoolItem) == SFX_ITEM_SET) &&
     240           0 :             (rDestSet.GetItemState(nWhich, true, &pPoolItem) == SFX_ITEM_SET))
     241             :         {
     242           0 :             if (rSourceSet.Get(nWhich) != rDestSet.Get(nWhich))
     243             :             {
     244           0 :                 if( SID_CHAR_DLG_PREVIEW_STRING != nWhich )
     245             :                 {
     246           0 :                     rDestSet.InvalidateItem(nWhich);
     247             :                 }
     248             :             }
     249             :         }
     250           0 :         else if( rSourceSet.GetItemState(nWhich, true, &pPoolItem) == SFX_ITEM_DONTCARE )
     251           0 :             rDestSet.InvalidateItem(nWhich);
     252             : 
     253           0 :         nWhich = aIter.NextWhich ();
     254           0 :     }
     255           0 : }
     256             : 
     257             : } //  namespace comphelper
     258             : 
     259             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10