327 lines
18 KiB
C++
327 lines
18 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: implbase2.hxx,v $
|
|
*
|
|
* $Revision: 1.7 $
|
|
*
|
|
* last change: $Author: dbo $ $Date: 2001-11-09 13:49:15 $
|
|
*
|
|
* 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 _CPPUHELPER_IMPLBASE2_HXX_
|
|
#define _CPPUHELPER_IMPLBASE2_HXX_
|
|
|
|
#ifdef MACOSX /* use old impl helpers for macosx */
|
|
|
|
#define __IFC2 Ifc1, Ifc2
|
|
#define __CLASS_IFC2 class Ifc1, class Ifc2
|
|
#define __PUBLIC_IFC2 public Ifc1, public Ifc2
|
|
|
|
#ifndef _CPPUHELPER_IMPLBASE_HXX_
|
|
#include <cppuhelper/implbase.hxx>
|
|
#endif
|
|
|
|
__DEF_IMPLHELPER_PRE( 2 )
|
|
__IFC_WRITEOFFSET( 1 ) __IFC_WRITEOFFSET( 2 )
|
|
__DEF_IMPLHELPER_POST( 2 )
|
|
|
|
#else /* ! MACOSX */
|
|
|
|
#ifndef _CPPUHELPER_IMPLBASE_EX_HXX_
|
|
#include <cppuhelper/implbase_ex.hxx>
|
|
#endif
|
|
/*
|
|
#include <cppuhelper/implbase_ex_pre.hxx>
|
|
#define __IFC_EX_TYPE_INIT2( class_cast ) \
|
|
__IFC_EX_TYPE_INIT( class_cast, 1 ), __IFC_EX_TYPE_INIT( class_cast, 2 )
|
|
#include <cppuhelper/implbase_ex_post.hxx>
|
|
__DEF_IMPLHELPER_EX( 2 )
|
|
*/
|
|
|
|
namespace cppu
|
|
{
|
|
/** @internal */
|
|
struct class_data2
|
|
{
|
|
sal_Int16 m_nTypes;
|
|
sal_Bool m_storedTypeRefs;
|
|
sal_Bool m_storedId;
|
|
sal_Int8 m_id[ 16 ];
|
|
type_entry m_typeEntries[ 2 + 1 ];
|
|
};
|
|
/** Implementation helper implementing interface ::com::sun::star::lang::XTypeProvider
|
|
and queryInterface(), but no reference counting.
|
|
|
|
@derive
|
|
Inherit from this class giving your interface(s) to be implemented as template argument(s).
|
|
Your base class defines method implementations, acquire(), release() and delegates incoming
|
|
queryInterface() calls to this base class.
|
|
*/
|
|
template< class Ifc1, class Ifc2 >
|
|
class SAL_NO_VTABLE ImplHelper2
|
|
: public ::com::sun::star::lang::XTypeProvider
|
|
, public Ifc1, public Ifc2
|
|
{
|
|
/** @internal */
|
|
static class_data2 s_cd;
|
|
public:
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplHelper_query( rType, (class_data *)&s_cd, this ); }
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplHelper_getTypes( (class_data *)&s_cd ); }
|
|
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplHelper_getImplementationId( (class_data *)&s_cd ); }
|
|
};
|
|
template< class Ifc1, class Ifc2 >
|
|
class_data2 ImplHelper2< Ifc1, Ifc2 >::s_cd =
|
|
{
|
|
2 +1, sal_False, sal_False,
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
|
{
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
|
|
}
|
|
};
|
|
/** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
|
|
::com::sun::star::uno::XInterface which supports weak mechanism to be held weakly
|
|
(supporting ::com::sun::star::uno::XWeak thru ::cppu::OWeakObject).
|
|
|
|
@derive
|
|
Inherit from this class giving your interface(s) to be implemented as template argument(s).
|
|
Your sub class defines method implementations for these interface(s).
|
|
*/
|
|
template< class Ifc1, class Ifc2 >
|
|
class SAL_NO_VTABLE WeakImplHelper2
|
|
: public OWeakObject
|
|
, public ::com::sun::star::lang::XTypeProvider
|
|
, public Ifc1, public Ifc2
|
|
{
|
|
/** @internal */
|
|
static class_data2 s_cd;
|
|
public:
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
|
|
{ return WeakImplHelper_query( rType, (class_data *)&s_cd, this, (OWeakObject *)this ); }
|
|
virtual void SAL_CALL acquire() throw ()
|
|
{ OWeakObject::acquire(); }
|
|
virtual void SAL_CALL release() throw ()
|
|
{ OWeakObject::release(); }
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return WeakImplHelper_getTypes( (class_data *)&s_cd ); }
|
|
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplHelper_getImplementationId( (class_data *)&s_cd ); }
|
|
};
|
|
template< class Ifc1, class Ifc2 >
|
|
class_data2 WeakImplHelper2< Ifc1, Ifc2 >::s_cd =
|
|
{
|
|
2 +1, sal_False, sal_False,
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
|
{
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
|
|
}
|
|
};
|
|
/** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
|
|
::com::sun::star::uno::XInterface which supports weak mechanism to be held weakly
|
|
(supporting ::com::sun::star::uno::XWeak thru ::cppu::OWeakAggObject).
|
|
In addition, it supports also aggregation meaning object of this class can be aggregated
|
|
(::com::sun::star::uno::XAggregation thru ::cppu::OWeakAggObject).
|
|
If a delegator is set (this object is aggregated), then incoming queryInterface()
|
|
calls are delegated to the delegator object. If the delegator does not support the
|
|
demanded interface, it calls queryAggregation() on its aggregated objects.
|
|
|
|
@derive
|
|
Inherit from this class giving your interface(s) to be implemented as template argument(s).
|
|
Your sub class defines method implementations for these interface(s).
|
|
*/
|
|
template< class Ifc1, class Ifc2 >
|
|
class SAL_NO_VTABLE WeakAggImplHelper2
|
|
: public OWeakAggObject
|
|
, public ::com::sun::star::lang::XTypeProvider
|
|
, public Ifc1, public Ifc2
|
|
{
|
|
/** @internal */
|
|
static class_data2 s_cd;
|
|
public:
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
|
|
{ return OWeakAggObject::queryInterface( rType ); }
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
|
|
{ return WeakAggImplHelper_queryAgg( rType, (class_data *)&s_cd, this, (OWeakAggObject *)this ); }
|
|
virtual void SAL_CALL acquire() throw ()
|
|
{ OWeakAggObject::acquire(); }
|
|
virtual void SAL_CALL release() throw ()
|
|
{ OWeakAggObject::release(); }
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return WeakAggImplHelper_getTypes( (class_data *)&s_cd ); }
|
|
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplHelper_getImplementationId( (class_data *)&s_cd ); }
|
|
};
|
|
template< class Ifc1, class Ifc2 >
|
|
class_data2 WeakAggImplHelper2< Ifc1, Ifc2 >::s_cd =
|
|
{
|
|
2 +1, sal_False, sal_False,
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
|
{
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (WeakAggImplHelper2< Ifc1, Ifc2 > *) 16) - 16 }
|
|
}
|
|
};
|
|
/** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
|
|
::com::sun::star::uno::XInterface inherting from a BaseClass.
|
|
All acquire() and release() calls are delegated to the BaseClass. Upon queryInterface(),
|
|
if a demanded interface is not supported by this class directly, the request is
|
|
delegated to the BaseClass.
|
|
|
|
@attention
|
|
The BaseClass has to be complete in a sense, that ::com::sun::star::uno::XInterface
|
|
and ::com::sun::star::lang::XTypeProvider are implemented properly. The BaseClass
|
|
also has to have a default ctor.
|
|
|
|
@derive
|
|
Inherit from this class giving your additional interface(s) to be implemented as
|
|
template argument(s). Your sub class defines method implementations for these interface(s).
|
|
*/
|
|
template< class BaseClass, class Ifc1, class Ifc2 >
|
|
class SAL_NO_VTABLE ImplInheritanceHelper2
|
|
: public BaseClass
|
|
, public Ifc1, public Ifc2
|
|
{
|
|
/** @internal */
|
|
static class_data2 s_cd;
|
|
public:
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
|
|
{
|
|
::com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, (class_data *)&s_cd, this ) );
|
|
if (aRet.hasValue())
|
|
return aRet;
|
|
return BaseClass::queryInterface( rType );
|
|
}
|
|
virtual void SAL_CALL acquire() throw ()
|
|
{ BaseClass::acquire(); }
|
|
virtual void SAL_CALL release() throw ()
|
|
{ BaseClass::release(); }
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplInhHelper_getTypes( (class_data *)&s_cd, BaseClass::getTypes() ); }
|
|
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplHelper_getImplementationId( (class_data *)&s_cd ); }
|
|
};
|
|
template< class BaseClass, class Ifc1, class Ifc2 >
|
|
class_data2 ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 >::s_cd =
|
|
{
|
|
2 +1, sal_False, sal_False,
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
|
{
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (ImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }
|
|
}
|
|
};
|
|
/** Implementation helper implementing interfaces ::com::sun::star::lang::XTypeProvider and
|
|
::com::sun::star::uno::XInterface inherting from a BaseClass.
|
|
All acquire(), release() and queryInterface() calls are delegated to the BaseClass.
|
|
Upon queryAggregation(), if a demanded interface is not supported by this class directly,
|
|
the request is delegated to the BaseClass.
|
|
|
|
@attention
|
|
The BaseClass has to be complete in a sense, that ::com::sun::star::uno::XInterface,
|
|
::com::sun::star::uno::XAggregation and ::com::sun::star::lang::XTypeProvider
|
|
are implemented properly. The BaseClass also has to have a default ctor.
|
|
|
|
@derive
|
|
Inherit from this class giving your additional interface(s) to be implemented as
|
|
template argument(s). Your sub class defines method implementations for these interface(s).
|
|
*/
|
|
template< class BaseClass, class Ifc1, class Ifc2 >
|
|
class SAL_NO_VTABLE AggImplInheritanceHelper2
|
|
: public BaseClass
|
|
, public Ifc1, public Ifc2
|
|
{
|
|
/** @internal */
|
|
static class_data2 s_cd;
|
|
public:
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
|
|
{ return BaseClass::queryInterface( rType ); }
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException)
|
|
{
|
|
::com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, (class_data *)&s_cd, this ) );
|
|
if (aRet.hasValue())
|
|
return aRet;
|
|
return BaseClass::queryAggregation( rType );
|
|
}
|
|
virtual void SAL_CALL acquire() throw ()
|
|
{ BaseClass::acquire(); }
|
|
virtual void SAL_CALL release() throw ()
|
|
{ BaseClass::release(); }
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplInhHelper_getTypes( (class_data *)&s_cd, BaseClass::getTypes() ); }
|
|
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException)
|
|
{ return ImplHelper_getImplementationId( (class_data *)&s_cd ); }
|
|
};
|
|
template< class BaseClass, class Ifc1, class Ifc2 >
|
|
class_data2 AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 >::s_cd =
|
|
{
|
|
2 +1, sal_False, sal_False,
|
|
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
|
|
{
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc1 > const * ))&getCppuType, ((sal_Int32)(Ifc1 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< Ifc2 > const * ))&getCppuType, ((sal_Int32)(Ifc2 *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 },
|
|
{ (::cppu::fptr_getCppuType)(::com::sun::star::uno::Type const & (SAL_CALL *)( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XTypeProvider > const * ))&getCppuType, ((sal_Int32)(::com::sun::star::lang::XTypeProvider *) (AggImplInheritanceHelper2< BaseClass, Ifc1, Ifc2 > *) 16) - 16 }
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif /* MACOSX */
|
|
|
|
#endif
|