LibreOffice Module vcl (master) 1
i18nhelp.cxx
Go to the documentation of this file.
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
22
25
26#include <rtl/ustrbuf.hxx>
27
28#include <utility>
29#include <vcl/i18nhelp.hxx>
30
31using namespace ::com::sun::star;
32
33vcl::I18nHelper::I18nHelper( const css::uno::Reference< css::uno::XComponentContext >& rxContext, LanguageTag aLanguageTag )
34 :
35 maLanguageTag(std::move( aLanguageTag))
36{
37 m_xContext = rxContext;
38 mpLocaleDataWrapper = nullptr;
41}
42
44{
45 ImplDestroyWrappers();
46}
47
49{
50 mpLocaleDataWrapper.reset();
51 mpTransliterationWrapper.reset();
52}
53
55{
56 if ( !mpTransliterationWrapper )
57 {
58 TransliterationFlags nModules = TransliterationFlags::IGNORE_WIDTH;
59 if ( mbTransliterateIgnoreCase )
60 nModules |= TransliterationFlags::IGNORE_CASE;
61
62 const_cast<vcl::I18nHelper*>(this)->mpTransliterationWrapper.reset(new utl::TransliterationWrapper( m_xContext, nModules ));
63 const_cast<vcl::I18nHelper*>(this)->mpTransliterationWrapper->loadModuleIfNeeded( maLanguageTag.getLanguageType() );
64 }
65 return *mpTransliterationWrapper;
66}
67
69{
70 if ( !mpLocaleDataWrapper )
71 {
72 const_cast<vcl::I18nHelper*>(this)->mpLocaleDataWrapper.reset(new LocaleDataWrapper( m_xContext, maLanguageTag ));
73 }
74 return *mpLocaleDataWrapper;
75}
76
78{
79 if( (c >= 0x200B) && (c <= 0x200F) ) // BiDi and zero-width-markers
80 return true;
81 if( (c >= 0x2028) && (c <= 0x202E) ) // BiDi and paragraph-markers
82 return true;
83 return false;
84}
85
86/* #i100057# filter formatting marks out of strings before passing them to
87 the transliteration. The real solution would have been an additional TransliterationModule
88 to ignore these marks during transliteration; however changing the code in i18npool that actually
89 implements this could produce unwanted side effects.
90
91 Of course this copying around is not really good, but looking at i18npool, one more time
92 will not hurt.
93*/
94OUString vcl::I18nHelper::filterFormattingChars( const OUString& rStr )
95{
96 sal_Int32 nLength = rStr.getLength();
97 OUStringBuffer aBuf( nLength );
98 const sal_Unicode* pStr = rStr.getStr();
99 while( nLength-- )
100 {
101 if( ! is_formatting_mark( *pStr ) )
102 aBuf.append( *pStr );
103 pStr++;
104 }
105 return aBuf.makeStringAndClear();
106}
107
108sal_Int32 vcl::I18nHelper::CompareString( const OUString& rStr1, const OUString& rStr2 ) const
109{
110 std::unique_lock aGuard( maMutex );
111
112 if ( mbTransliterateIgnoreCase )
113 {
114 // Change mbTransliterateIgnoreCase and destroy the wrapper, next call to
115 // ImplGetTransliterationWrapper() will create a wrapper with the correct bIgnoreCase
116 const_cast<vcl::I18nHelper*>(this)->mbTransliterateIgnoreCase = false;
117 const_cast<vcl::I18nHelper*>(this)->mpTransliterationWrapper.reset();
118 }
119
120 OUString aStr1( filterFormattingChars(rStr1) );
121 OUString aStr2( filterFormattingChars(rStr2) );
122 return ImplGetTransliterationWrapper().compareString( aStr1, aStr2 );
123}
124
125bool vcl::I18nHelper::MatchString( const OUString& rStr1, const OUString& rStr2 ) const
126{
127 std::unique_lock aGuard( maMutex );
128
129 if ( !mbTransliterateIgnoreCase )
130 {
131 // Change mbTransliterateIgnoreCase and destroy the wrapper, next call to
132 // ImplGetTransliterationWrapper() will create a wrapper with the correct bIgnoreCase
133 const_cast<vcl::I18nHelper*>(this)->mbTransliterateIgnoreCase = true;
134 const_cast<vcl::I18nHelper*>(this)->mpTransliterationWrapper.reset();
135 }
136
137 OUString aStr1( filterFormattingChars(rStr1) );
138 OUString aStr2( filterFormattingChars(rStr2) );
139 return ImplGetTransliterationWrapper().isMatch( aStr1, aStr2 );
140}
141
142bool vcl::I18nHelper::MatchMnemonic( std::u16string_view rString, sal_Unicode cMnemonicChar ) const
143{
144 size_t n = rString.find( '~' );
145 if ( n == std::u16string_view::npos )
146 return false;
147 OUString aMatchStr( rString.substr( n+1 ) ); // not only one char, because of transliteration...
148 return MatchString( OUString(cMnemonicChar), aMatchStr );
149}
150
151OUString vcl::I18nHelper::GetNum( tools::Long nNumber, sal_uInt16 nDecimals, bool bUseThousandSep, bool bTrailingZeros ) const
152{
153 return ImplGetLocaleDataWrapper().getNum( nNumber, nDecimals, bUseThousandSep, bTrailingZeros );
154}
155
156/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Reference< XComponentContext > m_xContext
std::mutex maMutex
LanguageType getLanguageType(bool bResolveSystem=true) const
I18nHelper(const css::uno::Reference< css::uno::XComponentContext > &rxContext, LanguageTag aLanguageTag)
Definition: i18nhelp.cxx:33
SAL_DLLPRIVATE LocaleDataWrapper & ImplGetLocaleDataWrapper() const
Definition: i18nhelp.cxx:68
bool mbTransliterateIgnoreCase
Definition: i18nhelp.hxx:51
std::unique_ptr< LocaleDataWrapper > mpLocaleDataWrapper
Definition: i18nhelp.hxx:48
sal_Int32 CompareString(const OUString &rStr1, const OUString &rStr2) const
Definition: i18nhelp.cxx:108
SAL_DLLPRIVATE void ImplDestroyWrappers()
Definition: i18nhelp.cxx:48
static OUString filterFormattingChars(const OUString &)
Definition: i18nhelp.cxx:94
SAL_DLLPRIVATE utl::TransliterationWrapper & ImplGetTransliterationWrapper() const
Definition: i18nhelp.cxx:54
bool MatchString(const OUString &rStr1, const OUString &rStr2) const
Definition: i18nhelp.cxx:125
OUString GetNum(tools::Long nNumber, sal_uInt16 nDecimals, bool bUseThousandSep=true, bool bTrailingZeros=true) const
Definition: i18nhelp.cxx:151
bool MatchMnemonic(std::u16string_view rString, sal_Unicode cMnemonicChar) const
Definition: i18nhelp.cxx:142
css::uno::Reference< css::uno::XComponentContext > m_xContext
Definition: i18nhelp.hxx:46
std::unique_ptr< utl::TransliterationWrapper > mpTransliterationWrapper
Definition: i18nhelp.hxx:49
static bool is_formatting_mark(sal_Unicode c)
Definition: i18nhelp.cxx:77
sal_Int64 n
LanguageTag maLanguageTag
aBuf
long Long
TransliterationFlags
sal_uInt16 sal_Unicode
sal_Int32 nLength