LCOV - code coverage report
Current view: top level - libreoffice/solver/unxlngi6.pro/inc/udkapi/com/sun/star/container - XSet.hpp (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 79 79 100.0 %
Date: 2012-12-27 Functions: 4 4 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : #ifndef INCLUDED_COM_SUN_STAR_CONTAINER_XSET_HPP
       2             : #define INCLUDED_COM_SUN_STAR_CONTAINER_XSET_HPP
       3             : 
       4             : #include "sal/config.h"
       5             : 
       6             : #include "com/sun/star/container/XSet.hdl"
       7             : 
       8             : #include "com/sun/star/uno/RuntimeException.hpp"
       9             : #include "com/sun/star/container/NoSuchElementException.hpp"
      10             : #include "com/sun/star/container/ElementExistException.hpp"
      11             : #include "com/sun/star/lang/IllegalArgumentException.hpp"
      12             : #include "com/sun/star/container/XEnumerationAccess.hpp"
      13             : #include "com/sun/star/uno/Any.hxx"
      14             : #include "com/sun/star/uno/Reference.hxx"
      15             : #include "com/sun/star/uno/Type.hxx"
      16             : #include "cppu/unotype.hxx"
      17             : #include "osl/mutex.hxx"
      18             : #include "rtl/instance.hxx"
      19             : #include "sal/types.h"
      20             : 
      21             : namespace com { namespace sun { namespace star { namespace container { namespace detail {
      22             : 
      23             : struct theXSetType : public rtl::StaticWithInit< ::com::sun::star::uno::Type *, theXSetType >
      24             : {
      25          30 :     ::com::sun::star::uno::Type * operator()() const
      26             :     {
      27          30 :         ::rtl::OUString sTypeName( "com.sun.star.container.XSet" );
      28             : 
      29             :         // Start inline typedescription generation
      30          30 :         typelib_InterfaceTypeDescription * pTD = 0;
      31             : 
      32             :         typelib_TypeDescriptionReference * aSuperTypes[1];
      33          30 :         aSuperTypes[0] = ::cppu::UnoType< ::com::sun::star::uno::Reference< css::container::XEnumerationAccess > >::get().getTypeLibType();
      34          30 :         typelib_TypeDescriptionReference * pMembers[3] = { 0,0,0 };
      35          30 :         ::rtl::OUString sMethodName0( "com.sun.star.container.XSet::has" );
      36             :         typelib_typedescriptionreference_new( &pMembers[0],
      37             :                                               (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
      38          30 :                                               sMethodName0.pData );
      39          30 :         ::rtl::OUString sMethodName1( "com.sun.star.container.XSet::insert" );
      40             :         typelib_typedescriptionreference_new( &pMembers[1],
      41             :                                               (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
      42          30 :                                               sMethodName1.pData );
      43          30 :         ::rtl::OUString sMethodName2( "com.sun.star.container.XSet::remove" );
      44             :         typelib_typedescriptionreference_new( &pMembers[2],
      45             :                                               (typelib_TypeClass)::com::sun::star::uno::TypeClass_INTERFACE_METHOD,
      46          30 :                                               sMethodName2.pData );
      47             : 
      48             :         typelib_typedescription_newMIInterface(
      49             :             &pTD,
      50             :             sTypeName.pData, 0x00000000, 0x0000, 0x0000, 0x00000000, 0x00000000,
      51             :             1, aSuperTypes,
      52             :             3,
      53          30 :             pMembers );
      54             : 
      55          30 :         typelib_typedescription_register( (typelib_TypeDescription**)&pTD );
      56          30 :         typelib_typedescriptionreference_release( pMembers[0] );
      57          30 :         typelib_typedescriptionreference_release( pMembers[1] );
      58          30 :         typelib_typedescriptionreference_release( pMembers[2] );
      59          30 :         typelib_typedescription_release( (typelib_TypeDescription*)pTD );
      60             : 
      61          30 :         return new ::com::sun::star::uno::Type( ::com::sun::star::uno::TypeClass_INTERFACE, sTypeName ); // leaked
      62             :     }
      63             : };
      64             : 
      65             : } } } } }
      66             : 
      67             : namespace com { namespace sun { namespace star { namespace container {
      68             : 
      69          30 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::container::XSet const *) {
      70          30 :     const ::com::sun::star::uno::Type &rRet = *detail::theXSetType::get();
      71             :     // End inline typedescription generation
      72             :     static bool bInitStarted = false;
      73          30 :     if (!bInitStarted)
      74             :     {
      75          30 :         ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
      76          30 :         if (!bInitStarted)
      77             :         {
      78             :             OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
      79          30 :             bInitStarted = true;
      80          30 :             ::cppu::UnoType< css::uno::RuntimeException >::get();
      81          30 :             ::cppu::UnoType< css::lang::IllegalArgumentException >::get();
      82          30 :             ::cppu::UnoType< css::container::ElementExistException >::get();
      83          30 :             ::cppu::UnoType< css::container::NoSuchElementException >::get();
      84             : 
      85          30 :             typelib_InterfaceMethodTypeDescription * pMethod = 0;
      86             :             {
      87             :                 typelib_Parameter_Init aParameters[1];
      88          30 :                 ::rtl::OUString sParamName0( "aElement" );
      89          30 :                 ::rtl::OUString sParamType0( "any" );
      90          30 :                 aParameters[0].pParamName = sParamName0.pData;
      91          30 :                 aParameters[0].eTypeClass = (typelib_TypeClass)::com::sun::star::uno::TypeClass_ANY;
      92          30 :                 aParameters[0].pTypeName = sParamType0.pData;
      93          30 :                 aParameters[0].bIn = sal_True;
      94          30 :                 aParameters[0].bOut = sal_False;
      95          30 :                 ::rtl::OUString the_ExceptionName0( "com.sun.star.uno.RuntimeException" );
      96          30 :                 rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData };
      97          30 :                 ::rtl::OUString sReturnType0( "boolean" );
      98          30 :                 ::rtl::OUString sMethodName0( "com.sun.star.container.XSet::has" );
      99             :                 typelib_typedescription_newInterfaceMethod( &pMethod,
     100             :                     6, sal_False,
     101             :                     sMethodName0.pData,
     102             :                     (typelib_TypeClass)::com::sun::star::uno::TypeClass_BOOLEAN, sReturnType0.pData,
     103             :                     1, aParameters,
     104          30 :                     1, the_Exceptions );
     105          30 :                 typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
     106             :             }
     107             :             {
     108             :                 typelib_Parameter_Init aParameters[1];
     109          30 :                 ::rtl::OUString sParamName0( "aElement" );
     110          30 :                 ::rtl::OUString sParamType0( "any" );
     111          30 :                 aParameters[0].pParamName = sParamName0.pData;
     112          30 :                 aParameters[0].eTypeClass = (typelib_TypeClass)::com::sun::star::uno::TypeClass_ANY;
     113          30 :                 aParameters[0].pTypeName = sParamType0.pData;
     114          30 :                 aParameters[0].bIn = sal_True;
     115          30 :                 aParameters[0].bOut = sal_False;
     116          30 :                 ::rtl::OUString the_ExceptionName0( "com.sun.star.lang.IllegalArgumentException" );
     117          30 :                 ::rtl::OUString the_ExceptionName1( "com.sun.star.container.ElementExistException" );
     118          30 :                 ::rtl::OUString the_ExceptionName2( "com.sun.star.uno.RuntimeException" );
     119          30 :                 rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData, the_ExceptionName1.pData, the_ExceptionName2.pData };
     120          30 :                 ::rtl::OUString sReturnType1( "void" );
     121          30 :                 ::rtl::OUString sMethodName1( "com.sun.star.container.XSet::insert" );
     122             :                 typelib_typedescription_newInterfaceMethod( &pMethod,
     123             :                     7, sal_False,
     124             :                     sMethodName1.pData,
     125             :                     (typelib_TypeClass)::com::sun::star::uno::TypeClass_VOID, sReturnType1.pData,
     126             :                     1, aParameters,
     127          30 :                     3, the_Exceptions );
     128          30 :                 typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
     129             :             }
     130             :             {
     131             :                 typelib_Parameter_Init aParameters[1];
     132          30 :                 ::rtl::OUString sParamName0( "aElement" );
     133          30 :                 ::rtl::OUString sParamType0( "any" );
     134          30 :                 aParameters[0].pParamName = sParamName0.pData;
     135          30 :                 aParameters[0].eTypeClass = (typelib_TypeClass)::com::sun::star::uno::TypeClass_ANY;
     136          30 :                 aParameters[0].pTypeName = sParamType0.pData;
     137          30 :                 aParameters[0].bIn = sal_True;
     138          30 :                 aParameters[0].bOut = sal_False;
     139          30 :                 ::rtl::OUString the_ExceptionName0( "com.sun.star.lang.IllegalArgumentException" );
     140          30 :                 ::rtl::OUString the_ExceptionName1( "com.sun.star.container.NoSuchElementException" );
     141          30 :                 ::rtl::OUString the_ExceptionName2( "com.sun.star.uno.RuntimeException" );
     142          30 :                 rtl_uString * the_Exceptions[] = { the_ExceptionName0.pData, the_ExceptionName1.pData, the_ExceptionName2.pData };
     143          30 :                 ::rtl::OUString sReturnType2( "void" );
     144          30 :                 ::rtl::OUString sMethodName2( "com.sun.star.container.XSet::remove" );
     145             :                 typelib_typedescription_newInterfaceMethod( &pMethod,
     146             :                     8, sal_False,
     147             :                     sMethodName2.pData,
     148             :                     (typelib_TypeClass)::com::sun::star::uno::TypeClass_VOID, sReturnType2.pData,
     149             :                     1, aParameters,
     150          30 :                     3, the_Exceptions );
     151          30 :                 typelib_typedescription_register( (typelib_TypeDescription**)&pMethod );
     152             :             }
     153          30 :             typelib_typedescription_release( (typelib_TypeDescription*)pMethod );
     154          30 :         }
     155             :     }
     156             :     else
     157             :     {
     158             :         OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
     159             :     }
     160          30 :     return rRet;
     161             : }
     162             : 
     163             : } } } }
     164             : 
     165          30 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER ::com::sun::star::uno::Reference< css::container::XSet > const *) SAL_THROW(()) {
     166          30 :     return ::cppu::UnoType< ::com::sun::star::uno::Reference< css::container::XSet > >::get();
     167             : }
     168             : 
     169          30 : ::com::sun::star::uno::Type const & css::container::XSet::static_type(SAL_UNUSED_PARAMETER void *) {
     170          30 :     return ::getCppuType(static_cast< ::com::sun::star::uno::Reference< css::container::XSet > * >(0));
     171             : }
     172             : 
     173             : #endif // INCLUDED_COM_SUN_STAR_CONTAINER_XSET_HPP

Generated by: LCOV version 1.10