Update contrib.
2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #ifndef C_STATE_MACHINE_H
22 #define C_STATE_MACHINE_H
24 #include "NumberGroupingStd.h"
26 NONSHARABLE_CLASS(CStateMachine) : public CBase
29 static CStateMachine* NewL(TInt aMaxNumberChars, TInt aMaxNumberStates);
30 static CStateMachine* NewLC(TInt aMaxNumberChars, TInt aMaxNumberStates);
32 virtual ~CStateMachine();
34 void AddStateTransistionL(TChar aChar, TInt aState, TInt aNextState);
35 void AddStateTransistionL(TInt aDigit, TInt aState, TInt aNextState);
37 TBool Matches(const TDesC& aString);
40 * This routine writes into a client supplied descriptor a string that is a wildcard version
41 * of the pattern match for this state machine. It writes characters into the supplied descriptor
42 * to a length of the maximum number of characters to match.
43 * For each character index, if there is only one possible valid character, it puts in that
44 * character. If there are more than one, then the supplied aWildcardChar is written in.
45 * The character '.' in the state machine is not treated as a single character, but as a range,
46 * and so the wildcard character is written in for the '.'.
48 * aWildcardPattern must have MaxLength which is equal or greater than iMaxNumberStates
50 * @param aWildcardChar The character to put in aExamplePattern if there is no single
51 * valid character at that point
52 * @param aWildcardedPattern Descriptor to write the wildcarded number pattern into
54 void GetWildcardVersionOfPattern(
56 TDes& aWildcardedPattern ) const;
59 CStateMachine(TInt aMaxNumberChars, TInt aMaxNumberStates);
62 virtual TInt MapIndex(TChar aChar, RArray<TInt>& aIndices);
66 TInt iMaxNumberStates;
69 #endif // C_STATE_MACHINE_H