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 : #include <comphelper/processfactory.hxx>
21 : #include <unotools/charclass.hxx>
22 : #include <rtl/character.hxx>
23 :
24 : #include <com/sun/star/i18n/CharacterClassification.hpp>
25 :
26 : using namespace ::com::sun::star;
27 : using namespace ::com::sun::star::i18n;
28 : using namespace ::com::sun::star::uno;
29 :
30 9599 : CharClass::CharClass(
31 : const Reference< uno::XComponentContext > & rxContext,
32 : const LanguageTag& rLanguageTag
33 : )
34 : :
35 9599 : maLanguageTag( rLanguageTag)
36 : {
37 9599 : xCC = CharacterClassification::create( rxContext );
38 9599 : }
39 :
40 50700 : CharClass::CharClass(
41 : const LanguageTag& rLanguageTag )
42 : :
43 50700 : maLanguageTag( rLanguageTag)
44 : {
45 50700 : xCC = CharacterClassification::create( comphelper::getProcessComponentContext() );
46 50700 : }
47 :
48 60106 : CharClass::~CharClass()
49 : {
50 60106 : }
51 :
52 157343 : void CharClass::setLanguageTag( const LanguageTag& rLanguageTag )
53 : {
54 157343 : ::osl::MutexGuard aGuard( aMutex );
55 157343 : maLanguageTag = rLanguageTag;
56 157343 : }
57 :
58 62387 : const LanguageTag& CharClass::getLanguageTag() const
59 : {
60 62387 : ::osl::MutexGuard aGuard( aMutex );
61 62387 : return maLanguageTag;
62 : }
63 :
64 3470359 : const ::com::sun::star::lang::Locale& CharClass::getMyLocale() const
65 : {
66 3470359 : ::osl::MutexGuard aGuard( aMutex );
67 3470359 : return maLanguageTag.getLocale();
68 : }
69 :
70 : // static
71 55712 : bool CharClass::isAsciiNumeric( const OUString& rStr )
72 : {
73 55712 : if ( rStr.isEmpty() )
74 0 : return false;
75 55712 : const sal_Unicode* p = rStr.getStr();
76 55712 : const sal_Unicode* const pStop = p + rStr.getLength();
77 :
78 10 : do
79 : {
80 55718 : if ( !rtl::isAsciiDigit( *p ) )
81 55708 : return false;
82 : }
83 : while ( ++p < pStop );
84 :
85 4 : return true;
86 : }
87 :
88 : // static
89 0 : bool CharClass::isAsciiAlpha( const OUString& rStr )
90 : {
91 0 : if ( rStr.isEmpty() )
92 0 : return false;
93 0 : const sal_Unicode* p = rStr.getStr();
94 0 : const sal_Unicode* const pStop = p + rStr.getLength();
95 :
96 0 : do
97 : {
98 0 : if ( !rtl::isAsciiAlpha( *p ) )
99 0 : return false;
100 : }
101 : while ( ++p < pStop );
102 :
103 0 : return true;
104 : }
105 :
106 0 : bool CharClass::isAlpha( const OUString& rStr, sal_Int32 nPos ) const
107 : {
108 0 : sal_Unicode c = rStr[nPos];
109 0 : if ( c < 128 )
110 0 : return rtl::isAsciiAlpha( c );
111 :
112 : try
113 : {
114 0 : if ( xCC.is() )
115 0 : return (xCC->getCharacterType( rStr, nPos, getMyLocale() ) &
116 0 : nCharClassAlphaType) != 0;
117 : else
118 0 : return false;
119 : }
120 0 : catch ( const Exception& )
121 : {
122 : SAL_WARN( "unotools.i18n", "isAlpha: Exception caught!" );
123 0 : return false;
124 : }
125 : }
126 :
127 2003371 : bool CharClass::isLetter( const OUString& rStr, sal_Int32 nPos ) const
128 : {
129 2003371 : sal_Unicode c = rStr[nPos];
130 2003371 : if ( c < 128 )
131 2001005 : return rtl::isAsciiAlpha( c );
132 :
133 : try
134 : {
135 2366 : if ( xCC.is() )
136 2366 : return (xCC->getCharacterType( rStr, nPos, getMyLocale() ) &
137 2366 : nCharClassLetterType) != 0;
138 : else
139 0 : return false;
140 : }
141 0 : catch ( const Exception& )
142 : {
143 : SAL_WARN( "unotools.i18n", "isLetter: Exception caught!" );
144 0 : return false;
145 : }
146 : }
147 :
148 0 : bool CharClass::isLetter( const OUString& rStr ) const
149 : {
150 : try
151 : {
152 0 : if ( xCC.is() )
153 0 : return isLetterType( xCC->getStringType( rStr, 0, rStr.getLength(), getMyLocale() ) );
154 : else
155 0 : return false;
156 : }
157 0 : catch ( const Exception& )
158 : {
159 : SAL_WARN( "unotools.i18n", "isLetter: Exception caught!" );
160 0 : return false;
161 : }
162 : }
163 :
164 718 : bool CharClass::isDigit( const OUString& rStr, sal_Int32 nPos ) const
165 : {
166 718 : sal_Unicode c = rStr[ nPos ];
167 718 : if ( c < 128 )
168 44 : return rtl::isAsciiDigit( c );
169 :
170 : try
171 : {
172 674 : if ( xCC.is() )
173 674 : return (xCC->getCharacterType( rStr, nPos, getMyLocale() ) &
174 674 : KCharacterType::DIGIT) != 0;
175 : else
176 0 : return false;
177 : }
178 0 : catch ( const Exception& )
179 : {
180 : SAL_WARN( "unotools.i18n", "isDigit: Exception caught!" );
181 0 : return false;
182 : }
183 : }
184 :
185 0 : bool CharClass::isNumeric( const OUString& rStr ) const
186 : {
187 : try
188 : {
189 0 : if ( xCC.is() )
190 0 : return isNumericType( xCC->getStringType( rStr, 0, rStr.getLength(), getMyLocale() ) );
191 : else
192 0 : return false;
193 : }
194 0 : catch ( const Exception& )
195 : {
196 : SAL_WARN( "unotools.i18n", "isNumeric: Exception caught!" );
197 0 : return false;
198 : }
199 : }
200 :
201 0 : bool CharClass::isAlphaNumeric( const OUString& rStr, sal_Int32 nPos ) const
202 : {
203 0 : sal_Unicode c = rStr[nPos];
204 0 : if ( c < 128 )
205 0 : return rtl::isAsciiAlphanumeric( c );
206 :
207 : try
208 : {
209 0 : if ( xCC.is() )
210 0 : return (xCC->getCharacterType( rStr, nPos, getMyLocale() ) &
211 0 : (nCharClassAlphaType | KCharacterType::DIGIT)) != 0;
212 : else
213 0 : return false;
214 : }
215 0 : catch ( const Exception& )
216 : {
217 : SAL_WARN( "unotools.i18n", "isAlphaNumeric: Exception caught!" );
218 0 : return false;
219 : }
220 : }
221 :
222 121815 : bool CharClass::isLetterNumeric( const OUString& rStr, sal_Int32 nPos ) const
223 : {
224 121815 : sal_Unicode c = rStr[nPos];
225 121815 : if ( c < 128 )
226 118629 : return rtl::isAsciiAlphanumeric( c );
227 :
228 : try
229 : {
230 3186 : if ( xCC.is() )
231 3186 : return (xCC->getCharacterType( rStr, nPos, getMyLocale() ) &
232 3186 : (nCharClassLetterType | KCharacterType::DIGIT)) != 0;
233 : else
234 0 : return false;
235 : }
236 0 : catch ( const Exception& )
237 : {
238 : SAL_WARN( "unotools.i18n", "isLetterNumeric: Exception caught!" );
239 0 : return false;
240 : }
241 : }
242 :
243 11875 : bool CharClass::isLetterNumeric( const OUString& rStr ) const
244 : {
245 : try
246 : {
247 11875 : if ( xCC.is() )
248 11875 : return isLetterNumericType( xCC->getStringType( rStr, 0, rStr.getLength(), getMyLocale() ) );
249 : else
250 0 : return false;
251 : }
252 0 : catch ( const Exception& )
253 : {
254 : SAL_WARN( "unotools.i18n", "isLetterNumeric: Exception caught!" );
255 0 : return false;
256 : }
257 : }
258 :
259 2 : OUString CharClass::titlecase(const OUString& rStr, sal_Int32 nPos, sal_Int32 nCount) const
260 : {
261 : try
262 : {
263 2 : if ( xCC.is() )
264 2 : return xCC->toTitle( rStr, nPos, nCount, getMyLocale() );
265 : else
266 0 : return rStr.copy( nPos, nCount );
267 : }
268 0 : catch ( const Exception& )
269 : {
270 : SAL_WARN( "unotools.i18n", "titlecase: Exception caught!" );
271 0 : return rStr.copy( nPos, nCount );
272 : }
273 : }
274 :
275 3054581 : OUString CharClass::uppercase( const OUString& rStr, sal_Int32 nPos, sal_Int32 nCount ) const
276 : {
277 : try
278 : {
279 3054581 : if ( xCC.is() )
280 3054581 : return xCC->toUpper( rStr, nPos, nCount, getMyLocale() );
281 : else
282 0 : return rStr.copy( nPos, nCount );
283 : }
284 0 : catch ( const Exception& )
285 : {
286 : SAL_WARN( "unotools.i18n", "uppercase: Exception caught!" );
287 0 : return rStr.copy( nPos, nCount );
288 : }
289 : }
290 :
291 32145 : OUString CharClass::lowercase( const OUString& rStr, sal_Int32 nPos, sal_Int32 nCount ) const
292 : {
293 : try
294 : {
295 32145 : if ( xCC.is() )
296 32145 : return xCC->toLower( rStr, nPos, nCount, getMyLocale() );
297 : else
298 0 : return rStr.copy( nPos, nCount );
299 : }
300 0 : catch ( const Exception& )
301 : {
302 : SAL_WARN( "unotools.i18n", "lowercase: Exception caught!" );
303 0 : return rStr.copy( nPos, nCount );
304 : }
305 : }
306 :
307 56928 : sal_Int16 CharClass::getType( const OUString& rStr, sal_Int32 nPos ) const
308 : {
309 : try
310 : {
311 56928 : if ( xCC.is() )
312 56928 : return xCC->getType( rStr, nPos );
313 : else
314 0 : return 0;
315 : }
316 0 : catch ( const Exception& )
317 : {
318 : SAL_WARN( "unotools.i18n", "getType: Exception caught!" );
319 0 : return 0;
320 : }
321 : }
322 :
323 19541 : sal_Int16 CharClass::getCharacterDirection( const OUString& rStr, sal_Int32 nPos ) const
324 : {
325 : try
326 : {
327 19541 : if ( xCC.is() )
328 19541 : return xCC->getCharacterDirection( rStr, nPos );
329 : else
330 0 : return 0;
331 : }
332 0 : catch ( const Exception& )
333 : {
334 : SAL_WARN( "unotools.i18n", "getCharacterDirection: Exception caught!" );
335 0 : return 0;
336 : }
337 : }
338 :
339 36 : sal_Int16 CharClass::getScript( const OUString& rStr, sal_Int32 nPos ) const
340 : {
341 : try
342 : {
343 36 : if ( xCC.is() )
344 36 : return xCC->getScript( rStr, nPos );
345 : else
346 0 : return 0;
347 : }
348 0 : catch ( const Exception& )
349 : {
350 : SAL_WARN( "unotools.i18n", "getScript: Exception caught!" );
351 0 : return 0;
352 : }
353 : }
354 :
355 227219 : sal_Int32 CharClass::getCharacterType( const OUString& rStr, sal_Int32 nPos ) const
356 : {
357 : try
358 : {
359 227219 : if ( xCC.is() )
360 227219 : return xCC->getCharacterType( rStr, nPos, getMyLocale() );
361 : else
362 0 : return 0;
363 : }
364 0 : catch ( const Exception& )
365 : {
366 : SAL_WARN( "unotools.i18n", "getCharacterType: Exception caught!" );
367 0 : return 0;
368 : }
369 : }
370 :
371 6805 : sal_Int32 CharClass::getStringType( const OUString& rStr, sal_Int32 nPos, sal_Int32 nCount ) const
372 : {
373 : try
374 : {
375 6805 : if ( xCC.is() )
376 6805 : return xCC->getStringType( rStr, nPos, nCount, getMyLocale() );
377 : else
378 0 : return 0;
379 : }
380 0 : catch ( const Exception& )
381 : {
382 : SAL_WARN( "unotools.i18n", "getStringType: Exception caught!" );
383 0 : return 0;
384 : }
385 : }
386 :
387 36168 : ::com::sun::star::i18n::ParseResult CharClass::parseAnyToken(
388 : const OUString& rStr,
389 : sal_Int32 nPos,
390 : sal_Int32 nStartCharFlags,
391 : const OUString& userDefinedCharactersStart,
392 : sal_Int32 nContCharFlags,
393 : const OUString& userDefinedCharactersCont ) const
394 : {
395 : try
396 : {
397 36168 : if ( xCC.is() )
398 72336 : return xCC->parseAnyToken( rStr, nPos, getMyLocale(),
399 : nStartCharFlags, userDefinedCharactersStart,
400 72336 : nContCharFlags, userDefinedCharactersCont );
401 : else
402 0 : return ParseResult();
403 : }
404 0 : catch ( const Exception& e )
405 : {
406 : SAL_WARN( "unotools.i18n", "parseAnyToken: Exception caught " << e.Message );
407 0 : return ParseResult();
408 : }
409 : }
410 :
411 95338 : ::com::sun::star::i18n::ParseResult CharClass::parsePredefinedToken(
412 : sal_Int32 nTokenType,
413 : const OUString& rStr,
414 : sal_Int32 nPos,
415 : sal_Int32 nStartCharFlags,
416 : const OUString& userDefinedCharactersStart,
417 : sal_Int32 nContCharFlags,
418 : const OUString& userDefinedCharactersCont ) const
419 : {
420 : try
421 : {
422 95338 : if ( xCC.is() )
423 190676 : return xCC->parsePredefinedToken( nTokenType, rStr, nPos, getMyLocale(),
424 : nStartCharFlags, userDefinedCharactersStart,
425 190676 : nContCharFlags, userDefinedCharactersCont );
426 : else
427 0 : return ParseResult();
428 : }
429 0 : catch ( const Exception& e )
430 : {
431 : SAL_WARN( "unotools.i18n", "parsePredefinedToken: Exception caught " << e.Message );
432 0 : return ParseResult();
433 : }
434 : }
435 :
436 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|