First public contribution.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "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.
22 #define ARRAY_LENGTH(aArray) (sizeof(aArray)/sizeof((aArray)[0]))
24 LOCAL_D const SCnvConversionData::SVariableByteData::SRange asciiVariableByteDataRanges[]=
34 LOCAL_D const SCnvConversionData::SOneDirectionData::SRange asciiToUnicodeDataRanges[]=
39 SCnvConversionData::SOneDirectionData::SRange::EDirect,
49 LOCAL_D const SCnvConversionData::SOneDirectionData::SRange unicodeToAsciiDataRanges[]=
54 SCnvConversionData::SOneDirectionData::SRange::EDirect,
64 GLREF_D const SCnvConversionData asciiConversionData=
66 SCnvConversionData::EUnspecified,
68 ARRAY_LENGTH(asciiVariableByteDataRanges),
69 asciiVariableByteDataRanges
72 ARRAY_LENGTH(asciiToUnicodeDataRanges),
73 asciiToUnicodeDataRanges
76 ARRAY_LENGTH(unicodeToAsciiDataRanges),
77 unicodeToAsciiDataRanges
83 GLREF_C void IsCharacterSetAscii(TInt& aConfidenceLevel, const TDesC8& aSample)
85 // loop through the aSample text checking the range of the character
86 // If greater than 127 then it's not ASCII (gotta be harsh!) ...
87 TInt sampleLength = aSample.Length();
88 if (sampleLength == 0)
90 aConfidenceLevel = 91;
93 aConfidenceLevel = 100;
96 _LIT8(KAsciiEsc,"\x28\x42");
97 _LIT8(KJisRomanEsc,"\x28\x4a");
98 _LIT8(KJisCEsc,"\x24\x40");
99 _LIT8(KJisX0208Esc,"\x24\x42");
100 _LIT8(KJisX0212Esc,"\x24\x28\x44");
101 _LIT8(KHz1Esc,"\x7e\x7e");
102 _LIT8(KHz2Esc,"\x7e\x7b");
103 _LIT8(KHz3Esc,"\x7e\x7b");
105 TInt asciiResult = 0;
106 TInt jisRomanResult = 0;
108 TInt jisX0208Result =0;
109 TInt jisX0212Result =0;
114 TInt escSequences = 0;
118 for (TInt i = 0; i < sampleLength; ++i)
120 if ((aSample[i]&0x80)!=0x00)
122 aConfidenceLevel = 0;
128 asciiResult=(aSample.Right(sampleLength-i)).Find(KAsciiEsc);
129 if (asciiResult!=KErrNotFound) //aConfidenceLevel-=2;
133 if (i > jisRomanResult)
135 jisRomanResult=(aSample.Right(sampleLength-i)).Find(KJisRomanEsc);
136 if (jisRomanResult!=KErrNotFound) //aConfidenceLevel-=2;
142 jisCResult=(aSample.Right(sampleLength-i)).Find(KJisCEsc);
143 if (jisCResult!=KErrNotFound) //aConfidenceLevel-=2;
147 if (i > jisX0208Result)
149 jisX0208Result=(aSample.Right(sampleLength-i)).Find(KJisX0208Esc);
150 if (jisX0208Result!=KErrNotFound) //aConfidenceLevel-=2;
154 if (i > jisX0212Result)
156 jisX0212Result=(aSample.Right(sampleLength-i)).Find(KJisX0212Esc);
157 if (jisX0212Result!=KErrNotFound) //aConfidenceLevel-=2;
163 hz1Result=(aSample.Right(sampleLength-i)).Find(KHz1Esc);
164 if (hz1Result!=KErrNotFound) //aConfidenceLevel-=2;
170 hz2Result=(aSample.Right(sampleLength-i)).Find(KHz2Esc);
171 if (hz2Result!=KErrNotFound) //aConfidenceLevel-=2;
177 hz3Result=(aSample.Right(sampleLength-i)).Find(KHz3Esc);
178 if (hz3Result!=KErrNotFound) //aConfidenceLevel-=2;
182 if (aSample[i]==0x7f)
183 // 0x7f is the control code for delete ...
185 aConfidenceLevel = 0;
189 if (aSample[i]==0x1b)
191 static const TInt smsExtensionTable[12] =
192 {0x0a, 0x14, 0x1b, 0x24, 0x28, 0x29, 0x2f, 0x3c, 0x3d, 0x3e, 0x40, 0x65};
193 for (TInt j=0; j < 12; ++j) // change the hard coded number to the Array length
195 TInt increment1 = i+1;
196 if (increment1 >= sampleLength)
198 if (aSample[increment1] == smsExtensionTable[j])
201 // /x1b/x24 & /x1b/x28 are the first two characters of a few
202 // of JIS & ISO2022JP escape sequence (That's why 0x24 was added in smsExtensionTable)
203 // So if what's up next matches any JIS & IS02022JP escape sequence..... more deduction
204 // of the confidence Level
205 TInt increment2 = i+2;
206 TInt increment3 = i+3;
207 if((increment2 >= sampleLength)||((increment3) >= sampleLength))
209 if (smsExtensionTable[j]==0x24)
211 // 24 -> 40,42 (28,44)
212 if ((aSample[increment2]==0x40) || (aSample[increment2]==0x42) ||
213 ((aSample[increment2]==0x28)&&(aSample[increment3]==0x44)))
219 else if (smsExtensionTable[j]==0x28)
222 if ((aSample[increment2]==0x42) || (aSample[increment2]==0x49) || (aSample[increment2]==0x4a))
230 if(aConfidenceLevel==0)
233 if (controls < 100 && aSample[i] < 0x20 && aSample[i] != '\r' && aSample[i] != '\n' && aSample[i] != '\t')
234 // a few more control codes besides LF, CR, TAB
236 controls ? controls *= 3 : controls = 3;
240 aConfidenceLevel -= controls;
241 aConfidenceLevel = aConfidenceLevel - ((escSequences*100)/sampleLength);
242 aConfidenceLevel =(aConfidenceLevel >0)? aConfidenceLevel: 0;