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.
15 * HZ is defined in RFC 1843
23 #include <ecom/implementationproxy.h>
24 #include <charactersetconverter.h>
26 const TInt KIsInGbBlock=CCnvCharacterSetConverter::KStateDefault+1;
28 const TInt KLengthOfIntermediateBuffer=6;
30 const TInt KLengthOfIntermediateBuffer=150;
35 _LIT(KLitPanicText, "HZ");
39 EPanicTooManyMatchingIndicesFound=1,
40 EPanicBadNumberOfBytesRequiredToBeAvailable,
41 EPanicBadNumberOfBytesAvailable,
42 EPanicBadNumberOfBytesThatCanBeMadeAvailable,
43 EPanicBadNumberOfBytesMadeAvailable1,
44 EPanicBadNumberOfBytesMadeAvailable2,
45 EPanicBadDescriptorSubDivision1,
46 EPanicBadDescriptorSubDivision2,
47 EPanicBadDescriptorSubDivision3,
48 EPanicBadDescriptorSubDivision4,
63 EPanicSplitBoundaryIsNotAsLateAsPossible1,
64 EPanicSplitBoundaryIsNotAsLateAsPossible2,
67 EPanicBadTildeSequence,
68 EPanicBadReturnValue1,
69 EPanicBadReturnValue2,
70 EPanicRemainderOfHzHasGotLonger
73 LOCAL_C void Panic(TPanic aPanic)
75 User::Panic(KLitPanicText, aPanic);
80 class CHZConverterImpl : public CCharacterSetConverterPluginInterface
84 virtual const TDesC8& ReplacementForUnconvertibleUnicodeCharacters();
86 virtual TInt ConvertFromUnicode(
87 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
88 const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
90 const TDesC16& aUnicode,
91 CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters);
93 virtual TInt ConvertToUnicode(
94 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
96 const TDesC8& aForeign,
98 TInt& aNumberOfUnconvertibleCharacters,
99 TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter);
101 virtual TBool IsInThisCharacterSetL(
103 TInt& aConfidenceLevel,
104 const TDesC8& aSample);
106 static CHZConverterImpl* NewL();
107 virtual ~CHZConverterImpl();
116 const TDesC8& CHZConverterImpl::ReplacementForUnconvertibleUnicodeCharacters()
118 return CnvGb2312::ReplacementForUnconvertibleUnicodeCharacters();
121 LOCAL_C void IncrementNumberOfUnicodeCharactersNotConverted(TInt aLengthOfUnicode, TInt& aNumberOfUnicodeCharactersNotConverted, CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters) // these seemingly haphazard order of these paramters is to match the position of the second and third parameters with the caller
123 ++aNumberOfUnicodeCharactersNotConverted;
124 const TInt indexOfUnicodeCharacterNowNotConverted=aLengthOfUnicode-aNumberOfUnicodeCharactersNotConverted;
126 TInt numberOfMatchingIndicesFound=0;
128 for (TInt i=aIndicesOfUnconvertibleCharacters.NumberOfIndices()-1; i>=0; --i) // must iterate backwards as items from aIndicesOfUnconvertibleCharacters may be deleted
130 if (aIndicesOfUnconvertibleCharacters[i]==indexOfUnicodeCharacterNowNotConverted)
132 aIndicesOfUnconvertibleCharacters.Remove(i);
134 ++numberOfMatchingIndicesFound;
138 __ASSERT_DEBUG(numberOfMatchingIndicesFound<=1, Panic(EPanicTooManyMatchingIndicesFound));
141 LOCAL_C void MakeAvailable(TInt aNumberOfBytesRequiredToBeAvailable, TInt& aNumberOfUnicodeCharactersNotConverted, CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters, TInt aLengthOfUnicode, const TUint8*& aPointerToLastUsedByte, TInt& aNumberOfBytesAvailable, TInt aNumberOfBytesThatCanBeMadeAvailable) // these seemingly haphazard order of these paramters is to match the position of the second to fourth parameters (inclusive) with the caller
142 // makes available as much of aNumberOfBytesRequiredToBeAvailable as it can, even if the final value (i.e. value on returning) of aNumberOfBytesAvailable<aNumberOfBytesRequiredToBeAvailable (i.e. it doesn't initially give up straight away and do nothing if aNumberOfBytesRequiredToBeAvailable>aNumberOfBytesThatCanBeMadeAvailable+aNumberOfBytesAvailable)
144 __ASSERT_DEBUG(aNumberOfBytesRequiredToBeAvailable>0, Panic(EPanicBadNumberOfBytesRequiredToBeAvailable));
145 __ASSERT_DEBUG(aNumberOfBytesAvailable>=0, Panic(EPanicBadNumberOfBytesAvailable));
146 __ASSERT_DEBUG(aNumberOfBytesThatCanBeMadeAvailable>=0, Panic(EPanicBadNumberOfBytesThatCanBeMadeAvailable));
147 TInt numberOfBytesMadeAvailable=0;
150 if (aNumberOfBytesAvailable>=aNumberOfBytesRequiredToBeAvailable)
152 break; // no more needs to be done
154 __ASSERT_DEBUG(numberOfBytesMadeAvailable<=aNumberOfBytesThatCanBeMadeAvailable, Panic(EPanicBadNumberOfBytesMadeAvailable1));
155 if (numberOfBytesMadeAvailable>=aNumberOfBytesThatCanBeMadeAvailable)
157 break; // give up - no more can be done
159 const TInt numberOfBytesInCharacter=(*aPointerToLastUsedByte&0x80)? 2: 1;
160 aPointerToLastUsedByte-=numberOfBytesInCharacter;
161 aNumberOfBytesAvailable+=numberOfBytesInCharacter;
162 numberOfBytesMadeAvailable+=numberOfBytesInCharacter;
163 IncrementNumberOfUnicodeCharactersNotConverted(aLengthOfUnicode, aNumberOfUnicodeCharactersNotConverted, aIndicesOfUnconvertibleCharacters);
165 __ASSERT_DEBUG(numberOfBytesMadeAvailable<=aNumberOfBytesThatCanBeMadeAvailable, Panic(EPanicBadNumberOfBytesMadeAvailable2));
168 LOCAL_C void ConvertFromGb2312ToHzInPlace(TDes8& aDescriptor, TInt& aNumberOfUnicodeCharactersNotConverted, CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters, TInt aLengthOfUnicode)
170 // it is legal for aDescriptor to be of length 0
171 const TInt originalLengthOfDescriptor=aDescriptor.Length();
172 if (originalLengthOfDescriptor>0)
174 TInt numberOfBytesAvailable=aDescriptor.MaxLength()-originalLengthOfDescriptor;
175 TUint8* pointerToPreviousByte=CONST_CAST(TUint8*, aDescriptor.Ptr()-1);
176 const TUint8* pointerToLastUsedByte=pointerToPreviousByte+originalLengthOfDescriptor;
177 TBool isInGbBlock=EFalse;
180 __ASSERT_DEBUG((pointerToLastUsedByte-(aDescriptor.Ptr()-1))+numberOfBytesAvailable==aDescriptor.MaxLength(), Panic(EPanicBadDescriptorSubDivision1));
181 __ASSERT_DEBUG(pointerToPreviousByte<pointerToLastUsedByte, Panic(EPanicBadPointers1));
182 const TUint currentByte=*(pointerToPreviousByte+1);
183 if (currentByte&0x80)
187 MakeAvailable(4, aNumberOfUnicodeCharactersNotConverted, aIndicesOfUnconvertibleCharacters, aLengthOfUnicode, pointerToLastUsedByte, numberOfBytesAvailable, (pointerToLastUsedByte-pointerToPreviousByte)-2); // what's passed into the last parameter is not a typo - we do not want the two-byte character currently pointed to by (pointerToPreviousByte+1) to be made available
188 if (numberOfBytesAvailable<4) // 4 bytes are required for the "~{" "~}" escape sequences (thus ensuring that at least a single double-byte character can be put into the GB-block)
193 Mem::Copy(pointerToPreviousByte+3, pointerToPreviousByte+1, pointerToLastUsedByte-pointerToPreviousByte);
194 ++pointerToPreviousByte;
195 *pointerToPreviousByte='~';
196 ++pointerToPreviousByte;
197 *pointerToPreviousByte='{';
198 numberOfBytesAvailable-=2;
199 pointerToLastUsedByte+=2;
201 ++pointerToPreviousByte;
202 *pointerToPreviousByte&=~0x80;
203 __ASSERT_DEBUG(pointerToPreviousByte<pointerToLastUsedByte, Panic(EPanicBadPointers2));
204 ++pointerToPreviousByte;
205 *pointerToPreviousByte&=~0x80;
213 MakeAvailable(2, aNumberOfUnicodeCharactersNotConverted, aIndicesOfUnconvertibleCharacters, aLengthOfUnicode, pointerToLastUsedByte, numberOfBytesAvailable, pointerToLastUsedByte-pointerToPreviousByte);
214 if (numberOfBytesAvailable<2) // 2 bytes are required for the "~}" escape sequence
216 IncrementNumberOfUnicodeCharactersNotConverted(aLengthOfUnicode, aNumberOfUnicodeCharactersNotConverted, aIndicesOfUnconvertibleCharacters);
217 *(pointerToPreviousByte-1)='~';
218 *pointerToPreviousByte='}';
221 Mem::Copy(pointerToPreviousByte+3, pointerToPreviousByte+1, pointerToLastUsedByte-pointerToPreviousByte);
222 ++pointerToPreviousByte;
223 *pointerToPreviousByte='~';
224 ++pointerToPreviousByte;
225 *pointerToPreviousByte='}';
226 numberOfBytesAvailable-=2;
227 pointerToLastUsedByte+=2;
228 __ASSERT_DEBUG(pointerToPreviousByte<=pointerToLastUsedByte, Panic(EPanicBadPointers3));
229 if (pointerToPreviousByte>=pointerToLastUsedByte)
234 if (currentByte=='~')
236 MakeAvailable(1, aNumberOfUnicodeCharactersNotConverted, aIndicesOfUnconvertibleCharacters, aLengthOfUnicode, pointerToLastUsedByte, numberOfBytesAvailable, (pointerToLastUsedByte-pointerToPreviousByte)-1); // what's passed into the last parameter is not a typo - we do not want the "~" currently pointed to by (pointerToPreviousByte+1) to be made available
237 if (numberOfBytesAvailable<1) // 1 byte is required for the extra "~" character
241 Mem::Copy(pointerToPreviousByte+2, pointerToPreviousByte+1, pointerToLastUsedByte-pointerToPreviousByte);
242 ++pointerToPreviousByte;
243 *pointerToPreviousByte='~';
244 numberOfBytesAvailable-=1;
245 pointerToLastUsedByte+=1;
247 ++pointerToPreviousByte;
249 __ASSERT_DEBUG(pointerToPreviousByte<=pointerToLastUsedByte, Panic(EPanicBadPointers4));
250 if (pointerToPreviousByte>=pointerToLastUsedByte)
254 goto closeGbBlock; // this is to share the code for closing the GB-block
259 __ASSERT_DEBUG(pointerToPreviousByte<=pointerToLastUsedByte, Panic(EPanicBadPointers5));
260 if (pointerToPreviousByte<pointerToLastUsedByte)
262 __ASSERT_DEBUG((pointerToPreviousByte==pointerToLastUsedByte-1) || (pointerToPreviousByte==pointerToLastUsedByte-2), Panic(EPanicBadPointers6));
263 numberOfBytesAvailable+=(pointerToLastUsedByte-pointerToPreviousByte);
264 pointerToLastUsedByte=pointerToPreviousByte;
265 IncrementNumberOfUnicodeCharactersNotConverted(aLengthOfUnicode, aNumberOfUnicodeCharactersNotConverted, aIndicesOfUnconvertibleCharacters);
267 //if it gets out from FOREVER, isInGbBlock could not be ETrue ~~~ so wouldn't need the assert
268 //__ASSERT_DEBUG(!isInGbBlock, Panic(EPanicStillInGbBlock));
269 aDescriptor.SetLength(aDescriptor.MaxLength()-numberOfBytesAvailable);
270 __ASSERT_DEBUG(aDescriptor.Length()==pointerToLastUsedByte-(aDescriptor.Ptr()-1), Panic(EPanicBadDescriptorSubDivision2));
274 TInt CHZConverterImpl::ConvertFromUnicode(
275 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
276 const TDesC8& aReplacementForUnconvertibleUnicodeCharacters,
278 const TDesC16& aUnicode,
279 CCnvCharacterSetConverter::TArrayOfAscendingIndices& aIndicesOfUnconvertibleCharacters)
281 TInt returnValue=CCnvCharacterSetConverter::DoConvertFromUnicode(CnvGb2312::ConversionData(), aDefaultEndiannessOfForeignCharacters, aReplacementForUnconvertibleUnicodeCharacters, aForeign, aUnicode, aIndicesOfUnconvertibleCharacters);
284 return returnValue; // this is an error-code
286 ConvertFromGb2312ToHzInPlace(aForeign, returnValue, aIndicesOfUnconvertibleCharacters, aUnicode.Length());
290 LOCAL_C TInt ConvertFromHzToHomogeneousGb2312(TBuf8<KLengthOfIntermediateBuffer>& aGb2312, TPtrC8& aHzBeingConsumed, TPtrC8& aRemainderOfHz, TInt& aState, TUint& aOutputConversionFlags)
292 // this function panics if aRemainderOfHz is of length 0
293 TUint8* pointerToPreviousGb2312Byte=CONST_CAST(TUint8*, aGb2312.Ptr()-1);
294 const TUint8* pointerToCurrentHzByte=aRemainderOfHz.Ptr();
295 const TUint8* const pointerToLastHzByte=pointerToCurrentHzByte+(aRemainderOfHz.Length()-1);
296 const TUint8* const pointerToLastHzByteToConvertThisTime=Min(pointerToLastHzByte, pointerToCurrentHzByte+(KLengthOfIntermediateBuffer-1));
299 const TUint currentHzByte=*pointerToCurrentHzByte;
300 if (currentHzByte=='~')
302 __ASSERT_DEBUG(pointerToCurrentHzByte<=pointerToLastHzByte, Panic(EPanicBadPointers7));
303 if (pointerToCurrentHzByte>=pointerToLastHzByte)
305 aOutputConversionFlags|=CCnvCharacterSetConverter::EOutputConversionFlagInputIsTruncated;
306 --pointerToCurrentHzByte;
309 ++pointerToCurrentHzByte;
310 const TUint nextHzByte=*pointerToCurrentHzByte;
314 if (aState==KIsInGbBlock)
316 return CCnvCharacterSetConverter::EErrorIllFormedInput;
321 if (aState==CCnvCharacterSetConverter::KStateDefault)
323 return CCnvCharacterSetConverter::EErrorIllFormedInput;
325 aState=CCnvCharacterSetConverter::KStateDefault;
328 ++pointerToPreviousGb2312Byte;
329 *pointerToPreviousGb2312Byte=STATIC_CAST(TUint8, currentHzByte);
334 return CCnvCharacterSetConverter::EErrorIllFormedInput;
339 __ASSERT_DEBUG(pointerToCurrentHzByte<=pointerToLastHzByte, Panic(EPanicBadPointers8));
340 if (pointerToCurrentHzByte>pointerToLastHzByteToConvertThisTime)
342 --pointerToCurrentHzByte;
345 if (aState==CCnvCharacterSetConverter::KStateDefault)
347 ++pointerToPreviousGb2312Byte;
348 *pointerToPreviousGb2312Byte=STATIC_CAST(TUint8, currentHzByte);
352 __ASSERT_DEBUG(aState==KIsInGbBlock, Panic(EPanicBadState));
353 __ASSERT_DEBUG(pointerToCurrentHzByte<=pointerToLastHzByteToConvertThisTime, Panic(EPanicBadPointers9));
354 if (pointerToCurrentHzByte>=pointerToLastHzByteToConvertThisTime)
356 aOutputConversionFlags|=CCnvCharacterSetConverter::EOutputConversionFlagInputIsTruncated;
357 --pointerToCurrentHzByte;
360 ++pointerToCurrentHzByte;
361 ++pointerToPreviousGb2312Byte;
362 *pointerToPreviousGb2312Byte=STATIC_CAST(TUint8, currentHzByte|0x80);
363 ++pointerToPreviousGb2312Byte;
364 *pointerToPreviousGb2312Byte=STATIC_CAST(TUint8, *pointerToCurrentHzByte|0x80);
367 __ASSERT_DEBUG(pointerToCurrentHzByte<=pointerToLastHzByte, Panic(EPanicBadPointers10));
368 if (pointerToCurrentHzByte>=pointerToLastHzByte)
372 ++pointerToCurrentHzByte;
374 aGb2312.SetLength((pointerToPreviousGb2312Byte+1)-aGb2312.Ptr());
375 const TInt numberOfHzBytesBeingConsumed=(pointerToCurrentHzByte+1)-aRemainderOfHz.Ptr();
376 aHzBeingConsumed.Set(aRemainderOfHz.Left(numberOfHzBytesBeingConsumed));
377 aRemainderOfHz.Set(aRemainderOfHz.Mid(numberOfHzBytesBeingConsumed));
379 // AAA: check that if the split occurs on a boundary between some one-byte and some two-byte text, then aState corresponds to the state *after* the split (the code marked "BBB" relies on this)
380 if (aRemainderOfHz.Length()>=2)
382 __ASSERT_DEBUG(aRemainderOfHz.Left(2)!=_L8("~{"), Panic(EPanicSplitBoundaryIsNotAsLateAsPossible1));
383 __ASSERT_DEBUG(aRemainderOfHz.Left(2)!=_L8("~}"), Panic(EPanicSplitBoundaryIsNotAsLateAsPossible2));
389 LOCAL_C TInt Gb2312IndexToHzIndex(const TDesC8& aHz, TInt aGb2312Index, TBool aReturnMaximalHzIndex)
391 // this function panics if aHz is of length 0
392 // aHz may start in either KIsInGbBlock or CCnvCharacterSetConverter::KStateDefault state, but it must *not* have any truncated sequences (i.e. "tilde <something>" sequence that is not complete, or part of a 2-byte character sequence) at either its start or its end
393 __ASSERT_DEBUG(aGb2312Index>=0, Panic(EPanicBadGb2312Index));
395 TInt offsetFromGb2312IndexToHzIndex=0;
396 const TUint8* const pointerToFirstHzByte=aHz.Ptr();
397 const TUint8* pointerToCurrentHzByte=pointerToFirstHzByte;
398 const TUint8* const pointerToLastHzByte=pointerToFirstHzByte+(aHz.Length()-1);
401 const TInt newHzIndex=pointerToCurrentHzByte-pointerToFirstHzByte;
402 const TInt candidateHzIndex=aGb2312Index+offsetFromGb2312IndexToHzIndex;
403 __ASSERT_DEBUG(hzIndex<=candidateHzIndex, Panic(EPanicBadHzIndex));
404 if (aReturnMaximalHzIndex? (newHzIndex>candidateHzIndex): (hzIndex>=candidateHzIndex))
409 if (*pointerToCurrentHzByte=='~')
411 __ASSERT_DEBUG(pointerToCurrentHzByte<=pointerToLastHzByte, Panic(EPanicBadPointers11));
412 if (pointerToCurrentHzByte>=pointerToLastHzByte)
416 ++pointerToCurrentHzByte;
417 const TUint currentHzByte=*pointerToCurrentHzByte;
418 if (currentHzByte=='~')
420 ++offsetFromGb2312IndexToHzIndex;
424 __ASSERT_DEBUG((currentHzByte=='{') || (currentHzByte=='}') || (currentHzByte==0x0a), Panic(EPanicBadTildeSequence));
425 offsetFromGb2312IndexToHzIndex+=2;
428 __ASSERT_DEBUG(pointerToCurrentHzByte<=pointerToLastHzByte, Panic(EPanicBadPointers12));
429 if (pointerToCurrentHzByte>=pointerToLastHzByte)
433 ++pointerToCurrentHzByte;
438 TInt CHZConverterImpl::ConvertToUnicode(
439 CCnvCharacterSetConverter::TEndianness aDefaultEndiannessOfForeignCharacters,
441 const TDesC8& aForeign,
443 TInt& aNumberOfUnconvertibleCharacters,
444 TInt& aIndexOfFirstByteOfFirstUnconvertibleCharacter)
446 aUnicode.SetLength(0);
447 TPtrC8 remainderOfHz(aForeign);
448 TInt numberOfHzBytesConsumed=0;
449 TUint outputConversionFlags=0;
450 TUint inputConversionFlags=CCnvCharacterSetConverter::EInputConversionFlagAppend;
451 const SCnvConversionData& gb2312ConversionData=CnvGb2312::ConversionData();
454 __ASSERT_DEBUG(numberOfHzBytesConsumed+remainderOfHz.Length()==aForeign.Length(), Panic(EPanicBadDescriptorSubDivision3));
456 const TInt oldLengthOfRemainderOfHz=remainderOfHz.Length();
458 TBuf8<KLengthOfIntermediateBuffer> gb2312;
459 TPtrC8 hzBeingConsumed;
460 const TInt returnValue1=ConvertFromHzToHomogeneousGb2312(gb2312, hzBeingConsumed, remainderOfHz, aState, outputConversionFlags);
463 return returnValue1; // this is an error-code
465 __ASSERT_DEBUG(returnValue1==0, Panic(EPanicBadReturnValue1));
466 __ASSERT_DEBUG(hzBeingConsumed.Length()+remainderOfHz.Length()==oldLengthOfRemainderOfHz, Panic(EPanicRemainderOfHzHasGotLonger));
467 if (hzBeingConsumed.Length()==0)
471 TInt numberOfUnconvertibleCharacters;
472 TInt indexOfFirstByteOfFirstUnconvertibleCharacter;
473 const TInt returnValue2=CCnvCharacterSetConverter::DoConvertToUnicode(gb2312ConversionData, aDefaultEndiannessOfForeignCharacters, aUnicode, gb2312, numberOfUnconvertibleCharacters, indexOfFirstByteOfFirstUnconvertibleCharacter, outputConversionFlags, inputConversionFlags);
476 return returnValue2; // this is an error-code
478 if (numberOfUnconvertibleCharacters>0)
480 if (aNumberOfUnconvertibleCharacters==0)
482 aIndexOfFirstByteOfFirstUnconvertibleCharacter=numberOfHzBytesConsumed+Gb2312IndexToHzIndex(hzBeingConsumed, indexOfFirstByteOfFirstUnconvertibleCharacter, EFalse);
484 aNumberOfUnconvertibleCharacters+=numberOfUnconvertibleCharacters;
488 const TInt numberOfGb2312BytesConverted=gb2312.Length()-returnValue2;
489 __ASSERT_DEBUG(numberOfGb2312BytesConverted>=0, Panic(EPanicBadReturnValue2));
490 // don't call gb2312.SetLength(numberOfGb2312BytesConverted) as we want to access gb2312[numberOfGb2312BytesConverted] - in any case, gb2312's length is never going to be used again
491 // don't bother re-setting remainderOfHz as it won't be used again
492 numberOfHzBytesConsumed+=Gb2312IndexToHzIndex(hzBeingConsumed, numberOfGb2312BytesConverted, ETrue);
493 aState=(gb2312[numberOfGb2312BytesConverted]&0x80)? KIsInGbBlock: CCnvCharacterSetConverter::KStateDefault; // BBB: if the split (between the text that was converted and the text that wasn't converted) occurs on a boundary between some one-byte and some two-byte text, then aState corresponds to the state *after* the split (the code marked "AAA" checks this) - this means that we set aState according to gb2312[numberOfGb2312BytesConverted] rather than gb2312[numberOfGb2312BytesConverted-1]
496 numberOfHzBytesConsumed+=hzBeingConsumed.Length();
497 remainderOfHz.Set(aForeign.Mid(numberOfHzBytesConsumed));
498 __ASSERT_DEBUG(numberOfHzBytesConsumed+remainderOfHz.Length()==aForeign.Length(), Panic(EPanicBadDescriptorSubDivision4));
499 if (remainderOfHz.Length()==0)
503 if (numberOfHzBytesConsumed>0)
505 inputConversionFlags|=CCnvCharacterSetConverter::EInputConversionFlagAllowTruncatedInputNotEvenPartlyConsumable;
508 // N.B. remainderOfHz is in an undefined state by this point
509 if ((numberOfHzBytesConsumed==0) && (outputConversionFlags&CCnvCharacterSetConverter::EOutputConversionFlagInputIsTruncated))
511 return CCnvCharacterSetConverter::EErrorIllFormedInput;
513 return aForeign.Length()-numberOfHzBytesConsumed;
516 TBool CHZConverterImpl::IsInThisCharacterSetL(
518 TInt& aConfidenceLevel,
519 const TDesC8& aSample)
522 TInt sampleLength = aSample.Length();
524 TInt occrenceOfNonHz=0;
525 aConfidenceLevel = 50;
526 // Hz encoding uses escape sequences...
527 for (TInt i = 0; i < sampleLength; ++i)
531 if (aSample[i]==0x7e)
533 TInt increment1 = i+1;
534 if (increment1 >= sampleLength)
536 if ((aSample[increment1] == 0x7b)||(aSample[increment1] == 0x7d)||(aSample[increment1] == 0x7e))
545 TInt occurrenceOftilde =2*pairOfTilde*100/sampleLength;
546 aConfidenceLevel=aConfidenceLevel-Max(0,(4-occurrenceOftilde));
547 aConfidenceLevel += occurrenceOftilde;
548 aConfidenceLevel -= ((occrenceOfNonHz*100)/sampleLength);
553 CHZConverterImpl* CHZConverterImpl::NewL()
555 CHZConverterImpl* self = new(ELeave) CHZConverterImpl();
559 CHZConverterImpl::~CHZConverterImpl()
563 CHZConverterImpl::CHZConverterImpl()
567 const TImplementationProxy ImplementationTable[] =
569 IMPLEMENTATION_PROXY_ENTRY(0x10006065, CHZConverterImpl::NewL)
572 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
574 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
576 return ImplementationTable;