/************************************************************************* * * 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_framework.hxx" //________________________________ // my own includes #include #include #include #include #include #include //________________________________ // interface includes #include #include #include #include #include //________________________________ // includes of other projects #include #include //________________________________ // namespace namespace framework{ //________________________________ // non exported const //________________________________ // non exported definitions //________________________________ // declarations //________________________________ /** @short open the configuration of this job @descr We open the configuration of this job only. Not the whole package or the whole job set. We are interested on our own properties only. We set the opened configuration access as our member. So any following method, which needs cfg access, can use it. That prevent us against multiple open/close requests. But you can use this method to upgrade an already opened configuration too. @param eMode force opening of the configuration access in readonly or in read/write mode */ ConfigAccess::ConfigAccess( /*IN*/ const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR , /*IN*/ const ::rtl::OUString& sRoot ) : ThreadHelpBase( ) , m_xSMGR ( xSMGR ) , m_sRoot ( sRoot ) , m_eMode ( E_CLOSED ) { } //________________________________ /** @short last chance to close an open configuration access point @descr In case our user forgot to close this configuration point in the right way, normaly he will run into some trouble - e.g. losing data. */ ConfigAccess::~ConfigAccess() { close(); } //________________________________ /** @short return the internal mode of this instance @descr May be the outside user need any information about successfully opened or closed config access point objects. He can control the internal mode to do so. @return The internal open state of this object. */ ConfigAccess::EOpenMode ConfigAccess::getMode() const { /* SAFE { */ ReadGuard aReadLock(m_aLock); return m_eMode; /* } SAFE */ } //________________________________ /** @short open the configuration access in the specified mode @descr We set the opened configuration access as our member. So any following method, which needs cfg access, can use it. That prevent us against multiple open/close requests. But you can use this method to upgrade an already opened configuration too. It's possible to open a config access in READONLY mode first and "open" it at a second time within the mode READWRITE. Then we will upgrade it. Dowgrade will be possible too. But note: closing will be done explicitly by calling method close() ... not by downgrading with mode CLOSED! @param eMode force (re)opening of the configuration access in readonly or in read/write mode */ void ConfigAccess::open( /*IN*/ EOpenMode eMode ) { /* SAFE { */ // We must lock the whole method to be shure, that nobody // outside uses our internal member m_xAccess! WriteGuard aWriteLock(m_aLock); // check if configuration is already open in the right mode. // By the way: Don't allow closing by using this method! if ( (eMode !=E_CLOSED) && (m_eMode!=eMode ) ) { // We have to close the old access point without any question here. // It will be open again using the new mode. // can be called without checks! It does the checks by itself ... // e.g. for already closed or not opened configuration. // Flushing of all made changes will be done here too. close(); // create the configuration provider, which provides sub access points css::uno::Reference< css::lang::XMultiServiceFactory > xConfigProvider(m_xSMGR->createInstance(SERVICENAME_CFGPROVIDER), css::uno::UNO_QUERY); if (xConfigProvider.is()) { css::beans::PropertyValue aParam; aParam.Name = DECLARE_ASCII("nodepath"); aParam.Value <<= m_sRoot; css::uno::Sequence< css::uno::Any > lParams(1); lParams[0] <<= aParam; // open it try { if (eMode==E_READONLY) m_xConfig = xConfigProvider->createInstanceWithArguments(SERVICENAME_CFGREADACCESS , lParams); else if (eMode==E_READWRITE) m_xConfig = xConfigProvider->createInstanceWithArguments(SERVICENAME_CFGUPDATEACCESS, lParams); } catch(css::uno::Exception& ex) { (void) ex; // avoid warning LOG_WARNING("open config ...", U2B(ex.Message)) } m_eMode = E_CLOSED; if (m_xConfig.is()) m_eMode = eMode; } } aWriteLock.unlock(); /* } SAFE */ } //________________________________ /** @short close the internal opened configuration access and flush all changes @descr It checks, if the given access is valid and react in the right way. It flushes all changes ... so nobody else must know this state. */ void ConfigAccess::close() { /* SAFE { */ // Lock the whole method, to be shure that nobody else uses our internal members // during this time. WriteGuard aWriteLock(m_aLock); // check already closed configuration if (m_xConfig.is()) { css::uno::Reference< css::util::XChangesBatch > xFlush(m_xConfig, css::uno::UNO_QUERY); if (xFlush.is()) xFlush->commitChanges(); m_xConfig = css::uno::Reference< css::uno::XInterface >(); m_eMode = E_CLOSED; } aWriteLock.unlock(); /* } SAFE */ } //________________________________ /** @short provides an access to the internal wrapped configuration access @descr It's not allowed to safe this c++ (!) reference outside. You have to use it directly. Further you must use our public lock member m_aLock to synchronize your code with our internal structures and our interface methods. Acquire it before you call cfg() and release it afterwards immediatly. E.g.: ConfigAccess aAccess(...); ReadGuard aReadLock(aAccess.m_aLock); Reference< XPropertySet > xSet(aAccess.cfg(), UNO_QUERY); Any aProp = xSet->getPropertyValue("..."); aReadLock.unlock(); @attention During this time it's not allowed to call the methods open() or close()! Otherwhise you will change your own referenced config access. Anything will be possible then. @return A c++(!) reference to the uno instance of the configuration access point. */ const css::uno::Reference< css::uno::XInterface >& ConfigAccess::cfg() { // must be synchronized from outside! // => no lock here ... return m_xConfig; } } // namespace framework