Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UNO_XCURRENTCONTEXT_HPP
2 : #define INCLUDED_COM_SUN_STAR_UNO_XCURRENTCONTEXT_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/XCurrentContext.hdl"
7 :
8 : #include "com/sun/star/uno/XInterface.hpp"
9 : #include "com/sun/star/uno/RuntimeException.hpp"
10 : #include "com/sun/star/uno/Any.hxx"
11 : #include "com/sun/star/uno/Reference.hxx"
12 : #include "com/sun/star/uno/Type.hxx"
13 : #include "cppu/unotype.hxx"
14 : #include "osl/mutex.hxx"
15 : #include "rtl/ustring.hxx"
16 : #include "rtl/instance.hxx"
17 :
18 : namespace com { namespace sun { namespace star { namespace uno { namespace detail {
19 :
20 : struct theXCurrentContextType : public rtl::StaticWithInit< ::com::sun::star::uno::Type *, theXCurrentContextType >
21 : {
22 0 : ::com::sun::star::uno::Type * operator()() const
23 : {
24 0 : ::rtl::OUString sTypeName( "com.sun.star.uno.XCurrentContext" );
25 :
26 : // Start inline typedescription generation
27 0 : typelib_InterfaceTypeDescription * pTD = 0;
28 :
29 : typelib_TypeDescriptionReference * aSuperTypes[1];
30 0 : aSuperTypes[0] = ::cppu::UnoType< ::com::sun::star::uno::Reference< css::uno::XInterface > >::get().getTypeLibType();
31 0 : typelib_TypeDescriptionReference * pMembers[1] = { 0 };
32 0 : ::rtl::OUString sMethodName0( "com.sun.star.uno.XCurrentContext::getValueByName" );
33 : typelib_typedescriptionreference_new( &pMembers[0],
34 : (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
35 0 : sMethodName0.pData );
36 :
37 : typelib_typedescription_newMIInterface(
38 : &pTD,
39 : sTypeName.pData, 0x00000000, 0x0000, 0x0000, 0x00000000, 0x00000000,
40 : 1, aSuperTypes,
41 : 1,
42 0 : pMembers );
43 :
44 0 : typelib_typedescription_register( (typelib_TypeDescription**)&pTD );
45 0 : typelib_typedescriptionreference_release( pMembers[0] );
46 0 : typelib_typedescription_release( (typelib_TypeDescription*)pTD );
47 :
48 0 : return new ::com::sun::star::uno::Type( ::com::sun::star::uno::TypeClass_INTERFACE, sTypeName ); // leaked
49 : }
50 : };
51 :
52 : } } } } }
53 :
54 : namespace com { namespace sun { namespace star { namespace uno {
55 :
56 0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::uno::XCurrentContext const *) {
57 0 : const ::com::sun::star::uno::Type &rRet = *detail::theXCurrentContextType::get();
58 : // End inline typedescription generation
59 : static bool bInitStarted = false;
60 0 : if (!bInitStarted)
61 : {
62 0 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
63 0 : if (!bInitStarted)
64 : {
65 : OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
66 0 : bInitStarted = true;
67 0 : ::cppu::UnoType< css::uno::RuntimeException >::get();
68 :
69 0 : typelib_InterfaceMethodTypeDescription * pMethod = 0;
70 : {
71 : typelib_Parameter_Init aParameters[1];
72 0 : ::rtl::OUString sParamName0( "Name" );
73 0 : ::rtl::OUString sParamType0( "string" );
74 0 : aParameters[0].pParamName = sParamName0.pData;
75 0 : aParameters[0].eTypeClass = (typelib_TypeClass)::com::sun::star::uno::TypeClass_STRING;
76 0 : aParameters[0].pTypeName = sParamType0.pData;
77 0 : aParameters[0].bIn = sal_True;
78 0 : aParameters[0].bOut = sal_False;
79 0 : ::rtl::OUString the_ExceptionName0( "com.sun.star.uno.RuntimeException" );
80 0 : rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData };
81 0 : ::rtl::OUString sReturnType0( "any" );
82 0 : ::rtl::OUString sMethodName0( "com.sun.star.uno.XCurrentContext::getValueByName" );
83 : typelib_typedescription_newInterfaceMethod( &pMethod,
84 : 3, sal_False,
85 : sMethodName0.pData,
86 : (typelib_TypeClass)::com::sun::star::uno::TypeClass_ANY, sReturnType0.pData,
87 : 1, aParameters,
88 0 : 1, the_Exceptions );
89 0 : typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
90 : }
91 0 : typelib_typedescription_release( (typelib_TypeDescription*)pMethod );
92 0 : }
93 : }
94 : else
95 : {
96 : OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
97 : }
98 0 : return rRet;
99 : }
100 :
101 : } } } }
102 :
103 0 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER ::com::sun::star::uno::Reference< css::uno::XCurrentContext > const *) SAL_THROW(()) {
104 0 : return ::cppu::UnoType< ::com::sun::star::uno::Reference< css::uno::XCurrentContext > >::get();
105 : }
106 :
107 0 : ::com::sun::star::uno::Type const & css::uno::XCurrentContext::static_type(SAL_UNUSED_PARAMETER void *) {
108 0 : return ::getCppuType(static_cast< ::com::sun::star::uno::Reference< css::uno::XCurrentContext > * >(0));
109 : }
110 :
111 : #endif // INCLUDED_COM_SUN_STAR_UNO_XCURRENTCONTEXT_HPP
|