office-gobmx/configmgr/source/api2/confprovider2.cxx

304 lines
10 KiB
C++
Raw Normal View History

/*************************************************************************
*
* $RCSfile: confprovider2.cxx,v $
*
* $Revision: 1.9 $
*
* last change: $Author: fs $ $Date: 2000-12-01 13:55:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#include "confprovider2.hxx"
#include "apiaccessobj.hxx"
#ifndef CONFIGMGR_API_PROVIDERIMPL2_HXX_
#include "confproviderimpl2.hxx"
#endif
#ifndef CONFIGMGR_MODULE_HXX_
#include "configmodule.hxx"
#endif
#ifndef CONFIGMGR_BOOTSTRAP_HXX_
#include "bootstrap.hxx"
#endif
#ifndef _CONFIGMGR_TRACER_HXX_
#include "tracer.hxx"
#endif
#ifndef _OSL_MUTEX_HXX_
#include <osl/mutex.hxx>
#endif
#ifndef __SGI_STL_ALGORITHM
#include <stl/algorithm>
#endif
#ifndef _COMPHELPER_SEQUENCE_HXX_
#include <comphelper/sequence.hxx>
#endif
#ifndef _CPPUHELPER_TYPEPROVIDER_HXX_
#include <cppuhelper/typeprovider.hxx>
#endif
#ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP_
#include <com/sun/star/beans/PropertyValue.hpp>
#endif
#define THISREF() static_cast< ::cppu::OWeakObject* >(this)
namespace configmgr
{
namespace css = ::com::sun::star;
namespace uno = css::uno;
namespace lang = css::lang;
namespace beans = css::beans;
using ::rtl::OUString;
using ::vos::ORef;
using namespace osl;
namespace
{
2000-11-10 15:45:40 -06:00
typedef uno::Reference< uno::XInterface > (OConfigurationProviderImpl::*CreatorFunc)(const uno::Sequence< uno::Any >& aArguments);
struct ServiceCreationInfo
{
ServiceInfo const* info;
2000-11-10 15:45:40 -06:00
CreatorFunc create;
};
2000-11-10 15:45:40 -06:00
AsciiServiceName const aProviderServices[] =
{
2000-11-09 07:23:05 -06:00
"com.sun.star.configuration.ConfigurationProvider",
0
};
2000-11-10 15:45:40 -06:00
ServiceInfo const aProviderInfo =
{
2000-11-10 15:45:40 -06:00
"com.sun.star.comp.configuration.ConfigurationProvider",
aProviderServices
};
static sal_Int32 getCreateServiceDataCount()
{
2000-11-10 15:45:40 -06:00
return 2;
};
2000-11-10 15:45:40 -06:00
static const ServiceCreationInfo* getCreateServiceData()
{
2000-11-10 15:45:40 -06:00
static ServiceCreationInfo const createServiceData[] =
{
2000-11-10 15:45:40 -06:00
{ &configapi::aRootElementReadAccessSI, &OConfigurationProviderImpl::createReadAccess },
{ &configapi::aRootElementUpdateAccessSI, &OConfigurationProviderImpl::createUpdateAccess },
};
OSL_ENSHURE(sizeof(createServiceData)/sizeof(createServiceData[0]) == getCreateServiceDataCount(),
"getCreateServiceData : inconsistent data !");
return createServiceData;
}
}
2000-11-10 15:45:40 -06:00
static ServiceCreationInfo const* findCreationInfo( const OUString& aServiceSpecifier )
{
for (int i= 0; i<getCreateServiceDataCount(); ++i)
{
2000-11-10 15:45:40 -06:00
ServiceCreationInfo const& rCreationInfo = getCreateServiceData()[i];
ServiceInfo const* pInfo = rCreationInfo.info;
if (!pInfo)
continue;
if (AsciiServiceName pImplName = pInfo->implementationName)
{
if (0 == aServiceSpecifier.compareToAscii(pImplName))
return &rCreationInfo;
}
if (AsciiServiceName const* pNames = pInfo->serviceNames)
{
while(*pNames)
{
if (0 == aServiceSpecifier.compareToAscii(*pNames))
return &rCreationInfo;
++pNames;
}
}
}
// not found
return 0;
}
2000-11-10 15:45:40 -06:00
//=============================================================================
//= OConfigurationProvider
//=============================================================================
ServiceInfo const& OConfigurationProvider::staticServiceInfo = aProviderInfo;
//-----------------------------------------------------------------------------
OConfigurationProvider::OConfigurationProvider(Module& aModule)
:OProvider(aModule,&aProviderInfo)
,m_pImpl(NULL)
{
}
//-----------------------------------------------------------------------------
void OConfigurationProvider::connect(const ConnectionSettings& _rSettings) throw(uno::Exception)
2000-11-10 15:45:40 -06:00
{
IConfigSession* pNewSession = m_aModule.connect(_rSettings);
2000-11-10 15:45:40 -06:00
if (!pNewSession)
throw uno::Exception(::rtl::OUString::createFromAscii("Could not connect to the configuration registry. Please check your settings."), NULL);
2000-11-13 09:02:38 -06:00
m_pImpl = new OConfigurationProviderImpl(this, pNewSession, m_aModule);
2000-11-10 15:45:40 -06:00
m_aModule.setProvider(this);
}
//-----------------------------------------------------------------------------
void OConfigurationProvider::disconnect()
{
if (m_pImpl)
{
m_aModule.disconnect();
m_aModule.disposing(this);
delete m_pImpl;
m_pImpl = NULL;
}
}
//-----------------------------------------------------------------------------
bool OConfigurationProvider::isConnected() const
{
return (m_pImpl != NULL) ? true : false;
}
//-----------------------------------------------------------------------------
uno::Reference< uno::XInterface > SAL_CALL OConfigurationProvider::createInstance( const OUString& aServiceSpecifier )
throw(uno::Exception, uno::RuntimeException)
{
MutexGuard aGuard(m_aMutex);
CFG_TRACE_INFO("going to create a read access instance for %s", "missing unicode conversion");
2000-11-10 15:45:40 -06:00
if (ServiceCreationInfo const* pInfo = findCreationInfo(aServiceSpecifier))
{
// it's a known service name - try to create without args
2000-11-10 15:45:40 -06:00
if (CreatorFunc create = pInfo->create)
{
uno::Sequence< uno::Any > aArguments;
return (m_pImpl->*create)(
aArguments);
}
}
// Otherwise try to use it as a configuration node name (and create a deep reader)
uno::Sequence< uno::Any > aArguments(1);
aArguments[0] <<= aServiceSpecifier;
return m_pImpl->createReadAccess(aArguments);
}
2000-11-10 15:45:40 -06:00
//-----------------------------------------------------------------------------
uno::Reference< uno::XInterface > SAL_CALL
2000-11-10 15:45:40 -06:00
OConfigurationProvider::createInstanceWithArguments( const ::rtl::OUString& aServiceSpecifier, const uno::Sequence< uno::Any >& aArguments )
throw(uno::Exception, uno::RuntimeException)
{
MutexGuard aGuard(m_aMutex);
2000-11-10 15:45:40 -06:00
if (ServiceCreationInfo const* pInfo = findCreationInfo(aServiceSpecifier))
{
// it's a known service name - try to create without args
2000-11-10 15:45:40 -06:00
if (CreatorFunc create = pInfo->create)
{
return (m_pImpl->*create)(aArguments);
}
}
// Otherwise try to use it as a configuration node name (and create a deep reader)
sal_Int32 nLength = aArguments.getLength();
uno::Sequence< uno::Any > aMoreArguments( 1 + nLength );
aMoreArguments[0] <<= aServiceSpecifier;
std::copy(aArguments.getConstArray(),aArguments.getConstArray() + nLength, aMoreArguments.getArray()+1);
return m_pImpl->createReadAccess(aMoreArguments);
}
2000-11-10 15:45:40 -06:00
//-----------------------------------------------------------------------------
uno::Sequence< OUString > SAL_CALL OConfigurationProvider::getAvailableServiceNames( )
throw(uno::RuntimeException)
{
MutexGuard aGuard(m_aMutex);
sal_Int32 nCount = 0;
{
for (int i= 0; i<getCreateServiceDataCount(); ++i)
nCount += countServices(getCreateServiceData()[i].info);
}
uno::Sequence< OUString > aNames(nCount);
if (nCount > 0)
{
sal_Int32 n = 0;
for (int i= 0; i<getCreateServiceDataCount(); ++i)
{
ServiceInfo const* pInfo = getCreateServiceData()[i].info;
AsciiServiceName const* pNames = pInfo ? pInfo->serviceNames : 0;
if (pNames)
{
while(*pNames)
{
aNames[n] = OUString::createFromAscii(*pNames);
++n;
++pNames;
}
}
}
}
return aNames;
}
} // namespace configmgr