LCOV - code coverage report
Current view: top level - unotools/source/config - optionsdlg.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 92 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 20 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 <unotools/optionsdlg.hxx>
      21             : #include <unotools/configmgr.hxx>
      22             : #include <unotools/configitem.hxx>
      23             : #include <com/sun/star/uno/Any.hxx>
      24             : #include <com/sun/star/uno/Sequence.hxx>
      25             : #include <osl/mutex.hxx>
      26             : 
      27             : #include "itemholder1.hxx"
      28             : 
      29             : #include <unordered_map>
      30             : 
      31             : using namespace utl;
      32             : using namespace com::sun::star::beans;
      33             : using namespace com::sun::star::uno;
      34             : 
      35             : #define CFG_FILENAME            OUString( "Office.OptionsDialog" )
      36             : #define ROOT_NODE               "OptionsDialogGroups"
      37             : #define PAGES_NODE              "Pages"
      38             : #define OPTIONS_NODE            "Options"
      39             : 
      40             : static SvtOptionsDlgOptions_Impl*   pOptions = NULL;
      41             : static sal_Int32                    nRefCount = 0;
      42             : 
      43           0 : class SvtOptionsDlgOptions_Impl : public utl::ConfigItem
      44             : {
      45             : private:
      46             :     typedef std::unordered_map< OUString, sal_Bool, OUStringHash, std::equal_to< OUString > > OptionNodeList;
      47             : 
      48             :     OUString        m_sPathDelimiter;
      49             :     OptionNodeList  m_aOptionNodeList;
      50             : 
      51             :     enum NodeType{ NT_Group, NT_Page, NT_Option };
      52             :     void            ReadNode( const OUString& _rNode, NodeType _eType );
      53             :     bool        IsHidden( const OUString& _rPath ) const;
      54             : 
      55             :     virtual void    ImplCommit() SAL_OVERRIDE;
      56             : 
      57             : public:
      58             :                     SvtOptionsDlgOptions_Impl();
      59             : 
      60             :     virtual void    Notify( const com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
      61             : 
      62             :     static ::osl::Mutex & getInitMutex();
      63             : 
      64             :     bool        IsGroupHidden   (   const OUString& _rGroup ) const;
      65             :     bool        IsPageHidden    (   const OUString& _rPage,
      66             :                                         const OUString& _rGroup ) const;
      67             :     bool        IsOptionHidden  (   const OUString& _rOption,
      68             :                                         const OUString& _rPage,
      69             :                                         const OUString& _rGroup ) const;
      70             : };
      71             : 
      72             : namespace
      73             : {
      74             :     class theOptionsDlgOptions_ImplMutex : public rtl::Static<osl::Mutex, theOptionsDlgOptions_ImplMutex>{};
      75             : }
      76             : 
      77           0 : ::osl::Mutex & SvtOptionsDlgOptions_Impl::getInitMutex()
      78             : {
      79           0 :     return theOptionsDlgOptions_ImplMutex::get();
      80             : }
      81             : 
      82           0 : SvtOptionsDlgOptions_Impl::SvtOptionsDlgOptions_Impl()
      83             :     : ConfigItem( OUString( CFG_FILENAME ) ),
      84             : 
      85             :     m_sPathDelimiter( "/" ),
      86           0 :     m_aOptionNodeList( OptionNodeList() )
      87             : 
      88             : {
      89           0 :     OUString sRootNode( ROOT_NODE );
      90           0 :     Sequence< OUString > aNodeSeq = GetNodeNames( sRootNode );
      91           0 :     OUString sNode( sRootNode + m_sPathDelimiter );
      92           0 :     sal_uInt32 nCount = aNodeSeq.getLength();
      93           0 :     for ( sal_uInt32 n = 0; n < nCount; n++ )
      94             :     {
      95           0 :         OUString sSubNode( sNode + aNodeSeq[n] );
      96           0 :         ReadNode( sSubNode, NT_Group );
      97           0 :     }
      98           0 : }
      99             : 
     100           0 : void SvtOptionsDlgOptions_Impl::ImplCommit()
     101             : {
     102             :     // nothing to commit
     103           0 : }
     104             : 
     105           0 : void SvtOptionsDlgOptions_Impl::Notify( const Sequence< OUString >& )
     106             : {
     107             :     // nothing to notify
     108           0 : }
     109             : 
     110           0 : void SvtOptionsDlgOptions_Impl::ReadNode( const OUString& _rNode, NodeType _eType )
     111             : {
     112           0 :     OUString sNode( _rNode + m_sPathDelimiter );
     113           0 :     OUString sSet;
     114           0 :     sal_Int32 nLen = 0;
     115           0 :     switch ( _eType )
     116             :     {
     117             :         case NT_Group :
     118             :         {
     119           0 :             sSet = PAGES_NODE;
     120           0 :             nLen = 2;
     121           0 :             break;
     122             :         }
     123             : 
     124             :         case NT_Page :
     125             :         {
     126           0 :             sSet = OPTIONS_NODE;
     127           0 :             nLen = 2;
     128           0 :             break;
     129             :         }
     130             : 
     131             :         case NT_Option :
     132             :         {
     133           0 :             nLen = 1;
     134           0 :             break;
     135             :         }
     136             :     }
     137             : 
     138           0 :     Sequence< OUString > lResult( nLen );
     139           0 :     lResult[0] = OUString( sNode + "Hide" );
     140           0 :     if ( _eType != NT_Option )
     141           0 :         lResult[1] = OUString( sNode + sSet );
     142             : 
     143           0 :     Sequence< Any > aValues;
     144           0 :     aValues = GetProperties( lResult );
     145           0 :     bool bHide = false;
     146           0 :     if ( aValues[0] >>= bHide )
     147           0 :         m_aOptionNodeList.insert( OptionNodeList::value_type( sNode, bHide ) );
     148             : 
     149           0 :     if ( _eType != NT_Option )
     150             :     {
     151           0 :         OUString sNodes( sNode + sSet );
     152           0 :         Sequence< OUString > aNodes = GetNodeNames( sNodes );
     153           0 :         if ( aNodes.getLength() > 0 )
     154             :         {
     155           0 :             for ( sal_uInt32 n = 0; n < (sal_uInt32)aNodes.getLength(); ++n )
     156             :             {
     157           0 :                 OUString sSubNodeName( sNodes + m_sPathDelimiter + aNodes[n] );
     158           0 :                 ReadNode( sSubNodeName, _eType == NT_Group ? NT_Page : NT_Option );
     159           0 :             }
     160           0 :         }
     161           0 :     }
     162           0 : }
     163             : 
     164           0 : OUString getGroupPath( const OUString& _rGroup )
     165             : {
     166           0 :     return OUString( ROOT_NODE "/" + _rGroup + "/" );
     167             : }
     168           0 : OUString getPagePath( const OUString& _rPage )
     169             : {
     170           0 :     return OUString( PAGES_NODE "/" + _rPage + "/" );
     171             : }
     172           0 : OUString getOptionPath( const OUString& _rOption )
     173             : {
     174           0 :     return OUString( OPTIONS_NODE "/" + _rOption + "/" );
     175             : }
     176             : 
     177           0 : bool SvtOptionsDlgOptions_Impl::IsHidden( const OUString& _rPath ) const
     178             : {
     179           0 :     bool bRet = false;
     180           0 :     OptionNodeList::const_iterator pIter = m_aOptionNodeList.find( _rPath );
     181           0 :     if ( pIter != m_aOptionNodeList.end() )
     182           0 :         bRet = pIter->second;
     183           0 :     return bRet;
     184             : }
     185             : 
     186           0 : bool SvtOptionsDlgOptions_Impl::IsGroupHidden( const OUString& _rGroup ) const
     187             : {
     188           0 :     return IsHidden( getGroupPath( _rGroup ) );
     189             : }
     190             : 
     191           0 : bool SvtOptionsDlgOptions_Impl::IsPageHidden( const OUString& _rPage, const OUString& _rGroup ) const
     192             : {
     193           0 :     return IsHidden( getGroupPath( _rGroup  ) + getPagePath( _rPage ) );
     194             : }
     195             : 
     196           0 : bool SvtOptionsDlgOptions_Impl::IsOptionHidden(
     197             :     const OUString& _rOption, const OUString& _rPage, const OUString& _rGroup ) const
     198             : {
     199           0 :     return IsHidden( getGroupPath( _rGroup  ) + getPagePath( _rPage ) + getOptionPath( _rOption ) );
     200             : }
     201             : 
     202           0 : SvtOptionsDialogOptions::SvtOptionsDialogOptions()
     203             : {
     204             :     // Global access, must be guarded (multithreading)
     205           0 :     ::osl::MutexGuard aGuard( SvtOptionsDlgOptions_Impl::getInitMutex() );
     206           0 :     ++nRefCount;
     207           0 :     if ( !pOptions )
     208             :     {
     209           0 :         pOptions = new SvtOptionsDlgOptions_Impl;
     210             : 
     211           0 :         ItemHolder1::holdConfigItem( E_OPTIONSDLGOPTIONS );
     212             :     }
     213           0 :     m_pImp = pOptions;
     214           0 : }
     215             : 
     216           0 : SvtOptionsDialogOptions::~SvtOptionsDialogOptions()
     217             : {
     218             :     // Global access, must be guarded (multithreading)
     219           0 :     ::osl::MutexGuard aGuard( SvtOptionsDlgOptions_Impl::getInitMutex() );
     220           0 :     if ( !--nRefCount )
     221             :     {
     222           0 :         if ( pOptions->IsModified() )
     223           0 :             pOptions->Commit();
     224           0 :         delete pOptions;
     225           0 :         pOptions = NULL;
     226           0 :     }
     227           0 : }
     228             : 
     229           0 : bool SvtOptionsDialogOptions::IsGroupHidden( const OUString& _rGroup ) const
     230             : {
     231           0 :     return m_pImp->IsGroupHidden( _rGroup );
     232             : }
     233             : 
     234           0 : bool SvtOptionsDialogOptions::IsPageHidden( const OUString& _rPage, const OUString& _rGroup ) const
     235             : {
     236           0 :     return m_pImp->IsPageHidden( _rPage, _rGroup );
     237             : }
     238             : 
     239           0 : bool SvtOptionsDialogOptions::IsOptionHidden(
     240             :     const OUString& _rOption, const OUString& _rPage, const OUString& _rGroup ) const
     241             : {
     242           0 :     return m_pImp->IsOptionHidden( _rOption, _rPage, _rGroup );
     243             : }
     244             : 
     245             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11