LibreOffice
LibreOffice 25.8 SDK C/C++ API Reference
Loading...
Searching...
No Matches
implbase1.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_IMPLBASE1_HXX
24#define INCLUDED_CPPUHELPER_IMPLBASE1_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_data1
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[ 1 + 1 ];
43 };
44
45 template< typename Ifc1, typename Impl > struct SAL_WARN_UNUSED ImplClassData1
46 {
47 class_data* operator ()()
48 {
49 static class_data1 s_cd =
50 {
51 1 +1, false, false,
52 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
53 {
54 CPPUHELPER_DETAIL_TYPEENTRY(Ifc1),
55 CPPUHELPER_DETAIL_TYPEENTRY(css::lang::XTypeProvider)
56 }
57 };
58 return reinterpret_cast< class_data * >(&s_cd);
59 }
60 };
61
63
72 template< class Ifc1 >
73 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper1
74 : public css::lang::XTypeProvider
75 , public Ifc1
76 {
77 struct cd : public rtl::StaticAggregate< class_data, ImplClassData1 < Ifc1, ImplHelper1<Ifc1> > > {};
78 public:
79#if defined LIBO_INTERNAL_ONLY
80 ImplHelper1() = default;
81 ImplHelper1(ImplHelper1 const &) = default;
82 ImplHelper1(ImplHelper1 &&) = default;
83 ImplHelper1 & operator =(ImplHelper1 const &) = default;
84 ImplHelper1 & operator =(ImplHelper1 &&) = default;
85#endif
86
87 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
88 { return ImplHelper_query( rType, cd::get(), this ); }
90 { return ImplHelper_getTypes( cd::get() ); }
92 { return ImplHelper_getImplementationId( cd::get() ); }
93
94#if !defined _MSC_VER // public -> protected changes mangled names there
95 protected:
96#endif
98 };
99
111 template< class Ifc1 >
112 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE SAL_DLLPUBLIC_EXPORT WeakImplHelper1
113 : public OWeakObject
114 , public css::lang::XTypeProvider
115 , public Ifc1
116 {
117 struct cd : public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, WeakImplHelper1< Ifc1 > > > {};
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
123 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
126 { return WeakImplHelper_getTypes( cd::get() ); }
128 { return ImplHelper_getImplementationId( cd::get() ); }
129 };
130
143 template< class Ifc1 >
144 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper1
145 : public OWeakAggObject
146 , public css::lang::XTypeProvider
147 , public Ifc1
148 {
149 struct cd : public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, WeakAggImplHelper1< Ifc1 > > > {};
150 public:
151 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
152 { return OWeakAggObject::queryInterface( rType ); }
154 { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
155 virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
157 virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
160 { return WeakAggImplHelper_getTypes( cd::get() ); }
162 { return ImplHelper_getImplementationId( cd::get() ); }
163 };
164
180 template< class BaseClass, class Ifc1 >
181 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper1
182 : public BaseClass
183 , public Ifc1
184 {
185 struct cd : public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, ImplInheritanceHelper1< BaseClass, Ifc1 > > > {};
186 protected:
187 template< typename T1 >
188 explicit ImplInheritanceHelper1(T1 const & arg1): BaseClass(arg1) {}
189 template< typename T1, typename T2 >
190 ImplInheritanceHelper1(T1 const & arg1, T2 const & arg2):
191 BaseClass(arg1, arg2) {}
192 template< typename T1, typename T2, typename T3 >
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 >
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 >
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 >
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:
215 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
216 {
217 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
218 if (aRet.hasValue())
219 return aRet;
220 return BaseClass::queryInterface( rType );
221 }
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(); }
227 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
229 { return ImplHelper_getImplementationId( cd::get() ); }
230 };
231
248 template< class BaseClass, class Ifc1 >
249 class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper1
250 : public BaseClass
251 , public Ifc1
252 {
253 struct cd : public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, AggImplInheritanceHelper1< BaseClass, Ifc1 > > > {};
254 protected:
255 template< typename T1 >
256 explicit AggImplInheritanceHelper1(T1 const & arg1): BaseClass(arg1) {}
257 template< typename T1, typename T2 >
258 AggImplInheritanceHelper1(T1 const & arg1, T2 const & arg2):
259 BaseClass(arg1, arg2) {}
260 template< typename T1, typename T2, typename T3 >
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 >
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 >
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 >
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:
283 virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
284 { return BaseClass::queryInterface( rType ); }
286 {
287 css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
288 if (aRet.hasValue())
289 return aRet;
290 return BaseClass::queryAggregation( rType );
291 }
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(); }
297 { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
299 { return ImplHelper_getImplementationId( cd::get() ); }
300 };
301}
302
303#endif
304
305/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SAL_NOEXCEPT
Macro for C++11 "noexcept" vs.
Definition types.h:434
#define SAL_NO_VTABLE
Use this for pure virtual classes, e.g.
Definition types.h:312
unsigned char sal_Bool
Definition types.h:38
#define SAL_OVERRIDE
C++11 "override" feature.
Definition types.h:409
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:611
Definition Enterable.hxx:31
Helper class for a late-initialized static aggregate, e.g.
Definition instance.hxx:548
Template C++ class representing an IDL sequence.
Definition Sequence.h:61
Implementation helper implementing interface css::lang::XTypeProvider and method XInterface::queryInt...
Definition implbase1.hxx:76
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition implbase1.hxx:89
~ImplHelper1() SAL_NOEXCEPT
Definition implbase1.hxx:97
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition implbase1.hxx:87
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition implbase1.hxx:91
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition implbase1.hxx:116
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition implbase1.hxx:125
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition implbase1.hxx:127
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Definition implbase1.hxx:123
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
Definition implbase1.hxx:121
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 implbase1.hxx:119
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition implbase1.hxx:148
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition implbase1.hxx:155
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Definition implbase1.hxx:157
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 implbase1.hxx:151
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition implbase1.hxx:161
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition implbase1.hxx:159
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Called by the delegator or queryInterface.
Definition implbase1.hxx:153
ImplInheritanceHelper1(T1 const &arg1)
Definition implbase1.hxx:188
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition implbase1.hxx:224
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition implbase1.hxx:202
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition implbase1.hxx:226
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition implbase1.hxx:222
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition implbase1.hxx:228
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition implbase1.hxx:193
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition implbase1.hxx:197
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2)
Definition implbase1.hxx:190
ImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition implbase1.hxx:209
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition implbase1.hxx:215
ImplInheritanceHelper1()
Definition implbase1.hxx:214
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition implbase1.hxx:292
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition implbase1.hxx:283
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition implbase1.hxx:296
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition implbase1.hxx:294
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition implbase1.hxx:261
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition implbase1.hxx:298
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition implbase1.hxx:277
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Definition implbase1.hxx:285
AggImplInheritanceHelper1(T1 const &arg1)
Definition implbase1.hxx:256
AggImplInheritanceHelper1()
Definition implbase1.hxx:282
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition implbase1.hxx:265
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition implbase1.hxx:270
AggImplInheritanceHelper1(T1 const &arg1, T2 const &arg2)
Definition implbase1.hxx:258
OWeakObject()
Default Constructor.
Definition weak.hxx:100
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
OWeakAggObject()
Constructor.
Definition weakagg.hxx:52
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.
C++ class representing an IDL any.
Definition Any.h:58
bool hasValue() const
Tests if any contains a value.
Definition Any.h:193
C++ class representing an IDL meta type.
Definition Type.h:59