LCOV - code coverage report
Current view: top level - libreoffice/formula/source/core/resource - core_resource.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 19 19 100.0 %
Date: 2012-12-27 Functions: 4 4 100.0 %
Legend: Lines: hit not hit

          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       31512 :     void ResourceManager::ensureImplExists()
      46             :     {
      47       31512 :         if (m_pImpl)
      48       31512 :             return;
      49             : 
      50          78 :         ::com::sun::star::lang::Locale aLocale = Application::GetSettings().GetUILanguageTag().getLocale();
      51             : 
      52          78 :         m_pImpl = ResMgr::CreateResMgr("for", aLocale);
      53             :     }
      54             : 
      55             :     //-------------------------------------------------------------------------
      56          78 :     void ResourceManager::registerClient()
      57             :     {
      58          78 :         ::osl::MutexGuard aGuard(theResourceManagerMutex::get());
      59          78 :         ++s_nClients;
      60          78 :     }
      61             : 
      62             :     //-------------------------------------------------------------------------
      63          78 :     void ResourceManager::revokeClient()
      64             :     {
      65          78 :         ::osl::MutexGuard aGuard(theResourceManagerMutex::get());
      66          78 :         if (!--s_nClients && m_pImpl)
      67             :         {
      68          78 :             delete m_pImpl;
      69          78 :             m_pImpl = NULL;
      70          78 :         }
      71          78 :     }
      72       31512 :     ResMgr* ResourceManager::getResManager()
      73             :     {
      74       31512 :         ensureImplExists();
      75       31512 :         return m_pImpl;
      76             :     }
      77             : 
      78             : //.........................................................................
      79             : } // formula
      80             : //.........................................................................
      81             : 
      82             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10