LCOV - code coverage report
Current view: top level - libreoffice/basic/source/sbx - sbxcoll.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 6 161 3.7 %
Date: 2012-12-27 Functions: 3 42 7.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 <tools/stream.hxx>
      21             : 
      22             : #include <basic/sbx.hxx>
      23             : #include "sbxres.hxx"
      24             : 
      25         328 : TYPEINIT1(SbxCollection,SbxObject)
      26           0 : TYPEINIT1(SbxStdCollection,SbxCollection)
      27             : 
      28          28 : static OUString pCount;
      29          28 : static OUString pAdd;
      30          28 : static OUString pItem;
      31          28 : static OUString pRemove;
      32             : static sal_uInt16 nCountHash = 0, nAddHash, nItemHash, nRemoveHash;
      33             : 
      34             : 
      35           0 : SbxCollection::SbxCollection( const OUString& rClass )
      36           0 :              : SbxObject( rClass )
      37             : {
      38           0 :     if( !nCountHash )
      39             :     {
      40           0 :         pCount  = rtl::OUString::createFromAscii(GetSbxRes( STRING_COUNTPROP ));
      41           0 :         pAdd    = rtl::OUString::createFromAscii(GetSbxRes( STRING_ADDMETH ));
      42           0 :         pItem   = rtl::OUString::createFromAscii(GetSbxRes( STRING_ITEMMETH ));
      43           0 :         pRemove = rtl::OUString::createFromAscii(GetSbxRes( STRING_REMOVEMETH ));
      44           0 :         nCountHash  = MakeHashCode( pCount );
      45           0 :         nAddHash    = MakeHashCode( pAdd );
      46           0 :         nItemHash   = MakeHashCode( pItem );
      47           0 :         nRemoveHash = MakeHashCode( pRemove );
      48             :     }
      49           0 :     Initialize();
      50             :     // For Access on itself
      51           0 :     StartListening( GetBroadcaster(), sal_True );
      52           0 : }
      53             : 
      54           0 : SbxCollection::SbxCollection( const SbxCollection& rColl )
      55           0 :     : SvRefBase( rColl ), SbxObject( rColl )
      56           0 : {}
      57             : 
      58           0 : SbxCollection& SbxCollection::operator=( const SbxCollection& r )
      59             : {
      60           0 :     if( &r != this )
      61           0 :         SbxObject::operator=( r );
      62           0 :     return *this;
      63             : }
      64             : 
      65           0 : SbxCollection::~SbxCollection()
      66           0 : {}
      67             : 
      68           0 : void SbxCollection::Clear()
      69             : {
      70           0 :     SbxObject::Clear();
      71           0 :     Initialize();
      72           0 : }
      73             : 
      74           0 : void SbxCollection::Initialize()
      75             : {
      76           0 :     SetType( SbxOBJECT );
      77           0 :     SetFlag( SBX_FIXED );
      78           0 :     ResetFlag( SBX_WRITE );
      79             :     SbxVariable* p;
      80           0 :     p = Make( pCount , SbxCLASS_PROPERTY, SbxINTEGER );
      81           0 :     p->ResetFlag( SBX_WRITE );
      82           0 :     p->SetFlag( SBX_DONTSTORE );
      83           0 :     p = Make( pAdd, SbxCLASS_METHOD, SbxEMPTY );
      84           0 :     p->SetFlag( SBX_DONTSTORE );
      85           0 :     p = Make( pItem , SbxCLASS_METHOD, SbxOBJECT );
      86           0 :     p->SetFlag( SBX_DONTSTORE );
      87           0 :     p = Make( pRemove, SbxCLASS_METHOD, SbxEMPTY );
      88           0 :     p->SetFlag( SBX_DONTSTORE );
      89           0 : }
      90             : 
      91           0 : SbxVariable* SbxCollection::FindUserData( sal_uInt32 nData )
      92             : {
      93           0 :     if( GetParameters() )
      94             :     {
      95           0 :         SbxObject* pObj = (SbxObject*) GetObject();
      96           0 :         return pObj ? pObj->FindUserData( nData ) : NULL;
      97             :     }
      98             :     else
      99             :     {
     100           0 :         return SbxObject::FindUserData( nData );
     101             :     }
     102             : }
     103             : 
     104           0 : SbxVariable* SbxCollection::Find( const rtl::OUString& rName, SbxClassType t )
     105             : {
     106           0 :     if( GetParameters() )
     107             :     {
     108           0 :         SbxObject* pObj = (SbxObject*) GetObject();
     109           0 :         return pObj ? pObj->Find( rName, t ) : NULL;
     110             :     }
     111             :     else
     112             :     {
     113           0 :         return SbxObject::Find( rName, t );
     114             :     }
     115             : }
     116             : 
     117           0 : void SbxCollection::SFX_NOTIFY( SfxBroadcaster& rCst, const TypeId& rId1,
     118             :                                 const SfxHint& rHint, const TypeId& rId2 )
     119             : {
     120           0 :     const SbxHint* p = PTR_CAST(SbxHint,&rHint);
     121           0 :     if( p )
     122             :     {
     123           0 :         sal_uIntPtr nId = p->GetId();
     124           0 :         bool bRead  = ( nId == SBX_HINT_DATAWANTED );
     125           0 :         bool bWrite = ( nId == SBX_HINT_DATACHANGED );
     126           0 :         SbxVariable* pVar = p->GetVar();
     127           0 :         SbxArray* pArg = pVar->GetParameters();
     128           0 :         if( bRead || bWrite )
     129             :         {
     130           0 :             OUString aVarName( pVar->GetName() );
     131           0 :             if( pVar == this )
     132             :             {
     133           0 :                 CollItem( pArg );
     134             :             }
     135           0 :             else if( pVar->GetHashCode() == nCountHash
     136           0 :                   && aVarName.equalsIgnoreAsciiCase( pCount ) )
     137             :             {
     138           0 :                 pVar->PutLong( pObjs->Count() );
     139             :             }
     140           0 :             else if( pVar->GetHashCode() == nAddHash
     141           0 :                   && aVarName.equalsIgnoreAsciiCase( pAdd ) )
     142             :             {
     143           0 :                 CollAdd( pArg );
     144             :             }
     145           0 :             else if( pVar->GetHashCode() == nItemHash
     146           0 :                   && aVarName.equalsIgnoreAsciiCase( pItem ) )
     147             :             {
     148           0 :                 CollItem( pArg );
     149             :             }
     150           0 :             else if( pVar->GetHashCode() == nRemoveHash
     151           0 :                   && aVarName.equalsIgnoreAsciiCase( pRemove ) )
     152             :             {
     153           0 :                 CollRemove( pArg );
     154             :             }
     155             :             else
     156             :             {
     157           0 :                 SbxObject::SFX_NOTIFY( rCst, rId1, rHint, rId2 );
     158             :             }
     159           0 :             return;
     160             :         }
     161             :     }
     162           0 :     SbxObject::SFX_NOTIFY( rCst, rId1, rHint, rId2 );
     163             : }
     164             : 
     165             : // Default: argument is object
     166             : 
     167           0 : void SbxCollection::CollAdd( SbxArray* pPar_ )
     168             : {
     169           0 :     if( pPar_->Count() != 2 )
     170             :     {
     171           0 :         SetError( SbxERR_WRONG_ARGS );
     172             :     }
     173             :     else
     174             :     {
     175           0 :         SbxBase* pObj = pPar_->Get( 1 )->GetObject();
     176           0 :         if( !pObj || !( pObj->ISA(SbxObject) ) )
     177             :         {
     178           0 :             SetError( SbxERR_NOTIMP );
     179             :         }
     180             :         else
     181             :         {
     182           0 :             Insert( (SbxObject*) pObj );
     183             :         }
     184             :     }
     185           0 : }
     186             : 
     187             : // Default: index from 1 or object name
     188             : 
     189           0 : void SbxCollection::CollItem( SbxArray* pPar_ )
     190             : {
     191           0 :     if( pPar_->Count() != 2 )
     192             :     {
     193           0 :         SetError( SbxERR_WRONG_ARGS );
     194             :     }
     195             :     else
     196             :     {
     197           0 :         SbxVariable* pRes = NULL;
     198           0 :         SbxVariable* p = pPar_->Get( 1 );
     199           0 :         if( p->GetType() == SbxSTRING )
     200             :         {
     201           0 :             pRes = Find( p->GetOUString(), SbxCLASS_OBJECT );
     202             :         }
     203             :         else
     204             :         {
     205           0 :             short n = p->GetInteger();
     206           0 :             if( n >= 1 && n <= (short) pObjs->Count() )
     207             :             {
     208           0 :                 pRes = pObjs->Get( (sal_uInt16) n - 1 );
     209             :             }
     210             :         }
     211           0 :         if( !pRes )
     212             :         {
     213           0 :             SetError( SbxERR_BAD_INDEX );
     214             :         }
     215           0 :         pPar_->Get( 0 )->PutObject( pRes );
     216             :     }
     217           0 : }
     218             : 
     219             : // Default: index from 1
     220             : 
     221           0 : void SbxCollection::CollRemove( SbxArray* pPar_ )
     222             : {
     223           0 :     if( pPar_->Count() != 2 )
     224           0 :         SetError( SbxERR_WRONG_ARGS );
     225             :     else
     226             :     {
     227           0 :         short n = pPar_->Get( 1 )->GetInteger();
     228           0 :         if( n < 1 || n > (short) pObjs->Count() )
     229           0 :             SetError( SbxERR_BAD_INDEX );
     230             :         else
     231           0 :             Remove( pObjs->Get( (sal_uInt16) n - 1 ) );
     232             :     }
     233           0 : }
     234             : 
     235           0 : sal_Bool SbxCollection::LoadData( SvStream& rStrm, sal_uInt16 nVer )
     236             : {
     237           0 :     sal_Bool bRes = SbxObject::LoadData( rStrm, nVer );
     238           0 :     Initialize();
     239           0 :     return bRes;
     240             : }
     241             : 
     242             : 
     243           0 : SbxStdCollection::SbxStdCollection
     244             :                     ( const OUString& rClass, const OUString& rElem, sal_Bool b )
     245             :                   : SbxCollection( rClass ), aElemClass( rElem ),
     246           0 :                     bAddRemoveOk( b )
     247           0 : {}
     248             : 
     249           0 : SbxStdCollection::SbxStdCollection( const SbxStdCollection& r )
     250             :                   : SvRefBase( r ), SbxCollection( r ),
     251           0 :                     aElemClass( r.aElemClass ), bAddRemoveOk( r.bAddRemoveOk )
     252           0 : {}
     253             : 
     254           0 : SbxStdCollection& SbxStdCollection::operator=( const SbxStdCollection& r )
     255             : {
     256           0 :     if( &r != this )
     257             :     {
     258           0 :         if( !r.aElemClass.equalsIgnoreAsciiCase( aElemClass ) )
     259             :         {
     260           0 :             SetError( SbxERR_CONVERSION );
     261             :         }
     262             :         else
     263             :         {
     264           0 :             SbxCollection::operator=( r );
     265             :         }
     266             :     }
     267           0 :     return *this;
     268             : }
     269             : 
     270           0 : SbxStdCollection::~SbxStdCollection()
     271           0 : {}
     272             : 
     273             : // Default: Error, if wrong object
     274             : 
     275           0 : void SbxStdCollection::Insert( SbxVariable* p )
     276             : {
     277           0 :     SbxObject* pObj = PTR_CAST(SbxObject,p);
     278           0 :     if( pObj && !pObj->IsClass( aElemClass ) )
     279           0 :         SetError( SbxERR_BAD_ACTION );
     280             :     else
     281           0 :         SbxCollection::Insert( p );
     282           0 : }
     283             : 
     284           0 : void SbxStdCollection::CollAdd( SbxArray* pPar_ )
     285             : {
     286           0 :     if( !bAddRemoveOk )
     287           0 :         SetError( SbxERR_BAD_ACTION );
     288             :     else
     289           0 :         SbxCollection::CollAdd( pPar_ );
     290           0 : }
     291             : 
     292           0 : void SbxStdCollection::CollRemove( SbxArray* pPar_ )
     293             : {
     294           0 :     if( !bAddRemoveOk )
     295           0 :         SetError( SbxERR_BAD_ACTION );
     296             :     else
     297           0 :         SbxCollection::CollRemove( pPar_ );
     298           0 : }
     299             : 
     300           0 : sal_Bool SbxStdCollection::LoadData( SvStream& rStrm, sal_uInt16 nVer )
     301             : {
     302           0 :     sal_Bool bRes = SbxCollection::LoadData( rStrm, nVer );
     303           0 :     if( bRes )
     304             :     {
     305             :         aElemClass = read_lenPrefixed_uInt8s_ToOUString<sal_uInt16>(rStrm,
     306           0 :             RTL_TEXTENCODING_ASCII_US);
     307           0 :         rStrm >> bAddRemoveOk;
     308             :     }
     309           0 :     return bRes;
     310             : }
     311             : 
     312           0 : sal_Bool SbxStdCollection::StoreData( SvStream& rStrm ) const
     313             : {
     314           0 :     sal_Bool bRes = SbxCollection::StoreData( rStrm );
     315           0 :     if( bRes )
     316             :     {
     317             :         write_lenPrefixed_uInt8s_FromOUString<sal_uInt16>(rStrm, aElemClass,
     318           0 :             RTL_TEXTENCODING_ASCII_US);
     319           0 :         rStrm << bAddRemoveOk;
     320             :     }
     321           0 :     return bRes;
     322          84 : }
     323             : 
     324             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10