LCOV - code coverage report
Current view: top level - sd/source/ui/unoidl - unocpres.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 127 219 58.0 %
Date: 2015-06-13 12:38:46 Functions: 24 42 57.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 <algorithm>
      21             : 
      22             : #include <com/sun/star/lang/DisposedException.hpp>
      23             : #include <osl/mutex.hxx>
      24             : #include <vcl/svapp.hxx>
      25             : #include <svx/svdpage.hxx>
      26             : #include <comphelper/extract.hxx>
      27             : #include <cppuhelper/supportsservice.hxx>
      28             : 
      29             : #include "createunocustomshow.hxx"
      30             : #include "unohelp.hxx"
      31             : #include "unomodel.hxx"
      32             : #include "drawdoc.hxx"
      33             : #include "unocpres.hxx"
      34             : #include "cusshow.hxx"
      35             : #include "unopage.hxx"
      36             : #include "customshowlist.hxx"
      37             : 
      38             : using namespace ::com::sun::star;
      39             : 
      40           0 : uno::Reference< uno::XInterface > createUnoCustomShow( SdCustomShow* pShow )
      41             : {
      42           0 :     return static_cast<cppu::OWeakObject*>(new SdXCustomPresentation( pShow, NULL ));
      43             : }
      44             : 
      45           3 : SdXCustomPresentation::SdXCustomPresentation() throw()
      46             : :   mpSdCustomShow(NULL), mpModel(NULL),
      47             :     aDisposeListeners( aDisposeContainerMutex ),
      48           3 :     bDisposing( false )
      49             : {
      50           3 : }
      51             : 
      52           0 : SdXCustomPresentation::SdXCustomPresentation( SdCustomShow* pShow, SdXImpressDocument* pMyModel) throw()
      53             : :   mpSdCustomShow(pShow), mpModel(pMyModel),
      54             :     aDisposeListeners( aDisposeContainerMutex ),
      55           0 :     bDisposing( false )
      56             : {
      57           0 : }
      58             : 
      59           6 : SdXCustomPresentation::~SdXCustomPresentation() throw()
      60             : {
      61           6 : }
      62             : 
      63          12 : UNO3_GETIMPLEMENTATION_IMPL( SdXCustomPresentation );
      64             : 
      65             : // XServiceInfo
      66           0 : OUString SAL_CALL SdXCustomPresentation::getImplementationName()
      67             :     throw(uno::RuntimeException, std::exception)
      68             : {
      69           0 :     return OUString( "SdXCustomPresentation" ) ;
      70             : }
      71             : 
      72           0 : sal_Bool SAL_CALL SdXCustomPresentation::supportsService( const OUString& ServiceName )
      73             :     throw(uno::RuntimeException, std::exception)
      74             : {
      75           0 :     return cppu::supportsService( this, ServiceName );
      76             : }
      77             : 
      78           0 : uno::Sequence< OUString > SAL_CALL SdXCustomPresentation::getSupportedServiceNames()
      79             :     throw(uno::RuntimeException, std::exception)
      80             : {
      81           0 :     OUString aSN( "com.sun.star.presentation.CustomPresentation" );
      82           0 :     uno::Sequence< OUString > aSeq( &aSN, 1 );
      83           0 :     return aSeq;
      84             : }
      85             : 
      86             : // XIndexContainer
      87           5 : void SAL_CALL SdXCustomPresentation::insertByIndex( sal_Int32 Index, const uno::Any& Element )
      88             :     throw(lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
      89             : {
      90           5 :     SolarMutexGuard aGuard;
      91             : 
      92           5 :     if( bDisposing )
      93           0 :         throw lang::DisposedException();
      94             : 
      95           5 :     if( Index < 0 || Index > (sal_Int32)( mpSdCustomShow ? mpSdCustomShow->PagesVector().size() : 0 ) )
      96           0 :         throw lang::IndexOutOfBoundsException();
      97             : 
      98          10 :     uno::Reference< drawing::XDrawPage > xPage;
      99           5 :     Element >>= xPage;
     100             : 
     101           5 :     if(!xPage.is())
     102           2 :         throw lang::IllegalArgumentException();
     103             : 
     104           3 :     SdDrawPage* pPage = SdDrawPage::getImplementation( xPage );
     105             : 
     106           3 :     if(pPage)
     107             :     {
     108           3 :         if( NULL == mpModel )
     109           1 :             mpModel = pPage->GetModel();
     110             : 
     111           3 :         if( NULL != mpModel && NULL == mpSdCustomShow && mpModel->GetDoc() )
     112           0 :             mpSdCustomShow = new SdCustomShow( mpModel->GetDoc() );
     113             : 
     114           6 :         mpSdCustomShow->PagesVector().insert(mpSdCustomShow->PagesVector().begin() + Index,
     115           9 :             static_cast<SdPage*>(pPage->GetSdrPage()));
     116             :     }
     117             : 
     118           3 :     if( mpModel )
     119           8 :         mpModel->SetModified();
     120           3 : }
     121             : 
     122           6 : void SAL_CALL SdXCustomPresentation::removeByIndex( sal_Int32 Index )
     123             :     throw(lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
     124             : {
     125           6 :     SolarMutexGuard aGuard;
     126             : 
     127           6 :     if( bDisposing )
     128           0 :         throw lang::DisposedException();
     129             : 
     130           6 :     if(mpSdCustomShow)
     131             :     {
     132           6 :         uno::Reference< drawing::XDrawPage > xPage;
     133           6 :         getByIndex( Index ) >>= xPage;
     134             : 
     135           3 :         if( xPage.is() )
     136             :         {
     137           3 :             SvxDrawPage* pPage = SvxDrawPage::getImplementation( xPage );
     138           3 :             if(pPage)
     139             :             {
     140             :                 SdCustomShow::PageVec::iterator it = std::find(
     141           3 :                     mpSdCustomShow->PagesVector().begin(),
     142           3 :                     mpSdCustomShow->PagesVector().end(),
     143           9 :                     pPage->GetSdrPage());
     144           3 :                 if (it != mpSdCustomShow->PagesVector().end())
     145           3 :                     mpSdCustomShow->PagesVector().erase(it);
     146             :             }
     147           6 :         }
     148             :     }
     149             : 
     150           3 :     if( mpModel )
     151           6 :         mpModel->SetModified();
     152           3 : }
     153             : 
     154             : // XIndexReplace
     155           4 : void SAL_CALL SdXCustomPresentation::replaceByIndex( sal_Int32 Index, const uno::Any& Element )
     156             :     throw(lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
     157             : {
     158           4 :     removeByIndex( Index );
     159           2 :     insertByIndex( Index, Element );
     160           1 : }
     161             : 
     162             : // XElementAccess
     163           1 : uno::Type SAL_CALL SdXCustomPresentation::getElementType()
     164             :     throw(uno::RuntimeException, std::exception)
     165             : {
     166           1 :     return cppu::UnoType<drawing::XDrawPage>::get();
     167             : }
     168             : 
     169           1 : sal_Bool SAL_CALL SdXCustomPresentation::hasElements()
     170             :     throw(uno::RuntimeException, std::exception)
     171             : {
     172           1 :     SolarMutexGuard aGuard;
     173             : 
     174           1 :     if( bDisposing )
     175           0 :         throw lang::DisposedException();
     176             : 
     177           1 :     return getCount() > 0;
     178             : }
     179             : 
     180             : // XIndexAccess
     181           4 : sal_Int32 SAL_CALL SdXCustomPresentation::getCount()
     182             :     throw(uno::RuntimeException, std::exception)
     183             : {
     184           4 :     SolarMutexGuard aGuard;
     185           4 :     if( bDisposing )
     186           0 :         throw lang::DisposedException();
     187             : 
     188           4 :     return mpSdCustomShow ? mpSdCustomShow->PagesVector().size() : 0;
     189             : }
     190             : 
     191          13 : uno::Any SAL_CALL SdXCustomPresentation::getByIndex( sal_Int32 Index )
     192             :     throw(lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
     193             : {
     194          13 :     SolarMutexGuard aGuard;
     195             : 
     196          13 :     if( bDisposing )
     197           0 :         throw lang::DisposedException();
     198             : 
     199          13 :     if (Index < 0 || !mpSdCustomShow || Index >= (sal_Int32)mpSdCustomShow->PagesVector().size())
     200           4 :         throw lang::IndexOutOfBoundsException();
     201             : 
     202           9 :     uno::Any aAny;
     203           9 :     SdrPage * pPage = static_cast<SdrPage*>(const_cast<SdPage *>(mpSdCustomShow->PagesVector()[Index]));
     204             : 
     205           9 :     if( pPage )
     206             :     {
     207           9 :         uno::Reference< drawing::XDrawPage > xRef( pPage->getUnoPage(), uno::UNO_QUERY );
     208           9 :         aAny <<= xRef;
     209             :     }
     210             : 
     211          13 :     return aAny;
     212             : }
     213             : 
     214             : // XNamed
     215           3 : OUString SAL_CALL SdXCustomPresentation::getName()
     216             :     throw(uno::RuntimeException, std::exception)
     217             : {
     218           3 :     SolarMutexGuard aGuard;
     219             : 
     220           3 :     if( bDisposing )
     221           0 :         throw lang::DisposedException();
     222             : 
     223           3 :     if(mpSdCustomShow)
     224           3 :         return mpSdCustomShow->GetName();
     225             : 
     226           0 :     return OUString();
     227             : }
     228             : 
     229           2 : void SAL_CALL SdXCustomPresentation::setName( const OUString& aName )
     230             :     throw(uno::RuntimeException, std::exception)
     231             : {
     232           2 :     SolarMutexGuard aGuard;
     233             : 
     234           2 :     if( bDisposing )
     235           0 :         throw lang::DisposedException();
     236             : 
     237           2 :     if(mpSdCustomShow)
     238           2 :         mpSdCustomShow->SetName( aName );
     239           2 : }
     240             : 
     241             : // XComponent
     242           3 : void SAL_CALL SdXCustomPresentation::dispose() throw(uno::RuntimeException, std::exception)
     243             : {
     244           3 :     SolarMutexGuard aGuard;
     245             : 
     246           3 :     if( bDisposing )
     247           3 :         return; // catched a recursion
     248             : 
     249           3 :     bDisposing = true;
     250             : 
     251           6 :     uno::Reference< uno::XInterface > xSource( static_cast<cppu::OWeakObject*>(this) );
     252             : 
     253           6 :     lang::EventObject aEvt;
     254           3 :     aEvt.Source = xSource;
     255           3 :     aDisposeListeners.disposeAndClear(aEvt);
     256             : 
     257           6 :     mpSdCustomShow = NULL;
     258             : }
     259             : 
     260           0 : void SAL_CALL SdXCustomPresentation::addEventListener( const uno::Reference< lang::XEventListener >& xListener )
     261             :     throw(uno::RuntimeException, std::exception)
     262             : {
     263           0 :     if( bDisposing )
     264           0 :         throw lang::DisposedException();
     265             : 
     266           0 :     aDisposeListeners.addInterface(xListener);
     267           0 : }
     268             : 
     269           0 : void SAL_CALL SdXCustomPresentation::removeEventListener( const uno::Reference< lang::XEventListener >& aListener ) throw(uno::RuntimeException, std::exception)
     270             : {
     271           0 :     if( !bDisposing )
     272           0 :         aDisposeListeners.removeInterface(aListener);
     273           0 : }
     274             : 
     275             : /*===========================================================================*
     276             :  *  class SdXCustomPresentationAccess : public XCustomPresentationAccess,    *
     277             :  *                                      public UsrObject                     *
     278             :  *===========================================================================*/
     279             : 
     280          54 : SdXCustomPresentationAccess::SdXCustomPresentationAccess(SdXImpressDocument& rMyModel) throw()
     281          54 : : mrModel(rMyModel)
     282             : {
     283          54 : }
     284             : 
     285         108 : SdXCustomPresentationAccess::~SdXCustomPresentationAccess() throw()
     286             : {
     287         108 : }
     288             : 
     289             : // XServiceInfo
     290           0 : OUString SAL_CALL SdXCustomPresentationAccess::getImplementationName()
     291             :     throw(uno::RuntimeException, std::exception)
     292             : {
     293           0 :     return OUString( "SdXCustomPresentationAccess" );
     294             : }
     295             : 
     296           0 : sal_Bool SAL_CALL SdXCustomPresentationAccess::supportsService( const OUString& ServiceName )
     297             :     throw(uno::RuntimeException, std::exception)
     298             : {
     299           0 :     return cppu::supportsService( this, ServiceName );
     300             : }
     301             : 
     302           0 : uno::Sequence< OUString > SAL_CALL SdXCustomPresentationAccess::getSupportedServiceNames()
     303             :     throw(uno::RuntimeException, std::exception)
     304             : {
     305           0 :     const OUString aNS( "com.sun.star.presentation.CustomPresentationAccess" );
     306           0 :     uno::Sequence< OUString > aSeq( &aNS, 1 );
     307           0 :     return aSeq;
     308             : }
     309             : 
     310             : // XSingleServiceFactory
     311           3 : uno::Reference< uno::XInterface > SAL_CALL SdXCustomPresentationAccess::createInstance()
     312             :     throw(uno::Exception, uno::RuntimeException, std::exception)
     313             : {
     314           3 :     uno::Reference< uno::XInterface >  xRef( static_cast<cppu::OWeakObject*>(new SdXCustomPresentation()) );
     315           3 :     return xRef;
     316             : }
     317             : 
     318           0 : uno::Reference< uno::XInterface > SAL_CALL SdXCustomPresentationAccess::createInstanceWithArguments( const uno::Sequence< uno::Any >& )
     319             :     throw(uno::Exception, uno::RuntimeException, std::exception)
     320             : {
     321           0 :     return createInstance();
     322             : }
     323             : 
     324             : // XNameContainer
     325           3 : void SAL_CALL SdXCustomPresentationAccess::insertByName( const OUString& aName, const uno::Any& aElement )
     326             :     throw(lang::IllegalArgumentException, container::ElementExistException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
     327             : {
     328           3 :     SolarMutexGuard aGuard;
     329             : 
     330             :     // get the documents custom show list
     331           3 :     SdCustomShowList* pList = 0;
     332           3 :     if(mrModel.GetDoc())
     333           3 :         pList = mrModel.GetDoc()->GetCustomShowList(true);
     334             : 
     335             :     // no list, no cookies
     336           3 :     if( NULL == pList)
     337           0 :         throw uno::RuntimeException();
     338             : 
     339             :     // do we have an container::XIndexContainer?
     340           3 :     SdXCustomPresentation* pXShow = NULL;
     341             : 
     342           6 :     uno::Reference< container::XIndexContainer > xContainer;
     343           3 :     if( (aElement >>= xContainer) && xContainer.is() )
     344           3 :         pXShow = SdXCustomPresentation::getImplementation(xContainer);
     345             : 
     346           3 :     if( NULL == pXShow )
     347           0 :         throw lang::IllegalArgumentException();
     348             : 
     349             :     // get the internal custom show from the api wrapper
     350           3 :     SdCustomShow* pShow = pXShow->GetSdCustomShow();
     351           3 :     if( NULL == pShow )
     352             :     {
     353           3 :         pShow = new SdCustomShow( mrModel.GetDoc(), xContainer );
     354           3 :         pXShow->SetSdCustomShow( pShow );
     355             :     }
     356             :     else
     357             :     {
     358           0 :         if( NULL == pXShow->GetModel() || *pXShow->GetModel() != mrModel )
     359           0 :             throw lang::IllegalArgumentException();
     360             :     }
     361             : 
     362             :     // give it a name
     363           3 :     pShow->SetName( aName);
     364             : 
     365             :     // check if this or another customshow with the same name already exists
     366           4 :     for( SdCustomShow* pCompare = pList->First();
     367             :          pCompare;
     368             :          pCompare = pList->Next() )
     369             :     {
     370           1 :         if( pCompare == pShow || pCompare->GetName() == pShow->GetName() )
     371           0 :             throw container::ElementExistException();
     372             :     }
     373             : 
     374           3 :     pList->push_back(pShow);
     375             : 
     376           6 :     mrModel.SetModified();
     377           3 : }
     378             : 
     379           0 : void SAL_CALL SdXCustomPresentationAccess::removeByName( const OUString& Name )
     380             :     throw(container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
     381             : {
     382           0 :     SolarMutexGuard aGuard;
     383             : 
     384           0 :     SdCustomShow* pShow = getSdCustomShow(Name);
     385             : 
     386           0 :     SdCustomShowList* pList = GetCustomShowList();
     387           0 :     if(pList && pShow)
     388           0 :         delete pList->Remove( pShow );
     389             :     else
     390           0 :         throw container::NoSuchElementException();
     391             : 
     392           0 :     mrModel.SetModified();
     393           0 : }
     394             : 
     395             : // XNameReplace
     396           0 : void SAL_CALL SdXCustomPresentationAccess::replaceByName( const OUString& aName, const uno::Any& aElement )
     397             :     throw(lang::IllegalArgumentException, container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
     398             : {
     399           0 :     removeByName( aName );
     400           0 :     insertByName( aName, aElement );
     401           0 : }
     402             : 
     403             : // XNameAccess
     404           0 : uno::Any SAL_CALL SdXCustomPresentationAccess::getByName( const OUString& aName )
     405             :     throw(container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
     406             : {
     407           0 :     SolarMutexGuard aGuard;
     408             : 
     409           0 :     uno::Any aAny;
     410             : 
     411           0 :     SdCustomShow* pShow = getSdCustomShow(aName);
     412           0 :     if(pShow)
     413             :     {
     414           0 :         uno::Reference< container::XIndexContainer >  xRef( pShow->getUnoCustomShow(), uno::UNO_QUERY );
     415           0 :         aAny <<= xRef;
     416             :     }
     417             :     else
     418             :     {
     419           0 :         throw container::NoSuchElementException();
     420             :     }
     421             : 
     422           0 :     return aAny;
     423             : }
     424             : 
     425          10 : uno::Sequence< OUString > SAL_CALL SdXCustomPresentationAccess::getElementNames()
     426             :     throw(uno::RuntimeException, std::exception)
     427             : {
     428          10 :     SolarMutexGuard aGuard;
     429             : 
     430          10 :     SdCustomShowList* pList = GetCustomShowList();
     431          10 :     const sal_uInt32 nCount = pList ? pList->size() : 0;
     432             : 
     433          10 :     uno::Sequence< OUString > aSequence( nCount );
     434          10 :     OUString* pStringList = aSequence.getArray();
     435             : 
     436          10 :     sal_uInt32 nIdx = 0;
     437          20 :     while( nIdx < nCount )
     438             :     {
     439           0 :         const SdCustomShow* pShow = (*pList)[nIdx];
     440           0 :         pStringList[nIdx] = pShow->GetName();
     441           0 :         nIdx++;
     442             :     }
     443             : 
     444          10 :     return aSequence;
     445             : }
     446             : 
     447           0 : sal_Bool SAL_CALL SdXCustomPresentationAccess::hasByName( const OUString& aName )
     448             :     throw(uno::RuntimeException, std::exception)
     449             : {
     450           0 :     SolarMutexGuard aGuard;
     451           0 :     return getSdCustomShow(aName) != NULL;
     452             : }
     453             : 
     454             : // XElementAccess
     455           0 : uno::Type SAL_CALL SdXCustomPresentationAccess::getElementType()
     456             :     throw(uno::RuntimeException, std::exception)
     457             : {
     458           0 :     return cppu::UnoType<container::XIndexContainer>::get();
     459             : }
     460             : 
     461           0 : sal_Bool SAL_CALL SdXCustomPresentationAccess::hasElements()
     462             :     throw(uno::RuntimeException, std::exception)
     463             : {
     464           0 :     SolarMutexGuard aGuard;
     465             : 
     466           0 :     SdCustomShowList* pList = GetCustomShowList();
     467           0 :     return pList && !pList->empty();
     468             : }
     469             : 
     470           0 : SdCustomShow * SdXCustomPresentationAccess::getSdCustomShow( const OUString& Name ) const throw()
     471             : {
     472           0 :     sal_uInt32 nIdx = 0;
     473             : 
     474           0 :     SdCustomShowList* pList = GetCustomShowList();
     475           0 :     const sal_uInt32 nCount = pList ? pList->size() : 0;
     476             : 
     477           0 :     const OUString aName( Name );
     478             : 
     479           0 :     while( nIdx < nCount )
     480             :     {
     481           0 :         SdCustomShow* pShow = (*pList)[nIdx];
     482           0 :         if( pShow->GetName() == aName )
     483           0 :             return pShow;
     484           0 :         nIdx++;
     485             :     }
     486           0 :     return NULL;
     487          66 : }
     488             : 
     489             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11