Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / include / cppuhelper / implbase13.hxx
blob8ad2593dbe344ea5085bf95734e70dbe0c511b30
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 .
19 #ifndef INCLUDED_CPPUHELPER_IMPLBASE13_HXX
20 #define INCLUDED_CPPUHELPER_IMPLBASE13_HXX
22 #include <cppuhelper/implbase_ex.hxx>
23 #include <rtl/instance.hxx>
25 namespace cppu
27 /// @cond INTERNAL
29 struct class_data13
31 sal_Int16 m_nTypes;
32 sal_Bool m_storedTypeRefs;
33 sal_Bool m_storedId;
34 sal_Int8 m_id[ 16 ];
35 type_entry m_typeEntries[ 13 + 1 ];
38 template< typename Ifc1, typename Ifc2, typename Ifc3, typename Ifc4, typename Ifc5, typename Ifc6, typename Ifc7, typename Ifc8, typename Ifc9, typename Ifc10, typename Ifc11, typename Ifc12, typename Ifc13, typename Impl >
39 struct ImplClassData13
41 class_data* operator ()()
43 static class_data13 s_cd =
45 13 +1, false, false,
46 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
48 CPPUHELPER_DETAIL_TYPEENTRY(Ifc1),
49 CPPUHELPER_DETAIL_TYPEENTRY(Ifc2),
50 CPPUHELPER_DETAIL_TYPEENTRY(Ifc3),
51 CPPUHELPER_DETAIL_TYPEENTRY(Ifc4),
52 CPPUHELPER_DETAIL_TYPEENTRY(Ifc5),
53 CPPUHELPER_DETAIL_TYPEENTRY(Ifc6),
54 CPPUHELPER_DETAIL_TYPEENTRY(Ifc7),
55 CPPUHELPER_DETAIL_TYPEENTRY(Ifc8),
56 CPPUHELPER_DETAIL_TYPEENTRY(Ifc9),
57 CPPUHELPER_DETAIL_TYPEENTRY(Ifc10),
58 CPPUHELPER_DETAIL_TYPEENTRY(Ifc11),
59 CPPUHELPER_DETAIL_TYPEENTRY(Ifc12),
60 CPPUHELPER_DETAIL_TYPEENTRY(Ifc13),
61 CPPUHELPER_DETAIL_TYPEENTRY(css::lang::XTypeProvider)
64 return reinterpret_cast< class_data * >(&s_cd);
68 /// @endcond
70 /** Implementation helper implementing interface css::lang::XTypeProvider
71 and method XInterface::queryInterface(), but no reference counting.
73 @derive
74 Inherit from this class giving your interface(s) to be implemented as template argument(s).
75 Your sub class defines method implementations for these interface(s) including acquire()/
76 release() and delegates incoming queryInterface() calls to this base class.
78 template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10, class Ifc11, class Ifc12, class Ifc13 >
79 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper13
80 : public css::lang::XTypeProvider
81 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
83 struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, ImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
84 public:
85 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
86 { return ImplHelper_query( rType, cd::get(), this ); }
87 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
88 { return ImplHelper_getTypes( cd::get() ); }
89 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
90 { return ImplHelper_getImplementationId( cd::get() ); }
92 #if !defined _MSC_VER // public -> protected changes mangled names there
93 protected:
94 #elif defined __clang__
95 #pragma clang diagnostic push
96 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
97 #endif
98 ~ImplHelper13() throw () {}
99 #if defined _MSC_VER && defined __clang__
100 #pragma clang diagnostic pop
101 #endif
103 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
104 css::uno::XInterface which supports weak mechanism to be held weakly
105 (supporting css::uno::XWeak through ::cppu::OWeakObject).
107 @derive
108 Inherit from this class giving your interface(s) to be implemented as template argument(s).
109 Your sub class defines method implementations for these interface(s).
111 template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10, class Ifc11, class Ifc12, class Ifc13 >
112 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper13
113 : public OWeakObject
114 , public css::lang::XTypeProvider
115 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
117 struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, WeakImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
118 public:
119 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
120 { return WeakImplHelper_query( rType, cd::get(), this, static_cast<OWeakObject *>(this) ); }
121 virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
122 { OWeakObject::acquire(); }
123 virtual void SAL_CALL release() throw () SAL_OVERRIDE
124 { OWeakObject::release(); }
125 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
126 { return WeakImplHelper_getTypes( cd::get() ); }
127 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
128 { return ImplHelper_getImplementationId( cd::get() ); }
130 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
131 css::uno::XInterface which supports weak mechanism to be held weakly
132 (supporting css::uno::XWeak through ::cppu::OWeakAggObject).
133 In addition, it supports also aggregation meaning object of this class can be aggregated
134 (css::uno::XAggregation through ::cppu::OWeakAggObject).
135 If a delegator is set (this object is aggregated), then incoming queryInterface()
136 calls are delegated to the delegator object. If the delegator does not support the
137 demanded interface, it calls queryAggregation() on its aggregated objects.
139 @derive
140 Inherit from this class giving your interface(s) to be implemented as template argument(s).
141 Your sub class defines method implementations for these interface(s).
143 template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10, class Ifc11, class Ifc12, class Ifc13 >
144 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper13
145 : public OWeakAggObject
146 , public css::lang::XTypeProvider
147 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
149 struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, WeakAggImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
150 public:
151 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
152 { return OWeakAggObject::queryInterface( rType ); }
153 virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
154 { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
155 virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
156 { OWeakAggObject::acquire(); }
157 virtual void SAL_CALL release() throw () SAL_OVERRIDE
158 { OWeakAggObject::release(); }
159 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
160 { return WeakAggImplHelper_getTypes( cd::get() ); }
161 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
162 { return ImplHelper_getImplementationId( cd::get() ); }
164 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
165 css::uno::XInterface inherting from a BaseClass.
166 All acquire() and release() calls are delegated to the BaseClass. Upon queryInterface(),
167 if a demanded interface is not supported by this class directly, the request is
168 delegated to the BaseClass.
170 @attention
171 The BaseClass has to be complete in a sense, that css::uno::XInterface
172 and css::lang::XTypeProvider are implemented properly. The
173 BaseClass must have at least one ctor that can be called with six or
174 fewer arguments, of which none is of non-const reference type.
176 @derive
177 Inherit from this class giving your additional interface(s) to be implemented as
178 template argument(s). Your sub class defines method implementations for these interface(s).
180 template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10, class Ifc11, class Ifc12, class Ifc13 >
181 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper13
182 : public BaseClass
183 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
185 struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, ImplInheritanceHelper13<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
186 protected:
187 template< typename T1 >
188 explicit ImplInheritanceHelper13(T1 const & arg1): BaseClass(arg1) {}
189 template< typename T1, typename T2 >
190 ImplInheritanceHelper13(T1 const & arg1, T2 const & arg2):
191 BaseClass(arg1, arg2) {}
192 template< typename T1, typename T2, typename T3 >
193 ImplInheritanceHelper13(
194 T1 const & arg1, T2 const & arg2, T3 const & arg3):
195 BaseClass(arg1, arg2, arg3) {}
196 template< typename T1, typename T2, typename T3, typename T4 >
197 ImplInheritanceHelper13(
198 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
199 BaseClass(arg1, arg2, arg3, arg4) {}
200 template<
201 typename T1, typename T2, typename T3, typename T4, typename T5 >
202 ImplInheritanceHelper13(
203 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
204 T5 const & arg5):
205 BaseClass(arg1, arg2, arg3, arg4, arg5) {}
206 template<
207 typename T1, typename T2, typename T3, typename T4, typename T5,
208 typename T6 >
209 ImplInheritanceHelper13(
210 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
211 T5 const & arg5, T6 const & arg6):
212 BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
213 public:
214 ImplInheritanceHelper13() {}
215 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException) SAL_OVERRIDE
217 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
218 if (aRet.hasValue())
219 return aRet;
220 return BaseClass::queryInterface( rType );
222 virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
223 { BaseClass::acquire(); }
224 virtual void SAL_CALL release() throw () SAL_OVERRIDE
225 { BaseClass::release(); }
226 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException) SAL_OVERRIDE
227 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
228 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException) SAL_OVERRIDE
229 { return ImplHelper_getImplementationId( cd::get() ); }
231 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
232 css::uno::XInterface inherting from a BaseClass.
233 All acquire(), release() and queryInterface() calls are delegated to the BaseClass.
234 Upon queryAggregation(), if a demanded interface is not supported by this class directly,
235 the request is delegated to the BaseClass.
237 @attention
238 The BaseClass has to be complete in a sense, that css::uno::XInterface,
239 css::uno::XAggregation and css::lang::XTypeProvider
240 are implemented properly. The BaseClass must have at least one ctor
241 that can be called with six or fewer arguments, of which none is of
242 non-const reference type.
244 @derive
245 Inherit from this class giving your additional interface(s) to be implemented as
246 template argument(s). Your sub class defines method implementations for these interface(s).
248 template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9, class Ifc10, class Ifc11, class Ifc12, class Ifc13 >
249 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper13
250 : public BaseClass
251 , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12, public Ifc13
253 struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, AggImplInheritanceHelper13<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
254 protected:
255 template< typename T1 >
256 explicit AggImplInheritanceHelper13(T1 const & arg1): BaseClass(arg1) {}
257 template< typename T1, typename T2 >
258 AggImplInheritanceHelper13(T1 const & arg1, T2 const & arg2):
259 BaseClass(arg1, arg2) {}
260 template< typename T1, typename T2, typename T3 >
261 AggImplInheritanceHelper13(
262 T1 const & arg1, T2 const & arg2, T3 const & arg3):
263 BaseClass(arg1, arg2, arg3) {}
264 template< typename T1, typename T2, typename T3, typename T4 >
265 AggImplInheritanceHelper13(
266 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
267 BaseClass(arg1, arg2, arg3, arg4) {}
268 template<
269 typename T1, typename T2, typename T3, typename T4, typename T5 >
270 AggImplInheritanceHelper13(
271 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
272 T5 const & arg5):
273 BaseClass(arg1, arg2, arg3, arg4, arg5) {}
274 template<
275 typename T1, typename T2, typename T3, typename T4, typename T5,
276 typename T6 >
277 AggImplInheritanceHelper13(
278 T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
279 T5 const & arg5, T6 const & arg6):
280 BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
281 public:
282 AggImplInheritanceHelper13() {}
283 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException) SAL_OVERRIDE
284 { return BaseClass::queryInterface( rType ); }
285 virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) throw (css::uno::RuntimeException) SAL_OVERRIDE
287 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
288 if (aRet.hasValue())
289 return aRet;
290 return BaseClass::queryAggregation( rType );
292 virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
293 { BaseClass::acquire(); }
294 virtual void SAL_CALL release() throw () SAL_OVERRIDE
295 { BaseClass::release(); }
296 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException) SAL_OVERRIDE
297 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
298 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException) SAL_OVERRIDE
299 { return ImplHelper_getImplementationId( cd::get() ); }
303 #endif
305 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */