LCOV - code coverage report
Current view: top level - unotools/source/config - configmgr.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 72 75 96.0 %
Date: 2014-11-03 Functions: 21 22 95.5 %
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 <sal/config.h>
      21             : 
      22             : #include <list>
      23             : 
      24             : #include <boost/noncopyable.hpp>
      25             : #include <com/sun/star/beans/NamedValue.hpp>
      26             : #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
      27             : #include <com/sun/star/configuration/theDefaultProvider.hpp>
      28             : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
      29             : #include <com/sun/star/uno/Any.hxx>
      30             : #include <com/sun/star/uno/Reference.hxx>
      31             : #include <com/sun/star/uno/Sequence.hxx>
      32             : #include <osl/diagnose.h>
      33             : #include <rtl/instance.hxx>
      34             : #include <rtl/ustring.h>
      35             : #include <rtl/ustring.hxx>
      36             : #include <unotools/configitem.hxx>
      37             : #include <unotools/configmgr.hxx>
      38             : #include <comphelper/processfactory.hxx>
      39             : 
      40             : namespace {
      41             : 
      42             : class RegisterConfigItemHelper: private boost::noncopyable {
      43             : public:
      44       40035 :     RegisterConfigItemHelper(
      45             :         utl::ConfigManager & manager, utl::ConfigItem & item):
      46       40035 :             manager_(manager), item_(&item)
      47             :     {
      48       40035 :         manager.registerConfigItem(item_);
      49       40035 :     }
      50             : 
      51       40035 :     ~RegisterConfigItemHelper() {
      52       40035 :         if (item_ != 0) {
      53           0 :             manager_.removeConfigItem(*item_);
      54             :         }
      55       40035 :     }
      56             : 
      57       40035 :     void keep() { item_ = 0; }
      58             : 
      59             : private:
      60             :     utl::ConfigManager & manager_;
      61             :     utl::ConfigItem * item_;
      62             : };
      63             : 
      64             : css::uno::Reference< css::lang::XMultiServiceFactory >
      65      112013 : getConfigurationProvider() {
      66      112013 :     return css::configuration::theDefaultProvider::get( comphelper::getProcessComponentContext() );
      67             : }
      68             : 
      69       70376 : OUString getConfigurationString(OUString const & module, OUString const & path)
      70             : {
      71       70376 :     css::uno::Sequence< css::uno::Any > args(1);
      72      140752 :     args[0] <<= css::beans::NamedValue(
      73             :         OUString("nodepath"),
      74       70376 :         css::uno::makeAny(module));
      75             :     return
      76             :         css::uno::Reference< css::container::XHierarchicalNameAccess >(
      77      140752 :             getConfigurationProvider()->createInstanceWithArguments(
      78             :                 OUString("com.sun.star.configuration.ConfigurationAccess"),
      79       70376 :                 args),
      80      140752 :             css::uno::UNO_QUERY_THROW)->
      81      140752 :         getByHierarchicalName(path).get< OUString >();
      82             : }
      83             : 
      84             : struct theConfigManager:
      85             :     public rtl::Static< utl::ConfigManager, theConfigManager >
      86             : {};
      87             : 
      88             : }
      89             : 
      90        1940 : OUString utl::ConfigManager::getAboutBoxProductVersion() {
      91             :     return getConfigurationString(
      92             :         OUString("/org.openoffice.Setup"),
      93        1940 :         OUString("Product/ooSetupVersionAboutBox"));
      94             : }
      95             : 
      96        1940 : OUString utl::ConfigManager::getAboutBoxProductVersionSuffix() {
      97             :     return getConfigurationString(
      98             :         OUString("/org.openoffice.Setup"),
      99        1940 :         OUString("Product/ooSetupVersionAboutBoxSuffix"));
     100             : }
     101             : 
     102          30 : OUString utl::ConfigManager::getDefaultCurrency() {
     103             :     return getConfigurationString(
     104             :         OUString("/org.openoffice.Setup"),
     105          30 :         OUString("L10N/ooSetupCurrency"));
     106             : }
     107             : 
     108        1050 : OUString utl::ConfigManager::getLocale() {
     109             :     return getConfigurationString(
     110             :         OUString("/org.openoffice.Setup"),
     111        1050 :         OUString("L10N/ooLocale"));
     112             : }
     113             : 
     114        4778 : OUString utl::ConfigManager::getProductExtension() {
     115             :     return getConfigurationString(
     116             :         OUString("/org.openoffice.Setup"),
     117        4778 :         OUString("Product/ooSetupExtension"));
     118             : }
     119             : 
     120       50704 : OUString utl::ConfigManager::getProductName() {
     121             :     return getConfigurationString(
     122             :         OUString("/org.openoffice.Setup"),
     123       50704 :         OUString("Product/ooName"));
     124             : }
     125             : 
     126        9934 : OUString utl::ConfigManager::getProductVersion() {
     127             :     return getConfigurationString(
     128             :         OUString("/org.openoffice.Setup"),
     129        9934 :         OUString("Product/ooSetupVersion"));
     130             : }
     131             : 
     132           0 : OUString utl::ConfigManager::getVendor() {
     133             :     return getConfigurationString(
     134             :         OUString("/org.openoffice.Setup"),
     135           0 :         OUString("Product/ooVendor"));
     136             : }
     137             : 
     138         524 : void utl::ConfigManager::storeConfigItems() {
     139         524 :     getConfigManager().doStoreConfigItems();
     140         524 : }
     141             : 
     142       78212 : utl::ConfigManager & utl::ConfigManager::getConfigManager() {
     143       78212 :     return theConfigManager::get();
     144             : }
     145             : 
     146             : css::uno::Reference< css::container::XHierarchicalNameAccess >
     147       41637 : utl::ConfigManager::acquireTree(utl::ConfigItem & item) {
     148       41637 :     css::uno::Sequence< css::uno::Any > args(1);
     149       83274 :     args[0] <<= css::beans::NamedValue(
     150             :         OUString("nodepath"),
     151             :         css::uno::makeAny(
     152      124911 :             OUString("/org.openoffice.") + item.GetSubTreeName()));
     153       41637 :     if ((item.GetMode() & CONFIG_MODE_ALL_LOCALES) != 0) {
     154          54 :         args.realloc(2);
     155          54 :         args[1] <<= css::beans::NamedValue(OUString("locale"), css::uno::makeAny(OUString("*")));
     156             :     }
     157             :     return css::uno::Reference< css::container::XHierarchicalNameAccess >(
     158       83274 :         getConfigurationProvider()->createInstanceWithArguments(
     159             :             OUString("com.sun.star.configuration.ConfigurationUpdateAccess"),
     160       41637 :             args),
     161       83274 :         css::uno::UNO_QUERY_THROW);
     162             : }
     163             : 
     164         375 : utl::ConfigManager::ConfigManager() {}
     165             : 
     166         375 : utl::ConfigManager::~ConfigManager() {
     167             :     OSL_ASSERT(items_.empty());
     168         375 : }
     169             : 
     170             : css::uno::Reference< css::container::XHierarchicalNameAccess >
     171       40035 : utl::ConfigManager::addConfigItem(utl::ConfigItem & item) {
     172       40035 :     RegisterConfigItemHelper reg(*this, item);
     173             :     css::uno::Reference< css::container::XHierarchicalNameAccess > tree(
     174       40035 :         acquireTree(item));
     175       40035 :     reg.keep();
     176       40035 :     return tree;
     177             : }
     178             : 
     179       37653 : void utl::ConfigManager::removeConfigItem(utl::ConfigItem & item) {
     180     4306722 :     for (std::list< ConfigItem * >::iterator i(items_.begin());
     181     2871148 :          i != items_.end(); ++i)
     182             :     {
     183     1435574 :         if (*i == &item) {
     184       37653 :             items_.erase(i);
     185       37653 :             break;
     186             :         }
     187             :     }
     188       37653 : }
     189             : 
     190       40035 : void utl::ConfigManager::registerConfigItem(utl::ConfigItem * item) {
     191             :     OSL_ASSERT(item != 0);
     192       40035 :     items_.push_back(item);
     193       40035 : }
     194             : 
     195         524 : void utl::ConfigManager::doStoreConfigItems() {
     196       33822 :     for (std::list< ConfigItem * >::iterator i(items_.begin());
     197       22548 :          i != items_.end(); ++i)
     198             :     {
     199       10750 :         if ((*i)->IsModified()) {
     200         548 :             (*i)->Commit();
     201         548 :             (*i)->ClearModified();
     202             :         }
     203             :     }
     204         524 : }
     205             : 
     206             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10