Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / comphelper / servicehelper.hxx
blobd1519ed14026d2eadd81287f3c239ebd8dc5b5f7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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
23 #include <rtl/uuid.h>
24 #include <rtl/instance.hxx>
25 #include <com/sun/star/uno/Sequence.hxx>
27 class UnoTunnelIdInit
29 private:
30 css::uno::Sequence< sal_Int8 > m_aSeq;
31 public:
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,
41 if possible.
43 Example:
44 MyClass* pClass = MyClass::getImplementation( xRef );
46 Usage:
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
51 done by this macro.
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 ) \
59 namespace \
60 { \
61 class the##classname##UnoTunnelId : public rtl::Static< UnoTunnelIdInit, the##classname##UnoTunnelId> {}; \
62 } \
63 const css::uno::Sequence< sal_Int8 > & classname::getUnoTunnelId() throw() \
64 { \
65 return the##classname##UnoTunnelId::get().getSeq(); \
66 } \
68 classname* classname::getImplementation( const uno::Reference< uno::XInterface >& xInt ) \
69 { \
70 css::uno::Reference< css::lang::XUnoTunnel > xUT( xInt, css::uno::UNO_QUERY ); \
71 if( xUT.is() ) \
72 return reinterpret_cast<classname*>(sal::static_int_cast<sal_IntPtr>(xUT->getSomething( classname::getUnoTunnelId() ))); \
73 else \
74 return nullptr; \
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 ) \
80 { \
81 if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(), \
82 rId.getConstArray(), 16 ) ) \
83 { \
84 return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_IntPtr>(this)); \
85 } \
86 return 0; \
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 ) \
92 { \
93 if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(), \
94 rId.getConstArray(), 16 ) ) \
95 { \
96 return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_IntPtr>(this)); \
97 } \
98 else \
99 { \
100 return baseclass::getSomething( rId ); \
105 #endif // INCLUDED_COMPHELPER_SERVICEHELPER_HXX
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */