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 : #ifndef INCLUDED_SVL_SOURCE_NUMBERS_ZFORFIND_HXX
21 : #define INCLUDED_SVL_SOURCE_NUMBERS_ZFORFIND_HXX
22 :
23 : #include <com/sun/star/uno/Sequence.hxx>
24 : #include <rtl/ustring.hxx>
25 :
26 : class Date;
27 : class SvNumberformat;
28 : class SvNumberFormatter;
29 :
30 : #define SV_MAX_ANZ_INPUT_STRINGS 20 // max count of substrings in input scanner
31 :
32 : class ImpSvNumberInputScan
33 : {
34 : public:
35 : ImpSvNumberInputScan( SvNumberFormatter* pFormatter );
36 : ~ImpSvNumberInputScan();
37 :
38 : /*!*/ void ChangeIntl(); // MUST be called if language changes
39 :
40 : /// set reference date for offset calculation
41 : void ChangeNullDate( const sal_uInt16 nDay,
42 : const sal_uInt16 nMonth,
43 : const sal_uInt16 nYear );
44 :
45 : /// convert input string to number
46 : bool IsNumberFormat( const OUString& rString, /// input string
47 : short& F_Type, /// format type (in + out)
48 : double& fOutNumber, /// value determined (out)
49 : const SvNumberformat* pFormat = NULL); /// optional a number format to which compare against
50 :
51 : /// after IsNumberFormat: get decimal position
52 0 : short GetDecPos() const { return nDecPos; }
53 : /// after IsNumberFormat: get count of numeric substrings in input string
54 0 : sal_uInt16 GetAnzNums() const { return nAnzNums; }
55 :
56 : /// set threshold of two-digit year input
57 0 : void SetYear2000( sal_uInt16 nVal ) { nYear2000 = nVal; }
58 : /// get threshold of two-digit year input
59 0 : sal_uInt16 GetYear2000() const { return nYear2000; }
60 :
61 : /** Whether input can be forced to ISO 8601 format.
62 :
63 : Depends on locale's date separator and a specific date format order.
64 :
65 : @param eDateFormat
66 : Evaluated only on first call during one scan process, subsequent
67 : calls return state of nCanForceToIso8601!
68 :
69 : @see nCanForceToIso8601
70 : */
71 : bool CanForceToIso8601( DateFormat eDateFormat );
72 :
73 : void InvalidateDateAcceptancePatterns();
74 :
75 : private:
76 : SvNumberFormatter* pFormatter;
77 : OUString* pUpperMonthText; //* Array of month names, uppercase
78 : OUString* pUpperAbbrevMonthText; //* Array of month names, abbreviated, uppercase
79 : OUString* pUpperGenitiveMonthText; //* Array of genitive month names, uppercase
80 : OUString* pUpperGenitiveAbbrevMonthText; //* Array of genitive month names, abbreviated, uppercase
81 : OUString* pUpperPartitiveMonthText; //* Array of partitive month names, uppercase
82 : OUString* pUpperPartitiveAbbrevMonthText; //* Array of partitive month names, abbreviated, uppercase
83 : OUString* pUpperDayText; //* Array of day of week names, uppercase
84 : OUString* pUpperAbbrevDayText; //* Array of day of week names, abbreviated, uppercase
85 : OUString aUpperCurrSymbol; //* Currency symbol, uppercase
86 : bool bTextInitialized; //* Whether days and months are initialized
87 : bool bScanGenitiveMonths; //* Whether to scan an input for genitive months
88 : bool bScanPartitiveMonths; //* Whether to scan an input for partitive months
89 : Date* pNullDate; //* 30Dec1899
90 : // Variables for provisional results:
91 : OUString sStrArray[SV_MAX_ANZ_INPUT_STRINGS]; //* Array of scanned substrings
92 : bool IsNum[SV_MAX_ANZ_INPUT_STRINGS]; //* Whether a substring is numeric
93 : sal_uInt16 nNums[SV_MAX_ANZ_INPUT_STRINGS]; //* Sequence of offsets to numeric strings
94 : sal_uInt16 nAnzStrings; //* Total count of scanned substrings
95 : sal_uInt16 nAnzNums; //* Count of numeric substrings
96 : bool bDecSepInDateSeps; //* True <=> DecSep in {.,-,/,DateSep}
97 : sal_uInt8 nMatchedAllStrings; //* Scan...String() matched all substrings,
98 :
99 : // bit mask of nMatched... constants
100 : static const sal_uInt8 nMatchedEndString; // 0x01
101 : static const sal_uInt8 nMatchedMidString; // 0x02
102 : static const sal_uInt8 nMatchedStartString; // 0x04
103 : static const sal_uInt8 nMatchedVirgin; // 0x08
104 : static const sal_uInt8 nMatchedUsedAsReturn; // 0x10
105 :
106 : int nSign; // Sign of number
107 : int nMonth; // Month (1..x) if date
108 : // negative => short format
109 : short nMonthPos; // 1 = front, 2 = middle
110 : // 3 = end
111 : sal_uInt16 nTimePos; // Index of first time separator (+1)
112 : short nDecPos; // Index of substring containing "," (+1)
113 : short nNegCheck; // '( )' for negative
114 : short nESign; // Sign of exponent
115 : short nAmPm; // +1 AM, -1 PM, 0 if none
116 : short nLogical; // -1 => False, 1 => True
117 : sal_uInt16 nThousand; // Count of group (AKA thousand) separators
118 : sal_uInt16 nPosThousandString; // Position of concatenaded 000,000,000 string
119 : short eScannedType; // Scanned type
120 : short eSetType; // Preset Type
121 :
122 : sal_uInt16 nStringScanNumFor; // Fixed strings recognized in
123 : // pFormat->NumFor[nNumForStringScan]
124 : short nStringScanSign; // Sign resulting of FixString
125 : sal_uInt16 nYear2000; // Two-digit threshold
126 : // Year as 20xx
127 : // default 18
128 : // number <= nYear2000 => 20xx
129 : // number > nYear2000 => 19xx
130 : sal_uInt16 nTimezonePos; // Index of timezone separator (+1)
131 :
132 : /** State of ISO 8601 detection.
133 :
134 : 0:= don't know yet
135 : 1:= no
136 : 2:= yes, <=2 digits in year
137 : 3:= yes, 3 digits in year
138 : 4:= yes, >=4 digits in year
139 :
140 : @see MayBeIso8601()
141 : */
142 : sal_uInt8 nMayBeIso8601;
143 :
144 : /** State of ISO 8601 can be forced.
145 :
146 : 0:= don't know yet
147 : 1:= no
148 : 2:= yes
149 :
150 : @see CanForceToIso8601()
151 : */
152 : sal_uInt8 nCanForceToIso8601;
153 :
154 : /** State of dd-month-yy or yy-month-dd detection, with month name.
155 :
156 : 0:= don't know yet
157 : 1:= no
158 : 2:= yes, dd-month-yy
159 : 3:= yes, yy-month-dd
160 :
161 : @see MayBeMonthDate()
162 : */
163 : sal_uInt8 nMayBeMonthDate;
164 :
165 : /** Input matched this locale dependent date acceptance pattern.
166 : -2 if not checked yet, -1 if no match, >=0 matched pattern.
167 :
168 : @see IsAcceptedDatePattern()
169 : */
170 : sal_Int32 nAcceptedDatePattern;
171 : com::sun::star::uno::Sequence< OUString > sDateAcceptancePatterns;
172 :
173 : /** If input matched a date acceptance pattern that starts at input
174 : particle sStrArray[nDatePatternStart].
175 :
176 : @see IsAcceptedDatePattern()
177 : */
178 : sal_uInt16 nDatePatternStart;
179 :
180 : /** Count of numbers that matched the accepted pattern, if any, else 0.
181 :
182 : @see GetDatePatternNumbers()
183 : */
184 : sal_uInt16 nDatePatternNumbers;
185 :
186 : void Reset(); // Reset all variables before start of analysis
187 :
188 : void InitText(); // Init of months and days of week
189 :
190 : // Convert string to double.
191 : // Only simple unsigned floating point values without any error detection,
192 : // decimal separator has to be '.'
193 : // If bForceFraction==true the string is taken to be the fractional part
194 : // of 0.1234 without the leading 0. (thus being just "1234").
195 : double StringToDouble( const OUString& rStr,
196 : bool bForceFraction = false );
197 :
198 : // Next number/string symbol
199 : bool NextNumberStringSymbol( const sal_Unicode*& pStr,
200 : OUString& rSymbol );
201 :
202 : // Concatenate ,000,23 blocks
203 : // in input to 000123
204 : bool SkipThousands( const sal_Unicode*& pStr, OUString& rSymbol );
205 :
206 : // Divide numbers/strings into
207 : // arrays and variables above.
208 : // Leading blanks and blanks
209 : // after numbers are thrown away
210 : void NumberStringDivision( const OUString& rString );
211 :
212 :
213 : // optimized substring versions
214 :
215 : // Whether rString contains rWhat at nPos
216 0 : static inline bool StringContains( const OUString& rWhat,
217 : const OUString& rString,
218 : sal_Int32 nPos )
219 : {
220 0 : if (rWhat.isEmpty() || rString.getLength() <= nPos)
221 : {
222 0 : return false;
223 : }
224 : // mostly used with one character
225 0 : if ( rWhat[ 0 ] != rString[ nPos ] )
226 : {
227 0 : return false;
228 : }
229 0 : return StringContainsImpl( rWhat, rString, nPos );
230 : }
231 :
232 : // Whether pString contains rWhat at nPos
233 0 : static inline bool StringPtrContains( const OUString& rWhat,
234 : const sal_Unicode* pString,
235 : sal_Int32 nPos ) // nPos MUST be a valid offset from pString
236 : {
237 : // mostly used with one character
238 0 : if ( rWhat[ 0 ] != pString[ nPos ] )
239 : {
240 0 : return false;
241 : }
242 0 : return StringPtrContainsImpl( rWhat, pString, nPos );
243 : }
244 :
245 : //! DO NOT use directly
246 : static bool StringContainsImpl( const OUString& rWhat,
247 : const OUString& rString,
248 : sal_Int32 nPos );
249 : //! DO NOT use directly
250 : static bool StringPtrContainsImpl( const OUString& rWhat,
251 : const sal_Unicode* pString,
252 : sal_Int32 nPos );
253 :
254 : // Skip a special character
255 : static inline bool SkipChar( sal_Unicode c,
256 : const OUString& rString,
257 : sal_Int32& nPos );
258 :
259 : // Skip blank
260 : static inline void SkipBlanks( const OUString& rString,
261 : sal_Int32& nPos );
262 :
263 : // Jump over rWhat in rString at nPos
264 : static inline bool SkipString( const OUString& rWhat,
265 : const OUString& rString,
266 : sal_Int32& nPos );
267 :
268 : // Recognizes exactly ,111 as group separator
269 : inline bool GetThousandSep( const OUString& rString,
270 : sal_Int32& nPos,
271 : sal_uInt16 nStringPos );
272 : // Get boolean value
273 : short GetLogical( const OUString& rString );
274 :
275 : // Get month and advance string position
276 : short GetMonth( const OUString& rString,
277 : sal_Int32& nPos );
278 :
279 : // Get day of week and advance string position
280 : int GetDayOfWeek( const OUString& rString,
281 : sal_Int32& nPos );
282 :
283 : // Get currency symbol and advance string position
284 : bool GetCurrency( const OUString& rString,
285 : sal_Int32& nPos,
286 : const SvNumberformat* pFormat = NULL ); // optional number format to match against
287 :
288 : // Get symbol AM or PM and advance string position
289 : bool GetTimeAmPm( const OUString& rString,
290 : sal_Int32& nPos );
291 :
292 : // Get decimal separator and advance string position
293 : inline bool GetDecSep( const OUString& rString,
294 : sal_Int32& nPos );
295 :
296 : // Get hundredth seconds separator and advance string position
297 : inline bool GetTime100SecSep( const OUString& rString,
298 : sal_Int32& nPos );
299 :
300 : // Get sign and advance string position
301 : // Including special case '('
302 : int GetSign( const OUString& rString,
303 : sal_Int32& nPos );
304 :
305 : // Get sign of exponent and advance string position
306 : short GetESign( const OUString& rString,
307 : sal_Int32& nPos );
308 :
309 : // Get next number as array offset
310 : inline bool GetNextNumber( sal_uInt16& i,
311 : sal_uInt16& j );
312 :
313 : /** Converts time -> double (only decimals)
314 :
315 : @return TRUE if time, FALSE if not (e.g. hours >12 with AM/PM)
316 : */
317 : bool GetTimeRef( double& fOutNumber, // result as double
318 : sal_uInt16 nIndex, // Index of hour in input
319 : sal_uInt16 nAnz ); // Count of time substrings in input
320 : sal_uInt16 ImplGetDay ( sal_uInt16 nIndex ); // Day input, 0 if no match
321 : sal_uInt16 ImplGetMonth( sal_uInt16 nIndex ); // Month input, zero based return, NumberOfMonths if no match
322 : sal_uInt16 ImplGetYear ( sal_uInt16 nIndex ); // Year input, 0 if no match
323 :
324 : // Conversion of date to number
325 : bool GetDateRef( double& fDays, // OUT: days diff to null date
326 : sal_uInt16& nCounter, // Count of date substrings
327 : const SvNumberformat* pFormat = NULL ); // optional number format to match against
328 :
329 : // Analyze start of string
330 : bool ScanStartString( const OUString& rString,
331 : const SvNumberformat* pFormat = NULL );
332 :
333 : // Analyze middle substring
334 : bool ScanMidString( const OUString& rString,
335 : sal_uInt16 nStringPos,
336 : const SvNumberformat* pFormat = NULL );
337 :
338 :
339 : // Analyze end of string
340 : bool ScanEndString( const OUString& rString,
341 : const SvNumberformat* pFormat = NULL );
342 :
343 : // Compare rString to substring of array indexed by nString
344 : // nString == 0xFFFF => last substring
345 : bool ScanStringNumFor( const OUString& rString,
346 : sal_Int32 nPos,
347 : const SvNumberformat* pFormat,
348 : sal_uInt16 nString,
349 : bool bDontDetectNegation = false );
350 :
351 : // if nMatchedAllStrings set nMatchedUsedAsReturn and return true,
352 : // else do nothing and return false
353 : bool MatchedReturn();
354 :
355 : //! Be sure that the string to be analyzed is already converted to upper
356 : //! case and if it contained native humber digits that they are already
357 : //! converted to ASCII.
358 :
359 : // Main anlyzing function
360 : bool IsNumberFormatMain( const OUString& rString,
361 : const SvNumberformat* pFormat = NULL); // optional number format to match against
362 :
363 : static inline bool MyIsdigit( sal_Unicode c );
364 :
365 : /** Whether input matches locale dependent date acceptance pattern.
366 :
367 : @param nStartPatternAt
368 : The pattern matching starts at input particle
369 : sStrArray[nStartPatternAt].
370 :
371 : NOTE: once called the result is remembered, subsequent calls with
372 : different parameters do not check for a match and do not lead to a
373 : different result.
374 : */
375 : bool IsAcceptedDatePattern( sal_uInt16 nStartPatternAt );
376 :
377 : /** Sets (not advances!) rPos to sStrArray[nParticle].getLength() if string
378 : matches separator in pattern at nParticle.
379 :
380 : @returns TRUE if separator matched.
381 : */
382 : bool SkipDatePatternSeparator( sal_uInt16 nParticle, sal_Int32 & rPos );
383 :
384 : /** Returns count of numbers in accepted date pattern.
385 : */
386 : sal_uInt16 GetDatePatternNumbers();
387 :
388 : /** Obtain order of accepted date pattern coded as, for example,
389 : ('D'<<16)|('M'<<8)|'Y'
390 : */
391 : sal_uInt32 GetDatePatternOrder();
392 :
393 : /** Obtain date format order, from accepted date pattern if available or
394 : otherwise the locale's default order.
395 : */
396 : DateFormat GetDateOrder();
397 :
398 : /** Whether input may be an ISO 8601 date format, yyyy-mm-dd...
399 :
400 : Checks if input has at least 3 numbers for yyyy-mm-dd and the separator
401 : is '-', and 1<=mm<=12 and 1<=dd<=31.
402 :
403 : @see nMayBeIso8601
404 : */
405 : bool MayBeIso8601();
406 :
407 : /** Whether input may be a dd-month-yy format, with month name, not
408 : number.
409 :
410 : @see nMayBeMonthDate
411 : */
412 : bool MayBeMonthDate();
413 : };
414 :
415 : #endif // INCLUDED_SVL_SOURCE_NUMBERS_ZFORFIND_HXX
416 :
417 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|