Files
libreoffice/include/ucbhelper/macros.hxx

300 lines
16 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-06-22 17:51:25 +01:00
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
2000-09-18 16:07:07 +00:00
#ifndef INCLUDED_UCBHELPER_MACROS_HXX
#define INCLUDED_UCBHELPER_MACROS_HXX
2000-09-18 16:07:07 +00:00
#include <sal/types.h>
#include <cppuhelper/queryinterface.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/weakref.hxx>
#include <cppuhelper/supportsservice.hxx>
2000-09-18 16:07:07 +00:00
#include <cppuhelper/typeprovider.hxx>
#include <osl/mutex.hxx>
#include <ucbhelper/getcomponentcontext.hxx>
2000-09-18 16:07:07 +00:00
2000-09-18 16:07:07 +00:00
#define CPPU_TYPE( T ) cppu::UnoType<T>::get()
#define CPPU_TYPE_REF( T ) CPPU_TYPE( T )
2000-09-18 16:07:07 +00:00
// XTypeProvider impl. internals
2000-09-18 16:07:07 +00:00
#define XTYPEPROVIDER_COMMON_IMPL( Class ) \
com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL \
Class::getImplementationId() \
throw( com::sun::star::uno::RuntimeException, std::exception ) \
2000-09-18 16:07:07 +00:00
{ \
return css::uno::Sequence<sal_Int8>(); \
2000-09-18 16:07:07 +00:00
}
#define GETTYPES_IMPL_START( Class ) \
com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL \
Class::getTypes() \
throw( com::sun::star::uno::RuntimeException, std::exception ) \
2000-09-18 16:07:07 +00:00
{ \
static cppu::OTypeCollection* pCollection = NULL; \
if ( !pCollection ) \
{ \
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); \
if ( !pCollection ) \
{ \
static cppu::OTypeCollection collection(
#define GETTYPES_IMPL_END \
); \
pCollection = &collection; \
} \
} \
return (*pCollection).getTypes(); \
}
2000-09-18 16:07:07 +00:00
// XTypeProvider impl.
2000-09-18 16:07:07 +00:00
// 2 interfaces supported
#define XTYPEPROVIDER_IMPL_2( Class, I1,I2 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I1 ), \
CPPU_TYPE_REF( I2 ) \
GETTYPES_IMPL_END
// 3 interfaces supported
#define XTYPEPROVIDER_IMPL_3( Class, I1,I2,I3 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I1 ), \
CPPU_TYPE_REF( I2 ), \
CPPU_TYPE_REF( I3 ) \
GETTYPES_IMPL_END
// 4 interfaces supported
#define XTYPEPROVIDER_IMPL_4( Class, I1,I2,I3,I4 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I1 ), \
CPPU_TYPE_REF( I2 ), \
CPPU_TYPE_REF( I3 ), \
CPPU_TYPE_REF( I4 ) \
GETTYPES_IMPL_END
// 5 interfaces supported
#define XTYPEPROVIDER_IMPL_5( Class, I1,I2,I3,I4,I5 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I1 ), \
CPPU_TYPE_REF( I2 ), \
CPPU_TYPE_REF( I3 ), \
CPPU_TYPE_REF( I4 ), \
CPPU_TYPE_REF( I5 ) \
GETTYPES_IMPL_END
// 9 interfaces supported
#define XTYPEPROVIDER_IMPL_9( Class, I1,I2,I3,I4,I5,I6,I7,I8,I9 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I1 ), \
CPPU_TYPE_REF( I2 ), \
CPPU_TYPE_REF( I3 ), \
CPPU_TYPE_REF( I4 ), \
CPPU_TYPE_REF( I5 ), \
CPPU_TYPE_REF( I6 ), \
CPPU_TYPE_REF( I7 ), \
CPPU_TYPE_REF( I8 ), \
CPPU_TYPE_REF( I9 ) \
GETTYPES_IMPL_END
// 10 interfaces supported
#define XTYPEPROVIDER_IMPL_10( Class, I1,I2,I3,I4,I5,I6,I7,I8,I9,I10 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I1 ), \
CPPU_TYPE_REF( I2 ), \
CPPU_TYPE_REF( I3 ), \
CPPU_TYPE_REF( I4 ), \
CPPU_TYPE_REF( I5 ), \
CPPU_TYPE_REF( I6 ), \
CPPU_TYPE_REF( I7 ), \
CPPU_TYPE_REF( I8 ), \
CPPU_TYPE_REF( I9 ), \
CPPU_TYPE_REF( I10 ) \
GETTYPES_IMPL_END
// 11 interfaces supported
#define XTYPEPROVIDER_IMPL_11( Class, I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I1 ), \
CPPU_TYPE_REF( I2 ), \
CPPU_TYPE_REF( I3 ), \
CPPU_TYPE_REF( I4 ), \
CPPU_TYPE_REF( I5 ), \
CPPU_TYPE_REF( I6 ), \
CPPU_TYPE_REF( I7 ), \
CPPU_TYPE_REF( I8 ), \
CPPU_TYPE_REF( I9 ), \
CPPU_TYPE_REF( I10 ), \
CPPU_TYPE_REF( I11 ) \
GETTYPES_IMPL_END
// XServiceInfo impl. internals
2000-09-18 16:07:07 +00:00
#define XSERVICEINFO_COMMOM_IMPL( Class, ImplName ) \
OUString SAL_CALL Class::getImplementationName() \
throw( com::sun::star::uno::RuntimeException, std::exception ) \
2000-09-18 16:07:07 +00:00
{ \
return getImplementationName_Static(); \
} \
\
OUString Class::getImplementationName_Static() \
2000-09-18 16:07:07 +00:00
{ \
return ImplName; \
} \
\
sal_Bool SAL_CALL \
Class::supportsService( const OUString& ServiceName ) \
throw( com::sun::star::uno::RuntimeException, std::exception ) \
2000-09-18 16:07:07 +00:00
{ \
return cppu::supportsService( this, ServiceName ); \
2000-09-18 16:07:07 +00:00
} \
\
com::sun::star::uno::Sequence< OUString > SAL_CALL \
2000-09-18 16:07:07 +00:00
Class::getSupportedServiceNames() \
throw( com::sun::star::uno::RuntimeException, std::exception ) \
2000-09-18 16:07:07 +00:00
{ \
return getSupportedServiceNames_Static(); \
}
#define XSERVICEINFO_CREATE_INSTANCE_IMPL( Class ) \
static com::sun::star::uno::Reference< \
com::sun::star::uno::XInterface > SAL_CALL \
Class##_CreateInstance( const com::sun::star::uno::Reference< \
com::sun::star::lang::XMultiServiceFactory> & rSMgr ) \
throw( com::sun::star::uno::Exception ) \
{ \
com::sun::star::lang::XServiceInfo* pX = \
static_cast<com::sun::star::lang::XServiceInfo*>(new Class( rSMgr )); \
2000-09-18 16:07:07 +00:00
return com::sun::star::uno::Reference< \
com::sun::star::uno::XInterface >::query( pX ); \
}
#define XSERVICEINFO_CREATE_INSTANCE_IMPL_CTX( Class ) \
static com::sun::star::uno::Reference< \
com::sun::star::uno::XInterface > SAL_CALL \
Class##_CreateInstance( const com::sun::star::uno::Reference< \
com::sun::star::lang::XMultiServiceFactory> & rSMgr ) \
throw( com::sun::star::uno::Exception ) \
{ \
com::sun::star::lang::XServiceInfo* pX = \
static_cast<com::sun::star::lang::XServiceInfo*>(new Class( ucbhelper::getComponentContext(rSMgr) )); \
return com::sun::star::uno::Reference< \
com::sun::star::uno::XInterface >::query( pX ); \
}
2000-09-18 16:07:07 +00:00
// XServiceInfo impl.
2000-09-18 16:07:07 +00:00
#define ONE_INSTANCE_SERVICE_FACTORY_IMPL( Class ) \
com::sun::star::uno::Reference< \
com::sun::star::lang::XSingleServiceFactory > \
Class::createServiceFactory( const com::sun::star::uno::Reference< \
com::sun::star::lang::XMultiServiceFactory >& rxServiceMgr ) \
{ \
return com::sun::star::uno::Reference< \
com::sun::star::lang::XSingleServiceFactory >( \
cppu::createOneInstanceFactory( \
rxServiceMgr, \
Class::getImplementationName_Static(), \
Class##_CreateInstance, \
Class::getSupportedServiceNames_Static() ) ); \
}
// Service without service factory.
// Own implementation of getSupportedServiceNames_Static().
#define XSERVICEINFO_NOFACTORY_IMPL_0( Class, ImplName ) \
XSERVICEINFO_COMMOM_IMPL( Class, ImplName ) \
\
com::sun::star::uno::Sequence< OUString > \
2000-09-18 16:07:07 +00:00
Class::getSupportedServiceNames_Static()
// 1 service name
#define XSERVICEINFO_NOFACTORY_IMPL_1( Class, ImplName, Service1 ) \
XSERVICEINFO_COMMOM_IMPL( Class, ImplName ) \
\
com::sun::star::uno::Sequence< OUString > \
2000-09-18 16:07:07 +00:00
Class::getSupportedServiceNames_Static() \
{ \
com::sun::star::uno::Sequence< OUString > aSNS( 1 ); \
2000-09-18 16:07:07 +00:00
aSNS.getArray()[ 0 ] = Service1; \
return aSNS; \
}
// Service with service factory.
// Own implementation of getSupportedServiceNames_Static().
#define XSERVICEINFO_IMPL_0_CTX( Class, ImplName ) \
XSERVICEINFO_COMMOM_IMPL( Class, ImplName ) \
XSERVICEINFO_CREATE_INSTANCE_IMPL_CTX( Class ) \
\
com::sun::star::uno::Sequence< OUString > \
2000-09-18 16:07:07 +00:00
Class::getSupportedServiceNames_Static()
// 1 service name
#define XSERVICEINFO_IMPL_1( Class, ImplName, Service1 ) \
XSERVICEINFO_COMMOM_IMPL( Class, ImplName ) \
XSERVICEINFO_CREATE_INSTANCE_IMPL( Class ) \
2000-09-18 16:07:07 +00:00
\
com::sun::star::uno::Sequence< OUString > \
Class::getSupportedServiceNames_Static() \
2000-09-18 16:07:07 +00:00
{ \
com::sun::star::uno::Sequence< OUString > aSNS( 1 ); \
aSNS.getArray()[ 0 ] = Service1; \
return aSNS; \
2000-09-18 16:07:07 +00:00
}
// 1 service name
#define XSERVICEINFO_IMPL_1_CTX( Class, ImplName, Service1 ) \
XSERVICEINFO_COMMOM_IMPL( Class, ImplName ) \
XSERVICEINFO_CREATE_INSTANCE_IMPL_CTX( Class ) \
\
com::sun::star::uno::Sequence< OUString > \
Class::getSupportedServiceNames_Static() \
{ \
com::sun::star::uno::Sequence< OUString > aSNS( 1 ); \
aSNS.getArray()[ 0 ] = Service1; \
return aSNS; \
}
#endif /* ! INCLUDED_UCBHELPER_MACROS_HXX */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */