summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorChristof Pintaske <cp@openoffice.org>2001-03-02 16:28:58 +0000
committerChristof Pintaske <cp@openoffice.org>2001-03-02 16:28:58 +0000
commit27bfa40911fca83451315dc58f6d0af72f2970f2 (patch)
tree7c2ef1a00446a6c9ee0642aaaab277c75129325d /unotools
parent5635e18cd31e238f8fc2e99441be0831c6c6186b (diff)
initial release
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/collatorwrapper.hxx130
-rw-r--r--unotools/source/i18n/collatorwrapper.cxx248
2 files changed, 378 insertions, 0 deletions
diff --git a/unotools/inc/unotools/collatorwrapper.hxx b/unotools/inc/unotools/collatorwrapper.hxx
new file mode 100644
index 000000000000..9cd4777ef9ba
--- /dev/null
+++ b/unotools/inc/unotools/collatorwrapper.hxx
@@ -0,0 +1,130 @@
+/*************************************************************************
+ *
+ * $RCSfile: collatorwrapper.hxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: cp $ $Date: 2001-03-02 17:28:58 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef _UNOTOOLS_COLLATORWRAPPER_HXX
+#define _UNOTOOLS_COLLATORWRAPPER_HXX
+
+#ifndef _COM_SUN_STAR_UTIL_XCOLLATOR_HPP_
+#include <com/sun/star/i18n/XCollator.hpp>
+#endif
+
+namespace com { namespace sun { namespace star { namespace lang {
+ class XMultiServiceFactory;
+}}}}
+
+class CollatorWrapper
+{
+ private:
+
+ ::com::sun::star::uno::Reference<
+ ::com::sun::star::lang::XMultiServiceFactory
+ > mxServiceFactory;
+
+ ::com::sun::star::uno::Reference<
+ ::com::sun::star::i18n::XCollator
+ > mxInternationalCollator;
+
+ public:
+
+ CollatorWrapper (
+ const ::com::sun::star::uno::Reference<
+ ::com::sun::star::lang::XMultiServiceFactory > &xServiceFactoryIn);
+
+ ~CollatorWrapper();
+
+ sal_Int32
+ compareSubstring (
+ const ::rtl::OUString& s1, sal_Int32 off1, sal_Int32 len1,
+ const ::rtl::OUString& s2, sal_Int32 off2, sal_Int32 len2);
+
+ sal_Int32
+ compareString (
+ const ::rtl::OUString& s1, const ::rtl::OUString& s2);
+
+ ::com::sun::star::uno::Sequence< ::rtl::OUString >
+ listCollatorAlgorithms (
+ const ::com::sun::star::lang::Locale& rLocale);
+
+ ::com::sun::star::uno::Sequence< sal_Int32 >
+ listCollatorOptions (
+ const ::rtl::OUString& rAlgorithm);
+
+ sal_Int32
+ loadDefaultCollator (
+ const ::com::sun::star::lang::Locale& rLocale, sal_Int32 nOption);
+
+ sal_Int32
+ loadCollatorAlgorithm (
+ const ::rtl::OUString& rAlgorithm,
+ const ::com::sun::star::lang::Locale& rLocale, sal_Int32 nOption);
+
+ void
+ loadCollatorAlgorithmWithEndUserOption (
+ const ::rtl::OUString& rAlgorithm,
+ const ::com::sun::star::lang::Locale& rLocale,
+ const ::com::sun::star::uno::Sequence< sal_Int32 >& rOption);
+
+ protected:
+
+ CollatorWrapper();
+};
+
+#endif /* _UNOTOOLS_COLLATORWRAPPER_HXX */
diff --git a/unotools/source/i18n/collatorwrapper.cxx b/unotools/source/i18n/collatorwrapper.cxx
new file mode 100644
index 000000000000..0ce1695f4c98
--- /dev/null
+++ b/unotools/source/i18n/collatorwrapper.cxx
@@ -0,0 +1,248 @@
+/*************************************************************************
+ *
+ * $RCSfile: collatorwrapper.cxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: cp $ $Date: 2001-03-02 17:27:11 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef _UNOTOOLS_COLLATORWRAPPER_HXX
+#include <unotools/collatorwrapper.hxx>
+#endif
+
+#ifndef _TOOLS_DEBUG_HXX
+#include <tools/debug.hxx>
+#endif
+
+#ifndef _COMPHELPER_COMPONENTFACTORY_HXX_
+#include <comphelper/componentfactory.hxx>
+#endif
+
+#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_
+#include <com/sun/star/uno/XInterface.hpp>
+#endif
+
+#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
+#include <com/sun/star/lang/XMultiServiceFactory.hpp>
+#endif
+
+using namespace ::com::sun::star;
+
+CollatorWrapper::CollatorWrapper (
+ const uno::Reference< lang::XMultiServiceFactory > &xServiceFactory)
+ : mxServiceFactory (xServiceFactory)
+{
+ ::rtl::OUString aService (RTL_CONSTASCII_USTRINGPARAM("com.sun.star.i18n.Collator"));
+
+ if (mxServiceFactory.is())
+ {
+ try
+ {
+ mxInternationalCollator = uno::Reference< i18n::XCollator > (
+ mxServiceFactory->createInstance(aService), uno::UNO_QUERY);
+ }
+ catch (uno::Exception& rException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: failed to create instance");
+ }
+ }
+ else
+ {
+ ::rtl::OUString aLibrary (RTL_CONSTASCII_USTRINGPARAM(LLCF_LIBNAME("int")));
+
+ try
+ {
+ uno::Reference< uno::XInterface > xInstance =
+ ::comphelper::getComponentInstance (aLibrary, aService);
+
+ if (xInstance.is())
+ {
+ uno::Any xInterface = xInstance->queryInterface (
+ ::getCppuType((const uno::Reference< i18n::XCollator >*)0) );
+ xInterface >>= mxInternationalCollator;
+ }
+ }
+ catch (uno::Exception& rException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: failed to get component instance!");
+ }
+ }
+
+ DBG_ASSERT (mxInternationalCollator.is(), "CollatorWrapper: no i18n collator");
+}
+
+CollatorWrapper::~CollatorWrapper()
+{
+}
+
+sal_Int32
+CollatorWrapper::compareSubstring (
+ const ::rtl::OUString& s1, sal_Int32 off1, sal_Int32 len1,
+ const ::rtl::OUString& s2, sal_Int32 off2, sal_Int32 len2)
+{
+ try
+ {
+ if (mxInternationalCollator.is())
+ return mxInternationalCollator->compareSubstring (
+ s1, off1, len1, s2, off2, len2);
+ }
+ catch (uno::RuntimeException& rRuntimeException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: compareSubstring failed");
+ }
+
+ return 0;
+}
+
+sal_Int32
+CollatorWrapper::compareString (const ::rtl::OUString& s1, const ::rtl::OUString& s2)
+{
+ try
+ {
+ if (mxInternationalCollator.is())
+ return mxInternationalCollator->compareString (s1, s2);
+ }
+ catch (uno::RuntimeException& rRuntimeException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: compareString failed");
+ }
+
+ return 0;
+}
+
+uno::Sequence< ::rtl::OUString >
+CollatorWrapper::listCollatorAlgorithms (const lang::Locale& rLocale)
+{
+ try
+ {
+ if (mxInternationalCollator.is())
+ return mxInternationalCollator->listCollatorAlgorithms (rLocale);
+ }
+ catch (uno::RuntimeException& rRuntimeException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: listCollatorAlgorithms failed");
+ }
+
+ return uno::Sequence< ::rtl::OUString > ();
+}
+
+uno::Sequence< sal_Int32 >
+CollatorWrapper::listCollatorOptions (const ::rtl::OUString& rAlgorithm)
+{
+ try
+ {
+ if (mxInternationalCollator.is())
+ return mxInternationalCollator->listCollatorOptions (rAlgorithm);
+ }
+ catch (uno::RuntimeException& rRuntimeException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: listCollatorOptions failed");
+ }
+
+ return uno::Sequence< sal_Int32 > ();
+}
+
+sal_Int32
+CollatorWrapper::loadDefaultCollator (const lang::Locale& rLocale, sal_Int32 nOptions)
+{
+ try
+ {
+ if (mxInternationalCollator.is())
+ return mxInternationalCollator->loadDefaultCollator (rLocale, nOptions);
+ }
+ catch (uno::RuntimeException& rRuntimeException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: loadDefaultCollator failed");
+ }
+
+ return 0;
+}
+
+sal_Int32
+CollatorWrapper::loadCollatorAlgorithm (const ::rtl::OUString& rAlgorithm,
+ const lang::Locale& rLocale, sal_Int32 nOptions)
+{
+ try
+ {
+ if (mxInternationalCollator.is())
+ return mxInternationalCollator->loadCollatorAlgorithm (
+ rAlgorithm, rLocale, nOptions);
+ }
+ catch (uno::RuntimeException& rRuntimeException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: loadCollatorAlgorithm failed");
+ }
+
+ return 0;
+
+}
+
+void
+CollatorWrapper::loadCollatorAlgorithmWithEndUserOption (
+ const ::rtl::OUString& rAlgorithm,
+ const lang::Locale& rLocale, const uno::Sequence< sal_Int32 >& rOption)
+{
+ try
+ {
+ if (mxInternationalCollator.is())
+ return mxInternationalCollator->loadCollatorAlgorithmWithEndUserOption (
+ rAlgorithm, rLocale, rOption);
+ }
+ catch (uno::RuntimeException& rRuntimeException)
+ {
+ DBG_ERRORFILE ("CollatorWrapper: loadCollatorAlgorithmWithEndUserOption failed");
+ }
+}