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 .
21 * This file is part of LibreOffice published API.
23 #ifndef INCLUDED_CPPUHELPER_IMPLBASE7_HXX
24 #define INCLUDED_CPPUHELPER_IMPLBASE7_HXX
26 #include "cppuhelper/implbase_ex.hxx"
27 #include "rtl/instance.hxx"
28 #include "cppuhelper/weak.hxx"
29 #include "cppuhelper/weakagg.hxx"
30 #include "com/sun/star/lang/XTypeProvider.hpp"
39 sal_Bool m_storedTypeRefs
;
42 type_entry m_typeEntries
[ 7 + 1 ];
45 template< typename Ifc1
, typename Ifc2
, typename Ifc3
, typename Ifc4
, typename Ifc5
, typename Ifc6
, typename Ifc7
, typename Impl
>
46 struct SAL_WARN_UNUSED ImplClassData7
48 class_data
* operator ()()
50 static class_data7 s_cd
=
53 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
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(css::lang::XTypeProvider
)
65 return reinterpret_cast< class_data
* >(&s_cd
);
71 /** Implementation helper implementing interface css::lang::XTypeProvider
72 and method XInterface::queryInterface(), but no reference counting.
75 Inherit from this class giving your interface(s) to be implemented as template argument(s).
76 Your sub class defines method implementations for these interface(s) including acquire()/
77 release() and delegates incoming queryInterface() calls to this base class.
79 template< class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
>
80 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper7
81 : public css::lang::XTypeProvider
82 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
84 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData7
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, ImplHelper7
<Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
> > > {};
86 #if defined LIBO_INTERNAL_ONLY
87 ImplHelper7() = default;
88 ImplHelper7(ImplHelper7
const &) = default;
89 ImplHelper7(ImplHelper7
&&) = default;
90 ImplHelper7
& operator =(ImplHelper7
const &) = default;
91 ImplHelper7
& operator =(ImplHelper7
&&) = default;
94 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
95 { return ImplHelper_query( rType
, cd::get(), this ); }
96 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
97 { return ImplHelper_getTypes( cd::get() ); }
98 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
99 { return ImplHelper_getImplementationId( cd::get() ); }
101 #if !defined _MSC_VER // public -> protected changes mangled names there
104 ~ImplHelper7() SAL_NOEXCEPT
{}
106 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
107 css::uno::XInterface which supports weak mechanism to be held weakly
108 (supporting css::uno::XWeak through ::cppu::OWeakObject).
111 Inherit from this class giving your interface(s) to be implemented as template argument(s).
112 Your sub class defines method implementations for these interface(s).
114 template< class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
>
115 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper7
117 , public css::lang::XTypeProvider
118 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
120 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData7
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, WeakImplHelper7
<Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
> > > {};
122 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
123 { return WeakImplHelper_query( rType
, cd::get(), this, static_cast<OWeakObject
*>(this) ); }
124 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
125 { OWeakObject::acquire(); }
126 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
127 { OWeakObject::release(); }
128 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
129 { return WeakImplHelper_getTypes( cd::get() ); }
130 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
131 { return ImplHelper_getImplementationId( cd::get() ); }
133 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
134 css::uno::XInterface which supports weak mechanism to be held weakly
135 (supporting css::uno::XWeak through ::cppu::OWeakAggObject).
136 In addition, it supports also aggregation meaning object of this class can be aggregated
137 (css::uno::XAggregation through ::cppu::OWeakAggObject).
138 If a delegator is set (this object is aggregated), then incoming queryInterface()
139 calls are delegated to the delegator object. If the delegator does not support the
140 demanded interface, it calls queryAggregation() on its aggregated objects.
143 Inherit from this class giving your interface(s) to be implemented as template argument(s).
144 Your sub class defines method implementations for these interface(s).
146 template< class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
>
147 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper7
148 : public OWeakAggObject
149 , public css::lang::XTypeProvider
150 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
152 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData7
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, WeakAggImplHelper7
<Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
> > > {};
154 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
155 { return OWeakAggObject::queryInterface( rType
); }
156 virtual css::uno::Any SAL_CALL
queryAggregation( css::uno::Type
const & rType
) SAL_OVERRIDE
157 { return WeakAggImplHelper_queryAgg( rType
, cd::get(), this, static_cast<OWeakAggObject
*>(this) ); }
158 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
159 { OWeakAggObject::acquire(); }
160 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
161 { OWeakAggObject::release(); }
162 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
163 { return WeakAggImplHelper_getTypes( cd::get() ); }
164 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
165 { return ImplHelper_getImplementationId( cd::get() ); }
167 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
168 css::uno::XInterface inheriting from a BaseClass.
169 All acquire() and release() calls are delegated to the BaseClass. Upon queryInterface(),
170 if a demanded interface is not supported by this class directly, the request is
171 delegated to the BaseClass.
174 The BaseClass has to be complete in a sense, that css::uno::XInterface
175 and css::lang::XTypeProvider are implemented properly. The
176 BaseClass must have at least one ctor that can be called with six or
177 fewer arguments, of which none is of non-const reference type.
180 Inherit from this class giving your additional interface(s) to be implemented as
181 template argument(s). Your sub class defines method implementations for these interface(s).
183 template< class BaseClass
, class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
>
184 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper7
186 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
188 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData7
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, ImplInheritanceHelper7
<BaseClass
, Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
> > > {};
190 template< typename T1
>
191 explicit ImplInheritanceHelper7(T1
const & arg1
): BaseClass(arg1
) {}
192 template< typename T1
, typename T2
>
193 ImplInheritanceHelper7(T1
const & arg1
, T2
const & arg2
):
194 BaseClass(arg1
, arg2
) {}
195 template< typename T1
, typename T2
, typename T3
>
196 ImplInheritanceHelper7(
197 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
):
198 BaseClass(arg1
, arg2
, arg3
) {}
199 template< typename T1
, typename T2
, typename T3
, typename T4
>
200 ImplInheritanceHelper7(
201 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
):
202 BaseClass(arg1
, arg2
, arg3
, arg4
) {}
204 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
>
205 ImplInheritanceHelper7(
206 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
208 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
) {}
210 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
,
212 ImplInheritanceHelper7(
213 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
214 T5
const & arg5
, T6
const & arg6
):
215 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
) {}
217 ImplInheritanceHelper7() {}
218 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
220 css::uno::Any
aRet( ImplHelper_queryNoXInterface( rType
, cd::get(), this ) );
223 return BaseClass::queryInterface( rType
);
225 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
226 { BaseClass::acquire(); }
227 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
228 { BaseClass::release(); }
229 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
230 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
231 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
232 { return ImplHelper_getImplementationId( cd::get() ); }
234 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
235 css::uno::XInterface inheriting from a BaseClass.
236 All acquire(), release() and queryInterface() calls are delegated to the BaseClass.
237 Upon queryAggregation(), if a demanded interface is not supported by this class directly,
238 the request is delegated to the BaseClass.
241 The BaseClass has to be complete in a sense, that css::uno::XInterface,
242 css::uno::XAggregation and css::lang::XTypeProvider
243 are implemented properly. The BaseClass must have at least one ctor
244 that can be called with six or fewer arguments, of which none is of
245 non-const reference type.
248 Inherit from this class giving your additional interface(s) to be implemented as
249 template argument(s). Your sub class defines method implementations for these interface(s).
251 template< class BaseClass
, class Ifc1
, class Ifc2
, class Ifc3
, class Ifc4
, class Ifc5
, class Ifc6
, class Ifc7
>
252 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper7
254 , public Ifc1
, public Ifc2
, public Ifc3
, public Ifc4
, public Ifc5
, public Ifc6
, public Ifc7
256 struct cd
: public rtl::StaticAggregate
< class_data
, ImplClassData7
< Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
, AggImplInheritanceHelper7
<BaseClass
, Ifc1
, Ifc2
, Ifc3
, Ifc4
, Ifc5
, Ifc6
, Ifc7
> > > {};
258 template< typename T1
>
259 explicit AggImplInheritanceHelper7(T1
const & arg1
): BaseClass(arg1
) {}
260 template< typename T1
, typename T2
>
261 AggImplInheritanceHelper7(T1
const & arg1
, T2
const & arg2
):
262 BaseClass(arg1
, arg2
) {}
263 template< typename T1
, typename T2
, typename T3
>
264 AggImplInheritanceHelper7(
265 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
):
266 BaseClass(arg1
, arg2
, arg3
) {}
267 template< typename T1
, typename T2
, typename T3
, typename T4
>
268 AggImplInheritanceHelper7(
269 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
):
270 BaseClass(arg1
, arg2
, arg3
, arg4
) {}
272 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
>
273 AggImplInheritanceHelper7(
274 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
276 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
) {}
278 typename T1
, typename T2
, typename T3
, typename T4
, typename T5
,
280 AggImplInheritanceHelper7(
281 T1
const & arg1
, T2
const & arg2
, T3
const & arg3
, T4
const & arg4
,
282 T5
const & arg5
, T6
const & arg6
):
283 BaseClass(arg1
, arg2
, arg3
, arg4
, arg5
, arg6
) {}
285 AggImplInheritanceHelper7() {}
286 virtual css::uno::Any SAL_CALL
queryInterface( css::uno::Type
const & rType
) SAL_OVERRIDE
287 { return BaseClass::queryInterface( rType
); }
288 virtual css::uno::Any SAL_CALL
queryAggregation( css::uno::Type
const & rType
) SAL_OVERRIDE
290 css::uno::Any
aRet( ImplHelper_queryNoXInterface( rType
, cd::get(), this ) );
293 return BaseClass::queryAggregation( rType
);
295 virtual void SAL_CALL
acquire() SAL_NOEXCEPT SAL_OVERRIDE
296 { BaseClass::acquire(); }
297 virtual void SAL_CALL
release() SAL_NOEXCEPT SAL_OVERRIDE
298 { BaseClass::release(); }
299 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() SAL_OVERRIDE
300 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
301 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() SAL_OVERRIDE
302 { return ImplHelper_getImplementationId( cd::get() ); }
308 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */