LCOV - code coverage report
Current view: top level - solver/unxlngi6.pro/inc/offapi/com/sun/star/inspection - StringRepresentation.hpp (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 36 0.0 %
Date: 2012-08-25 Functions: 0 2 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : #ifndef INCLUDED_COM_SUN_STAR_INSPECTION_STRINGREPRESENTATION_HPP
       2                 :            : #define INCLUDED_COM_SUN_STAR_INSPECTION_STRINGREPRESENTATION_HPP
       3                 :            : 
       4                 :            : #include "sal/config.h"
       5                 :            : 
       6                 :            : #include "com/sun/star/uno/RuntimeException.hpp"
       7                 :            : #include "com/sun/star/uno/Exception.hpp"
       8                 :            : #include "com/sun/star/uno/DeploymentException.hpp"
       9                 :            : #include "com/sun/star/uno/XComponentContext.hpp"
      10                 :            : #include "com/sun/star/lang/XMultiComponentFactory.hpp"
      11                 :            : #include "com/sun/star/inspection/XStringRepresentation.hpp"
      12                 :            : #include "com/sun/star/lang/IllegalArgumentException.hpp"
      13                 :            : #include "com/sun/star/script/XTypeConverter.hpp"
      14                 :            : #include "com/sun/star/uno/Any.hxx"
      15                 :            : #include "com/sun/star/uno/Reference.hxx"
      16                 :            : #include "com/sun/star/uno/Sequence.hxx"
      17                 :            : #include "cppu/unotype.hxx"
      18                 :            : #include "rtl/ustring.h"
      19                 :            : #include "rtl/ustring.hxx"
      20                 :            : 
      21                 :            : namespace com { namespace sun { namespace star { namespace inspection {
      22                 :            : 
      23                 :            : class StringRepresentation {
      24                 :            : public:
      25                 :          0 :     static ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XStringRepresentation > create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< ::com::sun::star::script::XTypeConverter >& TypeConverter) {
      26                 :          0 :         ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiComponentFactory > the_factory(the_context->getServiceManager());
      27                 :          0 :         if (!the_factory.is()) {
      28                 :          0 :             throw com::sun::star::uno::DeploymentException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("component context fails to supply service manager")), the_context);
      29                 :            :         }
      30                 :          0 :         ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
      31                 :          0 :         the_arguments[0] <<= TypeConverter;
      32                 :          0 :         ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XStringRepresentation > the_instance;
      33                 :            :         try {
      34                 :          0 :             the_instance = ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XStringRepresentation >(the_factory->createInstanceWithArgumentsAndContext(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.inspection.StringRepresentation")), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
      35                 :          0 :         } catch (::com::sun::star::uno::RuntimeException &) {
      36                 :          0 :             throw;
      37                 :          0 :         } catch (::com::sun::star::lang::IllegalArgumentException &) {
      38                 :          0 :             throw;
      39                 :          0 :         } catch (::com::sun::star::uno::Exception & the_exception) {
      40                 :          0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation: ")) + the_exception.Message, the_context);
      41                 :            :         }
      42                 :          0 :         if (!the_instance.is()) {
      43                 :          0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation")), the_context);
      44                 :            :         }
      45                 :          0 :         return the_instance;
      46                 :            :     }
      47                 :            : 
      48                 :          0 :     static ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XStringRepresentation > createConstant(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< ::com::sun::star::script::XTypeConverter >& TypeConverter, const ::rtl::OUString& Constant, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& Values) {
      49                 :          0 :         ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiComponentFactory > the_factory(the_context->getServiceManager());
      50                 :          0 :         if (!the_factory.is()) {
      51                 :          0 :             throw com::sun::star::uno::DeploymentException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("component context fails to supply service manager")), the_context);
      52                 :            :         }
      53                 :          0 :         ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(3);
      54                 :          0 :         the_arguments[0] <<= TypeConverter;
      55                 :          0 :         the_arguments[1] <<= Constant;
      56                 :          0 :         the_arguments[2] <<= Values;
      57                 :          0 :         ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XStringRepresentation > the_instance;
      58                 :            :         try {
      59                 :          0 :             the_instance = ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XStringRepresentation >(the_factory->createInstanceWithArgumentsAndContext(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.inspection.StringRepresentation")), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
      60                 :          0 :         } catch (::com::sun::star::uno::RuntimeException &) {
      61                 :          0 :             throw;
      62                 :          0 :         } catch (::com::sun::star::lang::IllegalArgumentException &) {
      63                 :          0 :             throw;
      64                 :          0 :         } catch (::com::sun::star::uno::Exception & the_exception) {
      65                 :          0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation: ")) + the_exception.Message, the_context);
      66                 :            :         }
      67                 :          0 :         if (!the_instance.is()) {
      68                 :          0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("component context fails to supply service com.sun.star.inspection.StringRepresentation of type com.sun.star.inspection.XStringRepresentation")), the_context);
      69                 :            :         }
      70                 :          0 :         return the_instance;
      71                 :            :     }
      72                 :            : 
      73                 :            : private:
      74                 :            :     StringRepresentation(); // not implemented
      75                 :            :     StringRepresentation(StringRepresentation &); // not implemented
      76                 :            :     ~StringRepresentation(); // not implemented
      77                 :            :     void operator =(StringRepresentation); // not implemented
      78                 :            : };
      79                 :            : 
      80                 :            : } } } }
      81                 :            : 
      82                 :            : #endif // INCLUDED_COM_SUN_STAR_INSPECTION_STRINGREPRESENTATION_HPP

Generated by: LCOV version 1.10