LCOV - code coverage report
Current view: top level - sc/source/core/tool - charthelper.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 252 0.0 %
Date: 2014-04-14 Functions: 0 12 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 "charthelper.hxx"
      21             : #include "document.hxx"
      22             : #include "drwlayer.hxx"
      23             : #include "rangelst.hxx"
      24             : #include "chartlis.hxx"
      25             : #include "docuno.hxx"
      26             : 
      27             : #include <svx/svditer.hxx>
      28             : #include <svx/svdoole2.hxx>
      29             : #include <svx/svdpage.hxx>
      30             : 
      31             : #include <com/sun/star/chart2/data/XDataReceiver.hpp>
      32             : #include <com/sun/star/util/XModifiable.hpp>
      33             : 
      34             : using namespace com::sun::star;
      35             : using ::com::sun::star::uno::Reference;
      36             : 
      37             : namespace
      38             : {
      39             : 
      40           0 : sal_uInt16 lcl_DoUpdateCharts( const ScAddress& rPos, ScDocument* pDoc, bool bAllCharts )
      41             : {
      42           0 :     ScDrawLayer* pModel = pDoc->GetDrawLayer();
      43           0 :     if (!pModel)
      44           0 :         return 0;
      45             : 
      46           0 :     sal_uInt16 nFound = 0;
      47             : 
      48           0 :     sal_uInt16 nPageCount = pModel->GetPageCount();
      49           0 :     for (sal_uInt16 nPageNo=0; nPageNo<nPageCount; nPageNo++)
      50             :     {
      51           0 :         SdrPage* pPage = pModel->GetPage(nPageNo);
      52             :         OSL_ENSURE(pPage,"Page ?");
      53             : 
      54           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
      55           0 :         SdrObject* pObject = aIter.Next();
      56           0 :         while (pObject)
      57             :         {
      58           0 :             if ( pObject->GetObjIdentifier() == OBJ_OLE2 && pDoc->IsChart( pObject ) )
      59             :             {
      60           0 :                 OUString aName = ((SdrOle2Obj*)pObject)->GetPersistName();
      61           0 :                 bool bHit = true;
      62           0 :                 if ( !bAllCharts )
      63             :                 {
      64           0 :                     ScRangeList aRanges;
      65           0 :                     bool bColHeaders = false;
      66           0 :                     bool bRowHeaders = false;
      67           0 :                     pDoc->GetOldChartParameters( aName, aRanges, bColHeaders, bRowHeaders );
      68           0 :                     bHit = aRanges.In( rPos );
      69             :                 }
      70           0 :                 if ( bHit )
      71             :                 {
      72           0 :                     pDoc->UpdateChart( aName );
      73           0 :                     ++nFound;
      74           0 :                 }
      75             :             }
      76           0 :             pObject = aIter.Next();
      77             :         }
      78           0 :     }
      79           0 :     return nFound;
      80             : }
      81             : 
      82           0 : bool lcl_AdjustRanges( ScRangeList& rRanges, SCTAB nSourceTab, SCTAB nDestTab, SCTAB nTabCount )
      83             : {
      84             :     //! if multiple sheets are copied, update references into the other copied sheets?
      85             : 
      86           0 :     bool bChanged = false;
      87             : 
      88           0 :     for ( size_t i=0, nCount = rRanges.size(); i < nCount; i++ )
      89             :     {
      90           0 :         ScRange* pRange = rRanges[ i ];
      91           0 :         if ( pRange->aStart.Tab() == nSourceTab && pRange->aEnd.Tab() == nSourceTab )
      92             :         {
      93           0 :             pRange->aStart.SetTab( nDestTab );
      94           0 :             pRange->aEnd.SetTab( nDestTab );
      95           0 :             bChanged = true;
      96             :         }
      97           0 :         if ( pRange->aStart.Tab() >= nTabCount )
      98             :         {
      99           0 :             pRange->aStart.SetTab( nTabCount > 0 ? ( nTabCount - 1 ) : 0 );
     100           0 :             bChanged = true;
     101             :         }
     102           0 :         if ( pRange->aEnd.Tab() >= nTabCount )
     103             :         {
     104           0 :             pRange->aEnd.SetTab( nTabCount > 0 ? ( nTabCount - 1 ) : 0 );
     105           0 :             bChanged = true;
     106             :         }
     107             :     }
     108             : 
     109           0 :     return bChanged;
     110             : }
     111             : 
     112             : }//end anonymous namespace
     113             : 
     114             : // ScChartHelper
     115             : //static
     116           0 : sal_uInt16 ScChartHelper::DoUpdateAllCharts( ScDocument* pDoc )
     117             : {
     118           0 :     return lcl_DoUpdateCharts( ScAddress(), pDoc, true );
     119             : }
     120             : 
     121           0 : void ScChartHelper::AdjustRangesOfChartsOnDestinationPage( ScDocument* pSrcDoc, ScDocument* pDestDoc, const SCTAB nSrcTab, const SCTAB nDestTab )
     122             : {
     123           0 :     if( !pSrcDoc || !pDestDoc )
     124           0 :         return;
     125           0 :     ScDrawLayer* pDrawLayer = pDestDoc->GetDrawLayer();
     126           0 :     if( !pDrawLayer )
     127           0 :         return;
     128             : 
     129           0 :     SdrPage* pDestPage = pDrawLayer->GetPage(static_cast<sal_uInt16>(nDestTab));
     130           0 :     if( pDestPage )
     131             :     {
     132           0 :         SdrObjListIter aIter( *pDestPage, IM_FLAT );
     133           0 :         SdrObject* pObject = aIter.Next();
     134           0 :         while( pObject )
     135             :         {
     136           0 :             if( pObject->GetObjIdentifier() == OBJ_OLE2 && ((SdrOle2Obj*)pObject)->IsChart() )
     137             :             {
     138           0 :                 OUString aChartName = ((SdrOle2Obj*)pObject)->GetPersistName();
     139             : 
     140           0 :                 Reference< chart2::XChartDocument > xChartDoc( pDestDoc->GetChartByName( aChartName ) );
     141           0 :                 Reference< chart2::data::XDataReceiver > xReceiver( xChartDoc, uno::UNO_QUERY );
     142           0 :                 if( xChartDoc.is() && xReceiver.is() && !xChartDoc->hasInternalDataProvider() )
     143             :                 {
     144           0 :                     ::std::vector< ScRangeList > aRangesVector;
     145           0 :                     pDestDoc->GetChartRanges( aChartName, aRangesVector, pSrcDoc );
     146             : 
     147           0 :                     ::std::vector< ScRangeList >::iterator aIt( aRangesVector.begin() );
     148           0 :                     for( ; aIt!=aRangesVector.end(); ++aIt )
     149             :                     {
     150           0 :                         ScRangeList& rScRangeList( *aIt );
     151           0 :                         lcl_AdjustRanges( rScRangeList, nSrcTab, nDestTab, pDestDoc->GetTableCount() );
     152             :                     }
     153           0 :                     pDestDoc->SetChartRanges( aChartName, aRangesVector );
     154           0 :                 }
     155             :             }
     156           0 :             pObject = aIter.Next();
     157           0 :         }
     158             :     }
     159             : }
     160             : 
     161           0 : void ScChartHelper::UpdateChartsOnDestinationPage( ScDocument* pDestDoc, const SCTAB nDestTab )
     162             : {
     163           0 :     if( !pDestDoc )
     164           0 :         return;
     165           0 :     ScDrawLayer* pDrawLayer = pDestDoc->GetDrawLayer();
     166           0 :     if( !pDrawLayer )
     167           0 :         return;
     168             : 
     169           0 :     SdrPage* pDestPage = pDrawLayer->GetPage(static_cast<sal_uInt16>(nDestTab));
     170           0 :     if( pDestPage )
     171             :     {
     172           0 :         SdrObjListIter aIter( *pDestPage, IM_FLAT );
     173           0 :         SdrObject* pObject = aIter.Next();
     174           0 :         while( pObject )
     175             :         {
     176           0 :             if( pObject->GetObjIdentifier() == OBJ_OLE2 && ((SdrOle2Obj*)pObject)->IsChart() )
     177             :             {
     178           0 :                 OUString aChartName = ((SdrOle2Obj*)pObject)->GetPersistName();
     179           0 :                 Reference< chart2::XChartDocument > xChartDoc( pDestDoc->GetChartByName( aChartName ) );
     180           0 :                 Reference< util::XModifiable > xModif(xChartDoc, uno::UNO_QUERY_THROW);
     181           0 :                 xModif->setModified( sal_True);
     182             :             }
     183           0 :             pObject = aIter.Next();
     184           0 :         }
     185             :     }
     186             : }
     187             : 
     188           0 : uno::Reference< chart2::XChartDocument > ScChartHelper::GetChartFromSdrObject( SdrObject* pObject )
     189             : {
     190           0 :     uno::Reference< chart2::XChartDocument > xReturn;
     191           0 :     if( pObject )
     192             :     {
     193           0 :         if( pObject->GetObjIdentifier() == OBJ_OLE2 && ((SdrOle2Obj*)pObject)->IsChart() )
     194             :         {
     195           0 :             uno::Reference< embed::XEmbeddedObject > xIPObj = ((SdrOle2Obj*)pObject)->GetObjRef();
     196           0 :             if( xIPObj.is() )
     197             :             {
     198           0 :                 svt::EmbeddedObjectRef::TryRunningState( xIPObj );
     199           0 :                 uno::Reference< util::XCloseable > xComponent = xIPObj->getComponent();
     200           0 :                 xReturn.set( uno::Reference< chart2::XChartDocument >( xComponent, uno::UNO_QUERY ) );
     201           0 :             }
     202             :         }
     203             :     }
     204           0 :     return xReturn;
     205             : }
     206             : 
     207           0 : void ScChartHelper::GetChartRanges( const uno::Reference< chart2::XChartDocument >& xChartDoc,
     208             :             uno::Sequence< OUString >& rRanges )
     209             : {
     210           0 :     rRanges.realloc(0);
     211           0 :     uno::Reference< chart2::data::XDataSource > xDataSource( xChartDoc, uno::UNO_QUERY );
     212           0 :     if( !xDataSource.is() )
     213           0 :         return;
     214             : 
     215           0 :     uno::Sequence< uno::Reference< chart2::data::XLabeledDataSequence > > aLabeledDataSequences( xDataSource->getDataSequences() );
     216           0 :     rRanges.realloc(2*aLabeledDataSequences.getLength());
     217           0 :     sal_Int32 nRealCount=0;
     218           0 :     for( sal_Int32 nN=0;nN<aLabeledDataSequences.getLength();nN++)
     219             :     {
     220           0 :         uno::Reference< chart2::data::XLabeledDataSequence > xLabeledSequence( aLabeledDataSequences[nN] );
     221           0 :         if(!xLabeledSequence.is())
     222           0 :             continue;
     223           0 :         uno::Reference< chart2::data::XDataSequence > xLabel( xLabeledSequence->getLabel());
     224           0 :         uno::Reference< chart2::data::XDataSequence > xValues( xLabeledSequence->getValues());
     225             : 
     226           0 :         if( xLabel.is())
     227           0 :             rRanges[nRealCount++] = xLabel->getSourceRangeRepresentation();
     228           0 :         if( xValues.is())
     229           0 :             rRanges[nRealCount++] = xValues->getSourceRangeRepresentation();
     230           0 :     }
     231           0 :     rRanges.realloc(nRealCount);
     232             : }
     233             : 
     234           0 : void ScChartHelper::SetChartRanges( const uno::Reference< chart2::XChartDocument >& xChartDoc,
     235             :             const uno::Sequence< OUString >& rRanges )
     236             : {
     237           0 :     uno::Reference< chart2::data::XDataSource > xDataSource( xChartDoc, uno::UNO_QUERY );
     238           0 :     if( !xDataSource.is() )
     239           0 :         return;
     240           0 :     uno::Reference< chart2::data::XDataProvider > xDataProvider = xChartDoc->getDataProvider();
     241           0 :     if( !xDataProvider.is() )
     242           0 :         return;
     243             : 
     244           0 :     uno::Reference< frame::XModel > xModel( xChartDoc, uno::UNO_QUERY );
     245           0 :     if( xModel.is() )
     246           0 :         xModel->lockControllers();
     247             : 
     248             :     try
     249             :     {
     250           0 :         OUString aPropertyNameRole( "Role" );
     251             : 
     252           0 :         uno::Sequence< uno::Reference< chart2::data::XLabeledDataSequence > > aLabeledDataSequences( xDataSource->getDataSequences() );
     253           0 :         sal_Int32 nRange=0;
     254           0 :         for( sal_Int32 nN=0; (nN<aLabeledDataSequences.getLength()) && (nRange<rRanges.getLength()); nN++ )
     255             :         {
     256           0 :             uno::Reference< chart2::data::XLabeledDataSequence > xLabeledSequence( aLabeledDataSequences[nN] );
     257           0 :             if(!xLabeledSequence.is())
     258           0 :                 continue;
     259           0 :             uno::Reference< beans::XPropertySet > xLabel( xLabeledSequence->getLabel(), uno::UNO_QUERY );
     260           0 :             uno::Reference< beans::XPropertySet > xValues( xLabeledSequence->getValues(), uno::UNO_QUERY );
     261             : 
     262           0 :             if( xLabel.is())
     263             :             {
     264             :                 uno::Reference< chart2::data::XDataSequence > xNewSeq(
     265           0 :                     xDataProvider->createDataSequenceByRangeRepresentation( rRanges[nRange++] ));
     266             : 
     267           0 :                 uno::Reference< beans::XPropertySet > xNewProps( xNewSeq, uno::UNO_QUERY );
     268           0 :                 if( xNewProps.is() )
     269           0 :                     xNewProps->setPropertyValue( aPropertyNameRole, xLabel->getPropertyValue( aPropertyNameRole ) );
     270             : 
     271           0 :                 xLabeledSequence->setLabel( xNewSeq );
     272             :             }
     273             : 
     274           0 :             if( !(nRange<rRanges.getLength()) )
     275           0 :                 break;
     276             : 
     277           0 :             if( xValues.is())
     278             :             {
     279             :                 uno::Reference< chart2::data::XDataSequence > xNewSeq(
     280           0 :                     xDataProvider->createDataSequenceByRangeRepresentation( rRanges[nRange++] ));
     281             : 
     282           0 :                 uno::Reference< beans::XPropertySet > xNewProps( xNewSeq, uno::UNO_QUERY );
     283           0 :                 if( xNewProps.is() )
     284           0 :                     xNewProps->setPropertyValue( aPropertyNameRole, xValues->getPropertyValue( aPropertyNameRole ) );
     285             : 
     286           0 :                 xLabeledSequence->setValues( xNewSeq );
     287             :             }
     288           0 :         }
     289             :     }
     290           0 :     catch (const uno::Exception&)
     291             :     {
     292             :         OSL_FAIL("Exception in ScChartHelper::SetChartRanges - invalid range string?");
     293             :     }
     294             : 
     295           0 :     if( xModel.is() )
     296           0 :         xModel->unlockControllers();
     297             : }
     298             : 
     299           0 : void ScChartHelper::AddRangesIfProtectedChart( ScRangeListVector& rRangesVector, ScDocument* pDocument, SdrObject* pObject )
     300             : {
     301           0 :     if ( pDocument && pObject && ( pObject->GetObjIdentifier() == OBJ_OLE2 ) )
     302             :     {
     303           0 :         SdrOle2Obj* pSdrOle2Obj = dynamic_cast< SdrOle2Obj* >( pObject );
     304           0 :         if ( pSdrOle2Obj && pSdrOle2Obj->IsChart() )
     305             :         {
     306           0 :             uno::Reference< embed::XEmbeddedObject > xEmbeddedObj = pSdrOle2Obj->GetObjRef();
     307           0 :             if ( xEmbeddedObj.is() )
     308             :             {
     309           0 :                 bool bDisableDataTableDialog = false;
     310           0 :                 sal_Int32 nOldState = xEmbeddedObj->getCurrentState();
     311           0 :                 svt::EmbeddedObjectRef::TryRunningState( xEmbeddedObj );
     312           0 :                 uno::Reference< beans::XPropertySet > xProps( xEmbeddedObj->getComponent(), uno::UNO_QUERY );
     313           0 :                 if ( xProps.is() &&
     314           0 :                      ( xProps->getPropertyValue("DisableDataTableDialog") >>= bDisableDataTableDialog ) &&
     315             :                      bDisableDataTableDialog )
     316             :                 {
     317           0 :                     ScChartListenerCollection* pCollection = pDocument->GetChartListenerCollection();
     318           0 :                     if (pCollection)
     319             :                     {
     320           0 :                         OUString aChartName = pSdrOle2Obj->GetPersistName();
     321           0 :                         const ScChartListener* pListener = pCollection->findByName(aChartName);
     322           0 :                         if (pListener)
     323             :                         {
     324           0 :                             const ScRangeListRef& rRangeList = pListener->GetRangeList();
     325           0 :                             if ( rRangeList.Is() )
     326             :                             {
     327           0 :                                 rRangesVector.push_back( *rRangeList );
     328           0 :                             }
     329           0 :                         }
     330             :                     }
     331             :                 }
     332           0 :                 if ( xEmbeddedObj->getCurrentState() != nOldState )
     333             :                 {
     334           0 :                     xEmbeddedObj->changeState( nOldState );
     335           0 :                 }
     336           0 :             }
     337             :         }
     338             :     }
     339           0 : }
     340             : 
     341           0 : void ScChartHelper::FillProtectedChartRangesVector( ScRangeListVector& rRangesVector, ScDocument* pDocument, SdrPage* pPage )
     342             : {
     343           0 :     if ( pDocument && pPage )
     344             :     {
     345           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
     346           0 :         SdrObject* pObject = aIter.Next();
     347           0 :         while ( pObject )
     348             :         {
     349           0 :             AddRangesIfProtectedChart( rRangesVector, pDocument, pObject );
     350           0 :             pObject = aIter.Next();
     351           0 :         }
     352             :     }
     353           0 : }
     354             : 
     355           0 : void ScChartHelper::GetChartNames( ::std::vector< OUString >& rChartNames, SdrPage* pPage )
     356             : {
     357           0 :     if ( pPage )
     358             :     {
     359           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
     360           0 :         SdrObject* pObject = aIter.Next();
     361           0 :         while ( pObject )
     362             :         {
     363           0 :             if ( pObject->GetObjIdentifier() == OBJ_OLE2 )
     364             :             {
     365           0 :                 SdrOle2Obj* pSdrOle2Obj = dynamic_cast< SdrOle2Obj* >( pObject );
     366           0 :                 if ( pSdrOle2Obj && pSdrOle2Obj->IsChart() )
     367             :                 {
     368           0 :                     rChartNames.push_back( pSdrOle2Obj->GetPersistName() );
     369             :                 }
     370             :             }
     371           0 :             pObject = aIter.Next();
     372           0 :         }
     373             :     }
     374           0 : }
     375             : 
     376           0 : void ScChartHelper::CreateProtectedChartListenersAndNotify( ScDocument* pDoc, SdrPage* pPage, ScModelObj* pModelObj, SCTAB nTab,
     377             :     const ScRangeListVector& rRangesVector, const ::std::vector< OUString >& rExcludedChartNames, bool bSameDoc )
     378             : {
     379           0 :     if ( pDoc && pPage && pModelObj )
     380             :     {
     381           0 :         size_t nRangeListCount = rRangesVector.size();
     382           0 :         size_t nRangeList = 0;
     383           0 :         SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
     384           0 :         SdrObject* pObject = aIter.Next();
     385           0 :         while ( pObject )
     386             :         {
     387           0 :             if ( pObject->GetObjIdentifier() == OBJ_OLE2 )
     388             :             {
     389           0 :                 SdrOle2Obj* pSdrOle2Obj = dynamic_cast< SdrOle2Obj* >( pObject );
     390           0 :                 if ( pSdrOle2Obj && pSdrOle2Obj->IsChart() )
     391             :                 {
     392           0 :                     OUString aChartName = pSdrOle2Obj->GetPersistName();
     393           0 :                     ::std::vector< OUString >::const_iterator aEnd = rExcludedChartNames.end();
     394           0 :                     ::std::vector< OUString >::const_iterator aFound = ::std::find( rExcludedChartNames.begin(), aEnd, aChartName );
     395           0 :                     if ( aFound == aEnd )
     396             :                     {
     397           0 :                         uno::Reference< embed::XEmbeddedObject > xEmbeddedObj = pSdrOle2Obj->GetObjRef();
     398           0 :                         if ( xEmbeddedObj.is() && ( nRangeList < nRangeListCount ) )
     399             :                         {
     400           0 :                             bool bDisableDataTableDialog = false;
     401           0 :                             svt::EmbeddedObjectRef::TryRunningState( xEmbeddedObj );
     402           0 :                             uno::Reference< beans::XPropertySet > xProps( xEmbeddedObj->getComponent(), uno::UNO_QUERY );
     403           0 :                             if ( xProps.is() &&
     404           0 :                                  ( xProps->getPropertyValue("DisableDataTableDialog") >>= bDisableDataTableDialog ) &&
     405             :                                  bDisableDataTableDialog )
     406             :                             {
     407           0 :                                 if ( bSameDoc )
     408             :                                 {
     409           0 :                                     ScChartListenerCollection* pCollection = pDoc->GetChartListenerCollection();
     410           0 :                                     if (pCollection && !pCollection->findByName(aChartName))
     411             :                                     {
     412           0 :                                         ScRangeList aRangeList( rRangesVector[ nRangeList++ ] );
     413           0 :                                         ScRangeListRef rRangeList( new ScRangeList( aRangeList ) );
     414           0 :                                         ScChartListener* pChartListener = new ScChartListener( aChartName, pDoc, rRangeList );
     415           0 :                                         pCollection->insert( pChartListener );
     416           0 :                                         pChartListener->StartListeningTo();
     417             :                                     }
     418             :                                 }
     419             :                                 else
     420             :                                 {
     421           0 :                                     xProps->setPropertyValue("DisableDataTableDialog",
     422           0 :                                         uno::makeAny( sal_False ) );
     423           0 :                                     xProps->setPropertyValue("DisableComplexChartTypes",
     424           0 :                                         uno::makeAny( sal_False ) );
     425             :                                 }
     426           0 :                             }
     427             :                         }
     428             : 
     429           0 :                         if ( pModelObj && pModelObj->HasChangesListeners() )
     430             :                         {
     431           0 :                             Rectangle aRectangle = pSdrOle2Obj->GetSnapRect();
     432           0 :                             ScRange aRange( pDoc->GetRange( nTab, aRectangle ) );
     433           0 :                             ScRangeList aChangeRanges;
     434           0 :                             aChangeRanges.Append( aRange );
     435             : 
     436           0 :                             uno::Sequence< beans::PropertyValue > aProperties( 1 );
     437           0 :                             aProperties[ 0 ].Name = "Name";
     438           0 :                             aProperties[ 0 ].Value <<= aChartName;
     439             : 
     440           0 :                             pModelObj->NotifyChanges( OUString( "insert-chart" ), aChangeRanges, aProperties );
     441           0 :                         }
     442           0 :                     }
     443             :                 }
     444             :             }
     445           0 :             pObject = aIter.Next();
     446           0 :         }
     447             :     }
     448           0 : }
     449             : 
     450             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10