os/textandloc/textandlocutils/numbergrouping/inc/NumberGrouping.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:  Provides formatting (grouping) for plain phone numbers
sl@0
    15
*
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef C_NUMBER_GROUPING_H
sl@0
    21
#define C_NUMBER_GROUPING_H
sl@0
    22
sl@0
    23
// #define __TEST_AS_EXE__ // put this in if you want all the test code to run and swap the mmps...
sl@0
    24
sl@0
    25
#include "NumberGroupingStd.h"
sl@0
    26
sl@0
    27
class TResourceReader;
sl@0
    28
class CRegularExpression;
sl@0
    29
class CPNGNumberGroupingExtension;
sl@0
    30
sl@0
    31
/**
sl@0
    32
* Engine class to format plain phone numbers by inserting grouping separators.
sl@0
    33
*  Both unformatted and formatted buffers are maintained by this class.
sl@0
    34
*  A reversed formatted buffer is also available to assist the client in performing wrapping.
sl@0
    35
*
sl@0
    36
* @lib NumberGrouping.lib
sl@0
    37
*/
sl@0
    38
NONSHARABLE_CLASS(CPNGNumberGrouping) : public CBase
sl@0
    39
{
sl@0
    40
sl@0
    41
/** 
sl@0
    42
* Central Repository key values for KNumberGrouping key in NumberGroupingCRKeys.h
sl@0
    43
*/
sl@0
    44
public:
sl@0
    45
    enum TNumberGroupingCRValues
sl@0
    46
        {
sl@0
    47
        /** Number grouping disabled */
sl@0
    48
        ENumberGroupingDisabled = 0,
sl@0
    49
        /** Number grouping enabled (USA) */
sl@0
    50
        ENumberGroupingEnabled = 1
sl@0
    51
        };
sl@0
    52
sl@0
    53
public:
sl@0
    54
	IMPORT_C static CPNGNumberGrouping*	NewL(TInt aMaxLength = 0, TBool aReversed = EFalse);
sl@0
    55
	IMPORT_C static CPNGNumberGrouping*	NewLC(TInt aMaxLength = 0, TBool aReversed = EFalse);
sl@0
    56
	IMPORT_C ~CPNGNumberGrouping();
sl@0
    57
sl@0
    58
	IMPORT_C TInt	Insert(TInt aIndex, TText aChar);
sl@0
    59
	IMPORT_C TInt	Delete(TInt aIndex);
sl@0
    60
	IMPORT_C TInt	Append(TText aChar);
sl@0
    61
sl@0
    62
    /**
sl@0
    63
    * Sets the new unformatted phone number.
sl@0
    64
    *
sl@0
    65
    * Formatting does not actually occur until an API is called that accesses in some way the formatted buffer
sl@0
    66
    * or one of its characteristics
sl@0
    67
    *
sl@0
    68
    * @param    aNumber Ungrouped phone number to be copied into the NumberGrouping engine's unformatted buffer
sl@0
    69
    * @return   KErrOverflow if the number is too long for the length of the unformatted buffer
sl@0
    70
    */
sl@0
    71
    IMPORT_C TInt	Set(const TDesC& aNumber);
sl@0
    72
sl@0
    73
    /**
sl@0
    74
    * @return   Length of the currently formatted (grouped) buffer
sl@0
    75
    */
sl@0
    76
    IMPORT_C TInt   Length() const;
sl@0
    77
sl@0
    78
    /**
sl@0
    79
    * @return   Length of the currently unformatted buffer
sl@0
    80
    */
sl@0
    81
    IMPORT_C TInt   UnFormattedLength() const;
sl@0
    82
sl@0
    83
	/**
sl@0
    84
    * This returns the maximum size of the unformatted buffer. This is the value that was provided during
sl@0
    85
    * construction.
sl@0
    86
    *
sl@0
    87
    * Descriptors provided to Set() must be shorter than this length.
sl@0
    88
    *
sl@0
    89
    * @return   maximum length of the unformatted buffer.
sl@0
    90
    */
sl@0
    91
    IMPORT_C TInt			MaxDisplayLength() const;
sl@0
    92
sl@0
    93
    /**
sl@0
    94
    * Routine to determine if the character at a given position in the formatted phone number
sl@0
    95
    * is a space character derived from the number grouping. That is, not part of the supplied phone number
sl@0
    96
    * proper, but a space character from the number grouping.
sl@0
    97
    *
sl@0
    98
    * A client can check the descriptor returned by FormattedNumber() directly to perform a simple test
sl@0
    99
    * of whether the character is a Space or not (whether or not derived from number grouping formatting)
sl@0
   100
    *
sl@0
   101
    * Note also that this returns EFalse if the character is some other formatting character besides
sl@0
   102
    * space.  To determine that, use IsCharacterInsertedByNumberGrouping().
sl@0
   103
    *
sl@0
   104
    * @param    aPos    The index of the character of interest
sl@0
   105
    * @return   EFalse  iff the characer at aPos in the formatted buffer is a space coming from grouping
sl@0
   106
    */
sl@0
   107
	IMPORT_C TBool			IsSpace(TInt aPos) const;
sl@0
   108
sl@0
   109
	/**
sl@0
   110
    * Access to section of the formatted buffer.
sl@0
   111
    * This routine returns a descriptor for the indicated range in the formatted (grouped) internal
sl@0
   112
    * buffer.  If there are spaces at either end of the indicated section of the formatted buffer, then
sl@0
   113
    * the returned descriptor is adjusted to point to the trimmed buffer in order to avoid the spaces.
sl@0
   114
    *
sl@0
   115
    * @param    aFrom   Inclusive starting index
sl@0
   116
    * @param    aTo     Inclusive end index
sl@0
   117
    * @return   reference to const non-modifiable descriptor for the indicated, trimmed text
sl@0
   118
    */
sl@0
   119
    IMPORT_C const TDesC&	FormattedNumber(TInt aFrom, TInt aTo) const;
sl@0
   120
sl@0
   121
    IMPORT_C const TDesC&	FormattedNumber() const;
sl@0
   122
sl@0
   123
    /**
sl@0
   124
    * Access to part of the reverse formatted number. If there are spaces at either end of the indicated
sl@0
   125
    * section of the formatted buffer, then the returned descriptor is adjusted to point to the trimmed
sl@0
   126
    * buffer in order to avoid the spaces.
sl@0
   127
    *
sl@0
   128
    * Returns KNullDesC if the feature has not been enabled by passing ETrue to the
sl@0
   129
    * parameter aReversed during construction
sl@0
   130
    *
sl@0
   131
    * @param    aFrom   lower (inclusive) limit of the text to look at
sl@0
   132
    * @param    aTo     upper (inclusive) limit of the text to look at
sl@0
   133
    * @return   Reference to descriptor containing the selected text
sl@0
   134
    */
sl@0
   135
	IMPORT_C const TDesC&	ReverseFormattedNumber(TInt aFrom, TInt aTo) const;
sl@0
   136
sl@0
   137
    /**
sl@0
   138
    * Access to the reverse formatted number
sl@0
   139
    *
sl@0
   140
    * Returns KNullDesC if the feature has not been enabled by passing ETrue to the
sl@0
   141
    * parameter aReversed during construction
sl@0
   142
    *
sl@0
   143
    * @return   Reference to descriptor containing the reverse formatted text
sl@0
   144
    */
sl@0
   145
	IMPORT_C const TDesC&	ReverseFormattedNumber() const;
sl@0
   146
	IMPORT_C const TDesC&	Selection(TInt aFrom, TInt aTo) const;
sl@0
   147
sl@0
   148
	IMPORT_C const TDesC&	UnFormattedNumber(TInt aFrom, TInt aTo) const;
sl@0
   149
	IMPORT_C const TDesC&	UnFormattedNumber() const;
sl@0
   150
sl@0
   151
    /**
sl@0
   152
    * This method allows the client to determine if the indexed character is a number grouping supplied
sl@0
   153
    * character. Specifically, this means that this character originates in the number grouping formatting
sl@0
   154
    * and not from the supplied unformatted phone number.
sl@0
   155
    *
sl@0
   156
    * Where the number has not been grouped (e.g. because there is an invalid phone number character in the
sl@0
   157
    * supplied descriptor), this method returns EFalse, even if the character pointed to may be of the nature
sl@0
   158
    * of a number grouping character. Use IsChangedByGrouping() to see if the number has been changed by
sl@0
   159
    * grouping at all.
sl@0
   160
    *
sl@0
   161
    * Where a client is interested purely in the nature of the characters rather than whether they come from
sl@0
   162
    * grouping or not, he may examine the examine the text via the descriptor reference returned by
sl@0
   163
    * FormattedNumber().
sl@0
   164
    *
sl@0
   165
    * @since    Series 60 2.6
sl@0
   166
    * @param    aPos    The index provided is for the formatted number.
sl@0
   167
    * @return   EFalse  iff the character at the supplied index is part of the supplied phone number
sl@0
   168
    */
sl@0
   169
    IMPORT_C TBool IsCharacterInsertedByNumberGrouping(TInt aPos) const;
sl@0
   170
sl@0
   171
    /**
sl@0
   172
    * Method to determine if the current number has been changed by number grouping.
sl@0
   173
    * If this returns EFalse, then FormattedNumber() and UnFormattedNumber() refer to descriptors of with identical
sl@0
   174
    * content.
sl@0
   175
    * If this method returns ETrue, then the descriptors that would be returned by the two accessor APIs refer
sl@0
   176
    * to descriptors with different content.
sl@0
   177
    *
sl@0
   178
    * @since    Series 60 2.6
sl@0
   179
    * @return   ETrue iff formatting of the number has made an effective difference.
sl@0
   180
    */
sl@0
   181
    IMPORT_C TBool IsChangedByGrouping() const;
sl@0
   182
    
sl@0
   183
    /**
sl@0
   184
    * @return   return iLanguage.
sl@0
   185
    */
sl@0
   186
    inline TLanguage  Language() const;
sl@0
   187
sl@0
   188
sl@0
   189
public:
sl@0
   190
sl@0
   191
	TLanguage	iForceLanguage;
sl@0
   192
sl@0
   193
private: // private classes and enums
sl@0
   194
sl@0
   195
    class TPNGSeparator
sl@0
   196
        {
sl@0
   197
        public:
sl@0
   198
        TPNGSeparator();
sl@0
   199
        TPNGSeparator( TInt aPos, TText aSeparatorCharacter );
sl@0
   200
        public:
sl@0
   201
        TInt iPosition;
sl@0
   202
        TText iSeparatorCharacter;
sl@0
   203
        };
sl@0
   204
sl@0
   205
	class TPNGGroupingInfo
sl@0
   206
    	{
sl@0
   207
        public:
sl@0
   208
		TPNGGroupingInfo();
sl@0
   209
	    public:
sl@0
   210
		TInt			        iMinNumberOfDigits;
sl@0
   211
		TInt			        iMaxNumberOfDigits;
sl@0
   212
        RArray<TPNGSeparator>   iAfterPositions; // Positions of separators "after" the beginning
sl@0
   213
		TPNGSeparator			iBeforePosition; // Positions of separators "before" the end
sl@0
   214
	    };
sl@0
   215
sl@0
   216
    // Constant for no pattern in use:
sl@0
   217
    enum
sl@0
   218
        {
sl@0
   219
        ENoMatchedPattern = -1
sl@0
   220
        };
sl@0
   221
sl@0
   222
private: // Constructors
sl@0
   223
    CPNGNumberGrouping( TInt aMaxLength, TBool aReserved);
sl@0
   224
	void ConstructL();
sl@0
   225
sl@0
   226
private:
sl@0
   227
	TLanguage doReadLanguageFromSharedData() const;
sl@0
   228
sl@0
   229
	void	doReadFormatInfoFromResourceFileL();
sl@0
   230
	void	doClearGroupingItemsList();
sl@0
   231
	void	doClearFormattedNumbers();
sl@0
   232
sl@0
   233
	void	doNumberGroupingL() const;
sl@0
   234
	void	doNumberSquashing() const;
sl@0
   235
sl@0
   236
    /**
sl@0
   237
    * Read and process a single NUMBER_GROUPING_ITEM resource structure
sl@0
   238
    */
sl@0
   239
    void ReadGroupingSchemeL(
sl@0
   240
        TResourceReader& aResourceReader,
sl@0
   241
        RPointerArray<TDesC>& aGroupingPatternsList,
sl@0
   242
        TInt& aMaxExtraCharacters );
sl@0
   243
sl@0
   244
    /**
sl@0
   245
    * Read and skip a single NUMBER_GROUPING_ITEM resource structure
sl@0
   246
    */
sl@0
   247
    void SkipGroupingSchemeL( TResourceReader& aResourceReader ) const;
sl@0
   248
sl@0
   249
    /**
sl@0
   250
    * Process the format pattern for "after positions"
sl@0
   251
    */
sl@0
   252
    void ParseForAfterPositions(
sl@0
   253
        const TDesC& aFormatPattern,
sl@0
   254
        TPNGGroupingInfo* aGroupingInfo,
sl@0
   255
        const TDesC& aWildcardedMatchingPattern,
sl@0
   256
        TInt& aMaxExtraCharacters,
sl@0
   257
        TBool& trailingPossible ) const;
sl@0
   258
sl@0
   259
    /**
sl@0
   260
    * Process the format pattern for a before positions
sl@0
   261
    */
sl@0
   262
    void ParseForBeforePosition(
sl@0
   263
        const TDesC& aFormatPattern,
sl@0
   264
        CPNGNumberGrouping::TPNGGroupingInfo* aGroupingInfo,
sl@0
   265
        TInt& aMaxExtraCharacters
sl@0
   266
        ) const;
sl@0
   267
sl@0
   268
   /**
sl@0
   269
    * This routine is used to find a wildcarded version of the matching pattern
sl@0
   270
    * provided in the "initialDigits" element for a grouping scheme read from resource.
sl@0
   271
    * It uses the services of the CRegularExpression class, an instance of which is constructed
sl@0
   272
    * with the provided aMatchString pattern only.
sl@0
   273
    *
sl@0
   274
    * The client must supply a modifiable descriptor long enough to hold the wildcarded version
sl@0
   275
    * of the pattern.
sl@0
   276
    *
sl@0
   277
    * For each character index, if there is only one possible valid character, this puts in that
sl@0
   278
    * character.  If there are more than one, then the supplied aWildcardChar is inserted. The
sl@0
   279
    * initialDigits element uses a full stop as a numeric wildcard; this is replaced with the nominated
sl@0
   280
    * wildcard.
sl@0
   281
    *
sl@0
   282
    * Rules: (where 'n, has been passed is used as the wildcard)
sl@0
   283
    *   "<a numeric digit>" -> "<a numeric digit>"
sl@0
   284
    *   ( e.g. "1"         ->  "1" )
sl@0
   285
    *   "+"         ->  "+"
sl@0
   286
    *   "."         ->  "n"
sl@0
   287
    *   "[0-3]"     ->  "n"
sl@0
   288
    *
sl@0
   289
    * @param    aMatchString        Regular expression to provide example of
sl@0
   290
    * @param    aWildcardChar       The character to put in the example pattern if there is no single
sl@0
   291
    *                               valid character at that point
sl@0
   292
    * @param    aWildcardMatchString     Descriptor to write the wildcarded match pattern into
sl@0
   293
    */
sl@0
   294
	void    GetWildcardVersionOfMatchStringL(
sl@0
   295
        const TDesC& aMatchString,
sl@0
   296
        TText aWildcard,
sl@0
   297
        TDes& aWildcardMatchString ) const;
sl@0
   298
sl@0
   299
    /**
sl@0
   300
    * This method expresses the policy of what characters may form part of a phone number
sl@0
   301
    * Note that this method is valid even it there is no formatting going on.  It is an intrinsic
sl@0
   302
    * test on the character itself
sl@0
   303
    */
sl@0
   304
    TBool   IsValidPhoneNumberCharacter(TText aCharacter) const;
sl@0
   305
sl@0
   306
    /**
sl@0
   307
    * Examines the unformatted number, counting how many digits are found before non-digit
sl@0
   308
    * characters or the end is encountered.
sl@0
   309
    * Returns 0 if Set() has not been called.
sl@0
   310
    */
sl@0
   311
    TInt LengthToGroup() const;
sl@0
   312
sl@0
   313
    /**
sl@0
   314
    * Perform number grouping using pattern at given index.  Grouping is only applied to the leading
sl@0
   315
    * aLengthToGroup characters.
sl@0
   316
    */
sl@0
   317
    void doNumberGroupingForPatternL( TInt aMatchedPattern, TInt aLengthToGroup ) const;
sl@0
   318
sl@0
   319
private: // private data
sl@0
   320
sl@0
   321
	HBufC*							iUnformattedNumber;
sl@0
   322
	mutable TPtrC					iUnformattedNumberPtr;
sl@0
   323
sl@0
   324
	mutable HBufC*					iFormattedNumber;
sl@0
   325
	mutable TPtrC					iFormattedNumberPtr;
sl@0
   326
sl@0
   327
	mutable HBufC*					iReverseFormattedNumber;
sl@0
   328
	mutable TPtrC					iReverseFormattedNumberPtr;
sl@0
   329
sl@0
   330
	mutable TPtrC					iSelectionPtr;
sl@0
   331
sl@0
   332
	mutable TLanguage				iLanguage;				// the system language
sl@0
   333
	TInt							iMaxUnformattedLength;
sl@0
   334
	TBool							iReversed;
sl@0
   335
sl@0
   336
	CRegularExpression*				iRegExp;				// the patterns for matching
sl@0
   337
	RPointerArray<TPNGGroupingInfo>	iGroupingItemsList;		// the formatting info
sl@0
   338
sl@0
   339
    mutable TInt                    iMatchedPatternIndex;   // keep track of what pattern is matched
sl@0
   340
    CPNGNumberGroupingExtension*    iExtension;
sl@0
   341
};
sl@0
   342
sl@0
   343
inline TLanguage CPNGNumberGrouping::Language() const
sl@0
   344
    {
sl@0
   345
    return iLanguage;
sl@0
   346
    }
sl@0
   347
sl@0
   348
sl@0
   349
#endif // C_NUMBER_GROUPING_H
sl@0
   350
sl@0
   351
// End of File