LibreOffice
LibreOffice 7.4 SDK C/C++ API Reference
implbase4.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_IMPLBASE4_HXX
24 #define INCLUDED_CPPUHELPER_IMPLBASE4_HXX
25 
27 #include "rtl/instance.hxx"
28 #include "cppuhelper/weak.hxx"
29 #include "cppuhelper/weakagg.hxx"
30 #include "com/sun/star/lang/XTypeProvider.hpp"
31 
32 namespace cppu
33 {
35 
36  struct class_data4
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[ 4 + 1 ];
43  };
44 
45  template< typename Ifc1, typename Ifc2, typename Ifc3, typename Ifc4, typename Impl >
46  struct SAL_WARN_UNUSED ImplClassData4
47  {
48  class_data* operator ()()
49  {
50  static class_data4 s_cd =
51  {
52  4 +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(css::lang::XTypeProvider)
60  }
61  };
62  return reinterpret_cast< class_data * >(&s_cd);
63  }
64  };
65 
67 
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
80  {
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
90 
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() ); }
97 
98 #if !defined _MSC_VER // public -> protected changes mangled names there
99  protected:
100 #elif defined __clang__
101 #pragma clang diagnostic push
102 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
103 #endif
105 #if defined _MSC_VER && defined __clang__
106 #pragma clang diagnostic pop
107 #endif
108  };
117  template< class Ifc1, class Ifc2, class Ifc3, class Ifc4 >
118  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper4
119  : public OWeakObject
120  , public css::lang::XTypeProvider
121  , public Ifc1, public Ifc2, public Ifc3, public Ifc4
122  {
123  struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, WeakImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
124  public:
125  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
126  { return WeakImplHelper_query( rType, cd::get(), this, static_cast<OWeakObject *>(this) ); }
127  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
128  { OWeakObject::acquire(); }
129  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
130  { OWeakObject::release(); }
131  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
132  { return WeakImplHelper_getTypes( cd::get() ); }
133  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
134  { return ImplHelper_getImplementationId( cd::get() ); }
135  };
149  template< class Ifc1, class Ifc2, class Ifc3, class Ifc4 >
150  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper4
151  : public OWeakAggObject
152  , public css::lang::XTypeProvider
153  , public Ifc1, public Ifc2, public Ifc3, public Ifc4
154  {
155  struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, WeakAggImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
156  public:
157  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
158  { return OWeakAggObject::queryInterface( rType ); }
159  virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
160  { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
161  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
163  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
165  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
166  { return WeakAggImplHelper_getTypes( cd::get() ); }
167  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
168  { return ImplHelper_getImplementationId( cd::get() ); }
169  };
186  template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4 >
187  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper4
188  : public BaseClass
189  , public Ifc1, public Ifc2, public Ifc3, public Ifc4
190  {
191  struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, ImplInheritanceHelper4<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4> > > {};
192  protected:
193  template< typename T1 >
194  explicit ImplInheritanceHelper4(T1 const & arg1): BaseClass(arg1) {}
195  template< typename T1, typename T2 >
196  ImplInheritanceHelper4(T1 const & arg1, T2 const & arg2):
197  BaseClass(arg1, arg2) {}
198  template< typename T1, typename T2, typename T3 >
200  T1 const & arg1, T2 const & arg2, T3 const & arg3):
201  BaseClass(arg1, arg2, arg3) {}
202  template< typename T1, typename T2, typename T3, typename T4 >
204  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
205  BaseClass(arg1, arg2, arg3, arg4) {}
206  template<
207  typename T1, typename T2, typename T3, typename T4, typename T5 >
209  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
210  T5 const & arg5):
211  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
212  template<
213  typename T1, typename T2, typename T3, typename T4, typename T5,
214  typename T6 >
216  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
217  T5 const & arg5, T6 const & arg6):
218  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
219  public:
221  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
222  {
223  css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
224  if (aRet.hasValue())
225  return aRet;
226  return BaseClass::queryInterface( rType );
227  }
228  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
229  { BaseClass::acquire(); }
230  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
231  { BaseClass::release(); }
232  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
233  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
234  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
235  { return ImplHelper_getImplementationId( cd::get() ); }
236  };
254  template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4 >
255  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper4
256  : public BaseClass
257  , public Ifc1, public Ifc2, public Ifc3, public Ifc4
258  {
259  struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, AggImplInheritanceHelper4<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4> > > {};
260  protected:
261  template< typename T1 >
262  explicit AggImplInheritanceHelper4(T1 const & arg1): BaseClass(arg1) {}
263  template< typename T1, typename T2 >
264  AggImplInheritanceHelper4(T1 const & arg1, T2 const & arg2):
265  BaseClass(arg1, arg2) {}
266  template< typename T1, typename T2, typename T3 >
268  T1 const & arg1, T2 const & arg2, T3 const & arg3):
269  BaseClass(arg1, arg2, arg3) {}
270  template< typename T1, typename T2, typename T3, typename T4 >
272  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
273  BaseClass(arg1, arg2, arg3, arg4) {}
274  template<
275  typename T1, typename T2, typename T3, typename T4, typename T5 >
277  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
278  T5 const & arg5):
279  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
280  template<
281  typename T1, typename T2, typename T3, typename T4, typename T5,
282  typename T6 >
284  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
285  T5 const & arg5, T6 const & arg6):
286  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
287  public:
289  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
290  { return BaseClass::queryInterface( rType ); }
291  virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
292  {
293  css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
294  if (aRet.hasValue())
295  return aRet;
296  return BaseClass::queryAggregation( rType );
297  }
298  virtual void SAL_CALL acquire() SAL_NOEXCEPT SAL_OVERRIDE
299  { BaseClass::acquire(); }
300  virtual void SAL_CALL release() SAL_NOEXCEPT SAL_OVERRIDE
301  { BaseClass::release(); }
302  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
303  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
304  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
305  { return ImplHelper_getImplementationId( cd::get() ); }
306  };
307 }
308 
309 #endif
310 
311 /* 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: implbase4.hxx:80
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase4.hxx:95
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase4.hxx:91
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase4.hxx:93
~ImplHelper4() SAL_NOEXCEPT
Definition: implbase4.hxx:104
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase4.hxx:122
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase4.hxx:133
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase4.hxx:131
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
decreasing m_refCount
Definition: implbase4.hxx:129
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: implbase4.hxx:125
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
increasing m_refCount
Definition: implbase4.hxx:127
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase4.hxx:154
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: implbase4.hxx:157
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Definition: implbase4.hxx:163
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Called by the delegator or queryInterface.
Definition: implbase4.hxx:159
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase4.hxx:167
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition: implbase4.hxx:161
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase4.hxx:165
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase4.hxx:190
ImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase4.hxx:215
ImplInheritanceHelper4()
Definition: implbase4.hxx:220
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase4.hxx:221
ImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase4.hxx:203
ImplInheritanceHelper4(T1 const &arg1)
Definition: implbase4.hxx:194
ImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase4.hxx:199
ImplInheritanceHelper4(T1 const &arg1, T2 const &arg2)
Definition: implbase4.hxx:196
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase4.hxx:230
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase4.hxx:232
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase4.hxx:228
ImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase4.hxx:208
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase4.hxx:234
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase4.hxx:258
AggImplInheritanceHelper4(T1 const &arg1)
Definition: implbase4.hxx:262
AggImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase4.hxx:276
AggImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase4.hxx:271
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase4.hxx:304
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase4.hxx:289
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase4.hxx:291
AggImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase4.hxx:267
virtual void release() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase4.hxx:300
virtual void acquire() SAL_NOEXCEPT SAL_OVERRIDE
Definition: implbase4.hxx:298
AggImplInheritanceHelper4(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase4.hxx:283
AggImplInheritanceHelper4(T1 const &arg1, T2 const &arg2)
Definition: implbase4.hxx:264
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase4.hxx:302
AggImplInheritanceHelper4()
Definition: implbase4.hxx:288
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.