LCOV - code coverage report
Current view: top level - formula/source/core/resource - core_resource.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 19 19 100.0 %
Date: 2012-08-25 Functions: 4 4 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 16 30 53.3 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * This file is part of the LibreOffice project.
       3                 :            :  *
       4                 :            :  * This Source Code Form is subject to the terms of the Mozilla Public
       5                 :            :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       6                 :            :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       7                 :            :  *
       8                 :            :  * This file incorporates work covered by the following license notice:
       9                 :            :  *
      10                 :            :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      11                 :            :  *   contributor license agreements. See the NOTICE file distributed
      12                 :            :  *   with this work for additional information regarding copyright
      13                 :            :  *   ownership. The ASF licenses this file to you under the Apache
      14                 :            :  *   License, Version 2.0 (the "License"); you may not use this file
      15                 :            :  *   except in compliance with the License. You may obtain a copy of
      16                 :            :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      17                 :            :  */
      18                 :            : 
      19                 :            : 
      20                 :            : #include "core_resource.hxx"
      21                 :            : 
      22                 :            : #include <tools/resmgr.hxx>
      23                 :            : 
      24                 :            : // ---- needed as long as we have no contexts for components ---
      25                 :            : #include <vcl/svapp.hxx>
      26                 :            : #include <rtl/instance.hxx>
      27                 :            : #include <svl/solar.hrc>
      28                 :            : 
      29                 :            : //.........................................................................
      30                 :            : namespace formula
      31                 :            : {
      32                 :            : 
      33                 :            :     //==================================================================
      34                 :            :     //= ResourceManager
      35                 :            :     //==================================================================
      36                 :            :     namespace
      37                 :            :     {
      38                 :            :         // access safety
      39                 :            :         struct theResourceManagerMutex : public rtl::Static< osl::Mutex, theResourceManagerMutex > {};
      40                 :            :     }
      41                 :            :     sal_Int32       ResourceManager::s_nClients = 0;
      42                 :            :     ResMgr*         ResourceManager::m_pImpl = NULL;
      43                 :            : 
      44                 :            :     //------------------------------------------------------------------
      45                 :     178044 :     void ResourceManager::ensureImplExists()
      46                 :            :     {
      47         [ +  + ]:     178044 :         if (m_pImpl)
      48                 :     178044 :             return;
      49                 :            : 
      50 [ +  - ][ +  - ]:        444 :         ::com::sun::star::lang::Locale aLocale = Application::GetSettings().GetUILocale();
      51                 :            : 
      52         [ +  - ]:     178044 :         m_pImpl = ResMgr::CreateResMgr("for", aLocale);
      53                 :            :     }
      54                 :            : 
      55                 :            :     //-------------------------------------------------------------------------
      56                 :        444 :     void ResourceManager::registerClient()
      57                 :            :     {
      58 [ +  - ][ +  - ]:        444 :         ::osl::MutexGuard aGuard(theResourceManagerMutex::get());
      59         [ +  - ]:        444 :         ++s_nClients;
      60                 :        444 :     }
      61                 :            : 
      62                 :            :     //-------------------------------------------------------------------------
      63                 :        444 :     void ResourceManager::revokeClient()
      64                 :            :     {
      65 [ +  - ][ +  - ]:        444 :         ::osl::MutexGuard aGuard(theResourceManagerMutex::get());
      66 [ +  - ][ +  - ]:        444 :         if (!--s_nClients && m_pImpl)
                 [ +  - ]
      67                 :            :         {
      68 [ +  - ][ +  - ]:        444 :             delete m_pImpl;
      69                 :        444 :             m_pImpl = NULL;
      70         [ +  - ]:        444 :         }
      71                 :        444 :     }
      72                 :     178044 :     ResMgr* ResourceManager::getResManager()
      73                 :            :     {
      74                 :     178044 :         ensureImplExists();
      75                 :     178044 :         return m_pImpl;
      76                 :            :     }
      77                 :            : 
      78                 :            : //.........................................................................
      79                 :            : } // formula
      80                 :            : //.........................................................................
      81                 :            : 
      82                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10