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 // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_extensions.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include "myconfigurationhelper.hxx" 32*cdf0e10cSrcweir #include <com/sun/star/beans/XPropertySet.hpp> 33*cdf0e10cSrcweir #include <com/sun/star/container/XNameAccess.hpp> 34*cdf0e10cSrcweir #include <com/sun/star/container/XNameContainer.hpp> 35*cdf0e10cSrcweir #include <com/sun/star/lang/XSingleServiceFactory.hpp> 36*cdf0e10cSrcweir #include <rtl/ustrbuf.hxx> 37*cdf0e10cSrcweir #include <vector> 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir namespace css = ::com::sun::star; 41*cdf0e10cSrcweir using namespace ::com::sun::star::lang; 42*cdf0e10cSrcweir using namespace ::com::sun::star::uno; 43*cdf0e10cSrcweir using ::rtl::OUString; 44*cdf0e10cSrcweir using ::rtl::OUStringBuffer; 45*cdf0e10cSrcweir using ::std::vector; 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir 48*cdf0e10cSrcweir namespace 49*cdf0e10cSrcweir { 50*cdf0e10cSrcweir static const Sequence<Any> sequenceFromVector(const vector<Any>& vec) 51*cdf0e10cSrcweir { 52*cdf0e10cSrcweir Sequence<Any> result(vec.size()); 53*cdf0e10cSrcweir for(size_t idx = 0; idx < vec.size(); ++idx) 54*cdf0e10cSrcweir result[idx] = vec[idx]; 55*cdf0e10cSrcweir return result; 56*cdf0e10cSrcweir }; 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir static const OUString noSuchElement(const OUString& path) 59*cdf0e10cSrcweir { 60*cdf0e10cSrcweir OUStringBuffer buf(256); 61*cdf0e10cSrcweir buf.appendAscii("The requested path \""); 62*cdf0e10cSrcweir buf.append(path); 63*cdf0e10cSrcweir buf.appendAscii("\" does not exists."); 64*cdf0e10cSrcweir return buf.makeStringAndClear(); 65*cdf0e10cSrcweir }; 66*cdf0e10cSrcweir } 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir namespace oooimprovement 69*cdf0e10cSrcweir { 70*cdf0e10cSrcweir Reference<XInterface> MyConfigurationHelper::openConfig( 71*cdf0e10cSrcweir const Reference<XMultiServiceFactory> xSMGR, 72*cdf0e10cSrcweir const OUString& sPackage, 73*cdf0e10cSrcweir sal_Int32 eMode) 74*cdf0e10cSrcweir { 75*cdf0e10cSrcweir Reference<XMultiServiceFactory> xConfigProvider( 76*cdf0e10cSrcweir xSMGR->createInstance(OUString::createFromAscii("com.sun.star.configuration.ConfigurationProvider")), 77*cdf0e10cSrcweir UNO_QUERY_THROW); 78*cdf0e10cSrcweir 79*cdf0e10cSrcweir vector<Any> lParams; 80*cdf0e10cSrcweir css::beans::PropertyValue aParam; 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir // set root path 83*cdf0e10cSrcweir aParam.Name = OUString::createFromAscii("nodepath"); 84*cdf0e10cSrcweir aParam.Value <<= sPackage; 85*cdf0e10cSrcweir lParams.push_back(makeAny(aParam)); 86*cdf0e10cSrcweir 87*cdf0e10cSrcweir // enable all locales mode 88*cdf0e10cSrcweir if ((eMode & MyConfigurationHelper::E_ALL_LOCALES)==MyConfigurationHelper::E_ALL_LOCALES) 89*cdf0e10cSrcweir { 90*cdf0e10cSrcweir aParam.Name = OUString::createFromAscii("locale"); 91*cdf0e10cSrcweir aParam.Value <<= OUString::createFromAscii("*"); 92*cdf0e10cSrcweir lParams.push_back(makeAny(aParam)); 93*cdf0e10cSrcweir } 94*cdf0e10cSrcweir 95*cdf0e10cSrcweir // enable lazy writing 96*cdf0e10cSrcweir sal_Bool bLazy = ((eMode & MyConfigurationHelper::E_LAZY_WRITE)==MyConfigurationHelper::E_LAZY_WRITE); 97*cdf0e10cSrcweir aParam.Name = OUString::createFromAscii("lazywrite"); 98*cdf0e10cSrcweir aParam.Value = makeAny(bLazy); 99*cdf0e10cSrcweir lParams.push_back(makeAny(aParam)); 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir // open it 102*cdf0e10cSrcweir Reference<XInterface> xCFG; 103*cdf0e10cSrcweir 104*cdf0e10cSrcweir sal_Bool bReadOnly = ((eMode & MyConfigurationHelper::E_READONLY)==MyConfigurationHelper::E_READONLY); 105*cdf0e10cSrcweir if (bReadOnly) 106*cdf0e10cSrcweir xCFG = xConfigProvider->createInstanceWithArguments( 107*cdf0e10cSrcweir OUString::createFromAscii("com.sun.star.configuration.ConfigurationAccess"), 108*cdf0e10cSrcweir sequenceFromVector(lParams)); 109*cdf0e10cSrcweir else 110*cdf0e10cSrcweir xCFG = xConfigProvider->createInstanceWithArguments( 111*cdf0e10cSrcweir OUString::createFromAscii("com.sun.star.configuration.ConfigurationUpdateAccess"), 112*cdf0e10cSrcweir sequenceFromVector(lParams)); 113*cdf0e10cSrcweir return xCFG; 114*cdf0e10cSrcweir } 115*cdf0e10cSrcweir 116*cdf0e10cSrcweir Any MyConfigurationHelper::readRelativeKey( 117*cdf0e10cSrcweir const Reference<XInterface> xCFG, 118*cdf0e10cSrcweir const OUString& sRelPath, 119*cdf0e10cSrcweir const OUString& sKey) 120*cdf0e10cSrcweir { 121*cdf0e10cSrcweir Reference<css::container::XHierarchicalNameAccess> xAccess(xCFG, UNO_QUERY_THROW); 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir Reference<css::beans::XPropertySet> xProps; 124*cdf0e10cSrcweir xAccess->getByHierarchicalName(sRelPath) >>= xProps; 125*cdf0e10cSrcweir if (!xProps.is()) 126*cdf0e10cSrcweir throw css::container::NoSuchElementException( 127*cdf0e10cSrcweir noSuchElement(sRelPath), 128*cdf0e10cSrcweir Reference<XInterface>()); 129*cdf0e10cSrcweir return xProps->getPropertyValue(sKey); 130*cdf0e10cSrcweir } 131*cdf0e10cSrcweir 132*cdf0e10cSrcweir void MyConfigurationHelper::writeRelativeKey( 133*cdf0e10cSrcweir const Reference<XInterface> xCFG, 134*cdf0e10cSrcweir const OUString& sRelPath, 135*cdf0e10cSrcweir const OUString& sKey, 136*cdf0e10cSrcweir const Any& aValue) 137*cdf0e10cSrcweir { 138*cdf0e10cSrcweir Reference<css::container::XHierarchicalNameAccess> xAccess(xCFG, UNO_QUERY_THROW); 139*cdf0e10cSrcweir 140*cdf0e10cSrcweir Reference<css::beans::XPropertySet> xProps; 141*cdf0e10cSrcweir xAccess->getByHierarchicalName(sRelPath) >>= xProps; 142*cdf0e10cSrcweir if (!xProps.is()) 143*cdf0e10cSrcweir throw css::container::NoSuchElementException( 144*cdf0e10cSrcweir noSuchElement(sRelPath), 145*cdf0e10cSrcweir Reference<XInterface>()); 146*cdf0e10cSrcweir xProps->setPropertyValue(sKey, aValue); 147*cdf0e10cSrcweir } 148*cdf0e10cSrcweir 149*cdf0e10cSrcweir Any MyConfigurationHelper::readDirectKey( 150*cdf0e10cSrcweir const Reference<XMultiServiceFactory> xSMGR, 151*cdf0e10cSrcweir const OUString& sPackage, 152*cdf0e10cSrcweir const OUString& sRelPath, 153*cdf0e10cSrcweir const OUString& sKey, 154*cdf0e10cSrcweir sal_Int32 eMode) 155*cdf0e10cSrcweir { 156*cdf0e10cSrcweir Reference<XInterface> xCFG = MyConfigurationHelper::openConfig(xSMGR, sPackage, eMode); 157*cdf0e10cSrcweir return MyConfigurationHelper::readRelativeKey(xCFG, sRelPath, sKey); 158*cdf0e10cSrcweir } 159*cdf0e10cSrcweir 160*cdf0e10cSrcweir void MyConfigurationHelper::writeDirectKey( 161*cdf0e10cSrcweir const Reference<XMultiServiceFactory> xSMGR, 162*cdf0e10cSrcweir const OUString& sPackage, 163*cdf0e10cSrcweir const OUString& sRelPath, 164*cdf0e10cSrcweir const OUString& sKey, 165*cdf0e10cSrcweir const Any& aValue, 166*cdf0e10cSrcweir sal_Int32 eMode) 167*cdf0e10cSrcweir { 168*cdf0e10cSrcweir Reference<XInterface> xCFG = MyConfigurationHelper::openConfig(xSMGR, sPackage, eMode); 169*cdf0e10cSrcweir MyConfigurationHelper::writeRelativeKey(xCFG, sRelPath, sKey, aValue); 170*cdf0e10cSrcweir MyConfigurationHelper::flush(xCFG); 171*cdf0e10cSrcweir } 172*cdf0e10cSrcweir 173*cdf0e10cSrcweir void MyConfigurationHelper::flush(const Reference<XInterface>& xCFG) 174*cdf0e10cSrcweir { 175*cdf0e10cSrcweir Reference<css::util::XChangesBatch> xBatch(xCFG, UNO_QUERY_THROW); 176*cdf0e10cSrcweir xBatch->commitChanges(); 177*cdf0e10cSrcweir } 178*cdf0e10cSrcweir } 179