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 <osl/diagnose.h>
23 #include <cppuhelper/servicefactory.hxx>
24 #include <cppuhelper/weak.hxx>
25 #include <cppuhelper/implbase1.hxx>
27 #include <ModuleA/XInterface1.hpp>
28 #include <ModuleC/XInterfaceA.hpp>
29 #include <ModuleC/XInterfaceB.hpp>
30 #include <ModuleC/ModuleC.hpp>
32 #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
33 #include <com/sun/star/lang/XComponent.hpp>
34 #include <com/sun/star/reflection/XIdlReflection.hpp>
35 #include <com/sun/star/reflection/XIdlField2.hpp>
36 #include <com/sun/star/beans/XPropertySet.hpp>
37 #include <com/sun/star/registry/XSimpleRegistry.hpp>
38 #include <com/sun/star/registry/XImplementationRegistration.hpp>
40 #include <rtl/ustrbuf.hxx>
46 using namespace ModuleA
;
47 using namespace ModuleB
;
48 using namespace ModuleC
;
49 using namespace ModuleA::ModuleB
;
50 using namespace com::sun::star
;
51 using namespace com::sun::star::uno
;
52 using namespace com::sun::star::lang
;
53 using namespace com::sun::star::beans
;
54 using namespace com::sun::star::registry
;
55 using namespace com::sun::star::reflection
;
56 using namespace com::sun::star::container
;
59 //==================================================================================================
60 class OInterfaceA
: public WeakImplHelper1
< XInterfaceA
>
64 virtual void SAL_CALL
methodA(void) throw (RuntimeException
)
67 virtual void SAL_CALL
methodB(sal_Int16
/*aShort*/) throw (RuntimeException
)
69 virtual Sequence
< StructB
> SAL_CALL
methodC(const StructC
& /*aStructC*/, StructA
& /*aStructA*/) throw (RuntimeException
)
70 { return Sequence
< StructB
>(); }
73 //==================================================================================================
74 static inline bool uik_equals( const Uik
& rUik1
, const Uik
& rUik2
)
76 return (rUik1
.m_Data1
== rUik2
.m_Data1
&&
77 rUik1
.m_Data2
== rUik2
.m_Data2
&&
78 rUik1
.m_Data3
== rUik2
.m_Data3
&&
79 rUik1
.m_Data4
== rUik2
.m_Data4
&&
80 rUik1
.m_Data5
== rUik2
.m_Data5
);
82 //==================================================================================================
83 static sal_Bool
test_corefl( const Reference
< XIdlReflection
> & xRefl
)
85 Reference
< XIdlClass
> xClass
;
86 Reference
< XHierarchicalNameAccess
> xHNameAccess( xRefl
, UNO_QUERY
);
87 OSL_ENSURE(xHNameAccess
.is(), "### cannot get XHierarchicalNameAccess!" );
89 OSL_ENSURE(xRefl
->forName(OUString("ModuleA.StructA"))->getName() == OUString("ModuleA.StructA"), "test_RegCoreReflection(): error 2b");
90 OSL_ENSURE(xRefl
->forName(OUString("ModuleA.ExceptionB"))->getTypeClass() == TypeClass_EXCEPTION
, "test_RegCoreReflection(): error 2c");
91 OSL_ENSURE(xRefl
->forName(OUString("ModuleA.ModuleB.EnumA")).is(), "test_RegCoreReflection(): error 2e");
94 OSL_ENSURE(*(const sal_Bool
*)xHNameAccess
->getByHierarchicalName(OUString("ModuleC.aConstBoolean")).getValue() == aConstBoolean
, "test_RegCoreReflection(): error 4c");
95 OSL_ENSURE(*(const sal_Int8
*)xHNameAccess
->getByHierarchicalName(OUString("ModuleC.aConstByte")).getValue() == aConstByte
, "test_RegCoreReflection(): error 4e");
96 OSL_ENSURE(xHNameAccess
->getByHierarchicalName(OUString("ModuleC.aConstShort")) == aConstShort
, "test_RegCoreReflection(): error 4g");
97 OSL_ENSURE(xHNameAccess
->getByHierarchicalName(OUString("ModuleC.aConstUShort")) == aConstUShort
, "test_RegCoreReflection(): error 4i");
98 OSL_ENSURE(xHNameAccess
->getByHierarchicalName(OUString("ModuleC.aConstLong")) == aConstLong
, "test_RegCoreReflection(): error 4k");
99 OSL_ENSURE(xHNameAccess
->getByHierarchicalName(OUString("ModuleC.aConstULong")) == aConstULong
, "test_RegCoreReflection(): error 4m");
103 xClass
= xRefl
->forName(OUString("ModuleA.ModuleB.EnumA"));
105 OSL_ENSURE(xClass
.is(), "test_RegCoreReflection(): error 5");
107 Sequence
<Reference
< XIdlField
> > fields
= xClass
->getFields();
110 (fields
.getLength() == 3) &&
111 (fields
.getArray()[0]->getName() == OUString( "VAL_1" )) &&
112 (*(EnumA
*)fields
.getArray()[0]->get(Any()).getValue() == EnumA_VAL_1
) &&
113 (fields
.getArray()[1]->getName() == OUString( "VAL_2" )) &&
114 (*(EnumA
*)fields
.getArray()[1]->get(Any()).getValue() == EnumA_VAL_2
) &&
115 (fields
.getArray()[2]->getName() == OUString( "VAL_3" )) &&
116 (*(EnumA
*)fields
.getArray()[2]->get(Any()).getValue() == EnumA_VAL_3
),
117 "test_RegCoreReflection(): error 6");
122 Reference
< XIdlClass
> xA
= xRefl
->forName( OUString("ModuleC.XInterfaceB") );
124 xClass
= xRefl
->forName(OUString("ModuleC.XInterfaceB"));
126 OSL_ENSURE(xClass
== xA
, "test_RegCoreReflection(): error 7");
127 OSL_ENSURE(xClass
.is(), "test_RegCoreReflection(): error 7a");
129 typelib_TypeDescription
* pTD
= 0;
130 OUString
aModuleName( "ModuleC.XInterfaceB" );
131 typelib_typedescription_getByName( &pTD
, aModuleName
.pData
);
132 OSL_ENSURE( pTD
, "### cannot get typedescription for ModuleC.XInterfaceB!" );
134 OSL_ENSURE( uik_equals( *(Uik
*)&((typelib_InterfaceTypeDescription
*)pTD
)->aUik
,
136 "test_RegCoreReflection(): error 8" );
137 typelib_typedescription_release( pTD
);
139 OSL_ENSURE(xClass
->getSuperclasses().getLength() == 1, "test_RegCoreReflection(): error 9");
140 OSL_ENSURE(xClass
->getSuperclasses().getArray()[0]->getName() == OUString("ModuleC.XInterfaceA"), "test_RegCoreReflection(): error 10");
141 OSL_ENSURE(xClass
->getMethods().getLength() == 7, "test_RegCoreReflection(): error 11");
142 OSL_ENSURE(xA
->getMethods().getLength() == 7, "test_RegCoreReflection(): error 11a");
143 OSL_ENSURE(xClass
->getMethods().getArray()[3]->getName() == OUString("methodA"), "test_RegCoreReflection(): 12");
144 OSL_ENSURE(xClass
->getMethods().getArray()[3]->getReturnType()->getTypeClass() == TypeClass_VOID
, "test_RegCoreReflection(): error 13");
145 OSL_ENSURE(xClass
->getMethods().getArray()[3]->getParameterTypes().getLength() == 0, "test_RegCoreReflection(): error 14");
146 OSL_ENSURE(xClass
->getMethods().getArray()[3]->getExceptionTypes().getLength() == 0, "test_RegCoreReflection(): error 15");
147 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getName() == OUString( "methodB" ), "test_RegCoreReflection(): error 16");
148 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getMode() == MethodMode_ONEWAY
, "test_RegCoreReflection(): error 16a");
149 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getReturnType()->getTypeClass() == TypeClass_VOID
, "test_RegCoreReflection(): error 16");
150 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getParameterTypes().getLength() == 1, "test_RegCoreReflection(): error 17");
151 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getParameterTypes().getArray()[0]->getTypeClass() == TypeClass_SHORT
, "test_RegCoreReflection(): error 18");
152 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getParameterInfos().getArray()[0].aName
== OUString( "aShort" ), "test_RegCoreReflection(): error 18a");
153 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getParameterInfos().getArray()[0].aType
== xRefl
->forName( OUString( "short" ) ), "test_RegCoreReflection(): error 18b");
154 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getParameterInfos().getArray()[0].aMode
== ParamMode_IN
, "test_RegCoreReflection(): error 18c");
155 OSL_ENSURE(xClass
->getMethods().getArray()[4]->getExceptionTypes().getLength() == 0, "test_RegCoreReflection(): error 19");
156 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getName() == OUString("methodC"), "test_RegCoreReflection(): error 20");
157 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getMode() == MethodMode_TWOWAY
, "test_RegCoreReflection(): error 20a");
158 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getReturnType()->getTypeClass() == TypeClass_SEQUENCE
, "test_RegCoreReflection(): error 21");
159 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getReturnType()->getComponentType()->getTypeClass() == TypeClass_STRUCT
, "test_RegCoreReflection(): error 22");
160 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getReturnType()->getComponentType()->getName() == OUString("ModuleA.StructB"), "test_RegCoreReflection(): error 23");
161 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getParameterTypes().getLength() == 2, "test_RegCoreReflection(): error 24");
162 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getParameterTypes().getArray()[0]->getTypeClass() == TypeClass_STRUCT
, "test_RegCoreReflection(): error 25");
163 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getParameterTypes().getArray()[0]->getName() == OUString("ModuleA.StructC"), "test_RegCoreReflection(): error 26");
164 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getParameterTypes().getArray()[1]->getTypeClass() == TypeClass_STRUCT
, "test_RegCoreReflection(): error 27");
165 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getParameterTypes().getArray()[1]->getName() == OUString("ModuleA.StructA"), "test_RegCoreReflection(): error 28");
166 OSL_ENSURE(xClass
->getMethods().getArray()[5]->getExceptionTypes().getLength() == 0, "test_RegCoreReflection(): error 29");
167 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getName() == OUString("methodD"), "test_RegCoreReflection(): error 30");
168 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getReturnType()->getTypeClass() == TypeClass_INTERFACE
, "test_RegCoreReflection(): error 31");
169 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getReturnType()->getName() == OUString("ModuleC.XInterfaceA"), "test_RegCoreReflection(): error 32");
170 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getParameterTypes().getLength() == 1, "test_RegCoreReflection(): error 33");
171 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getParameterTypes().getArray()[0]->getTypeClass() == TypeClass_ENUM
, "test_RegCoreReflection(): error 34");
172 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getParameterTypes().getArray()[0]->getName() == OUString("ModuleA.ModuleB.EnumA"), "test_RegCoreReflection(): error 35");
173 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getLength() == 3, "test_RegCoreReflection(): error 36");
174 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[0]->getTypeClass() == TypeClass_EXCEPTION
, "test_RegCoreReflection(): error 37");
175 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[0]->getName() == OUString("ModuleA.ExceptionA"), "test_RegCoreReflection(): error 38");
176 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[1]->getTypeClass() == TypeClass_EXCEPTION
, "test_RegCoreReflection(): error 38");
177 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[1]->getName() == OUString("ModuleA.ExceptionB"), "test_RegCoreReflection(): error 39");
178 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getTypeClass() == TypeClass_EXCEPTION
, "test_RegCoreReflection(): error 40");
179 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getName() == OUString("ModuleA.ExceptionC"), "test_RegCoreReflection(): error 41");
180 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getFields().getLength() == 3, "test_RegCoreReflection(): error 42");
181 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getFields().getArray()[0]->getType()->getTypeClass() == TypeClass_BOOLEAN
, "test_RegCoreReflection(): error 43");
182 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getFields().getArray()[0]->getType()->getName() == OUString("boolean"), "test_RegCoreReflection(): error 43a");
183 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getFields().getArray()[1]->getType()->getTypeClass() == TypeClass_STRUCT
, "test_RegCoreReflection(): error 44");
184 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getFields().getArray()[1]->getType()->getName() == OUString("ModuleA.StructC"), "test_RegCoreReflection(): error 45");
185 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getFields().getArray()[2]->getType()->getTypeClass() == TypeClass_INTERFACE
, "test_RegCoreReflection(): error 46");
186 OSL_ENSURE(xClass
->getMethods().getArray()[6]->getExceptionTypes().getArray()[2]->getFields().getArray()[2]->getType()->getName() == OUString("ModuleA.XInterface1"), "test_RegCoreReflection(): error 47");
188 // SequenceReflections
190 OSL_ENSURE(xRefl
->forName( OUString("[]ModuleA.StructA") )->getTypeClass() == TypeClass_SEQUENCE
, "test_RegCoreReflection(): error 48");
191 OSL_ENSURE(xRefl
->forName( OUString("[]ModuleA.StructA") )->getComponentType().is(), "test_RegCoreReflection(): error 49");
192 OSL_ENSURE(xRefl
->forName( OUString("[][]ModuleA.StructA") )->getComponentType()->getComponentType()->getName() == OUString("ModuleA.StructA"), "test_RegCoreReflection(): error 50");
193 OSL_ENSURE(xRefl
->forName( OUString("[]com.sun.star.uno.XInterface") ) == xRefl
->forName(OUString( "ModuleA.StructC" ))->getField(OUString("aInterfaceSeq"))->getType(), "test_RegCoreReflection(): error 51");
196 aStructC
.aLong
= aConstLong
;
197 aStructC
.aShort
= aConstShort
;
198 aStructC
.aFloat
= aConstFloat
;
199 aStructC
.aDouble
= aConstDouble
;
200 aStructC
.aInterfaceSeq
= Sequence
<Reference
<XInterface
> >();
204 xRefl
->forName(OUString("ModuleA.StructC"))->getField(OUString("aInterfaceSeq"))->getType()->createObject(aAny
);
206 OSL_ENSURE(aAny
.getValueType() == ::getCppuType( (const Sequence
<Reference
< XInterface
> > *)0 ), "test_RegCoreReflection(): error 51a");
208 Any
aStructAny(&aStructC
, ::getCppuType( (const StructC
*) 0 ));
210 sal_Int32 nLong
= aConstLong
* 2;
211 aAny
.setValue( &nLong
, ::getCppuType( (const sal_Int32
*)0 ) );
213 OSL_ENSURE(*(sal_Int32
*)xRefl
->forName(OUString( "ModuleA.StructA" ))->getField(OUString( "aLong" ))->get(
214 Any(&aStructC
, ::getCppuType( (const StructC
*)0 ))).getValue() == aConstLong
, "test_RegCoreReflection(): error 52");
215 OSL_ENSURE(xRefl
->forName(OUString("ModuleA.StructA"))->getField(OUString( "aLong" ))->getAccessMode() == FieldAccessMode_READWRITE
, "test_RegCoreReflection(): error 52a");
216 Reference
< XIdlField2
> rField ( xRefl
->forName(OUString( "ModuleA.StructC" ))->getField(OUString( "aLong" )) , UNO_QUERY
);
217 rField
->set(aStructAny
, aAny
);
218 OSL_ENSURE(*(sal_Int32
*)xRefl
->forName(OUString("ModuleA.StructB"))->getField(OUString( "aLong" ))->get(aStructAny
).getValue() == *(sal_Int32
*)aAny
.getValue(), "test_RegCoreReflection(): error 53");
220 xRefl
->forName( OUString("[]ModuleA.StructA") )->createObject(aAny
);
222 OSL_ENSURE( aAny
.getValueTypeName() == "[]ModuleA.StructA", "test_RegCoreReflection(): error 54" );
223 xRefl
->forName(OUString("[][]ModuleA.StructA"))->createObject(aAny
);
225 OSL_ENSURE( aAny
.getValueTypeName() == "[][]ModuleA.StructA", "test_RegCoreReflection(): error 56" );
227 OSL_ENSURE(xRefl
->forName(OUString("[][][]unsigned long"))->getComponentType()->getComponentType()->getComponentType()->getTypeClass() == TypeClass_UNSIGNED_LONG
, "test_RegCoreReflection(): error 62");
231 fprintf( stderr
, "%1\n" );
232 Any bla
= xRefl
->forName(OUString("ModuleA.StructC"))->getField(OUString("aString"))->get(Any());
233 OSL_ENSURE(sal_False
, "test_RegCoreReflection(): error 63");
236 catch (IllegalArgumentException
&)
242 fprintf( stderr
, "%2\n" );
246 rField
= Reference
< XIdlField2
> ( xRefl
->forName(OUString("ModuleA.StructC"))->getField(OUString("aString")) , UNO_QUERY
);
247 rField
->set( blup
, gulp
);
248 OSL_ENSURE(sal_False
, "test_RegCoreReflection(): error 64");
251 catch (IllegalArgumentException
&)
257 fprintf( stderr
, "%3\n" );
262 rField
= Reference
< XIdlField2
> (
263 xRefl
->forName(OUString("ModuleA.StructC"))->getField(OUString("aString")) , UNO_QUERY
);
264 xRefl
->forName(OUString("ModuleA.StructC"))->getField(OUString("aString"))->set(blup
, gulp
);
265 OSL_ENSURE(sal_False
, "test_RegCoreReflection(): error 65");
268 catch (IllegalArgumentException
&)
273 gulp
<<= OUString(OUString("Test"));
276 xRefl
->forName(OUString("ModuleA.StructC"))->getField(OUString("aString"))->set(blup
, gulp
);
278 Reference
< XInterfaceA
> xAI
= new OInterfaceA();
282 Sequence
< Any
> params
;
283 fprintf( stderr
, "%4\n" );
287 Any bla
= xRefl
->forName(OUString("ModuleC.XInterfaceA"))->getMethod(OUString("methodC"))->invoke(a
, params
);
288 OSL_ENSURE(sal_False
, "test_RegCoreReflection(): error 66");
291 catch (IllegalArgumentException
&)
298 Sequence
< Any
> params(2);
300 params
.getArray()[0].setValue(&aStructC
, ::getCppuType( (const StructC
*)0 ));
301 params
.getArray()[1].setValue(&aStructC
, ::getCppuType( (const StructC
*)0 ));
305 Any bla
= xRefl
->forName(OUString("ModuleC.XInterfaceA"))->getMethod(OUString("methodC"))->invoke(a
, params
);
309 Sequence
< Any
> params(2);
311 params
.getArray()[0].setValue(&aStructA
, ::getCppuType( (const StructA
*)0 ));
312 params
.getArray()[1].setValue(&aStructA
, ::getCppuType( (const StructA
*)0 ));
316 Any bla
= xRefl
->forName(OUString("ModuleC.XInterfaceA"))->getMethod(OUString("methodC"))->invoke(a
, params
);
317 OSL_ENSURE(sal_False
, "test_RegCoreReflection(): error 67");
320 catch (IllegalArgumentException
&)
324 Sequence
< Any
> params(2);
326 params
.getArray()[0].setValue(&aStructC
, ::getCppuType( (const StructC
*)0 ));
327 params
.getArray()[1].setValue(&aStructA
, ::getCppuType( (const StructA
*)0 ));
331 bool result
= (xRefl
->forName(OUString("ModuleC.XInterfaceA"))->getMethod(OUString("methodC"))->invoke(a
, params
).getValueType()
332 == ::getCppuType( (const Sequence
<StructB
> *)0 )); (void)result
;
333 OSL_ENSURE(result
, "test_RegCoreReflection(): error 68");
340 sal_Bool bSucc
= sal_False
;
343 OUString
aLibName( "reflection.uno" SAL_DLLEXTENSION
);
345 Reference
< XMultiServiceFactory
> xMgr(
346 createRegistryServiceFactory(
347 OUString( "stoctest.rdb" ) ) );
348 Reference
< XComponentContext
> xContext
;
349 Reference
< beans::XPropertySet
> xProps( xMgr
, UNO_QUERY
);
350 OSL_ASSERT( xProps
.is() );
351 xProps
->getPropertyValue(
352 OUString( "DefaultContext" ) ) >>=
354 OSL_ASSERT( xContext
.is() );
356 Reference
< XIdlReflection
> xRefl
;
357 xContext
->getValueByName(
358 OUString( "/singletons/com.sun.star.reflection.theCoreReflection") )
361 xRefl
.is(), "### CoreReflection singleton not accessible!?" );
363 bSucc
= test_corefl( xRefl
);
365 Reference
< XComponent
>( xContext
, UNO_QUERY
)->dispose();
367 catch (const Exception
& rExc
)
369 OSL_FAIL( "### exception occurred!" );
371 OUStringToOString( rExc
.Message
, RTL_TEXTENCODING_ASCII_US
) );
372 OSL_TRACE( "### exception occurred: " );
373 OSL_TRACE( "%s", aMsg
.getStr() );
377 printf( "testcorefl %s !\n", (bSucc
? "succeeded" : "failed") );
378 return (bSucc
? 0 : -1);
381 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */