summaryrefslogtreecommitdiff
path: root/extensions/source/oooimprovement/myconfigurationhelper.cxx
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2011-12-07 21:58:26 -0500
committerAugust Sodora <augsod@gmail.com>2011-12-07 21:59:28 -0500
commitbd7f8380113b0cbe706d131b33e7551b2c484205 (patch)
tree60ff450396806f72bf2945eae0a86af9461b3746 /extensions/source/oooimprovement/myconfigurationhelper.cxx
parent855115d2f5845502e8619b35666512023584e012 (diff)
Remove oooimprovement
Diffstat (limited to 'extensions/source/oooimprovement/myconfigurationhelper.cxx')
-rw-r--r--extensions/source/oooimprovement/myconfigurationhelper.cxx156
1 files changed, 0 insertions, 156 deletions
diff --git a/extensions/source/oooimprovement/myconfigurationhelper.cxx b/extensions/source/oooimprovement/myconfigurationhelper.cxx
deleted file mode 100644
index 493ae01cc7fe..000000000000
--- a/extensions/source/oooimprovement/myconfigurationhelper.cxx
+++ /dev/null
@@ -1,156 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-
-#include "myconfigurationhelper.hxx"
-#include <com/sun/star/beans/NamedValue.hpp>
-#include <com/sun/star/beans/XPropertySet.hpp>
-#include <com/sun/star/configuration/theDefaultProvider.hpp>
-#include <com/sun/star/container/XNameAccess.hpp>
-#include <com/sun/star/container/XNameContainer.hpp>
-#include <com/sun/star/lang/XSingleServiceFactory.hpp>
-#include <comphelper/processfactory.hxx>
-#include <rtl/ustrbuf.hxx>
-
-namespace css = ::com::sun::star;
-using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::uno;
-using ::rtl::OUString;
-using ::rtl::OUStringBuffer;
-
-namespace
-{
- static const OUString noSuchElement(const OUString& path)
- {
- OUStringBuffer buf(256);
- buf.appendAscii("The requested path \"");
- buf.append(path);
- buf.appendAscii("\" does not exists.");
- return buf.makeStringAndClear();
- };
-}
-
-namespace oooimprovement
-{
- Reference<XInterface> MyConfigurationHelper::openConfig(
- const Reference<XMultiServiceFactory> xSMGR,
- const OUString& sPackage,
- sal_Int32 eMode)
- {
- Reference<XMultiServiceFactory> xConfigProvider(
- css::configuration::theDefaultProvider::get(
- comphelper::getComponentContext(xSMGR)));
-
- css::uno::Sequence<Any> lParams(1);
- css::beans::NamedValue aParam;
-
- // set root path
- aParam.Name = OUString(RTL_CONSTASCII_USTRINGPARAM("nodepath"));
- aParam.Value <<= sPackage;
- lParams[0] = makeAny(aParam);
-
- // open it
- Reference<XInterface> xCFG;
-
- sal_Bool bReadOnly = ((eMode & MyConfigurationHelper::E_READONLY)==MyConfigurationHelper::E_READONLY);
- if (bReadOnly)
- xCFG = xConfigProvider->createInstanceWithArguments(
- OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.ConfigurationAccess")),
- lParams);
- else
- xCFG = xConfigProvider->createInstanceWithArguments(
- OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.ConfigurationUpdateAccess")),
- lParams);
- return xCFG;
- }
-
- Any MyConfigurationHelper::readRelativeKey(
- const Reference<XInterface> xCFG,
- const OUString& sRelPath,
- const OUString& sKey)
- {
- Reference<css::container::XHierarchicalNameAccess> xAccess(xCFG, UNO_QUERY_THROW);
-
- Reference<css::beans::XPropertySet> xProps;
- xAccess->getByHierarchicalName(sRelPath) >>= xProps;
- if (!xProps.is())
- throw css::container::NoSuchElementException(
- noSuchElement(sRelPath),
- Reference<XInterface>());
- return xProps->getPropertyValue(sKey);
- }
-
- void MyConfigurationHelper::writeRelativeKey(
- const Reference<XInterface> xCFG,
- const OUString& sRelPath,
- const OUString& sKey,
- const Any& aValue)
- {
- Reference<css::container::XHierarchicalNameAccess> xAccess(xCFG, UNO_QUERY_THROW);
-
- Reference<css::beans::XPropertySet> xProps;
- xAccess->getByHierarchicalName(sRelPath) >>= xProps;
- if (!xProps.is())
- throw css::container::NoSuchElementException(
- noSuchElement(sRelPath),
- Reference<XInterface>());
- xProps->setPropertyValue(sKey, aValue);
- }
-
- Any MyConfigurationHelper::readDirectKey(
- const Reference<XMultiServiceFactory> xSMGR,
- const OUString& sPackage,
- const OUString& sRelPath,
- const OUString& sKey,
- sal_Int32 eMode)
- {
- Reference<XInterface> xCFG = MyConfigurationHelper::openConfig(xSMGR, sPackage, eMode);
- return MyConfigurationHelper::readRelativeKey(xCFG, sRelPath, sKey);
- }
-
- void MyConfigurationHelper::writeDirectKey(
- const Reference<XMultiServiceFactory> xSMGR,
- const OUString& sPackage,
- const OUString& sRelPath,
- const OUString& sKey,
- const Any& aValue,
- sal_Int32 eMode)
- {
- Reference<XInterface> xCFG = MyConfigurationHelper::openConfig(xSMGR, sPackage, eMode);
- MyConfigurationHelper::writeRelativeKey(xCFG, sRelPath, sKey, aValue);
- MyConfigurationHelper::flush(xCFG);
- }
-
- void MyConfigurationHelper::flush(const Reference<XInterface>& xCFG)
- {
- Reference<css::util::XChangesBatch> xBatch(xCFG, UNO_QUERY_THROW);
- xBatch->commitChanges();
- }
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */