android: Update app-specific/MIME type icons
[LibreOffice.git] / include / cppuhelper / implbase4.hxx
blob8e24adbcbab3779b885c0846c3bcc63f8134493d
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 .
21 * This file is part of LibreOffice published API.
23 #ifndef INCLUDED_CPPUHELPER_IMPLBASE4_HXX
24 #define INCLUDED_CPPUHELPER_IMPLBASE4_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"
32 namespace cppu
34 /// @cond INTERNAL
36 struct class_data4
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[ 4 + 1 ];
45 template< typename Ifc1, typename Ifc2, typename Ifc3, typename Ifc4, typename Impl >
46 struct SAL_WARN_UNUSED ImplClassData4
48 class_data* operator ()()
50 static class_data4 s_cd =
52 4 +1, false, false,
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(css::lang::XTypeProvider)
62 return reinterpret_cast< class_data * >(&s_cd);
66 /// @endcond
68 /** Implementation helper implementing interface css::lang::XTypeProvider
69 and method XInterface::queryInterface(), but no reference counting.
71 @derive
72 Inherit from this class giving your interface(s) to be implemented as template argument(s).
73 Your sub class defines method implementations for these interface(s) including acquire()/
74 release() and delegates incoming queryInterface() calls to this base class.
76 template< class Ifc1, class Ifc2, class Ifc3, class Ifc4 >
77 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper4
78 : public css::lang::XTypeProvider
79 , public Ifc1, public Ifc2, public Ifc3, public Ifc4
81 struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, ImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
82 public:
83 #if defined LIBO_INTERNAL_ONLY
84 ImplHelper4() = default;
85 ImplHelper4(ImplHelper4 const &) = default;
86 ImplHelper4(ImplHelper4 &&) = default;
87 ImplHelper4 & operator =(ImplHelper4 const &) = default;
88 ImplHelper4 & operator =(ImplHelper4 &&) = default;
89 #endif
91 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
92 { return ImplHelper_query( rType, cd::get(), this ); }
93 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
94 { return ImplHelper_getTypes( cd::get() ); }
95 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
96 { return ImplHelper_getImplementationId( cd::get() ); }
98 #if !defined _MSC_VER // public -> protected changes mangled names there
99 protected:
100 #endif
101 ~ImplHelper4() SAL_NOEXCEPT {}
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 >
112 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper4
113 : public OWeakObject
114 , public css::lang::XTypeProvider
115 , public Ifc1, public Ifc2, public Ifc3, public Ifc4
117 struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, WeakImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
118 public:
119 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
120 { return WeakImplHelper_query( rType, cd::get(), this, static_cast<OWeakObject *>(this) ); }
121 virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
122 { OWeakObject::acquire(); }
123 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
124 { OWeakObject::release(); }
125 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
126 { return WeakImplHelper_getTypes( cd::get() ); }
127 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() 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 >
144 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper4
145 : public OWeakAggObject
146 , public css::lang::XTypeProvider
147 , public Ifc1, public Ifc2, public Ifc3, public Ifc4
149 struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, WeakAggImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
150 public:
151 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
152 { return OWeakAggObject::queryInterface( rType ); }
153 virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
154 { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
155 virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
156 { OWeakAggObject::acquire(); }
157 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
158 { OWeakAggObject::release(); }
159 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
160 { return WeakAggImplHelper_getTypes( cd::get() ); }
161 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
162 { return ImplHelper_getImplementationId( cd::get() ); }
164 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
165 css::uno::XInterface inheriting 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 >
181 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper4
182 : public BaseClass
183 , public Ifc1, public Ifc2, public Ifc3, public Ifc4
185 struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, ImplInheritanceHelper4<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4> > > {};
186 protected:
187 template< typename T1 >
188 explicit ImplInheritanceHelper4(T1 const & arg1): BaseClass(arg1) {}
189 template< typename T1, typename T2 >
190 ImplInheritanceHelper4(T1 const & arg1, T2 const & arg2):
191 BaseClass(arg1, arg2) {}
192 template< typename T1, typename T2, typename T3 >
193 ImplInheritanceHelper4(
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 ImplInheritanceHelper4(
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 ImplInheritanceHelper4(
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 ImplInheritanceHelper4(
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 ImplInheritanceHelper4() {}
215 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) 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() SAL_NOEXCEPT SAL_OVERRIDE
223 { BaseClass::acquire(); }
224 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
225 { BaseClass::release(); }
226 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
227 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
228 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
229 { return ImplHelper_getImplementationId( cd::get() ); }
231 /** Implementation helper implementing interfaces css::lang::XTypeProvider and
232 css::uno::XInterface inheriting 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 >
249 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper4
250 : public BaseClass
251 , public Ifc1, public Ifc2, public Ifc3, public Ifc4
253 struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, AggImplInheritanceHelper4<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4> > > {};
254 protected:
255 template< typename T1 >
256 explicit AggImplInheritanceHelper4(T1 const & arg1): BaseClass(arg1) {}
257 template< typename T1, typename T2 >
258 AggImplInheritanceHelper4(T1 const & arg1, T2 const & arg2):
259 BaseClass(arg1, arg2) {}
260 template< typename T1, typename T2, typename T3 >
261 AggImplInheritanceHelper4(
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 AggImplInheritanceHelper4(
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 AggImplInheritanceHelper4(
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 AggImplInheritanceHelper4(
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 AggImplInheritanceHelper4() {}
283 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
284 { return BaseClass::queryInterface( rType ); }
285 virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) 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() SAL_NOEXCEPT SAL_OVERRIDE
293 { BaseClass::acquire(); }
294 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
295 { BaseClass::release(); }
296 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
297 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
298 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
299 { return ImplHelper_getImplementationId( cd::get() ); }
303 #endif
305 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */