2002-01-11 16:48:39 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* $RCSfile: AnyCompareFactory.cxx,v $
|
2008-06-25 12:08:18 +00:00
|
|
|
* $Revision: 1.8 $
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
2008-04-11 09:54:24 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2002-01-11 16:48:39 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 16:05:52 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_comphelper.hxx"
|
|
|
|
|
2002-01-11 16:48:39 +00:00
|
|
|
|
|
|
|
#include <com/sun/star/ucb/XAnyCompareFactory.hpp>
|
|
|
|
#include <com/sun/star/i18n/XCollator.hpp>
|
|
|
|
#include <com/sun/star/lang/Locale.hpp>
|
|
|
|
#include <com/sun/star/uno/Sequence.h>
|
|
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
|
|
#include <cppuhelper/implbase3.hxx>
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <com/sun/star/lang/XInitialization.hpp>
|
2002-01-14 08:44:33 +00:00
|
|
|
#include <com/sun/star/lang/IllegalArgumentException.hpp>
|
2008-01-04 15:36:37 +00:00
|
|
|
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
|
2002-01-11 16:48:39 +00:00
|
|
|
#include <comphelper/stl_types.hxx>
|
|
|
|
#ifndef __SGI_STL_MAP
|
|
|
|
#include <map>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::ucb;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::i18n;
|
|
|
|
using namespace rtl;
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
class AnyCompare : public ::cppu::WeakImplHelper1< XAnyCompare >
|
|
|
|
{
|
|
|
|
Reference< XCollator > m_rCollator;
|
|
|
|
|
|
|
|
public:
|
2008-01-04 15:36:37 +00:00
|
|
|
AnyCompare( Reference< XComponentContext > xContext, const Locale& rLocale ) throw()
|
|
|
|
{
|
|
|
|
Reference< XMultiComponentFactory > xFactory = xContext->getServiceManager();
|
|
|
|
if ( xFactory.is() )
|
2002-01-11 16:48:39 +00:00
|
|
|
{
|
|
|
|
m_rCollator = Reference< XCollator >(
|
2008-01-04 15:36:37 +00:00
|
|
|
xFactory->createInstanceWithContext( OUString::createFromAscii( "com.sun.star.i18n.Collator" ), xContext ),
|
2002-01-11 16:48:39 +00:00
|
|
|
UNO_QUERY );
|
|
|
|
m_rCollator->loadDefaultCollator( rLocale,
|
|
|
|
0 ); //???
|
2008-01-04 15:36:37 +00:00
|
|
|
}
|
2002-01-11 16:48:39 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-03-19 15:03:25 +00:00
|
|
|
virtual sal_Int16 SAL_CALL compare( const Any& any1, const Any& any2 ) throw(RuntimeException);
|
2002-01-11 16:48:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
Sequence< rtl::OUString > SAL_CALL AnyCompareFactory_getSupportedServiceNames() throw();
|
|
|
|
rtl::OUString SAL_CALL AnyCompareFactory_getImplementationName() throw();
|
|
|
|
Reference< XInterface > SAL_CALL AnyCompareFactory_createInstance(
|
2008-01-04 15:36:37 +00:00
|
|
|
const Reference< XComponentContext >& rxContext ) throw( Exception );
|
2002-01-11 16:48:39 +00:00
|
|
|
|
|
|
|
class AnyCompareFactory : public cppu::WeakImplHelper3< XAnyCompareFactory, XInitialization, XServiceInfo >
|
|
|
|
{
|
|
|
|
Reference< XAnyCompare > m_rAnyCompare;
|
2008-01-04 15:36:37 +00:00
|
|
|
Reference< XComponentContext > m_rContext;
|
2002-01-11 16:48:39 +00:00
|
|
|
Locale m_Locale;
|
|
|
|
|
|
|
|
public:
|
2008-01-04 15:36:37 +00:00
|
|
|
AnyCompareFactory( Reference< XComponentContext > xContext ) : m_rContext( xContext )
|
|
|
|
{}
|
2002-01-11 16:48:39 +00:00
|
|
|
|
|
|
|
// XAnyCompareFactory
|
2003-03-19 15:03:25 +00:00
|
|
|
virtual Reference< XAnyCompare > SAL_CALL createAnyCompareByName ( const OUString& aPropertyName ) throw(::com::sun::star::uno::RuntimeException);
|
2002-01-11 16:48:39 +00:00
|
|
|
|
|
|
|
// XInitialization
|
|
|
|
virtual void SAL_CALL initialize( const Sequence< Any >& aArguments )
|
|
|
|
throw ( Exception, RuntimeException );
|
|
|
|
|
|
|
|
// XServiceInfo
|
|
|
|
virtual OUString SAL_CALL getImplementationName( ) throw(RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(RuntimeException);
|
|
|
|
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(RuntimeException);
|
|
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================================
|
|
|
|
|
2003-03-19 15:03:25 +00:00
|
|
|
sal_Int16 SAL_CALL AnyCompare::compare( const Any& any1, const Any& any2 ) throw(::com::sun::star::uno::RuntimeException)
|
2002-01-11 16:48:39 +00:00
|
|
|
{
|
|
|
|
sal_Int16 aResult = 0;
|
|
|
|
|
|
|
|
if( m_rCollator.is() )
|
|
|
|
{
|
|
|
|
OUString aStr1;
|
|
|
|
OUString aStr2;
|
|
|
|
|
|
|
|
any1 >>= aStr1;
|
|
|
|
any2 >>= aStr2;
|
|
|
|
|
|
|
|
aResult = ( sal_Int16 )m_rCollator->compareString( aStr1, aStr2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return aResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================================
|
|
|
|
|
2003-03-19 15:03:25 +00:00
|
|
|
Reference< XAnyCompare > SAL_CALL AnyCompareFactory::createAnyCompareByName( const OUString& aPropertyName ) throw(::com::sun::star::uno::RuntimeException)
|
2002-01-11 16:48:39 +00:00
|
|
|
{
|
|
|
|
// for now only OUString properties compare is implemented
|
|
|
|
// so no check for the property name is done
|
|
|
|
|
2002-01-14 08:44:33 +00:00
|
|
|
if( aPropertyName.equals( OUString::createFromAscii( "Title" ) ) )
|
|
|
|
return m_rAnyCompare;
|
|
|
|
|
|
|
|
return Reference< XAnyCompare >();
|
2002-01-11 16:48:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAL_CALL AnyCompareFactory::initialize( const Sequence< Any >& aArguments ) throw ( Exception, RuntimeException )
|
|
|
|
{
|
|
|
|
if( aArguments.getLength() )
|
|
|
|
{
|
2002-01-14 08:44:33 +00:00
|
|
|
if( aArguments[0] >>= m_Locale )
|
|
|
|
{
|
2008-01-04 15:36:37 +00:00
|
|
|
m_rAnyCompare = new AnyCompare( m_rContext, m_Locale );
|
2002-01-14 08:44:33 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-01-11 16:48:39 +00:00
|
|
|
}
|
2002-01-14 08:44:33 +00:00
|
|
|
|
2002-01-11 16:48:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OUString SAL_CALL AnyCompareFactory::getImplementationName( ) throw( RuntimeException )
|
|
|
|
{
|
|
|
|
return AnyCompareFactory_getImplementationName();
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Bool SAL_CALL AnyCompareFactory::supportsService( const OUString& ServiceName ) throw(RuntimeException)
|
|
|
|
{
|
2008-06-25 12:08:18 +00:00
|
|
|
rtl::OUString aServiceName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.ucb.AnyCompareFactory" ) );
|
2002-01-11 16:48:39 +00:00
|
|
|
return aServiceName == ServiceName;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sequence< OUString > SAL_CALL AnyCompareFactory::getSupportedServiceNames( ) throw(RuntimeException)
|
|
|
|
{
|
|
|
|
return AnyCompareFactory_getSupportedServiceNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Sequence< rtl::OUString > SAL_CALL AnyCompareFactory_getSupportedServiceNames() throw()
|
|
|
|
{
|
|
|
|
const rtl::OUString aServiceName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.ucb.AnyCompareFactory" ) );
|
|
|
|
const Sequence< rtl::OUString > aSeq( &aServiceName, 1 );
|
|
|
|
return aSeq;
|
|
|
|
}
|
|
|
|
|
|
|
|
rtl::OUString SAL_CALL AnyCompareFactory_getImplementationName() throw()
|
|
|
|
{
|
|
|
|
return rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "AnyCompareFactory" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< XInterface > SAL_CALL AnyCompareFactory_createInstance(
|
2008-01-04 15:36:37 +00:00
|
|
|
const Reference< XComponentContext >& rxContext ) throw( Exception )
|
2002-01-11 16:48:39 +00:00
|
|
|
{
|
2008-01-04 15:36:37 +00:00
|
|
|
return (cppu::OWeakObject*)new AnyCompareFactory( rxContext );
|
2002-01-11 16:48:39 +00:00
|
|
|
}
|