1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <typelib/typedescription.h>
22 #include <typelib/typeclass.h>
23 #include <uno/sequence2.h>
26 #include <uno/mapping.h>
27 #include <uno/dispatcher.h>
29 #include <osl/interlck.h>
35 extern uno_Sequence g_emptySeq
;
36 extern typelib_TypeDescriptionReference
* g_pVoidType
;
41 typelib_TypeDescriptionReference
* pType
, typelib_TypeDescription
* pTypeDescr
,
42 uno_Mapping
* mapping
)
45 void * pRet
= nullptr;
50 (*mapping
->mapInterface
)(
51 mapping
, &pRet
, p
, reinterpret_cast<typelib_InterfaceTypeDescription
*>(pTypeDescr
) );
55 TYPELIB_DANGER_GET( &pTypeDescr
, pType
);
56 (*mapping
->mapInterface
)(
57 mapping
, &pRet
, p
, reinterpret_cast<typelib_InterfaceTypeDescription
*>(pTypeDescr
) );
58 TYPELIB_DANGER_RELEASE( pTypeDescr
);
64 inline void _acquire( void * p
, uno_AcquireFunc acquire
)
74 (*static_cast<uno_Interface
*>(p
)->acquire
)( static_cast<uno_Interface
*>(p
) );
79 inline void _release( void * p
, uno_ReleaseFunc release
)
89 (*static_cast<uno_Interface
*>(p
)->release
)( static_cast<uno_Interface
*>(p
) );
95 inline sal_uInt32
calcSeqMemSize(
96 sal_Int32 nElementSize
, sal_Int32 nElements
)
99 static_cast<sal_uInt64
>(SAL_SEQUENCE_HEADER_SIZE
) +
100 (static_cast<sal_uInt64
>(nElementSize
) * static_cast<sal_uInt64
>(nElements
));
101 if (nSize
> 0xffffffffU
)
104 return static_cast<sal_uInt32
>(nSize
);
108 inline uno_Sequence
* createEmptySequence()
110 osl_atomic_increment( &g_emptySeq
.nRefCount
);
114 inline typelib_TypeDescriptionReference
* _getVoidType()
118 g_pVoidType
= * ::typelib_static_type_getByTypeClass( typelib_TypeClass_VOID
);
120 ::typelib_typedescriptionreference_acquire( g_pVoidType
);
124 inline void CONSTRUCT_EMPTY_ANY(uno_Any
* pAny
) {
125 pAny
->pType
= _getVoidType();
126 #if OSL_DEBUG_LEVEL > 0
127 pAny
->pData
= reinterpret_cast<void *>(uintptr_t(0xdeadbeef));
133 #define TYPE_ACQUIRE( pType ) \
134 osl_atomic_increment( &(pType)->nRefCount );
137 extern "C" void * binuno_queryInterface(
138 void * pUnoI
, typelib_TypeDescriptionReference
* pDestType
);
141 inline bool _type_equals(
142 typelib_TypeDescriptionReference
const * pType1
, typelib_TypeDescriptionReference
const * pType2
)
145 return (pType1
== pType2
||
146 (pType1
->eTypeClass
== pType2
->eTypeClass
&&
147 pType1
->pTypeName
->length
== pType2
->pTypeName
->length
&&
148 ::rtl_ustr_compare( pType1
->pTypeName
->buffer
, pType2
->pTypeName
->buffer
) == 0));
153 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */