LibreOffice
LibreOffice 5.0 SDK C/C++ API Reference
typedescription.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_TYPELIB_TYPEDESCRIPTION_HXX
20 #define INCLUDED_TYPELIB_TYPEDESCRIPTION_HXX
21 
22 #include <rtl/alloc.h>
23 #include <rtl/ustring.hxx>
24 #include <com/sun/star/uno/Type.h>
26 
27 
28 namespace com
29 {
30 namespace sun
31 {
32 namespace star
33 {
34 namespace uno
35 {
36 
43 {
46  mutable typelib_TypeDescription * _pTypeDescr;
47 
48 public:
50  // these are here to force memory de/allocation to sal lib.
51  inline static void * SAL_CALL operator new ( size_t nSize )
52  { return ::rtl_allocateMemory( nSize ); }
53  inline static void SAL_CALL operator delete ( void * pMem )
54  { ::rtl_freeMemory( pMem ); }
55  inline static void * SAL_CALL operator new ( size_t, void * pMem )
56  { return pMem; }
57  inline static void SAL_CALL operator delete ( void *, void * )
58  {}
60 
65  inline TypeDescription( typelib_TypeDescription * pTypeDescr = 0 );
70  inline TypeDescription( typelib_TypeDescriptionReference * pTypeDescrRef );
75  inline TypeDescription( const ::com::sun::star::uno::Type & rType );
80  inline TypeDescription( const TypeDescription & rDescr );
85  inline TypeDescription( rtl_uString * pTypeName );
90  inline TypeDescription( const ::rtl::OUString & rTypeName );
93  inline ~TypeDescription();
94 
100  inline TypeDescription & SAL_CALL operator = ( typelib_TypeDescription * pTypeDescr );
106  inline TypeDescription & SAL_CALL operator =( const TypeDescription & rTypeDescr )
107  { return this->operator =( rTypeDescr.get() ); }
108 
114  inline bool SAL_CALL equals( const typelib_TypeDescription * pTypeDescr ) const;
120  inline bool SAL_CALL equals( const TypeDescription & rTypeDescr ) const
121  { return equals( rTypeDescr._pTypeDescr ); }
122 
125  inline void SAL_CALL makeComplete() const;
126 
131  inline typelib_TypeDescription * SAL_CALL get() const
132  { return _pTypeDescr; }
137  inline bool SAL_CALL is() const
138  { return (_pTypeDescr != 0); }
139 };
140 
142  : _pTypeDescr( pTypeDescr )
143 {
144  if (_pTypeDescr)
145  typelib_typedescription_acquire( _pTypeDescr );
146 }
147 
149  : _pTypeDescr( 0 )
150 {
151  if (pTypeDescrRef)
152  typelib_typedescriptionreference_getDescription( &_pTypeDescr, pTypeDescrRef );
153 }
154 
155 inline TypeDescription::TypeDescription( const ::com::sun::star::uno::Type & rType )
156  : _pTypeDescr( 0 )
157 {
158  if (rType.getTypeLibType())
159  typelib_typedescriptionreference_getDescription( &_pTypeDescr, rType.getTypeLibType() );
160 }
161 
163  : _pTypeDescr( rTypeDescr._pTypeDescr )
164 {
165  if (_pTypeDescr)
166  typelib_typedescription_acquire( _pTypeDescr );
167 }
168 
169 inline TypeDescription::TypeDescription( rtl_uString * pTypeName )
170  : _pTypeDescr( 0 )
171 {
172  typelib_typedescription_getByName( &_pTypeDescr , pTypeName );
173 }
174 
175 inline TypeDescription::TypeDescription( const ::rtl::OUString & rTypeName )
176  : _pTypeDescr( 0 )
177 {
178  typelib_typedescription_getByName( &_pTypeDescr , rTypeName.pData );
179 }
180 
182 {
183  if (_pTypeDescr)
184  typelib_typedescription_release( _pTypeDescr );
185 }
186 
188 {
189  if (pTypeDescr)
190  typelib_typedescription_acquire( pTypeDescr );
191  if (_pTypeDescr)
192  typelib_typedescription_release( _pTypeDescr );
193  _pTypeDescr = pTypeDescr;
194  return *this;
195 }
196 
197 inline bool TypeDescription::equals( const typelib_TypeDescription * pTypeDescr ) const
198 {
199  return (_pTypeDescr && pTypeDescr &&
200  typelib_typedescription_equals( _pTypeDescr, pTypeDescr ));
201 }
202 
203 inline void TypeDescription::makeComplete() const
204 {
205  if (_pTypeDescr && !_pTypeDescr->bComplete)
206  ::typelib_typedescription_complete( &_pTypeDescr );
207 }
208 
209 }
210 }
211 }
212 }
213 
214 #endif
215 
216 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
C++ wrapper for typelib_TypeDescription.
Definition: typedescription.hxx:42
CPPU_DLLPUBLIC void typelib_typedescriptionreference_getDescription(typelib_TypeDescription **ppRet, typelib_TypeDescriptionReference *pRef) SAL_THROW_EXTERN_C()
Retrieves the type description for a given reference.
CPPU_DLLPUBLIC sal_Bool typelib_typedescription_complete(typelib_TypeDescription **ppTypeDescr) SAL_THROW_EXTERN_C()
Completes a typedescription to be used for, e.g., marshalling values.
CPPU_DLLPUBLIC void typelib_typedescription_acquire(typelib_TypeDescription *pDesc) SAL_THROW_EXTERN_C()
Increments reference count of given type description.
SAL_DLLPUBLIC void rtl_freeMemory(void *Ptr) SAL_THROW_EXTERN_C()
Free memory.
typelib_TypeDescription * get() const
Gets the UNacquired type description pointer.
Definition: typedescription.hxx:131
Definition: types.h:385
~TypeDescription()
Destructor: releases type description.
Definition: typedescription.hxx:181
CPPU_DLLPUBLIC void typelib_typedescription_release(typelib_TypeDescription *pDesc) SAL_THROW_EXTERN_C()
Decrements reference count of given type.
bool equals(const typelib_TypeDescription *pTypeDescr) const
Tests whether two type descriptions are equal.
Definition: typedescription.hxx:197
bool equals(const TypeDescription &rTypeDescr) const
Tests whether two type descriptions are equal.
Definition: typedescription.hxx:120
struct SAL_DLLPUBLIC_RTTI _typelib_TypeDescription typelib_TypeDescription
Full type description of a type.
void makeComplete() const
Makes stored type description complete.
Definition: typedescription.hxx:203
TypeDescription(typelib_TypeDescription *pTypeDescr=0)
Constructor:
Definition: typedescription.hxx:141
SAL_DLLPUBLIC void * rtl_allocateMemory(sal_Size Bytes) SAL_THROW_EXTERN_C()
Allocate memory.
struct SAL_DLLPUBLIC_RTTI _typelib_TypeDescriptionReference typelib_TypeDescriptionReference
Holds a weak reference to a type description.
TypeDescription & operator=(typelib_TypeDescription *pTypeDescr)
Assignment operator: acquires given type description and releases a set one.
Definition: typedescription.hxx:187
bool is() const
Tests if a type description is set.
Definition: typedescription.hxx:137
CPPU_DLLPUBLIC void typelib_typedescription_getByName(typelib_TypeDescription **ppRet, rtl_uString *pName) SAL_THROW_EXTERN_C()
Retrieves a type description via its fully qualified name.
CPPU_DLLPUBLIC sal_Bool typelib_typedescription_equals(const typelib_TypeDescription *p1, const typelib_TypeDescription *p2) SAL_THROW_EXTERN_C()
Tests whether two types descriptions are equal, i.e.