LibreOffice
LibreOffice 7.3 SDK C/C++ API Reference
implbase10.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20/*
21 * This file is part of LibreOffice published API.
22 */
23#ifndef INCLUDED_CPPUHELPER_IMPLBASE10_HXX
24#define INCLUDED_CPPUHELPER_IMPLBASE10_HXX
25
27#include "rtl/instance.hxx"
28#include "cppuhelper/weak.hxx"
30#include "com/sun/star/lang/XTypeProvider.hpp"
31
32namespace cppu
33{
35
36 struct class_data10
37 {
38 sal_Int16 m_nTypes;
39 sal_Bool m_storedTypeRefs;
40 sal_Bool m_storedId;
41 sal_Int8 m_id[ 16 ];
42 type_entry m_typeEntries[ 10 + 1 ];
43 };
44
45 template< typename Ifc1, typename Ifc2, typename Ifc3, typename Ifc4, typename Ifc5, typename Ifc6, typename Ifc7, typename Ifc8, typename Ifc9, typename Ifc10, typename Impl >
46 struct SAL_WARN_UNUSED ImplClassData10
47 {
48 class_data* operator ()()
49 {
50 static class_data10 s_cd =
51 {
52 10 +1, false, false,
53 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
54 {
55 CPPUHELPER_DETAIL_TYPEENTRY(Ifc1),
56 CPPUHELPER_DETAIL_TYPEENTRY(Ifc2),
57 CPPUHELPER_DETAIL_TYPEENTRY(Ifc3),
58 CPPUHELPER_DETAIL_TYPEENTRY(Ifc4),
59 CPPUHELPER_DETAIL_TYPEENTRY(Ifc5),
60 CPPUHELPER_DETAIL_TYPEENTRY(Ifc6),
61 CPPUHELPER_DETAIL_TYPEENTRY(Ifc7),
62 CPPUHELPER_DETAIL_TYPEENTRY(Ifc8),
63 CPPUHELPER_DETAIL_TYPEENTRY(Ifc9),
64 CPPUHELPER_DETAIL_TYPEENTRY(Ifc10),
65 CPPUHELPER_DETAIL_TYPEENTRY(css::lang::XTypeProvider)
66 }
67 };
68 return reinterpret_cast< class_data * >(&s_cd);
69 }
70 };
71
73
82 template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10 >
83 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper10
84 : public css::lang::XTypeProvider
85 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10
86 {
87 struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, ImplHelper10<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
88 public:
89#if defined LIBO_INTERNAL_ONLY
90 ImplHelper10() = default;
91 ImplHelper10(ImplHelper10 const &) = default;
92 ImplHelper10(ImplHelper10 &&) = default;
93 ImplHelper10 & operator =(ImplHelper10 const &) = default;
94 ImplHelper10 & operator =(ImplHelper10 &&) = default;
95#endif
96
97 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
98 { return ImplHelper_query( rType, cd::get(), this ); }
99 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
100 { return ImplHelper_getTypes( cd::get() ); }
101 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
102 { return ImplHelper_getImplementationId( cd::get() ); }
103
104#if !defined _MSC_VER // public -> protected changes mangled names there
105 protected:
106#elif defined __clang__
107#pragma clang diagnostic push
108#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
109#endif
111#if defined _MSC_VER && defined __clang__
112#pragma clang diagnostic pop
113#endif
114 };
123 template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10 >
124 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper10
125 : public OWeakObject
126 , public css::lang::XTypeProvider
127 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10
128 {
129 struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, WeakImplHelper10<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
130 public:
131 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
132 { return WeakImplHelper_query( rType, cd::get(), this, static_cast<OWeakObject *>(this) ); }
133 virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
135 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
137 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
138 { return WeakImplHelper_getTypes( cd::get() ); }
139 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
140 { return ImplHelper_getImplementationId( cd::get() ); }
141 };
155 template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10 >
156 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper10
157 : public OWeakAggObject
158 , public css::lang::XTypeProvider
159 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10
160 {
161 struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, WeakAggImplHelper10<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
162 public:
163 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
164 { return OWeakAggObject::queryInterface( rType ); }
165 virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
166 { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
167 virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
169 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
171 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
172 { return WeakAggImplHelper_getTypes( cd::get() ); }
173 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
174 { return ImplHelper_getImplementationId( cd::get() ); }
175 };
192 template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10 >
193 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper10
194 : public BaseClass
195 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10
196 {
197 struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, ImplInheritanceHelper10<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
198 protected:
199 template< typename T1 >
200 explicit ImplInheritanceHelper10(T1 const & arg1): BaseClass(arg1) {}
201 template< typename T1, typename T2 >
202 ImplInheritanceHelper10(T1 const & arg1, T2 const & arg2):
203 BaseClass(arg1, arg2) {}
204 template< typename T1, typename T2, typename T3 >
206 T1 const & arg1, T2 const & arg2, T3 const & arg3):
207 BaseClass(arg1, arg2, arg3) {}
208 template< typename T1, typename T2, typename T3, typename T4 >
210 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
211 BaseClass(arg1, arg2, arg3, arg4) {}
212 template<
213 typename T1, typename T2, typename T3, typename T4, typename T5 >
215 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
216 T5 const & arg5):
217 BaseClass(arg1, arg2, arg3, arg4, arg5) {}
218 template<
219 typename T1, typename T2, typename T3, typename T4, typename T5,
220 typename T6 >
222 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
223 T5 const & arg5, T6 const & arg6):
224 BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
225 public:
227 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
228 {
229 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
230 if (aRet.hasValue())
231 return aRet;
232 return BaseClass::queryInterface( rType );
233 }
234 virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
235 { BaseClass::acquire(); }
236 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
237 { BaseClass::release(); }
238 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
239 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
240 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
241 { return ImplHelper_getImplementationId( cd::get() ); }
242 };
260 template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10 >
261 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper10
262 : public BaseClass
263 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10
264 {
265 struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, AggImplInheritanceHelper10<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
266 protected:
267 template< typename T1 >
268 explicit AggImplInheritanceHelper10(T1 const & arg1): BaseClass(arg1) {}
269 template< typename T1, typename T2 >
270 AggImplInheritanceHelper10(T1 const & arg1, T2 const & arg2):
271 BaseClass(arg1, arg2) {}
272 template< typename T1, typename T2, typename T3 >
274 T1 const & arg1, T2 const & arg2, T3 const & arg3):
275 BaseClass(arg1, arg2, arg3) {}
276 template< typename T1, typename T2, typename T3, typename T4 >
278 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
279 BaseClass(arg1, arg2, arg3, arg4) {}
280 template<
281 typename T1, typename T2, typename T3, typename T4, typename T5 >
283 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
284 T5 const & arg5):
285 BaseClass(arg1, arg2, arg3, arg4, arg5) {}
286 template<
287 typename T1, typename T2, typename T3, typename T4, typename T5,
288 typename T6 >
290 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
291 T5 const & arg5, T6 const & arg6):
292 BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
293 public:
295 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
296 { return BaseClass::queryInterface( rType ); }
297 virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
298 {
299 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
300 if (aRet.hasValue())
301 return aRet;
302 return BaseClass::queryAggregation( rType );
303 }
304 virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
305 { BaseClass::acquire(); }
306 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
307 { BaseClass::release(); }
308 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
309 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
310 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
311 { return ImplHelper_getImplementationId( cd::get() ); }
312 };
313}
314
315#endif
316
317/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SAL_NOEXCEPT
Macro for C++11 "noexcept" vs.
Definition: types.h:416
#define SAL_NO_VTABLE
Use this for pure virtual classes, e.g.
Definition: types.h:294
unsigned char sal_Bool
Definition: types.h:38
#define SAL_OVERRIDE
C++11 "override" feature.
Definition: types.h:391
signed char sal_Int8
Definition: types.h:43
#define SAL_WARN_UNUSED
Annotate classes where a compiler should warn if an instance is unused.
Definition: types.h:587
Definition: Enterable.hxx:31
css::uno::Any queryInterface(const css::uno::Type &rType, Interface1 *p1)
Compares demanded type to given template argument types.
Definition: queryinterface.hxx:43
Helper class for a late-initialized static aggregate, e.g.
Definition: instance.hxx:548
Implementation helper implementing interface css::lang::XTypeProvider and method XInterface::queryInt...
Definition: implbase10.hxx:86
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase10.hxx:101
~ImplHelper10() SAL_NOEXCEPT
Definition: implbase10.hxx:110
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase10.hxx:99
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase10.hxx:97
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase10.hxx:128
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Basic queryInterface() implementation supporting com::sun::star::uno::XWeak and com::sun::star::uno::...
Definition: implbase10.hxx:131
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Definition: implbase10.hxx:135
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase10.hxx:137
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase10.hxx:139
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
Definition: implbase10.hxx:133
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase10.hxx:160
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Definition: implbase10.hxx:169
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Called by the delegator or queryInterface.
Definition: implbase10.hxx:165
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition: implbase10.hxx:167
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase10.hxx:171
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
If a delegator is set, then the delegator is queried for the demanded interface.
Definition: implbase10.hxx:163
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase10.hxx:173
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase10.hxx:196
ImplInheritanceHelper10()
Definition: implbase10.hxx:226
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase10.hxx:238
ImplInheritanceHelper10(T1 const &arg1, T2 const &arg2)
Definition: implbase10.hxx:202
ImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase10.hxx:205
ImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase10.hxx:214
ImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase10.hxx:209
ImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase10.hxx:221
ImplInheritanceHelper10(T1 const &arg1)
Definition: implbase10.hxx:200
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase10.hxx:227
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase10.hxx:240
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase10.hxx:234
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase10.hxx:236
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase10.hxx:264
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase10.hxx:304
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase10.hxx:310
AggImplInheritanceHelper10(T1 const &arg1, T2 const &arg2)
Definition: implbase10.hxx:270
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase10.hxx:308
AggImplInheritanceHelper10()
Definition: implbase10.hxx:294
AggImplInheritanceHelper10(T1 const &arg1)
Definition: implbase10.hxx:268
AggImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase10.hxx:289
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase10.hxx:297
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase10.hxx:306
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase10.hxx:295
AggImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase10.hxx:273
AggImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase10.hxx:277
AggImplInheritanceHelper10(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase10.hxx:282
Base class to implement a UNO object supporting weak references, i.e.
Definition: weak.hxx:48
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Base class to implement a UNO object supporting weak references, i.e.
Definition: weakagg.hxx:48
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
virtual css::uno::Any queryInterface(const css::uno::Type &rType) SAL_OVERRIDE
If a delegator is set, then the delegator is queried for the demanded interface.
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets released.