LibreOffice
LibreOffice 4.3 SDK C/C++ API Reference
Type.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_COM_SUN_STAR_UNO_TYPE_HXX
20 #define INCLUDED_COM_SUN_STAR_UNO_TYPE_HXX
21 
22 #include <osl/mutex.hxx>
23 #include <com/sun/star/uno/Type.h>
24 #include <cppu/unotype.hxx>
25 
26 namespace com
27 {
28 namespace sun
29 {
30 namespace star
31 {
32 namespace uno
33 {
34 
35 
36 inline Type::Type() SAL_THROW(())
37 {
38  _pType = reinterpret_cast< const ::com::sun::star::uno::Type * >(
41 }
42 
43 inline Type::Type( TypeClass eTypeClass, const ::rtl::OUString & rTypeName ) SAL_THROW(())
44  : _pType( 0 )
45 {
46  ::typelib_typedescriptionreference_new( &_pType, (typelib_TypeClass)eTypeClass, rTypeName.pData );
47 }
48 
49 inline Type::Type( TypeClass eTypeClass, const sal_Char * pTypeName ) SAL_THROW(())
50  : _pType( 0 )
51 {
53 }
54 
56  : _pType( pType )
57 {
59 }
60 
62  : _pType( pType )
63 {
64 }
65 
67  : _pType( pType )
68 {
69 }
70 
71 inline Type::Type( const Type & rType ) SAL_THROW(())
72  : _pType( rType._pType )
73 {
75 }
76 
77 inline ::rtl::OUString Type::getTypeName() const SAL_THROW(())
78 {
79  return ::rtl::OUString( _pType->pTypeName );
80 }
81 
82 inline Type & Type::operator = ( const Type & rType ) SAL_THROW(())
83 {
84  ::typelib_typedescriptionreference_assign( &_pType, rType._pType );
85  return *this;
86 }
87 
88 
89 template< class T >
91 
92 }
93 }
94 }
95 }
96 
97 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const ::com::sun::star::uno::Type * ) SAL_THROW(())
98 {
99  return ::cppu::UnoType< ::com::sun::star::uno::Type >::get();
100 }
101 
102 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuVoidType() SAL_THROW(())
103 {
104  return ::cppu::UnoType< ::cppu::UnoVoidType >::get();
105 }
106 inline const ::com::sun::star::uno::Type & SAL_CALL getVoidCppuType() SAL_THROW(())
107 {
108  return ::cppu::UnoType< ::cppu::UnoVoidType >::get();
109 }
110 
111 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuBooleanType() SAL_THROW(())
112 {
113  return ::cppu::UnoType< bool >::get();
114 }
115 inline const ::com::sun::star::uno::Type & SAL_CALL getBooleanCppuType() SAL_THROW(())
116 {
117  return ::cppu::UnoType< bool >::get();
118 }
119 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_Bool * ) SAL_THROW(())
120 {
121  return ::cppu::UnoType< bool >::get();
122 }
123 
124 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType(
125  SAL_UNUSED_PARAMETER bool const * ) SAL_THROW(())
126 {
127  return ::cppu::UnoType< bool >::get();
128 }
129 
130 inline const ::com::sun::star::uno::Type & SAL_CALL getCharCppuType() SAL_THROW(())
131 {
132  return ::cppu::UnoType< ::cppu::UnoCharType >::get();
133 }
134 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuCharType() SAL_THROW(())
135 {
136  return ::cppu::UnoType< ::cppu::UnoCharType >::get();
137 }
138 
139 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_Int8 * ) SAL_THROW(())
140 {
141  return ::cppu::UnoType< ::sal_Int8 >::get();
142 }
143 
144 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const ::rtl::OUString * ) SAL_THROW(())
145 {
146  return ::cppu::UnoType< ::rtl::OUString >::get();
147 }
148 
149 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_Int16 * ) SAL_THROW(())
150 {
151  return ::cppu::UnoType< ::sal_Int16 >::get();
152 }
153 
154 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_uInt16 * ) SAL_THROW(())
155 {
156  return ::cppu::UnoType< ::cppu::UnoUnsignedShortType >::get();
157 }
158 
159 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_Int32 * ) SAL_THROW(())
160 {
161  return ::cppu::UnoType< ::sal_Int32 >::get();
162 }
163 
164 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_uInt32 * ) SAL_THROW(())
165 {
166  return ::cppu::UnoType< ::sal_uInt32 >::get();
167 }
168 
169 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_Int64 * ) SAL_THROW(())
170 {
171  return ::cppu::UnoType< ::sal_Int64 >::get();
172 }
173 
174 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const sal_uInt64 * ) SAL_THROW(())
175 {
176  return ::cppu::UnoType< ::sal_uInt64 >::get();
177 }
178 
179 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const float * ) SAL_THROW(())
180 {
181  return ::cppu::UnoType< float >::get();
182 }
183 
184 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( SAL_UNUSED_PARAMETER const double * ) SAL_THROW(())
185 {
186  return ::cppu::UnoType< double >::get();
187 }
188 
189 template< typename T >
190 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType() SAL_THROW(())
191 {
192  return ::cppu::UnoType< T >::get();
193 }
194 
195 template<>
196 inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType< sal_Unicode >()
197  SAL_THROW(())
198 {
199  return ::cppu::UnoType< ::cppu::UnoCharType >::get();
200 }
201 
202 #endif
203 
204 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
UnoType_NoAcquire
Enum defining UNO_TYPE_NO_ACQUIRE for type description reference transfer.
Definition: Type.h:40
const ::com::sun::star::uno::Type & getCppuType(SAL_UNUSED_PARAMETER const ::com::sun::star::uno::Type *) SAL_THROW(())
Definition: Type.hxx:97
typelib_TypeDescriptionReference * getTypeLibType() const SAL_THROW(())
Gets the C typelib type description reference pointer.
Definition: Type.h:155
unsigned char sal_Bool
Definition: types.h:46
C++ class representing an IDL meta type.
Definition: Type.h:55
Type & operator=(const Type &rType) SAL_THROW(())
Assignment operator: Acquires right side type and releases previously set type.
Definition: Type.hxx:82
Helper class to specify a type pointer for idl arrays.
Definition: Type.h:195
const ::com::sun::star::uno::Type & getVoidCppuType() SAL_THROW(())
Gets the meta type of IDL type void.
Definition: Type.hxx:106
CPPU_DLLPUBLIC typelib_TypeDescriptionReference ** typelib_static_type_getByTypeClass(typelib_TypeClass eTypeClass) SAL_THROW_EXTERN_C()
Gets static type reference of standard types by type class.
rtl_uString * pTypeName
fully qualified name of type
Definition: typedescription.h:55
type class of void
Definition: typeclass.h:29
const ::com::sun::star::uno::Type & getCppuBooleanType() SAL_THROW(())
Gets the meta type of IDL type boolean.
Definition: Type.hxx:111
__sal_NoAcquire
Definition: types.h:384
inline::rtl::OUString getTypeName() const SAL_THROW(())
Gets the name of the set type.
Definition: Type.hxx:77
CPPU_DLLPUBLIC void typelib_typedescriptionreference_assign(typelib_TypeDescriptionReference **ppDest, typelib_TypeDescriptionReference *pSource) SAL_THROW_EXTERN_C()
Assigns a type.
Holds a weak reference to a type description.
Definition: typedescription.h:40
char sal_Char
A legacy synonym for char.
Definition: types.h:128
signed char sal_Int8
Definition: types.h:51
const ::com::sun::star::uno::Type & getCharCppuType() SAL_THROW(())
Gets the meta type of IDL type char.
Definition: Type.hxx:130
CPPU_DLLPUBLIC void typelib_typedescriptionreference_newByAsciiName(typelib_TypeDescriptionReference **ppTDR, typelib_TypeClass eTypeClass, const sal_Char *pTypeName) SAL_THROW_EXTERN_C()
Creates a type description reference.
const ::com::sun::star::uno::Type & getCppuVoidType() SAL_THROW(())
Gets the meta type of IDL type void.
Definition: Type.hxx:102
#define SAL_THROW(x)
Exception specification documentation.
Definition: types.h:361
const ::com::sun::star::uno::Type & getCppuType< sal_Unicode >()
Gets the meta type of IDL type char.
Definition: Type.hxx:196
#define SAL_UNUSED_PARAMETER
Annotate unused but required C++ function parameters.
Definition: types.h:582
const ::com::sun::star::uno::Type & getCppuCharType() SAL_THROW(())
Gets the meta type of IDL type char.
Definition: Type.hxx:134
CPPU_DLLPUBLIC void typelib_typedescriptionreference_acquire(typelib_TypeDescriptionReference *pRef) SAL_THROW_EXTERN_C()
Increments reference count of type description reference.
Type() SAL_THROW(())
Default Constructor: Type is set to void.
Definition: Type.hxx:36
const ::com::sun::star::uno::Type & getBooleanCppuType() SAL_THROW(())
Gets the meta type of IDL type boolean.
Definition: Type.hxx:115
enum _typelib_TypeClass typelib_TypeClass
This type class enum is binary compatible with the IDL enum com.sun.star.uno.TypeClass.
Definition: types.h:391
CPPU_DLLPUBLIC void typelib_typedescriptionreference_new(typelib_TypeDescriptionReference **ppTDR, typelib_TypeClass eTypeClass, rtl_uString *pTypeName) SAL_THROW_EXTERN_C()
Creates a type description reference.