1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textandlocutils/numbergrouping/inc/NumberGrouping.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,351 @@
1.4 +/*
1.5 +* Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: Provides formatting (grouping) for plain phone numbers
1.18 +*
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +#ifndef C_NUMBER_GROUPING_H
1.24 +#define C_NUMBER_GROUPING_H
1.25 +
1.26 +// #define __TEST_AS_EXE__ // put this in if you want all the test code to run and swap the mmps...
1.27 +
1.28 +#include "NumberGroupingStd.h"
1.29 +
1.30 +class TResourceReader;
1.31 +class CRegularExpression;
1.32 +class CPNGNumberGroupingExtension;
1.33 +
1.34 +/**
1.35 +* Engine class to format plain phone numbers by inserting grouping separators.
1.36 +* Both unformatted and formatted buffers are maintained by this class.
1.37 +* A reversed formatted buffer is also available to assist the client in performing wrapping.
1.38 +*
1.39 +* @lib NumberGrouping.lib
1.40 +*/
1.41 +NONSHARABLE_CLASS(CPNGNumberGrouping) : public CBase
1.42 +{
1.43 +
1.44 +/**
1.45 +* Central Repository key values for KNumberGrouping key in NumberGroupingCRKeys.h
1.46 +*/
1.47 +public:
1.48 + enum TNumberGroupingCRValues
1.49 + {
1.50 + /** Number grouping disabled */
1.51 + ENumberGroupingDisabled = 0,
1.52 + /** Number grouping enabled (USA) */
1.53 + ENumberGroupingEnabled = 1
1.54 + };
1.55 +
1.56 +public:
1.57 + IMPORT_C static CPNGNumberGrouping* NewL(TInt aMaxLength = 0, TBool aReversed = EFalse);
1.58 + IMPORT_C static CPNGNumberGrouping* NewLC(TInt aMaxLength = 0, TBool aReversed = EFalse);
1.59 + IMPORT_C ~CPNGNumberGrouping();
1.60 +
1.61 + IMPORT_C TInt Insert(TInt aIndex, TText aChar);
1.62 + IMPORT_C TInt Delete(TInt aIndex);
1.63 + IMPORT_C TInt Append(TText aChar);
1.64 +
1.65 + /**
1.66 + * Sets the new unformatted phone number.
1.67 + *
1.68 + * Formatting does not actually occur until an API is called that accesses in some way the formatted buffer
1.69 + * or one of its characteristics
1.70 + *
1.71 + * @param aNumber Ungrouped phone number to be copied into the NumberGrouping engine's unformatted buffer
1.72 + * @return KErrOverflow if the number is too long for the length of the unformatted buffer
1.73 + */
1.74 + IMPORT_C TInt Set(const TDesC& aNumber);
1.75 +
1.76 + /**
1.77 + * @return Length of the currently formatted (grouped) buffer
1.78 + */
1.79 + IMPORT_C TInt Length() const;
1.80 +
1.81 + /**
1.82 + * @return Length of the currently unformatted buffer
1.83 + */
1.84 + IMPORT_C TInt UnFormattedLength() const;
1.85 +
1.86 + /**
1.87 + * This returns the maximum size of the unformatted buffer. This is the value that was provided during
1.88 + * construction.
1.89 + *
1.90 + * Descriptors provided to Set() must be shorter than this length.
1.91 + *
1.92 + * @return maximum length of the unformatted buffer.
1.93 + */
1.94 + IMPORT_C TInt MaxDisplayLength() const;
1.95 +
1.96 + /**
1.97 + * Routine to determine if the character at a given position in the formatted phone number
1.98 + * is a space character derived from the number grouping. That is, not part of the supplied phone number
1.99 + * proper, but a space character from the number grouping.
1.100 + *
1.101 + * A client can check the descriptor returned by FormattedNumber() directly to perform a simple test
1.102 + * of whether the character is a Space or not (whether or not derived from number grouping formatting)
1.103 + *
1.104 + * Note also that this returns EFalse if the character is some other formatting character besides
1.105 + * space. To determine that, use IsCharacterInsertedByNumberGrouping().
1.106 + *
1.107 + * @param aPos The index of the character of interest
1.108 + * @return EFalse iff the characer at aPos in the formatted buffer is a space coming from grouping
1.109 + */
1.110 + IMPORT_C TBool IsSpace(TInt aPos) const;
1.111 +
1.112 + /**
1.113 + * Access to section of the formatted buffer.
1.114 + * This routine returns a descriptor for the indicated range in the formatted (grouped) internal
1.115 + * buffer. If there are spaces at either end of the indicated section of the formatted buffer, then
1.116 + * the returned descriptor is adjusted to point to the trimmed buffer in order to avoid the spaces.
1.117 + *
1.118 + * @param aFrom Inclusive starting index
1.119 + * @param aTo Inclusive end index
1.120 + * @return reference to const non-modifiable descriptor for the indicated, trimmed text
1.121 + */
1.122 + IMPORT_C const TDesC& FormattedNumber(TInt aFrom, TInt aTo) const;
1.123 +
1.124 + IMPORT_C const TDesC& FormattedNumber() const;
1.125 +
1.126 + /**
1.127 + * Access to part of the reverse formatted number. If there are spaces at either end of the indicated
1.128 + * section of the formatted buffer, then the returned descriptor is adjusted to point to the trimmed
1.129 + * buffer in order to avoid the spaces.
1.130 + *
1.131 + * Returns KNullDesC if the feature has not been enabled by passing ETrue to the
1.132 + * parameter aReversed during construction
1.133 + *
1.134 + * @param aFrom lower (inclusive) limit of the text to look at
1.135 + * @param aTo upper (inclusive) limit of the text to look at
1.136 + * @return Reference to descriptor containing the selected text
1.137 + */
1.138 + IMPORT_C const TDesC& ReverseFormattedNumber(TInt aFrom, TInt aTo) const;
1.139 +
1.140 + /**
1.141 + * Access to the reverse formatted number
1.142 + *
1.143 + * Returns KNullDesC if the feature has not been enabled by passing ETrue to the
1.144 + * parameter aReversed during construction
1.145 + *
1.146 + * @return Reference to descriptor containing the reverse formatted text
1.147 + */
1.148 + IMPORT_C const TDesC& ReverseFormattedNumber() const;
1.149 + IMPORT_C const TDesC& Selection(TInt aFrom, TInt aTo) const;
1.150 +
1.151 + IMPORT_C const TDesC& UnFormattedNumber(TInt aFrom, TInt aTo) const;
1.152 + IMPORT_C const TDesC& UnFormattedNumber() const;
1.153 +
1.154 + /**
1.155 + * This method allows the client to determine if the indexed character is a number grouping supplied
1.156 + * character. Specifically, this means that this character originates in the number grouping formatting
1.157 + * and not from the supplied unformatted phone number.
1.158 + *
1.159 + * Where the number has not been grouped (e.g. because there is an invalid phone number character in the
1.160 + * supplied descriptor), this method returns EFalse, even if the character pointed to may be of the nature
1.161 + * of a number grouping character. Use IsChangedByGrouping() to see if the number has been changed by
1.162 + * grouping at all.
1.163 + *
1.164 + * Where a client is interested purely in the nature of the characters rather than whether they come from
1.165 + * grouping or not, he may examine the examine the text via the descriptor reference returned by
1.166 + * FormattedNumber().
1.167 + *
1.168 + * @since Series 60 2.6
1.169 + * @param aPos The index provided is for the formatted number.
1.170 + * @return EFalse iff the character at the supplied index is part of the supplied phone number
1.171 + */
1.172 + IMPORT_C TBool IsCharacterInsertedByNumberGrouping(TInt aPos) const;
1.173 +
1.174 + /**
1.175 + * Method to determine if the current number has been changed by number grouping.
1.176 + * If this returns EFalse, then FormattedNumber() and UnFormattedNumber() refer to descriptors of with identical
1.177 + * content.
1.178 + * If this method returns ETrue, then the descriptors that would be returned by the two accessor APIs refer
1.179 + * to descriptors with different content.
1.180 + *
1.181 + * @since Series 60 2.6
1.182 + * @return ETrue iff formatting of the number has made an effective difference.
1.183 + */
1.184 + IMPORT_C TBool IsChangedByGrouping() const;
1.185 +
1.186 + /**
1.187 + * @return return iLanguage.
1.188 + */
1.189 + inline TLanguage Language() const;
1.190 +
1.191 +
1.192 +public:
1.193 +
1.194 + TLanguage iForceLanguage;
1.195 +
1.196 +private: // private classes and enums
1.197 +
1.198 + class TPNGSeparator
1.199 + {
1.200 + public:
1.201 + TPNGSeparator();
1.202 + TPNGSeparator( TInt aPos, TText aSeparatorCharacter );
1.203 + public:
1.204 + TInt iPosition;
1.205 + TText iSeparatorCharacter;
1.206 + };
1.207 +
1.208 + class TPNGGroupingInfo
1.209 + {
1.210 + public:
1.211 + TPNGGroupingInfo();
1.212 + public:
1.213 + TInt iMinNumberOfDigits;
1.214 + TInt iMaxNumberOfDigits;
1.215 + RArray<TPNGSeparator> iAfterPositions; // Positions of separators "after" the beginning
1.216 + TPNGSeparator iBeforePosition; // Positions of separators "before" the end
1.217 + };
1.218 +
1.219 + // Constant for no pattern in use:
1.220 + enum
1.221 + {
1.222 + ENoMatchedPattern = -1
1.223 + };
1.224 +
1.225 +private: // Constructors
1.226 + CPNGNumberGrouping( TInt aMaxLength, TBool aReserved);
1.227 + void ConstructL();
1.228 +
1.229 +private:
1.230 + TLanguage doReadLanguageFromSharedData() const;
1.231 +
1.232 + void doReadFormatInfoFromResourceFileL();
1.233 + void doClearGroupingItemsList();
1.234 + void doClearFormattedNumbers();
1.235 +
1.236 + void doNumberGroupingL() const;
1.237 + void doNumberSquashing() const;
1.238 +
1.239 + /**
1.240 + * Read and process a single NUMBER_GROUPING_ITEM resource structure
1.241 + */
1.242 + void ReadGroupingSchemeL(
1.243 + TResourceReader& aResourceReader,
1.244 + RPointerArray<TDesC>& aGroupingPatternsList,
1.245 + TInt& aMaxExtraCharacters );
1.246 +
1.247 + /**
1.248 + * Read and skip a single NUMBER_GROUPING_ITEM resource structure
1.249 + */
1.250 + void SkipGroupingSchemeL( TResourceReader& aResourceReader ) const;
1.251 +
1.252 + /**
1.253 + * Process the format pattern for "after positions"
1.254 + */
1.255 + void ParseForAfterPositions(
1.256 + const TDesC& aFormatPattern,
1.257 + TPNGGroupingInfo* aGroupingInfo,
1.258 + const TDesC& aWildcardedMatchingPattern,
1.259 + TInt& aMaxExtraCharacters,
1.260 + TBool& trailingPossible ) const;
1.261 +
1.262 + /**
1.263 + * Process the format pattern for a before positions
1.264 + */
1.265 + void ParseForBeforePosition(
1.266 + const TDesC& aFormatPattern,
1.267 + CPNGNumberGrouping::TPNGGroupingInfo* aGroupingInfo,
1.268 + TInt& aMaxExtraCharacters
1.269 + ) const;
1.270 +
1.271 + /**
1.272 + * This routine is used to find a wildcarded version of the matching pattern
1.273 + * provided in the "initialDigits" element for a grouping scheme read from resource.
1.274 + * It uses the services of the CRegularExpression class, an instance of which is constructed
1.275 + * with the provided aMatchString pattern only.
1.276 + *
1.277 + * The client must supply a modifiable descriptor long enough to hold the wildcarded version
1.278 + * of the pattern.
1.279 + *
1.280 + * For each character index, if there is only one possible valid character, this puts in that
1.281 + * character. If there are more than one, then the supplied aWildcardChar is inserted. The
1.282 + * initialDigits element uses a full stop as a numeric wildcard; this is replaced with the nominated
1.283 + * wildcard.
1.284 + *
1.285 + * Rules: (where 'n, has been passed is used as the wildcard)
1.286 + * "<a numeric digit>" -> "<a numeric digit>"
1.287 + * ( e.g. "1" -> "1" )
1.288 + * "+" -> "+"
1.289 + * "." -> "n"
1.290 + * "[0-3]" -> "n"
1.291 + *
1.292 + * @param aMatchString Regular expression to provide example of
1.293 + * @param aWildcardChar The character to put in the example pattern if there is no single
1.294 + * valid character at that point
1.295 + * @param aWildcardMatchString Descriptor to write the wildcarded match pattern into
1.296 + */
1.297 + void GetWildcardVersionOfMatchStringL(
1.298 + const TDesC& aMatchString,
1.299 + TText aWildcard,
1.300 + TDes& aWildcardMatchString ) const;
1.301 +
1.302 + /**
1.303 + * This method expresses the policy of what characters may form part of a phone number
1.304 + * Note that this method is valid even it there is no formatting going on. It is an intrinsic
1.305 + * test on the character itself
1.306 + */
1.307 + TBool IsValidPhoneNumberCharacter(TText aCharacter) const;
1.308 +
1.309 + /**
1.310 + * Examines the unformatted number, counting how many digits are found before non-digit
1.311 + * characters or the end is encountered.
1.312 + * Returns 0 if Set() has not been called.
1.313 + */
1.314 + TInt LengthToGroup() const;
1.315 +
1.316 + /**
1.317 + * Perform number grouping using pattern at given index. Grouping is only applied to the leading
1.318 + * aLengthToGroup characters.
1.319 + */
1.320 + void doNumberGroupingForPatternL( TInt aMatchedPattern, TInt aLengthToGroup ) const;
1.321 +
1.322 +private: // private data
1.323 +
1.324 + HBufC* iUnformattedNumber;
1.325 + mutable TPtrC iUnformattedNumberPtr;
1.326 +
1.327 + mutable HBufC* iFormattedNumber;
1.328 + mutable TPtrC iFormattedNumberPtr;
1.329 +
1.330 + mutable HBufC* iReverseFormattedNumber;
1.331 + mutable TPtrC iReverseFormattedNumberPtr;
1.332 +
1.333 + mutable TPtrC iSelectionPtr;
1.334 +
1.335 + mutable TLanguage iLanguage; // the system language
1.336 + TInt iMaxUnformattedLength;
1.337 + TBool iReversed;
1.338 +
1.339 + CRegularExpression* iRegExp; // the patterns for matching
1.340 + RPointerArray<TPNGGroupingInfo> iGroupingItemsList; // the formatting info
1.341 +
1.342 + mutable TInt iMatchedPatternIndex; // keep track of what pattern is matched
1.343 + CPNGNumberGroupingExtension* iExtension;
1.344 +};
1.345 +
1.346 +inline TLanguage CPNGNumberGrouping::Language() const
1.347 + {
1.348 + return iLanguage;
1.349 + }
1.350 +
1.351 +
1.352 +#endif // C_NUMBER_GROUPING_H
1.353 +
1.354 +// End of File