LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/comphelper/source/compare - AnyCompareFactory.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 37 45 82.2 %
Date: 2013-07-09 Functions: 13 16 81.2 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : 
      21             : #include "comphelper_module.hxx"
      22             : 
      23             : #include <com/sun/star/ucb/XAnyCompareFactory.hpp>
      24             : #include <com/sun/star/i18n/Collator.hpp>
      25             : #include <com/sun/star/lang/Locale.hpp>
      26             : #include <com/sun/star/uno/Sequence.h>
      27             : #include <com/sun/star/beans/PropertyValue.hpp>
      28             : #include <cppuhelper/implbase3.hxx>
      29             : #include <cppuhelper/implbase1.hxx>
      30             : #include <com/sun/star/lang/XServiceInfo.hpp>
      31             : #include <com/sun/star/lang/XInitialization.hpp>
      32             : #include <com/sun/star/lang/IllegalArgumentException.hpp>
      33             : #include <com/sun/star/lang/XMultiComponentFactory.hpp>
      34             : #include <comphelper/stl_types.hxx>
      35             : #include <map>
      36             : 
      37             : 
      38             : using namespace com::sun::star::uno;
      39             : using namespace com::sun::star::ucb;
      40             : using namespace com::sun::star::lang;
      41             : using namespace com::sun::star::i18n;
      42             : 
      43             : 
      44             : //=============================================================================
      45             : 
      46          20 : class AnyCompare : public ::cppu::WeakImplHelper1< XAnyCompare >
      47             : {
      48             :     Reference< XCollator > m_rCollator;
      49             : 
      50             : public:
      51          12 :     AnyCompare( Reference< XComponentContext > xContext, const Locale& rLocale ) throw()
      52          12 :     {
      53          12 :         m_rCollator = Collator::create( xContext );
      54          12 :         m_rCollator->loadDefaultCollator( rLocale,
      55          12 :                                           0 ); //???
      56          12 :     }
      57             : 
      58             :     virtual sal_Int16 SAL_CALL compare( const Any& any1, const Any& any2 ) throw(RuntimeException);
      59             : };
      60             : 
      61             : //=============================================================================
      62             : 
      63          20 : class AnyCompareFactory : public cppu::WeakImplHelper3< XAnyCompareFactory, XInitialization, XServiceInfo >
      64             : {
      65             :     Reference< XAnyCompare >            m_rAnyCompare;
      66             :     Reference< XComponentContext >      m_rContext;
      67             :     Locale                              m_Locale;
      68             : 
      69             : public:
      70          12 :     AnyCompareFactory( Reference< XComponentContext > xContext ) : m_rContext( xContext )
      71          12 :     {}
      72             : 
      73             :     // XAnyCompareFactory
      74             :     virtual Reference< XAnyCompare > SAL_CALL createAnyCompareByName ( const OUString& aPropertyName ) throw(::com::sun::star::uno::RuntimeException);
      75             : 
      76             :     // XInitialization
      77             :     virtual void SAL_CALL initialize( const Sequence< Any >& aArguments )
      78             :             throw ( Exception, RuntimeException );
      79             : 
      80             :     // XServiceInfo
      81             :     virtual OUString SAL_CALL getImplementationName(  ) throw(RuntimeException);
      82             :     virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(RuntimeException);
      83             :     virtual Sequence< OUString > SAL_CALL getSupportedServiceNames(  ) throw(RuntimeException);
      84             : 
      85             :     // XServiceInfo - static versions (used for component registration)
      86             :     static OUString SAL_CALL getImplementationName_static();
      87             :     static Sequence< OUString > SAL_CALL getSupportedServiceNames_static();
      88             :     static Reference< XInterface > SAL_CALL Create( const Reference< XComponentContext >& );
      89             : };
      90             : 
      91             : //===========================================================================================
      92             : 
      93          44 : sal_Int16 SAL_CALL AnyCompare::compare( const Any& any1, const Any& any2 ) throw(::com::sun::star::uno::RuntimeException)
      94             : {
      95          44 :     sal_Int16 aResult = 0;
      96             : 
      97          44 :     OUString aStr1;
      98          88 :     OUString aStr2;
      99             : 
     100          44 :     any1 >>= aStr1;
     101          44 :     any2 >>= aStr2;
     102             : 
     103          44 :     aResult = ( sal_Int16 )m_rCollator->compareString( aStr1, aStr2 );
     104             : 
     105          88 :     return aResult;
     106             : }
     107             : 
     108             : //===========================================================================================
     109             : 
     110           6 : Reference< XAnyCompare > SAL_CALL AnyCompareFactory::createAnyCompareByName( const OUString& aPropertyName ) throw(::com::sun::star::uno::RuntimeException)
     111             : {
     112             :     // for now only OUString properties compare is implemented
     113             :     // so no check for the property name is done
     114             : 
     115           6 :     if( aPropertyName == "Title" )
     116           6 :         return m_rAnyCompare;
     117             : 
     118           0 :     return Reference< XAnyCompare >();
     119             : }
     120             : 
     121          12 : void SAL_CALL AnyCompareFactory::initialize( const Sequence< Any >& aArguments ) throw ( Exception, RuntimeException )
     122             : {
     123          12 :     if( aArguments.getLength() )
     124             :     {
     125          12 :         if( aArguments[0] >>= m_Locale )
     126             :         {
     127          12 :             m_rAnyCompare = new AnyCompare( m_rContext, m_Locale );
     128          12 :             return;
     129             :         }
     130             :     }
     131             : 
     132             : }
     133             : 
     134           0 : OUString SAL_CALL AnyCompareFactory::getImplementationName(  ) throw( RuntimeException )
     135             : {
     136           0 :     return getImplementationName_static();
     137             : }
     138             : 
     139         119 : OUString SAL_CALL AnyCompareFactory::getImplementationName_static(  )
     140             : {
     141         119 :     return OUString( "AnyCompareFactory" );
     142             : }
     143             : 
     144           0 : sal_Bool SAL_CALL AnyCompareFactory::supportsService( const OUString& ServiceName ) throw(RuntimeException)
     145             : {
     146           0 :     OUString aServiceName( "com.sun.star.ucb.AnyCompareFactory" );
     147           0 :     return aServiceName == ServiceName;
     148             : }
     149             : 
     150           0 : Sequence< OUString > SAL_CALL AnyCompareFactory::getSupportedServiceNames(  ) throw(RuntimeException)
     151             : {
     152           0 :     return getSupportedServiceNames_static();
     153             : }
     154             : 
     155         119 : Sequence< OUString > SAL_CALL AnyCompareFactory::getSupportedServiceNames_static(  )
     156             : {
     157         119 :     const OUString aServiceName( "com.sun.star.ucb.AnyCompareFactory" );
     158         119 :     const Sequence< OUString > aSeq( &aServiceName, 1 );
     159         119 :     return aSeq;
     160             : }
     161             : 
     162          12 : Reference< XInterface > SAL_CALL AnyCompareFactory::Create(
     163             :                 const Reference< XComponentContext >& rxContext )
     164             : {
     165          12 :     return (cppu::OWeakObject*)new AnyCompareFactory( rxContext );
     166             : }
     167             : 
     168         119 : void createRegistryInfo_AnyCompareFactory()
     169             : {
     170         119 :     static ::comphelper::module::OAutoRegistration< AnyCompareFactory > aAutoRegistration;
     171         119 : }
     172             : 
     173             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10