1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_COMPHELPER_SERVICEHELPER_HXX
21 #define INCLUDED_COMPHELPER_SERVICEHELPER_HXX
24 #include <rtl/instance.hxx>
25 #include <com/sun/star/uno/Sequence.hxx>
30 css::uno::Sequence
< sal_Int8
> m_aSeq
;
32 UnoTunnelIdInit() : m_aSeq(16)
34 rtl_createUuid( reinterpret_cast<sal_uInt8
*>(m_aSeq
.getArray()), nullptr, true );
36 const css::uno::Sequence
< sal_Int8
>& getSeq() const { return m_aSeq
; }
39 /** the UNO3_GETIMPLEMENTATION_* macros implement a static helper function
40 that gives access to your implementation for a given interface reference,
44 MyClass* pClass = MyClass::getImplementation( xRef );
47 Put a UNO3_GETIMPLEMENTATION_DECL( classname ) inside your class
48 definition and UNO3_GETIMPLEMENTATION_IMPL( classname ) inside
49 your cxx file. Your class must inherit css::lang::XUnoTunnel
50 and export it with queryInterface. Implementation of XUnoTunnel is
53 #define UNO3_GETIMPLEMENTATION_DECL( classname ) \
54 static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw(); \
55 static classname* getImplementation( const css::uno::Reference< css::uno::XInterface >& xInt ); \
56 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
58 #define UNO3_GETIMPLEMENTATION_BASE_IMPL( classname ) \
61 class the##classname##UnoTunnelId : public rtl::Static< UnoTunnelIdInit, the##classname##UnoTunnelId> {}; \
63 const css::uno::Sequence< sal_Int8 > & classname::getUnoTunnelId() throw() \
65 return the##classname##UnoTunnelId::get().getSeq(); \
68 classname* classname::getImplementation( const uno::Reference< uno::XInterface >& xInt ) \
70 css::uno::Reference< css::lang::XUnoTunnel > xUT( xInt, css::uno::UNO_QUERY ); \
72 return reinterpret_cast<classname*>(sal::static_int_cast<sal_IntPtr>(xUT->getSomething( classname::getUnoTunnelId() ))); \
77 #define UNO3_GETIMPLEMENTATION_IMPL( classname )\
78 UNO3_GETIMPLEMENTATION_BASE_IMPL(classname)\
79 sal_Int64 SAL_CALL classname::getSomething( const css::uno::Sequence< sal_Int8 >& rId ) \
81 if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(), \
82 rId.getConstArray(), 16 ) ) \
84 return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_IntPtr>(this)); \
89 #define UNO3_GETIMPLEMENTATION2_IMPL( classname, baseclass )\
90 UNO3_GETIMPLEMENTATION_BASE_IMPL(classname)\
91 sal_Int64 SAL_CALL classname::getSomething( const css::uno::Sequence< sal_Int8 >& rId ) \
93 if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(), \
94 rId.getConstArray(), 16 ) ) \
96 return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_IntPtr>(this)); \
100 return baseclass::getSomething( rId ); \
105 #endif // INCLUDED_COMPHELPER_SERVICEHELPER_HXX
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */