os/textandloc/textandlocutils/numbergrouping/inc/RegularExpression.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 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 the License "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: 
sl@0
    15
*    
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
sl@0
    21
#ifndef C_REGULAR_EXPRESSION_H
sl@0
    22
#define C_REGULAR_EXPRESSION_H
sl@0
    23
sl@0
    24
#include "StateMachine.h"
sl@0
    25
sl@0
    26
NONSHARABLE_CLASS(CRegularExpression) : public CBase
sl@0
    27
{
sl@0
    28
public:
sl@0
    29
	static CRegularExpression* NewL(RPointerArray<TDesC>* aPatterns);
sl@0
    30
	static CRegularExpression* NewLC(RPointerArray<TDesC>* aPatterns);
sl@0
    31
	virtual ~CRegularExpression();
sl@0
    32
sl@0
    33
	TInt	Search(const TDesC& aString);
sl@0
    34
	TInt	SearchFrom(TInt aIndex, const TDesC& aString);
sl@0
    35
sl@0
    36
    /**
sl@0
    37
    * This routine writes into a client supplied descriptor a string that is a wildcarded version of
sl@0
    38
    * one of the pattern matches in the engine. The pattern(statemachine) at index aPattenIndex is used.
sl@0
    39
    *
sl@0
    40
    * It writes characters into the supplied descriptor to a length of the maximum number of 
sl@0
    41
    * characters to match. 
sl@0
    42
    *
sl@0
    43
    * For each character index, if there is only one possible valid character, it puts in that 
sl@0
    44
    * character.  If there are more than one, then the supplied aWildcard is written in.
sl@0
    45
    * 
sl@0
    46
    * @param    aPattenIndex        The index of the pattern in the engine to use.
sl@0
    47
    *                               for the N patterns supplied at construction.
sl@0
    48
    * @param    aWildcardChar       The character to put in the example pattern if there is no single 
sl@0
    49
    *                               valid character at that point
sl@0
    50
    * @param    aWildcardedPattern     Descriptor to write the wildcarded matching pattern into
sl@0
    51
    */
sl@0
    52
    void    GetWildcardVersionOfPattern( TInt aPatternIndex, TText aWildcard, TDes& aWildcardedPattern) const;
sl@0
    53
sl@0
    54
protected:
sl@0
    55
	CRegularExpression();
sl@0
    56
	
sl@0
    57
	void			ConstructL(RPointerArray<TDesC>* aPatterns);
sl@0
    58
	virtual void	GenerateStateTablesL(RPointerArray<TDesC>* aPatterns);
sl@0
    59
	
sl@0
    60
	RPointerArray<CStateMachine>	iStateMachines;
sl@0
    61
};
sl@0
    62
sl@0
    63
#endif // C_REGULAR_EXPRESSION_H
sl@0
    64
sl@0
    65
// End of File