LibreOffice
LibreOffice 5.1 SDK C/C++ API Reference
implbase12.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 #ifndef INCLUDED_CPPUHELPER_IMPLBASE12_HXX
20 #define INCLUDED_CPPUHELPER_IMPLBASE12_HXX
21 
23 #include <rtl/instance.hxx>
24 
25 namespace cppu
26 {
28 
29  struct class_data12
30  {
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[ 12 + 1 ];
36  };
37 
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 Impl >
39  struct ImplClassData12
40  {
41  class_data* operator ()()
42  {
43  static class_data12 s_cd =
44  {
45  12 +1, sal_False, sal_False,
46  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
47  {
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(css::lang::XTypeProvider)
61  }
62  };
63  return reinterpret_cast< class_data * >(&s_cd);
64  }
65  };
66 
68 
77  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 >
78  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper12
79  : public css::lang::XTypeProvider
80  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12
81  {
82  struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, ImplHelper12<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
83  public:
84  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
85  { return ImplHelper_query( rType, cd::get(), this ); }
86  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
87  { return ImplHelper_getTypes( cd::get() ); }
88  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
89  { return ImplHelper_getImplementationId( cd::get() ); }
90 
91 #if !defined _MSC_VER // public -> protected changes mangled names there
92  protected:
93 #endif
94  ~ImplHelper12() throw () {}
95  };
104  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 >
105  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper12
106  : public OWeakObject
107  , public css::lang::XTypeProvider
108  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12
109  {
110  struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, WeakImplHelper12<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
111  public:
112  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
113  { return WeakImplHelper_query( rType, cd::get(), this, static_cast<OWeakObject *>(this) ); }
114  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
115  { OWeakObject::acquire(); }
116  virtual void SAL_CALL release() throw () SAL_OVERRIDE
117  { OWeakObject::release(); }
118  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
119  { return WeakImplHelper_getTypes( cd::get() ); }
120  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
121  { return ImplHelper_getImplementationId( cd::get() ); }
122  };
136  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 >
137  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper12
138  : public OWeakAggObject
139  , public css::lang::XTypeProvider
140  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12
141  {
142  struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, WeakAggImplHelper12<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
143  public:
144  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
145  { return OWeakAggObject::queryInterface( rType ); }
146  virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
147  { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
148  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
150  virtual void SAL_CALL release() throw () SAL_OVERRIDE
152  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
153  { return WeakAggImplHelper_getTypes( cd::get() ); }
154  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
155  { return ImplHelper_getImplementationId( cd::get() ); }
156  };
173  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 >
174  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper12
175  : public BaseClass
176  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12
177  {
178  struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, ImplInheritanceHelper12<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
179  protected:
180  template< typename T1 >
181  explicit ImplInheritanceHelper12(T1 const & arg1): BaseClass(arg1) {}
182  template< typename T1, typename T2 >
183  ImplInheritanceHelper12(T1 const & arg1, T2 const & arg2):
184  BaseClass(arg1, arg2) {}
185  template< typename T1, typename T2, typename T3 >
187  T1 const & arg1, T2 const & arg2, T3 const & arg3):
188  BaseClass(arg1, arg2, arg3) {}
189  template< typename T1, typename T2, typename T3, typename T4 >
191  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
192  BaseClass(arg1, arg2, arg3, arg4) {}
193  template<
194  typename T1, typename T2, typename T3, typename T4, typename T5 >
196  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
197  T5 const & arg5):
198  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
199  template<
200  typename T1, typename T2, typename T3, typename T4, typename T5,
201  typename T6 >
203  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
204  T5 const & arg5, T6 const & arg6):
205  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
206  public:
208  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException) SAL_OVERRIDE
209  {
210  css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
211  if (aRet.hasValue())
212  return aRet;
213  return BaseClass::queryInterface( rType );
214  }
215  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
216  { BaseClass::acquire(); }
217  virtual void SAL_CALL release() throw () SAL_OVERRIDE
218  { BaseClass::release(); }
219  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException) SAL_OVERRIDE
220  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
221  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException) SAL_OVERRIDE
222  { return ImplHelper_getImplementationId( cd::get() ); }
223  };
241  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 >
242  class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper12
243  : public BaseClass
244  , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9, public Ifc10, public Ifc11, public Ifc12
245  {
246  struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, AggImplInheritanceHelper12<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
247  protected:
248  template< typename T1 >
249  explicit AggImplInheritanceHelper12(T1 const & arg1): BaseClass(arg1) {}
250  template< typename T1, typename T2 >
251  AggImplInheritanceHelper12(T1 const & arg1, T2 const & arg2):
252  BaseClass(arg1, arg2) {}
253  template< typename T1, typename T2, typename T3 >
255  T1 const & arg1, T2 const & arg2, T3 const & arg3):
256  BaseClass(arg1, arg2, arg3) {}
257  template< typename T1, typename T2, typename T3, typename T4 >
259  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
260  BaseClass(arg1, arg2, arg3, arg4) {}
261  template<
262  typename T1, typename T2, typename T3, typename T4, typename T5 >
264  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
265  T5 const & arg5):
266  BaseClass(arg1, arg2, arg3, arg4, arg5) {}
267  template<
268  typename T1, typename T2, typename T3, typename T4, typename T5,
269  typename T6 >
271  T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
272  T5 const & arg5, T6 const & arg6):
273  BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
274  public:
276  virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException) SAL_OVERRIDE
277  { return BaseClass::queryInterface( rType ); }
278  virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) throw (css::uno::RuntimeException) SAL_OVERRIDE
279  {
280  css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
281  if (aRet.hasValue())
282  return aRet;
283  return BaseClass::queryAggregation( rType );
284  }
285  virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
286  { BaseClass::acquire(); }
287  virtual void SAL_CALL release() throw () SAL_OVERRIDE
288  { BaseClass::release(); }
289  virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException) SAL_OVERRIDE
290  { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
291  virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException) SAL_OVERRIDE
292  { return ImplHelper_getImplementationId( cd::get() ); }
293  };
294 }
295 
296 #endif
297 
298 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase12.hxx:219
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase12.hxx:242
~ImplHelper12()
Definition: implbase12.hxx:94
virtual void acquire() SAL_OVERRIDE
Definition: implbase12.hxx:285
ImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase12.hxx:186
Base class to implement an UNO object supporting weak references, i.e.
Definition: weak.hxx:43
AggImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase12.hxx:258
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase12.hxx:208
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface inher...
Definition: implbase12.hxx:174
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase12.hxx:144
Definition: Enterable.hxx:26
ImplInheritanceHelper12(T1 const &arg1)
Definition: implbase12.hxx:181
virtual void release() SAL_OVERRIDE
Definition: implbase12.hxx:287
Helper class for a late-initialized static aggregate, e.g.
Definition: instance.hxx:546
virtual void acquire() SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
AggImplInheritanceHelper12(T1 const &arg1, T2 const &arg2)
Definition: implbase12.hxx:251
virtual void acquire() SAL_OVERRIDE
Definition: implbase12.hxx:215
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase12.hxx:105
css::uno::Any queryInterface(const css::uno::Type &rType, Interface1 *p1)
Compares demanded type to given template argument types.
Definition: queryinterface.hxx:39
virtual void acquire() SAL_OVERRIDE
increasing m_refCount
#define SAL_OVERRIDE
C++11 "override" feature.
Definition: types.h:421
AggImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3)
Definition: implbase12.hxx:254
Base class to implement an UNO object supporting weak references, i.e.
Definition: weakagg.hxx:41
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase12.hxx:278
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase12.hxx:221
Definition: types.h:389
ImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4)
Definition: implbase12.hxx:190
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.
AggImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase12.hxx:270
unsigned char sal_Bool
Definition: types.h:48
AggImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase12.hxx:263
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase12.hxx:120
ImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5, T6 const &arg6)
Definition: implbase12.hxx:202
virtual void release() SAL_OVERRIDE
If a delegator is set, then the delegators gets released.
Definition: implbase12.hxx:150
AggImplInheritanceHelper12(T1 const &arg1)
Definition: implbase12.hxx:249
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase12.hxx:118
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase12.hxx:154
ImplInheritanceHelper12()
Definition: implbase12.hxx:207
signed char sal_Int8
Definition: types.h:53
#define SAL_NO_VTABLE
Use this for pure virtual classes, e.g.
Definition: types.h:333
#define sal_False
Definition: types.h:49
virtual void release() SAL_OVERRIDE
decreasing m_refCount
Definition: implbase12.hxx:116
ImplInheritanceHelper12(T1 const &arg1, T2 const &arg2, T3 const &arg3, T4 const &arg4, T5 const &arg5)
Definition: implbase12.hxx:195
virtual void release() SAL_OVERRIDE
decreasing m_refCount
Implementation helper implementing interfaces css::lang::XTypeProvider and css::uno::XInterface which...
Definition: implbase12.hxx:137
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase12.hxx:86
virtual void acquire() SAL_OVERRIDE
If a delegator is set, then the delegators gets acquired.
Definition: implbase12.hxx:148
virtual void release() SAL_OVERRIDE
Definition: implbase12.hxx:217
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase12.hxx:112
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase12.hxx:276
virtual void acquire() SAL_OVERRIDE
increasing m_refCount
Definition: implbase12.hxx:114
ImplInheritanceHelper12(T1 const &arg1, T2 const &arg2)
Definition: implbase12.hxx:183
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase12.hxx:152
AggImplInheritanceHelper12()
Definition: implbase12.hxx:275
virtual css::uno::Any queryInterface(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase12.hxx:84
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase12.hxx:88
virtual css::uno::Any queryAggregation(css::uno::Type const &rType) SAL_OVERRIDE
Definition: implbase12.hxx:146
virtual css::uno::Sequence< sal_Int8 > getImplementationId() SAL_OVERRIDE
Definition: implbase12.hxx:291
virtual css::uno::Sequence< css::uno::Type > getTypes() SAL_OVERRIDE
Definition: implbase12.hxx:289
Implementation helper implementing interface css::lang::XTypeProvider and method XInterface::queryInt...
Definition: implbase12.hxx:78
virtual void release() SAL_OVERRIDE
If a delegator is set, then the delegators gets released.