Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / i18npool / inc / collator_unicode.hxx
blob38522a5d96c38cacb4aaf27bf7fdba8cb09d0b84
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_I18NPOOL_INC_COLLATOR_UNICODE_HXX
20 #define INCLUDED_I18NPOOL_INC_COLLATOR_UNICODE_HXX
22 #include <com/sun/star/i18n/XCollator.hpp>
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <cppuhelper/implbase.hxx>
25 #include <osl/module.h>
27 #include <unicode/tblcoll.h>
29 // ----------------------------------------------------
30 // class Collator_Unicode
31 // ----------------------------------------------------
33 namespace com { namespace sun { namespace star { namespace i18n {
35 class Collator_Unicode : public cppu::WeakImplHelper < XCollator, css::lang::XServiceInfo >
37 public:
38 // Constructors
39 Collator_Unicode();
40 // Destructor
41 virtual ~Collator_Unicode();
43 sal_Int32 SAL_CALL compareSubstring( const OUString& s1, sal_Int32 off1, sal_Int32 len1,
44 const OUString& s2, sal_Int32 off2, sal_Int32 len2) throw(css::uno::RuntimeException, std::exception) override;
46 sal_Int32 SAL_CALL compareString( const OUString& s1, const OUString& s2)
47 throw(css::uno::RuntimeException, std::exception) override;
49 sal_Int32 SAL_CALL loadCollatorAlgorithm( const OUString& impl, const lang::Locale& rLocale,
50 sal_Int32 collatorOptions) throw(css::uno::RuntimeException, std::exception) override;
53 // following 4 methods are implemented in collatorImpl.
54 sal_Int32 SAL_CALL loadDefaultCollator( const lang::Locale&, sal_Int32)
55 throw(css::uno::RuntimeException, std::exception) override {throw css::uno::RuntimeException();}
56 void SAL_CALL loadCollatorAlgorithmWithEndUserOption( const OUString&, const lang::Locale&,
57 const css::uno::Sequence< sal_Int32 >&) throw(css::uno::RuntimeException, std::exception) override {throw css::uno::RuntimeException();}
58 css::uno::Sequence< OUString > SAL_CALL listCollatorAlgorithms( const lang::Locale&)
59 throw(css::uno::RuntimeException, std::exception) override {throw css::uno::RuntimeException();}
60 css::uno::Sequence< sal_Int32 > SAL_CALL listCollatorOptions( const OUString& )
61 throw(css::uno::RuntimeException, std::exception) override {throw css::uno::RuntimeException();}
63 //XServiceInfo
64 virtual OUString SAL_CALL getImplementationName() throw( css::uno::RuntimeException, std::exception ) override;
65 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( css::uno::RuntimeException, std::exception ) override;
66 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( css::uno::RuntimeException, std::exception ) override;
68 protected:
69 const sal_Char *implementationName;
70 private:
71 RuleBasedCollator *uca_base, *collator;
72 #ifndef DISABLE_DYNLOADING
73 oslModule hModule;
74 #endif
77 } } } }
79 #endif
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */