Adapter Backend<->SingleBackend
This commit is contained in:
parent
a1d029e8b7
commit
6586f85c7b
2 changed files with 334 additions and 0 deletions
171
configmgr/source/backend/singlebackendadapter.cxx
Normal file
171
configmgr/source/backend/singlebackendadapter.cxx
Normal file
|
@ -0,0 +1,171 @@
|
|||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: singlebackendadapter.cxx,v $
|
||||
*
|
||||
* $Revision: 1.1 $
|
||||
*
|
||||
* last change: $Author: cyrillem $ $Date: 2002-05-27 17:11:14 $
|
||||
*
|
||||
* 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): _______________________________________
|
||||
*
|
||||
*
|
||||
************************************************************************/
|
||||
|
||||
#ifndef ECOMP_LDAPBE_SINGLEBACKENDADAPTER_HXX_
|
||||
#include "singlebackendadapter.hxx"
|
||||
#endif // ECOMP_LDAPBE_SINGLEBACKENDADAPTER_HXX_
|
||||
|
||||
namespace ecomp { namespace ldapbe {
|
||||
|
||||
//==============================================================================
|
||||
|
||||
SingleBackendAdapter::SingleBackendAdapter(
|
||||
const uno::Reference<uno::XComponentContext>& aContext)
|
||||
: BackendBase(mMutex), mContext(aContext) {
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
SingleBackendAdapter::~SingleBackendAdapter(void) {}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
void SAL_CALL SingleBackendAdapter::initialize(
|
||||
const uno::Sequence<uno::Any>& aParameters) {
|
||||
static const rtl::OUString kSingleBackend(RTL_CONSTASCII_USTRINGPARAM(
|
||||
"com.sun.star.configuration.backend.SingleBackend")) ;
|
||||
|
||||
mBackend = uno::Reference<backend::XSingleBackend>::query(
|
||||
mContext->getServiceManager()->createInstanceWithArgumentsAndContext(
|
||||
kSingleBackend, aParameters, mContext)) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
uno::Reference<backend::XSchema>
|
||||
SAL_CALL SingleBackendAdapter::getComponentSchema(
|
||||
const rtl::OUString& aComponent) {
|
||||
return mBackend->getSchema(aComponent) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
uno::Sequence<uno::Reference<backend::XLayer> >
|
||||
SAL_CALL SingleBackendAdapter::listOwnLayers(const rtl::OUString& aComponent) {
|
||||
return listLayers(aComponent, mBackend->getOwnId()) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
uno::Reference<backend::XUpdateHandler>
|
||||
SAL_CALL SingleBackendAdapter::getOwnUpdateHandler(
|
||||
const rtl::OUString& aComponent) {
|
||||
return getUpdateHandler(aComponent, mBackend->getOwnId()) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
uno::Sequence<uno::Reference<backend::XLayer> >
|
||||
SAL_CALL SingleBackendAdapter::listLayers(const rtl::OUString& aComponent,
|
||||
const rtl::OUString& aEntity) {
|
||||
return mBackend->getLayers(mBackend->listLayerIds(aComponent, aEntity),
|
||||
rtl::OUString()) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
uno::Reference<backend::XUpdateHandler>
|
||||
SAL_CALL SingleBackendAdapter::getUpdateHandler(const rtl::OUString& aComponent,
|
||||
const rtl::OUString& aEntity) {
|
||||
static const rtl::OUString kUpdateMerger(RTL_CONSTASCII_USTRINGPARAM(
|
||||
"com.sun.star.configuration.backend.UpdateMerger")) ;
|
||||
uno::Sequence<uno::Any> arguments(1) ;
|
||||
|
||||
arguments [0] <<= mBackend->getUpdatableLayer(
|
||||
mBackend->getUpdateLayerId(aComponent,
|
||||
aEntity)) ;
|
||||
return uno::Reference<backend::XUpdateHandler>::query(
|
||||
mContext->getServiceManager()->createInstanceWithArgumentsAndContext(
|
||||
kUpdateMerger, arguments, mContext)) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
static const rtl::OUString kImplementationName(
|
||||
RTL_CONSTASCII_USTRINGPARAM(
|
||||
"com.sun.star.comp.configuration.backend.SingleBackendAdapter")) ;
|
||||
|
||||
rtl::OUString SAL_CALL SingleBackendAdapter::getName(void) {
|
||||
return kImplementationName ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
rtl::OUString SAL_CALL SingleBackendAdapter::getImplementationName(void) {
|
||||
return getName() ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
static const rtl::OUString kBackendServiceName(
|
||||
RTL_CONSTASCII_USTRINGPARAM(
|
||||
"com.sun.star.configuration.backend.Backend")) ;
|
||||
|
||||
sal_Bool SAL_CALL SingleBackendAdapter::supportsService(
|
||||
const rtl::OUString& aServiceName) {
|
||||
return aServiceName.equals(kBackendServiceName) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
uno::Sequence<rtl::OUString> SAL_CALL SingleBackendAdapter::getServices(void) {
|
||||
return uno::Sequence<rtl::OUString>(
|
||||
&kBackendServiceName, 1) ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
uno::Sequence<rtl::OUString>
|
||||
SAL_CALL SingleBackendAdapter::getSupportedServiceNames(void) {
|
||||
return getServices() ;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
} } // ecomp.ldapbe
|
||||
|
163
configmgr/source/backend/singlebackendadapter.hxx
Normal file
163
configmgr/source/backend/singlebackendadapter.hxx
Normal file
|
@ -0,0 +1,163 @@
|
|||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: singlebackendadapter.hxx,v $
|
||||
*
|
||||
* $Revision: 1.1 $
|
||||
*
|
||||
* last change: $Author: cyrillem $ $Date: 2002-05-27 17:11:14 $
|
||||
*
|
||||
* 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): _______________________________________
|
||||
*
|
||||
*
|
||||
************************************************************************/
|
||||
|
||||
#ifndef ECOMP_LDAPBE_SINGLEBACKENDADAPTER_HXX_
|
||||
#define ECOMP_LDAPBE_SINGLEBACKENDADAPTER_HXX_
|
||||
|
||||
#ifndef _COM_SUN_STAR_CONFIGURATION_BACKEND_XBACKEND_HPP_
|
||||
#include <drafts/com/sun/star/configuration/backend/XBackend.hpp>
|
||||
#endif // _COM_SUN_STAR_CONFIGURATION_BACKEND_XBACKEND_HPP_
|
||||
|
||||
#ifndef _COM_SUN_STAR_CONFIGURATION_BACKEND_XSINGLEBACKEND_HPP_
|
||||
#include <drafts/com/sun/star/configuration/backend/XSingleBackend.hpp>
|
||||
#endif // _COM_SUN_STAR_CONFIGURATION_BACKEND_XSINGLEBACKEND_HPP_
|
||||
|
||||
#ifndef _COM_SUN_STAR_LANG_XINITIALIZATION_HPP_
|
||||
#include <com/sun/star/lang/XInitialization.hpp>
|
||||
#endif // _COM_SUN_STAR_LANG_XINITIALIZATION_HPP_
|
||||
|
||||
#ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_
|
||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||
#endif // _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_
|
||||
|
||||
#ifndef _COM_SUN_STAR_UNO_XCOMPONENTCONTEXT_HPP_
|
||||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
#endif // _COM_SUN_STAR_UNO_XCOMPONENTCONTEXT_HPP_
|
||||
|
||||
#ifndef _CPPUHELPER_COMPBASE3_HXX_
|
||||
#include <cppuhelper/compbase3.hxx>
|
||||
#endif // _CPPUHELPER_COMPBASE3_HXX_
|
||||
|
||||
namespace ecomp { namespace ldapbe {
|
||||
|
||||
namespace css = com::sun::star ;
|
||||
namespace uno = css::uno ;
|
||||
namespace lang = css::lang ;
|
||||
//namespace backend = css::configuration::backend ;
|
||||
namespace backend = drafts::com::sun::star::configuration::backend ;
|
||||
|
||||
typedef cppu::WeakComponentImplHelper3<backend::XBackend,
|
||||
lang::XInitialization,
|
||||
lang::XServiceInfo> BackendBase ;
|
||||
/**
|
||||
Class implementing the Backend service for remote access.
|
||||
It just transfers calls to a SingleBackend implementation.
|
||||
*/
|
||||
class SingleBackendAdapter : public BackendBase {
|
||||
public :
|
||||
/**
|
||||
Service constructor from a component context.
|
||||
|
||||
@param aContext component context
|
||||
*/
|
||||
SingleBackendAdapter(
|
||||
const uno::Reference<uno::XComponentContext>& aContext) ;
|
||||
/** Destructor */
|
||||
~SingleBackendAdapter(void) ;
|
||||
|
||||
// XInitialize
|
||||
virtual void SAL_CALL initialize(
|
||||
const uno::Sequence<uno::Any>& aParameters) ;
|
||||
// XBackend
|
||||
virtual uno::Reference<backend::XSchema>
|
||||
SAL_CALL getComponentSchema(const rtl::OUString& aComponent) ;
|
||||
virtual uno::Sequence<uno::Reference<backend::XLayer> >
|
||||
SAL_CALL listOwnLayers(const rtl::OUString& aComponent) ;
|
||||
virtual uno::Reference<backend::XUpdateHandler>
|
||||
SAL_CALL getOwnUpdateHandler(const rtl::OUString& aComponent) ;
|
||||
virtual uno::Sequence<uno::Reference<backend::XLayer> > SAL_CALL
|
||||
listLayers(const rtl::OUString& aComponent,
|
||||
const rtl::OUString& aEntity) ;
|
||||
virtual uno::Reference<backend::XUpdateHandler> SAL_CALL
|
||||
getUpdateHandler(const rtl::OUString& aComponent,
|
||||
const rtl::OUString& aEntity) ;
|
||||
// XServiceInfo
|
||||
virtual rtl::OUString SAL_CALL getImplementationName(void) ;
|
||||
virtual sal_Bool SAL_CALL supportsService(
|
||||
const rtl::OUString& aServiceName) ;
|
||||
virtual uno::Sequence<rtl::OUString> SAL_CALL
|
||||
getSupportedServiceNames(void) ;
|
||||
|
||||
/**
|
||||
Provides the implementation name.
|
||||
|
||||
@return implementation name
|
||||
*/
|
||||
static rtl::OUString SAL_CALL getName(void) ;
|
||||
/**
|
||||
Provides the list of supported services.
|
||||
|
||||
@return list of service names
|
||||
*/
|
||||
static uno::Sequence<rtl::OUString> SAL_CALL getServices(void) ;
|
||||
protected :
|
||||
private :
|
||||
/** Component context */
|
||||
const uno::Reference<uno::XComponentContext>& mContext ;
|
||||
/** Mutex for resource protection */
|
||||
osl::Mutex mMutex ;
|
||||
/** Remote backend that the offline cache is handling */
|
||||
uno::Reference<backend::XSingleBackend> mBackend ;
|
||||
} ;
|
||||
|
||||
} } // ecomp.ldapbe
|
||||
|
||||
#endif // ECOMP_LDAPBE_SINGLEBACKENDADAPTER_HXX_
|
Loading…
Reference in a new issue