Files
libreoffice/cppu/source/uno/data.cxx

466 lines
14 KiB
C++
Raw Normal View History

2000-09-18 14:29:57 +00:00
/*************************************************************************
*
* $RCSfile: data.cxx,v $
*
2001-10-12 15:21:02 +00:00
* $Revision: 1.12 $
2000-09-18 14:29:57 +00:00
*
2001-10-12 15:21:02 +00:00
* last change: $Author: dbo $ $Date: 2001-10-12 16:21:02 $
2000-09-18 14:29:57 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#include "constr.hxx"
#include "destr.hxx"
#include "copy.hxx"
#include "assign.hxx"
#include "eq.hxx"
using namespace cppu;
using namespace rtl;
using namespace com::sun::star::uno;
namespace cppu
{
2001-08-22 10:07:10 +00:00
uno_Sequence g_emptySeq = { 1, 0, { 0 } }; // static empty sequence
2001-08-22 10:03:23 +00:00
typelib_TypeDescriptionReference * g_pVoidType = 0;
typelib_TypeDescription * g_pQITD = 0;
2000-09-18 14:29:57 +00:00
//==================================================================================================
void defaultConstructStruct(
void * pMem,
typelib_CompoundTypeDescription * pCompType )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
__defaultConstructStruct( pMem, pCompType );
}
//==================================================================================================
void copyConstructStruct(
void * pDest, void * pSource,
typelib_CompoundTypeDescription * pTypeDescr,
uno_AcquireFunc acquire, uno_Mapping * mapping )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
__copyConstructStruct( pDest, pSource, pTypeDescr, acquire, mapping );
}
//==================================================================================================
void destructStruct(
void * pValue,
typelib_CompoundTypeDescription * pTypeDescr,
uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
__destructStruct( pValue, pTypeDescr, release );
}
//==================================================================================================
sal_Bool equalStruct(
void * pDest, void *pSource,
typelib_CompoundTypeDescription * pTypeDescr,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
return __equalStruct( pDest, pSource, pTypeDescr, queryInterface, release );
}
//==================================================================================================
sal_Bool assignStruct(
void * pDest, void * pSource,
typelib_CompoundTypeDescription * pTypeDescr,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
return __assignStruct( pDest, pSource, pTypeDescr, queryInterface, acquire, release );
}
//==================================================================================================
void copyConstructSequence(
uno_Sequence ** ppDest, uno_Sequence * pSource,
typelib_TypeDescriptionReference * pElementType,
uno_AcquireFunc acquire, uno_Mapping * mapping )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
__copyConstructSequence( ppDest, pSource, pElementType, acquire, mapping );
}
//==================================================================================================
void destructSequence(
uno_Sequence ** ppSequence,
typelib_TypeDescriptionReference * pElementType,
uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
uno_Sequence * pSequence = *ppSequence;
OSL_ASSERT( pSequence );
if (! ::osl_decrementInterlockedCount( &pSequence->nRefCount ))
{
if (pSequence->nElements)
{
__destructElements(
pSequence->elements, pElementType,
0, pSequence->nElements, release );
2000-09-18 14:29:57 +00:00
}
::rtl_freeMemory( pSequence );
}
}
//==================================================================================================
sal_Bool equalSequence(
uno_Sequence * pDest, uno_Sequence * pSource,
typelib_TypeDescriptionReference * pElementType,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW( () )
2000-09-18 14:29:57 +00:00
{
return __equalSequence( pDest, pSource, pElementType, queryInterface, release );
}
extern "C"
{
//##################################################################################################
void SAL_CALL uno_type_constructData(
2000-09-18 14:29:57 +00:00
void * pMem, typelib_TypeDescriptionReference * pType )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__defaultConstructData( pMem, pType, 0 );
}
//##################################################################################################
void SAL_CALL uno_constructData(
2000-09-18 14:29:57 +00:00
void * pMem, typelib_TypeDescription * pTypeDescr )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__defaultConstructData( pMem, pTypeDescr->pWeakRef, pTypeDescr );
}
//##################################################################################################
void SAL_CALL uno_type_destructData(
2000-09-18 14:29:57 +00:00
void * pValue, typelib_TypeDescriptionReference * pType,
uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__destructData( pValue, pType, 0, release );
}
//##################################################################################################
void SAL_CALL uno_destructData(
2000-09-18 14:29:57 +00:00
void * pValue,
typelib_TypeDescription * pTypeDescr,
uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__destructData( pValue, pTypeDescr->pWeakRef, pTypeDescr, release );
}
//##################################################################################################
void SAL_CALL uno_type_copyData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescriptionReference * pType,
uno_AcquireFunc acquire )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__copyConstructData( pDest, pSource, pType, 0, acquire, 0 );
}
//##################################################################################################
void SAL_CALL uno_copyData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr,
uno_AcquireFunc acquire )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__copyConstructData( pDest, pSource, pTypeDescr->pWeakRef, pTypeDescr, acquire, 0 );
}
//##################################################################################################
void SAL_CALL uno_type_copyAndConvertData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescriptionReference * pType,
uno_Mapping * mapping )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__copyConstructData( pDest, pSource, pType, 0, 0, mapping );
}
//##################################################################################################
void SAL_CALL uno_copyAndConvertData(
2000-09-18 14:29:57 +00:00
void * pDest, void * pSource,
typelib_TypeDescription * pTypeDescr,
uno_Mapping * mapping )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
__copyConstructData( pDest, pSource, pTypeDescr->pWeakRef, pTypeDescr, 0, mapping );
}
//##################################################################################################
sal_Bool SAL_CALL uno_type_equalData(
2000-09-18 14:29:57 +00:00
void * pVal1, typelib_TypeDescriptionReference * pVal1Type,
void * pVal2, typelib_TypeDescriptionReference * pVal2Type,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
return __equalData(
pVal1, pVal1Type, 0,
pVal2, pVal2Type, 0,
queryInterface, release );
2000-09-18 14:29:57 +00:00
}
//##################################################################################################
sal_Bool SAL_CALL uno_equalData(
2000-09-18 14:29:57 +00:00
void * pVal1, typelib_TypeDescription * pVal1TD,
void * pVal2, typelib_TypeDescription * pVal2TD,
uno_QueryInterfaceFunc queryInterface, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
return __equalData(
pVal1, pVal1TD->pWeakRef, pVal1TD,
pVal2, pVal2TD->pWeakRef, pVal2TD,
queryInterface, release );
2000-09-18 14:29:57 +00:00
}
//##################################################################################################
sal_Bool SAL_CALL uno_type_assignData(
2000-09-18 14:29:57 +00:00
void * pDest, typelib_TypeDescriptionReference * pDestType,
void * pSource, typelib_TypeDescriptionReference * pSourceType,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
return __assignData(
pDest, pDestType, 0,
pSource, pSourceType, 0,
queryInterface, acquire, release );
2000-09-18 14:29:57 +00:00
}
//##################################################################################################
sal_Bool SAL_CALL uno_assignData(
2000-09-18 14:29:57 +00:00
void * pDest, typelib_TypeDescription * pDestTD,
void * pSource, typelib_TypeDescription * pSourceTD,
uno_QueryInterfaceFunc queryInterface, uno_AcquireFunc acquire, uno_ReleaseFunc release )
2001-03-09 11:10:57 +00:00
SAL_THROW_EXTERN_C()
2000-09-18 14:29:57 +00:00
{
return __assignData(
pDest, pDestTD->pWeakRef, pDestTD,
pSource, pSourceTD->pWeakRef, pSourceTD,
queryInterface, acquire, release );
2000-09-18 14:29:57 +00:00
}
}
//##################################################################################################
//##################################################################################################
//##################################################################################################
#ifdef _DEBUG
2001-03-09 11:10:57 +00:00
2001-10-12 14:43:49 +00:00
#include <stdio.h>
2000-09-18 14:29:57 +00:00
#ifdef SAL_W32
# pragma pack(push, 8)
#elif defined(SAL_OS2)
# pragma pack(8)
#endif
2001-10-12 14:43:49 +00:00
#define BINTEST_VERIFY( c ) \
if (! (c)) { fprintf( stderr, "### binary compatibility test failed: " #c " [line %d]!!!\n", __LINE__ ); abort(); }
#ifdef DEBUG
#define BINTEST_VERIFYSIZE( s, n ) \
fprintf( stderr, "> sizeof( " #s " ) = %d\n", sizeof(s) ); \
if (sizeof(s) != n) { fprintf( stderr, "### sizeof( " #s " ) = %d instead of expected %d!!!\n", sizeof(s), n ); abort(); }
#else
#define BINTEST_VERIFYSIZE( s, n ) \
if (sizeof(s) != n) { fprintf( stderr, "### sizeof( " #s " ) = %d instead of expected %d!!!\n", sizeof(s), n ); abort(); }
#endif
2001-10-12 09:55:46 +00:00
#define OFFSET_OF( s, m ) ((sal_Size)((char *)&((s *)16)->m -16))
2001-10-12 10:05:23 +00:00
struct C
{
sal_Int16 d;
};
struct C2 : public C
{
2001-10-12 15:21:02 +00:00
sal_Int32 e CPPU_GNU3_ALIGN(2);
2001-10-12 14:43:49 +00:00
};
struct C3 : public C2
{
2001-10-12 15:21:02 +00:00
double d CPPU_GNU3_ALIGN(4);
2001-10-12 14:43:49 +00:00
};
struct C4 : public C3
{
2001-10-12 15:21:02 +00:00
C3 c3 CPPU_GNU3_ALIGN(8);
2001-10-12 14:43:49 +00:00
sal_Bool b;
};
struct C5
{
C4 c4;
sal_Bool b;
2001-10-12 10:05:23 +00:00
};
2001-10-12 09:55:46 +00:00
struct D
{
sal_Int16 d;
sal_Int32 e;
};
struct E
{
sal_Bool a;
sal_Bool b;
sal_Bool c;
sal_Int16 d;
sal_Int32 e;
};
2000-09-18 14:29:57 +00:00
struct M
{
sal_Int32 n;
sal_Int16 o;
};
struct N : public M
{
2001-10-12 15:21:02 +00:00
sal_Int16 p CPPU_GNU3_ALIGN(4);
2001-10-12 14:43:49 +00:00
};
struct N2
{
M m;
2000-09-18 14:29:57 +00:00
sal_Int16 p;
};
struct O : public M
{
2001-10-12 15:21:02 +00:00
double p CPPU_GNU3_ALIGN(4);
};
struct O2 : public O
{
double p CPPU_GNU3_ALIGN(8);
2000-09-18 14:29:57 +00:00
};
2001-03-09 11:10:57 +00:00
struct P : public N
{
2001-10-12 15:21:02 +00:00
double p CPPU_GNU3_ALIGN(4);
2001-03-09 11:10:57 +00:00
};
2000-09-18 14:29:57 +00:00
struct empty
{
};
struct second : public empty
{
int a;
};
2001-10-12 15:21:02 +00:00
struct AlignSize_Impl
{
sal_Int16 nInt16;
double dDouble;
};
2000-09-18 14:29:57 +00:00
class BinaryCompatible_Impl
{
public:
BinaryCompatible_Impl();
};
BinaryCompatible_Impl::BinaryCompatible_Impl()
{
2001-10-12 15:21:02 +00:00
#ifdef DEBUG
fprintf( stderr, "> nMaxAlignment = %d\n", OFFSET_OF( AlignSize_Impl, dDouble ) );
#endif
// sequence
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( (SAL_SEQUENCE_HEADER_SIZE % 8) == 0 );
// enum
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( sizeof( TypeClass ) == sizeof( sal_Int32 ) );
// any
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( sizeof(void *) >= sizeof(sal_Int32) );
BINTEST_VERIFY( sizeof( Any ) == sizeof( uno_Any ) );
BINTEST_VERIFY( sizeof( Any ) == sizeof( void * ) * 3 );
BINTEST_VERIFY( OFFSET_OF( Any, pType ) == 0 );
BINTEST_VERIFY( OFFSET_OF( Any, pData ) == 4 );
BINTEST_VERIFY( OFFSET_OF( Any, pReserved ) == 8 );
// interface
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( sizeof( Reference< XInterface > ) == sizeof( XInterface * ) );
// string
2001-10-12 14:43:49 +00:00
BINTEST_VERIFY( sizeof( OUString ) == sizeof( rtl_uString * ) );
// struct
2001-10-12 14:43:49 +00:00
BINTEST_VERIFYSIZE( M, 8 );
BINTEST_VERIFY( OFFSET_OF( M, o ) == 4 );
BINTEST_VERIFYSIZE( N, 12 );
BINTEST_VERIFY( OFFSET_OF( N, p ) == 8 );
BINTEST_VERIFYSIZE( N2, 12 );
BINTEST_VERIFY( OFFSET_OF( N2, p ) == 8 );
BINTEST_VERIFYSIZE( O, 16 );
BINTEST_VERIFYSIZE( D, 8 );
BINTEST_VERIFY( OFFSET_OF( D, e ) == 4 );
BINTEST_VERIFY( OFFSET_OF( E, d ) == 4 );
BINTEST_VERIFY( OFFSET_OF( E, e ) == 8 );
BINTEST_VERIFYSIZE( C, 2 );
BINTEST_VERIFYSIZE( C2, 8 );
BINTEST_VERIFY( OFFSET_OF( C2, e ) == 4 );
BINTEST_VERIFYSIZE( C3, 16 );
BINTEST_VERIFY( OFFSET_OF( C3, d ) == 8 );
BINTEST_VERIFYSIZE( C4, 40 );
BINTEST_VERIFY( OFFSET_OF( C4, c3 ) == 16 );
BINTEST_VERIFY( OFFSET_OF( C4, b ) == 32 );
BINTEST_VERIFYSIZE( C5, 48 );
BINTEST_VERIFY( OFFSET_OF( C5, c4 ) == 0 );
BINTEST_VERIFY( OFFSET_OF( C5, b ) == 40 );
2001-10-12 15:21:02 +00:00
BINTEST_VERIFYSIZE( O2, 24 );
BINTEST_VERIFY( OFFSET_OF( O2, p ) == 16 );
2001-03-09 11:10:57 +00:00
#ifdef SAL_W32
2001-10-12 14:43:49 +00:00
BINTEST_VERIFYSIZE( P, 24 );
2001-03-09 11:10:57 +00:00
#endif
2000-09-18 14:29:57 +00:00
#ifndef __GNUC__
2001-10-12 14:43:49 +00:00
BINTEST_VERIFYSIZE( second, sizeof( int ) );
#endif
}
2000-09-18 14:29:57 +00:00
#ifdef SAL_W32
# pragma pack(pop)
#elif defined(SAL_OS2)
# pragma pack()
#endif
static BinaryCompatible_Impl aTest;
2001-03-09 11:10:57 +00:00
2000-09-18 14:29:57 +00:00
#endif
}