1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #include "precompiled_sd.hxx" 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir #include "tools/ConfigurationAccess.hxx" 31*cdf0e10cSrcweir #include <com/sun/star/lang/XMultiServiceFactory.hpp> 32*cdf0e10cSrcweir #include <com/sun/star/beans/PropertyValue.hpp> 33*cdf0e10cSrcweir #include <com/sun/star/container/XHierarchicalNameAccess.hpp> 34*cdf0e10cSrcweir #include <com/sun/star/util/XChangesBatch.hpp> 35*cdf0e10cSrcweir #include <comphelper/processfactory.hxx> 36*cdf0e10cSrcweir #include <tools/diagnose_ex.h> 37*cdf0e10cSrcweir 38*cdf0e10cSrcweir using namespace ::com::sun::star; 39*cdf0e10cSrcweir using namespace ::com::sun::star::uno; 40*cdf0e10cSrcweir using ::rtl::OUString; 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir namespace sd { namespace tools { 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir ConfigurationAccess::ConfigurationAccess ( 45*cdf0e10cSrcweir const Reference<XComponentContext>& rxContext, 46*cdf0e10cSrcweir const OUString& rsRootName, 47*cdf0e10cSrcweir const WriteMode eMode) 48*cdf0e10cSrcweir : mxRoot() 49*cdf0e10cSrcweir { 50*cdf0e10cSrcweir Reference<lang::XMultiComponentFactory> xFactory (rxContext->getServiceManager()); 51*cdf0e10cSrcweir if (xFactory.is()) 52*cdf0e10cSrcweir { 53*cdf0e10cSrcweir Reference<lang::XMultiServiceFactory> xProvider ( 54*cdf0e10cSrcweir xFactory->createInstanceWithContext( 55*cdf0e10cSrcweir OUString::createFromAscii("com.sun.star.configuration.ConfigurationProvider"), 56*cdf0e10cSrcweir rxContext), 57*cdf0e10cSrcweir UNO_QUERY); 58*cdf0e10cSrcweir if (xProvider.is()) 59*cdf0e10cSrcweir Initialize(xProvider, rsRootName, eMode); 60*cdf0e10cSrcweir } 61*cdf0e10cSrcweir } 62*cdf0e10cSrcweir 63*cdf0e10cSrcweir 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir 66*cdf0e10cSrcweir ConfigurationAccess::ConfigurationAccess ( 67*cdf0e10cSrcweir const OUString& rsRootName, 68*cdf0e10cSrcweir const WriteMode eMode) 69*cdf0e10cSrcweir : mxRoot() 70*cdf0e10cSrcweir { 71*cdf0e10cSrcweir Reference<lang::XMultiServiceFactory> xProvider ( 72*cdf0e10cSrcweir ::comphelper::getProcessServiceFactory()->createInstance( 73*cdf0e10cSrcweir OUString::createFromAscii("com.sun.star.configuration.ConfigurationProvider")), 74*cdf0e10cSrcweir UNO_QUERY); 75*cdf0e10cSrcweir if (xProvider.is()) 76*cdf0e10cSrcweir Initialize(xProvider, rsRootName, eMode); 77*cdf0e10cSrcweir } 78*cdf0e10cSrcweir 79*cdf0e10cSrcweir 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir void ConfigurationAccess::Initialize ( 83*cdf0e10cSrcweir const Reference<lang::XMultiServiceFactory>& rxProvider, 84*cdf0e10cSrcweir const OUString& rsRootName, 85*cdf0e10cSrcweir const WriteMode eMode) 86*cdf0e10cSrcweir { 87*cdf0e10cSrcweir try 88*cdf0e10cSrcweir { 89*cdf0e10cSrcweir Sequence<Any> aCreationArguments(3); 90*cdf0e10cSrcweir aCreationArguments[0] = makeAny(beans::PropertyValue( 91*cdf0e10cSrcweir OUString(RTL_CONSTASCII_USTRINGPARAM("nodepath")), 92*cdf0e10cSrcweir 0, 93*cdf0e10cSrcweir makeAny(rsRootName), 94*cdf0e10cSrcweir beans::PropertyState_DIRECT_VALUE)); 95*cdf0e10cSrcweir aCreationArguments[1] = makeAny(beans::PropertyValue( 96*cdf0e10cSrcweir OUString(RTL_CONSTASCII_USTRINGPARAM("depth")), 97*cdf0e10cSrcweir 0, 98*cdf0e10cSrcweir makeAny((sal_Int32)-1), 99*cdf0e10cSrcweir beans::PropertyState_DIRECT_VALUE)); 100*cdf0e10cSrcweir aCreationArguments[2] = makeAny(beans::PropertyValue( 101*cdf0e10cSrcweir OUString(RTL_CONSTASCII_USTRINGPARAM("lazywrite")), 102*cdf0e10cSrcweir 0, 103*cdf0e10cSrcweir makeAny(true), 104*cdf0e10cSrcweir beans::PropertyState_DIRECT_VALUE)); 105*cdf0e10cSrcweir OUString sAccessService; 106*cdf0e10cSrcweir if (eMode == READ_ONLY) 107*cdf0e10cSrcweir sAccessService = OUString(RTL_CONSTASCII_USTRINGPARAM( 108*cdf0e10cSrcweir "com.sun.star.configuration.ConfigurationAccess")); 109*cdf0e10cSrcweir else 110*cdf0e10cSrcweir sAccessService = OUString(RTL_CONSTASCII_USTRINGPARAM( 111*cdf0e10cSrcweir "com.sun.star.configuration.ConfigurationUpdateAccess")); 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir mxRoot = rxProvider->createInstanceWithArguments( 114*cdf0e10cSrcweir sAccessService, 115*cdf0e10cSrcweir aCreationArguments); 116*cdf0e10cSrcweir } 117*cdf0e10cSrcweir catch (Exception&) 118*cdf0e10cSrcweir { 119*cdf0e10cSrcweir DBG_UNHANDLED_EXCEPTION(); 120*cdf0e10cSrcweir } 121*cdf0e10cSrcweir } 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir Any ConfigurationAccess::GetConfigurationNode ( 127*cdf0e10cSrcweir const OUString& sPathToNode) 128*cdf0e10cSrcweir { 129*cdf0e10cSrcweir return GetConfigurationNode( 130*cdf0e10cSrcweir Reference<container::XHierarchicalNameAccess>(mxRoot, UNO_QUERY), 131*cdf0e10cSrcweir sPathToNode); 132*cdf0e10cSrcweir } 133*cdf0e10cSrcweir 134*cdf0e10cSrcweir 135*cdf0e10cSrcweir 136*cdf0e10cSrcweir 137*cdf0e10cSrcweir Any ConfigurationAccess::GetConfigurationNode ( 138*cdf0e10cSrcweir const css::uno::Reference<css::container::XHierarchicalNameAccess>& rxNode, 139*cdf0e10cSrcweir const OUString& sPathToNode) 140*cdf0e10cSrcweir { 141*cdf0e10cSrcweir if (sPathToNode.getLength() == 0) 142*cdf0e10cSrcweir return Any(rxNode); 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir try 145*cdf0e10cSrcweir { 146*cdf0e10cSrcweir if (rxNode.is()) 147*cdf0e10cSrcweir { 148*cdf0e10cSrcweir return rxNode->getByHierarchicalName(sPathToNode); 149*cdf0e10cSrcweir } 150*cdf0e10cSrcweir } 151*cdf0e10cSrcweir catch (Exception& rException) 152*cdf0e10cSrcweir { 153*cdf0e10cSrcweir OSL_TRACE ("caught exception while getting configuration node %s: %s", 154*cdf0e10cSrcweir ::rtl::OUStringToOString(sPathToNode, RTL_TEXTENCODING_UTF8).getStr(), 155*cdf0e10cSrcweir ::rtl::OUStringToOString(rException.Message, RTL_TEXTENCODING_UTF8).getStr()); 156*cdf0e10cSrcweir } 157*cdf0e10cSrcweir 158*cdf0e10cSrcweir return Any(); 159*cdf0e10cSrcweir } 160*cdf0e10cSrcweir 161*cdf0e10cSrcweir 162*cdf0e10cSrcweir 163*cdf0e10cSrcweir 164*cdf0e10cSrcweir void ConfigurationAccess::CommitChanges (void) 165*cdf0e10cSrcweir { 166*cdf0e10cSrcweir Reference<util::XChangesBatch> xConfiguration (mxRoot, UNO_QUERY); 167*cdf0e10cSrcweir if (xConfiguration.is()) 168*cdf0e10cSrcweir xConfiguration->commitChanges(); 169*cdf0e10cSrcweir } 170*cdf0e10cSrcweir 171*cdf0e10cSrcweir 172*cdf0e10cSrcweir 173*cdf0e10cSrcweir 174*cdf0e10cSrcweir void ConfigurationAccess::ForAll ( 175*cdf0e10cSrcweir const Reference<container::XNameAccess>& rxContainer, 176*cdf0e10cSrcweir const ::std::vector<OUString>& rArguments, 177*cdf0e10cSrcweir const Functor& rFunctor) 178*cdf0e10cSrcweir { 179*cdf0e10cSrcweir if (rxContainer.is()) 180*cdf0e10cSrcweir { 181*cdf0e10cSrcweir ::std::vector<Any> aValues(rArguments.size()); 182*cdf0e10cSrcweir Sequence<OUString> aKeys (rxContainer->getElementNames()); 183*cdf0e10cSrcweir for (sal_Int32 nItemIndex=0; nItemIndex<aKeys.getLength(); ++nItemIndex) 184*cdf0e10cSrcweir { 185*cdf0e10cSrcweir const OUString& rsKey (aKeys[nItemIndex]); 186*cdf0e10cSrcweir Reference<container::XNameAccess> xSetItem (rxContainer->getByName(rsKey), UNO_QUERY); 187*cdf0e10cSrcweir if (xSetItem.is()) 188*cdf0e10cSrcweir { 189*cdf0e10cSrcweir // Get from the current item of the container the children 190*cdf0e10cSrcweir // that match the names in the rArguments list. 191*cdf0e10cSrcweir for (sal_uInt32 nValueIndex=0; nValueIndex<aValues.size(); ++nValueIndex) 192*cdf0e10cSrcweir aValues[nValueIndex] = xSetItem->getByName(rArguments[nValueIndex]); 193*cdf0e10cSrcweir } 194*cdf0e10cSrcweir rFunctor(rsKey, aValues); 195*cdf0e10cSrcweir } 196*cdf0e10cSrcweir } 197*cdf0e10cSrcweir } 198*cdf0e10cSrcweir 199*cdf0e10cSrcweir 200*cdf0e10cSrcweir 201*cdf0e10cSrcweir 202*cdf0e10cSrcweir void ConfigurationAccess::FillList( 203*cdf0e10cSrcweir const Reference<container::XNameAccess>& rxContainer, 204*cdf0e10cSrcweir const ::rtl::OUString& rsArgument, 205*cdf0e10cSrcweir ::std::vector<OUString>& rList) 206*cdf0e10cSrcweir { 207*cdf0e10cSrcweir try 208*cdf0e10cSrcweir { 209*cdf0e10cSrcweir if (rxContainer.is()) 210*cdf0e10cSrcweir { 211*cdf0e10cSrcweir Sequence<OUString> aKeys (rxContainer->getElementNames()); 212*cdf0e10cSrcweir rList.resize(aKeys.getLength()); 213*cdf0e10cSrcweir for (sal_Int32 nItemIndex=0; nItemIndex<aKeys.getLength(); ++nItemIndex) 214*cdf0e10cSrcweir { 215*cdf0e10cSrcweir Reference<container::XNameAccess> xSetItem ( 216*cdf0e10cSrcweir rxContainer->getByName(aKeys[nItemIndex]), UNO_QUERY); 217*cdf0e10cSrcweir if (xSetItem.is()) 218*cdf0e10cSrcweir { 219*cdf0e10cSrcweir xSetItem->getByName(rsArgument) >>= rList[nItemIndex]; 220*cdf0e10cSrcweir } 221*cdf0e10cSrcweir } 222*cdf0e10cSrcweir } 223*cdf0e10cSrcweir } 224*cdf0e10cSrcweir catch (RuntimeException&) 225*cdf0e10cSrcweir {} 226*cdf0e10cSrcweir } 227*cdf0e10cSrcweir 228*cdf0e10cSrcweir 229*cdf0e10cSrcweir } } // end of namespace sd::tools 230*cdf0e10cSrcweir 231