os/security/securityanddataprivacytools/securitytools/certapp/store--/us_ucmp.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 * Implementation of the Standard Compression Scheme for Unicode.
    16 * This code is compiled only in the Unicode build.
    17 *
    18 */
    19 
    20 
    21 #ifdef _UNICODE
    22 
    23 #include <s32ucmp.h>
    24 #include <e32err.h>
    25 
    26 const TUint32 TUnicodeCompressionState::iStaticWindow[EStaticWindows] =
    27 	{
    28 	0x0000,		// tags
    29 	0x0080,		// Latin-1 supplement
    30 	0x0100,		// Latin Extended-A
    31 	0x0300,		// Combining Diacritics
    32 	0x2000,		// General Punctuation
    33 	0x2080,		// Currency Symbols
    34 	0x2100,		// Letterlike Symbols and Number Forms
    35 	0x3000		// CJK Symbols and Punctuation
    36 	};
    37 
    38 const TUint32 TUnicodeCompressionState::iDynamicWindowDefault[EDynamicWindows] =
    39 	{
    40 	0x0080,		// Latin-1 supplement
    41 	0x00C0,		// parts of Latin-1 supplement and Latin Extended-A
    42 	0x0400,		// Cyrillic
    43 	0x0600,		// Arabic
    44 	0x0900,		// Devanagari
    45 	0x3040,		// Hiragana
    46 	0x30A0,		// Katakana
    47 	0xFF00		// Fullwidth ASCII
    48 	};
    49 
    50 const TUint16 TUnicodeCompressionState::iSpecialBase[ESpecialBases] =
    51 	{
    52 	0x00C0,		// Latin 1 letters (not symbols) and some of Extended-A
    53 	0x0250,		// IPA extensions
    54 	0x0370,		// Greek
    55 	0x0530,		// Armenian
    56 	0x3040,		// Hiragana
    57 	0x30A0,		// Katakana
    58 	0xFF60		// Halfwidth katakana
    59 	};
    60 
    61 // Single-byte mode tag values
    62 const TUint8 SQ0 = 0x01;	// <byte>				quote from window 0
    63 const TUint8 SDX = 0x0B;	// <hbyte> <lbyte>		define window in expansion area
    64 const TUint8 SQU = 0x0E;	// <hbyte> <lbyte>		quote Unicode value
    65 const TUint8 SCU = 0x0F;	//						switch to Unicode mode
    66 const TUint8 SC0 = 0x10;	//						select dynamic window 0
    67 const TUint8 SD0 = 0x18;	// <byte>				set dynamic window 0 index to <byte> and select it
    68 
    69 // Unicode mode tag values
    70 const TUint8 UC0 = 0xE0;	//						select dynamic window 0 and switch to single-byte mode
    71 const TUint8 UD0 = 0xE8;	// <byte>				set dynamic window 0 index to <byte>, select it and switch to
    72 							//						single-byte mode
    73 const TUint8 UQU = 0xF0;	// <hbyte>, <lbyte>		quote Unicode value
    74 const TUint8 UDX = 0xF1;	// <hbyte>, <lbyte>		define window in expansion area and switch to single-byte mode
    75 	
    76 TUnicodeCompressionState::TUnicodeCompressionState():
    77 	iUnicodeWords(0),
    78 	iMaxUnicodeWords(0),
    79 	iCompressedBytes(0),
    80 	iMaxCompressedBytes(0)
    81 	{
    82 	Reset();
    83 	}
    84 
    85 void TUnicodeCompressionState::Reset()
    86 	{
    87 	iUnicodeMode = FALSE;
    88 	iActiveWindowBase = 0x0080;
    89 	for (int i = 0; i < EDynamicWindows; i++)
    90 		iDynamicWindow[i] = iDynamicWindowDefault[i];
    91 	}
    92 
    93 
    94 // Return the index of the static window that contains this code, if any, or -1 if there is none.
    95 TInt TUnicodeCompressionState::StaticWindowIndex(TUint16 aCode)
    96 	{
    97 	for (TInt i = 0; i < EStaticWindows; i++)
    98 		if (aCode >= iStaticWindow[i] && aCode < iStaticWindow[i] + 128)
    99 			return i;
   100 	return -1;
   101 	}
   102 
   103 /*
   104 If aCode can be accommodated in one of the legal dynamic windows, return the index of that window
   105 in the offset table. If not return KErrNotFound.
   106 */
   107 TInt TUnicodeCompressionState::DynamicWindowOffsetIndex(TUint16 aCode)
   108 	{
   109 	if (aCode < 0x0080)
   110 		return KErrNotFound;
   111 	if (aCode >= 0x3400 && aCode <= 0xDFFF)
   112 		return KErrNotFound;
   113 
   114 	/*
   115 	Prefer sections that cross half-block boundaries. These are better adapted to actual text.
   116 	They are represented by offset indices 0xf9..0xff.
   117 	*/
   118 	for (int i = 0; i < ESpecialBases; i++)
   119 		if (aCode >= iSpecialBase[i] && aCode < iSpecialBase[i] + 128)
   120 			return 0xF9 + i;
   121 
   122 	/*
   123 	Offset indices 0x01..0x67 represent half blocks from 0x0080 to 0x3380 and
   124 	0x68..0xA7 represent half blocks from 0xE000 to 0xFF80.
   125 	*/
   126 	if (aCode >= 0xE000)
   127 		aCode -= 0xAC00;
   128 	return aCode / 0x80;
   129 	}
   130 
   131 // Return the base of the window represented by offset index <n>. Return 0 if the offset index is illegal.
   132 TUint32 TUnicodeCompressionState::DynamicWindowBase(TInt aOffsetIndex)
   133 	{
   134 	if (aOffsetIndex >= 0xF9 && aOffsetIndex <= 0xFF)
   135 		{
   136 		/*
   137 		WARNING: don't optimise the following two lines by replacing them with
   138 		'return iSpecialBase[aOffsetIndex - 0xF9];'. To do so would re-introduce an error
   139 		in ARM builds caused by optimisation and consequent erroneous fixing up
   140 		of the array base: see defect EDNGASR-4AGJQX in ER5U defects.
   141 		*/
   142 		int special_base_index = aOffsetIndex - 0xF9;
   143 		return iSpecialBase[special_base_index];
   144 		}
   145 	if (aOffsetIndex >= 0x01 && aOffsetIndex <= 0x67)
   146 		return aOffsetIndex * 0x80;
   147 	if (aOffsetIndex >= 0x68 && aOffsetIndex <= 0xA7)
   148 		return aOffsetIndex * 0x80 + 0xAC00;
   149 	return 0;
   150 	}
   151 
   152 TBool TUnicodeCompressionState::EncodeAsIs(TUint16 aCode)
   153 	{
   154 	return aCode == 0x0000 || aCode == 0x0009 || aCode == 0x000A || aCode == 0x000D ||
   155 		   (aCode >= 0x0020 && aCode <= 0x007F);
   156 	}
   157 
   158 void TUnicodeCompressionState::Panic(TPanic aPanic)
   159 	{
   160 		User::Panic(_L16("ucmp"),(TInt)aPanic);
   161 	}
   162 
   163 EXPORT_C TUnicodeCompressor::TUnicodeCompressor():
   164 	iInputBufferStart(0),
   165 	iInputBufferSize(0),
   166 	iOutputBufferStart(0),
   167 	iOutputBufferSize(0),
   168 	iDynamicWindowIndex(0),
   169 	iOutputStream(NULL),
   170 	iOutputPointer(NULL),
   171 	iInput(NULL)
   172 	{
   173 		// Clear coverity warning
   174 		memset(iOutputBuffer, 0, sizeof(iOutputBuffer));
   175 	}
   176 
   177 EXPORT_C void TUnicodeCompressor::CompressL(RWriteStream& aOutput,MUnicodeSource& aInput,
   178 											TInt aMaxOutputBytes,TInt aMaxInputWords,
   179 											TInt* aOutputBytes,TInt* aInputWords)
   180 	{
   181 	DoCompressL(&aOutput,NULL,&aInput,aMaxOutputBytes,aMaxInputWords,aOutputBytes,aInputWords);
   182 	}
   183 
   184 EXPORT_C void TUnicodeCompressor::CompressL(TUint8* aOutput,MUnicodeSource& aInput,
   185 											TInt aMaxOutputBytes,TInt aMaxInputWords,
   186 											TInt* aOutputBytes,TInt* aInputWords)
   187 	{
   188 	DoCompressL(NULL,aOutput,&aInput,aMaxOutputBytes,aMaxInputWords,aOutputBytes,aInputWords);
   189 	}
   190 
   191 EXPORT_C TInt TUnicodeCompressor::FlushL(RWriteStream& aOutput,TInt aMaxOutputBytes,TInt& aOutputBytes)
   192 	{
   193 	DoCompressL(&aOutput,NULL,NULL,aMaxOutputBytes,0,&aOutputBytes,NULL);
   194 	return iOutputBufferSize;
   195 	}
   196 
   197 EXPORT_C TInt TUnicodeCompressor::FlushL(TUint8* aOutput,TInt aMaxOutputBytes,TInt& aOutputBytes)
   198 	{
   199 	DoCompressL(NULL,aOutput,NULL,aMaxOutputBytes,0,&aOutputBytes,NULL);
   200 	return iOutputBufferSize;
   201 	}
   202 
   203 EXPORT_C TInt TUnicodeCompressor::CompressedSizeL(MUnicodeSource& aInput,TInt aInputWords)
   204 	{
   205 	TInt bytes;
   206 	TUnicodeCompressor c;
   207 	c.DoCompressL(NULL,NULL,&aInput,KMaxTInt,aInputWords,&bytes,NULL);
   208 	return bytes;
   209 	}
   210 
   211 // Compress until input or output is exhausted or an exception occurs.
   212 void TUnicodeCompressor::DoCompressL(RWriteStream* aOutputStream,TUint8* aOutputPointer,MUnicodeSource* aInput,
   213 									 TInt aMaxOutputBytes,TInt aMaxInputWords,
   214 									 TInt* aOutputBytes,TInt* aInputWords)
   215 	{
   216 	iOutputStream = aOutputStream;
   217 	iOutputPointer = aOutputPointer;
   218 	iInput = aInput;
   219 	iMaxCompressedBytes = aMaxOutputBytes;
   220 	iMaxUnicodeWords = aMaxInputWords;
   221 	iCompressedBytes = iUnicodeWords = 0;
   222 	FlushOutputBufferL();
   223 	if (iInput)
   224 		{
   225 		while (iUnicodeWords < iMaxUnicodeWords && iCompressedBytes < iMaxCompressedBytes)
   226 			{
   227 			TUint16 x = iInput->ReadUnicodeValueL();
   228 			TAction action(x);
   229 			iInputBuffer[(iInputBufferStart + iInputBufferSize) % EMaxInputBufferSize] = action;
   230 			iInputBufferSize++;
   231 			iUnicodeWords++;
   232 			if (iInputBufferSize == EMaxInputBufferSize)
   233 				WriteRunL();
   234 			}
   235 		}
   236 	FlushInputBufferL();
   237 	if (aOutputBytes)
   238 		*aOutputBytes = iCompressedBytes;
   239 	if (aInputWords)
   240 		*aInputWords = iUnicodeWords;
   241 	}
   242 
   243 TUnicodeCompressor::TAction::TAction(TUint16 aCode):
   244 	iCode(aCode)
   245 	{
   246 	if (TUnicodeCompressionState::EncodeAsIs(aCode))
   247 		iTreatment = EPlainASCII;
   248 	else
   249 		{
   250 		iTreatment = TUnicodeCompressionState::DynamicWindowOffsetIndex(aCode);
   251 		if (iTreatment == -1)
   252 			{
   253 			iTreatment = TUnicodeCompressionState::StaticWindowIndex(aCode);
   254 			if (iTreatment == -1)
   255 				iTreatment = EPlainUnicode;
   256 			else
   257 				iTreatment += EFirstStatic;
   258 			}
   259 		}
   260 	}
   261 
   262 void TUnicodeCompressor::WriteCharacterFromBuffer()
   263 	{
   264 	const TAction& action = iInputBuffer[iInputBufferStart];
   265 	iInputBufferSize--;
   266 	iInputBufferStart = (iInputBufferStart + 1) % EMaxInputBufferSize;
   267 	WriteCharacter(action);
   268 	}
   269 
   270 void TUnicodeCompressor::FlushInputBufferL()
   271 	{
   272 	while (iInputBufferSize > 0 && iCompressedBytes < iMaxCompressedBytes)
   273 		WriteRunL();
   274 	}
   275 
   276 void TUnicodeCompressor::WriteRunL()
   277 	{
   278 	// Write out any leading characters that can be passed through.
   279 	if (!iUnicodeMode)
   280 		while (iInputBufferSize > 0)
   281 			{
   282 			const TAction& action = iInputBuffer[iInputBufferStart];
   283 			if (action.iTreatment == TAction::EPlainASCII ||
   284 				(action.iCode >= iActiveWindowBase && action.iCode < iActiveWindowBase + 128))
   285 				WriteCharacterFromBuffer();
   286 			else
   287 				break;
   288 			}
   289 
   290 	// Write a run of characters that cannot be passed through.
   291 	int i;
   292 	if (iInputBufferSize > 0)
   293 		{
   294 		/*
   295 		Find a run of characters with the same treatment and select that treatment
   296 		if the run has more than one character.
   297 		*/
   298 		int treatment = iInputBuffer[iInputBufferStart].iTreatment;
   299 		int next_treatment = treatment;
   300 		int run_size = 1;
   301 		for (i = 1; i < iInputBufferSize; i++)
   302 			{
   303 			int index = (iInputBufferStart + i) % EMaxInputBufferSize;
   304 			next_treatment = iInputBuffer[index].iTreatment;
   305 			if (next_treatment != treatment)
   306 				break;
   307 			run_size++;
   308 			}
   309 		if (run_size > 1)
   310 			SelectTreatment(treatment);
   311 		for (i = 0; i < run_size; i++)
   312 			WriteCharacterFromBuffer();
   313 		}
   314 
   315 	FlushOutputBufferL();
   316 	}
   317 
   318 void TUnicodeCompressor::FlushOutputBufferL()
   319 	{
   320 	while (iOutputBufferSize > 0 &&	iCompressedBytes < iMaxCompressedBytes)
   321 		{
   322 		TUint8 byte = iOutputBuffer[iOutputBufferStart];
   323 		if (iOutputPointer)
   324 			*iOutputPointer++ = byte;
   325 		else if (iOutputStream)
   326 			iOutputStream->WriteUint8L(byte);
   327 		iCompressedBytes++;
   328 		iOutputBufferSize--;
   329 		iOutputBufferStart = (iOutputBufferStart + 1) % EMaxOutputBufferSize;
   330 		}
   331 	}
   332 
   333 void TUnicodeCompressor::SelectTreatment(TInt aTreatment)
   334 	{
   335 	if (aTreatment == TAction::EPlainUnicode)
   336 		{
   337 		// Switch to Unicode mode if not there already.
   338 		if (!iUnicodeMode)
   339 			{
   340 			WriteByte(SCU);
   341 			iUnicodeMode = TRUE;
   342 			}
   343 		return;
   344 		}
   345 
   346 	if (aTreatment == TAction::EPlainASCII)
   347 		{
   348 		// Switch to single-byte mode, using the current dynamic window, if not there already.
   349 		if (iUnicodeMode)
   350 			{
   351 			WriteByte(UC0 + iDynamicWindowIndex);
   352 			iUnicodeMode = FALSE;
   353 			}
   354 		return;
   355 		}
   356 
   357 	if (aTreatment >= TAction::EFirstDynamic && aTreatment <= TAction::ELastDynamic)
   358 		{
   359 		TUint32 base = DynamicWindowBase(aTreatment);
   360 
   361 		// Switch to the appropriate dynamic window if it is available; if not, redefine and select dynamic window 4.
   362 		for (int i = 0; i < EDynamicWindows; i++)
   363 			if (base == iDynamicWindow[i])
   364 				{
   365 				if (iUnicodeMode)
   366 					WriteByte(UC0 + i);
   367 				else if (i != iDynamicWindowIndex)
   368 					WriteByte(SC0 + i);
   369 				iUnicodeMode = FALSE;
   370 				iDynamicWindowIndex = i;
   371 				iActiveWindowBase = base;
   372 				return;
   373 				}
   374 		if (iUnicodeMode)
   375 			WriteByte(UD0 + 4);
   376 		else
   377 			WriteByte(SD0 + 4);
   378 		iDynamicWindowIndex = 4;
   379 		iUnicodeMode = FALSE;
   380 		WriteByte(aTreatment);
   381 		iDynamicWindow[4] = base;
   382 		iActiveWindowBase = base;
   383 		return;
   384 		}
   385 	}
   386 
   387 // Write a character without changing mode or window.
   388 void TUnicodeCompressor::WriteCharacter(const TAction& aAction)
   389 	{
   390 	if (iUnicodeMode)
   391 		WriteUCharacter(aAction.iCode);
   392 	else
   393 		WriteSCharacter(aAction);
   394 	}
   395 
   396 void TUnicodeCompressor::WriteUCharacter(TUint16 aCode)
   397 	{
   398 	// Emit the 'quote Unicode' tag if the character would conflict with a tag.
   399 	if (aCode >= 0xE000 && aCode <= 0xF2FF)
   400 		WriteByte(UQU);
   401 
   402 	// Write the Unicode value big-end first.
   403 	WriteByte((aCode >> 8) & 0xFF);
   404 	WriteByte(aCode & 0xFF);
   405 	}
   406 
   407 void TUnicodeCompressor::WriteByte(TUint aByte)
   408 	{
   409 	if (iOutputBufferSize >= EMaxOutputBufferSize)
   410 		Panic(EOutputBufferOverflow); //Panic here is ok as this is a programming error
   411 	iOutputBuffer[(iOutputBufferStart + iOutputBufferSize) % EMaxOutputBufferSize] = (TUint8)aByte;
   412 	iOutputBufferSize++;
   413 	}
   414 
   415 void TUnicodeCompressor::WriteSCharacter(const TAction& aAction)
   416 	{
   417 	// Characters in the range 0x0020..0x007F, plus nul, tab, cr, and lf, can be emitted as their low bytes.
   418 	if (aAction.iTreatment == TAction::EPlainASCII)
   419 		{
   420 		WriteByte(aAction.iCode);
   421 		return;
   422 		}
   423 
   424 	// Characters in a static window can be written using SQ<n> plus a byte in the range 0x00-0x7F
   425 	if (aAction.iTreatment >= TAction::EFirstStatic && aAction.iTreatment <= TAction::ELastStatic)
   426 		{
   427 		int window = aAction.iTreatment - TAction::EFirstStatic;
   428 		WriteByte(SQ0 + window);
   429 		WriteByte(aAction.iCode);
   430 		return;
   431 		}
   432 
   433 	// Characters in the current dynamic window can be written as a byte in the range 0x80-0xFF.
   434 	if (aAction.iCode >= iActiveWindowBase && aAction.iCode < iActiveWindowBase + 128)
   435 		{
   436 		WriteByte(aAction.iCode - iActiveWindowBase + 0x80);
   437 		return;
   438 		}
   439 
   440 	// Characters in another dynamic window can be written using SQ<n> plus a byte in the range 0x80-0xFF
   441 	int i;
   442 	for (i = 0; i < EDynamicWindows; i++)
   443 		if (aAction.iCode >= iDynamicWindow[i] && aAction.iCode < iDynamicWindow[i] + 128)
   444 			{
   445 			WriteByte(SQ0 + i);
   446 			WriteByte(aAction.iCode - iDynamicWindow[i] + 0x80);
   447 			return;
   448 			}
   449 
   450 	// Other characters can be quoted.
   451 	WriteByte(SQU);
   452 	WriteByte((aAction.iCode >> 8) & 0xFF);
   453 	WriteByte(aAction.iCode & 0xFF);
   454 	return;
   455 	}
   456 
   457 EXPORT_C TUnicodeExpander::TUnicodeExpander():
   458 	iInputBufferStart(0),
   459 	iInputBufferSize(0),
   460 	iOutputBufferStart(0),
   461 	iOutputBufferSize(0),
   462 	iOutput(NULL),
   463 	iInputStream(NULL),
   464 	iInputPointer(NULL)
   465 	{
   466 		// Clear coverity warnings
   467 		memset(iInputBuffer, 0, sizeof(iInputBuffer));
   468 		memset(iOutputBuffer, 0, sizeof(iOutputBuffer));
   469 	}
   470 
   471 EXPORT_C void TUnicodeExpander::ExpandL(MUnicodeSink& aOutput,RReadStream& aInput,
   472 										TInt aMaxOutputWords,TInt aMaxInputBytes,
   473 										TInt* aOutputWords,TInt* aInputBytes)
   474 	{
   475 	DoExpandL(&aOutput,&aInput,NULL,aMaxOutputWords,aMaxInputBytes,aOutputWords,aInputBytes);
   476 	}
   477 
   478 EXPORT_C void TUnicodeExpander::ExpandL(MUnicodeSink& aOutput,const TUint8* aInput,
   479 										TInt aMaxOutputWords,TInt aMaxInputBytes,
   480 										TInt* aOutputWords,TInt* aInputBytes)
   481 	{
   482 	DoExpandL(&aOutput,NULL,aInput,aMaxOutputWords,aMaxInputBytes,aOutputWords,aInputBytes);
   483 	}
   484 
   485 EXPORT_C TInt TUnicodeExpander::FlushL(MUnicodeSink& aOutput,TInt aMaxOutputWords,TInt& aOutputWords)
   486 	{
   487 	DoExpandL(&aOutput,NULL,NULL,aMaxOutputWords,0,&aOutputWords,NULL);
   488 	return iOutputBufferSize;
   489 	}
   490 
   491 EXPORT_C TInt TUnicodeExpander::ExpandedSizeL(RReadStream& aInput,TInt aInputBytes)
   492 	{
   493 	TInt words;
   494 	TUnicodeExpander e;
   495 	e.DoExpandL(NULL,&aInput,NULL,KMaxTInt,aInputBytes,&words,NULL);
   496 	return words;
   497 	}
   498 
   499 EXPORT_C TInt TUnicodeExpander::ExpandedSizeL(const TUint8* aInput,TInt aInputBytes)
   500 	{
   501 	TInt words;
   502 	TUnicodeExpander e;
   503 	e.DoExpandL(NULL,NULL,aInput,KMaxTInt,aInputBytes,&words,NULL);
   504 	return words;
   505 	}
   506 
   507 // Expand until input or output is exhausted or an exception occurs.
   508 void TUnicodeExpander::DoExpandL(MUnicodeSink* aOutput,RReadStream* aInputStream,const TUint8* aInputPointer,
   509 								 TInt aMaxOutputWords,TInt aMaxInputBytes,
   510 								 TInt* aOutputWords,TInt* aInputBytes)
   511 	{
   512 	iOutput = aOutput;
   513 	iInputStream = aInputStream;
   514 	iInputPointer = aInputPointer;
   515 	iMaxUnicodeWords = aMaxOutputWords;
   516 	iMaxCompressedBytes = aMaxInputBytes;
   517 	iUnicodeWords = iCompressedBytes = 0;
   518 	iInputBufferStart = 0;
   519 	FlushOutputBufferL();
   520 	if (iInputPointer || iInputStream)
   521 		{
   522 		while (iUnicodeWords + iOutputBufferSize < iMaxUnicodeWords && iCompressedBytes < iMaxCompressedBytes)
   523 			HandleByteL();
   524 		}
   525 	if (aOutputWords)
   526 		*aOutputWords = iUnicodeWords;
   527 	if (aInputBytes)
   528 		*aInputBytes = iCompressedBytes;
   529 	}
   530 
   531 void TUnicodeExpander::HandleByteL()
   532 	{
   533 	TUint8 byte;
   534 	TBool handled = FALSE;
   535 	if (ReadByteL(byte))
   536 		{
   537 		if (iUnicodeMode)
   538 			handled = HandleUByteL(byte);
   539 		else
   540 			handled = HandleSByteL(byte);
   541 		}
   542 	iInputBufferStart = 0;
   543 	if (handled)
   544 		iInputBufferSize = 0;
   545 	FlushOutputBufferL();
   546 	}
   547 
   548 void TUnicodeExpander::FlushOutputBufferL()
   549 	{
   550 	while (iOutputBufferSize > 0 &&	iUnicodeWords < iMaxUnicodeWords)
   551 		{
   552 		if (iOutput)
   553 			iOutput->WriteUnicodeValueL(iOutputBuffer[iOutputBufferStart]);
   554 		iUnicodeWords++;
   555 		iOutputBufferSize--;
   556 		iOutputBufferStart = (iOutputBufferStart + 1) % EMaxOutputBufferSize;
   557 		}
   558 	}
   559 
   560 TBool TUnicodeExpander::HandleSByteL(TUint8 aByte)
   561 	{
   562 	// 'Pass-through' codes.
   563 	if (TUnicodeCompressionState::EncodeAsIs(aByte))
   564 		{
   565 		WriteChar(aByte);
   566 		return TRUE;
   567 		}
   568 
   569 	// Codes 0x80-0xFF select a character from the active window.
   570 	if (aByte >= 0x80)
   571 		{
   572 		WriteChar32(iActiveWindowBase + aByte - 0x80);
   573 		return TRUE;
   574 		}
   575 
   576 	// SQU: quote a Unicode character.
   577 	if (aByte == SQU)
   578 		return QuoteUnicodeL();
   579 
   580 	// SCU: switch to Unicode mode.
   581 	if (aByte == SCU)
   582 		{
   583 		iUnicodeMode = TRUE;
   584 		return TRUE;
   585 		}
   586 
   587 	// SQn: quote from window n.
   588 	if (aByte >= SQ0 && aByte <= SQ0 + 7)
   589 		{
   590 		int window = aByte - SQ0;
   591 		TUint8 byte;
   592 		if (ReadByteL(byte))
   593 			{
   594 			TUint32 c = byte;
   595 			if (c <= 0x7F)
   596 				c += iStaticWindow[window];
   597 			else
   598 				c += iDynamicWindow[window] - 0x80;
   599 			WriteChar32(c);
   600 			return TRUE;
   601 			}
   602 		else
   603 			return FALSE;
   604 		}
   605 
   606 	// SCn: switch to dynamic window n.
   607 	if (aByte >= SC0 && aByte <= SC0 + 7)
   608 		{
   609 		iActiveWindowBase = iDynamicWindow[aByte - SC0];
   610 		return TRUE;
   611 		}
   612 
   613 	// SDn: define dynamic window n and switch to it.
   614 	if (aByte >= SD0 && aByte <= SD0 + 7)
   615 		return DefineWindowL(aByte - SD0);
   616 
   617 	// SDX: define window in the expansion space.
   618 	if (aByte == SDX)
   619 		return DefineExpansionWindowL();
   620 
   621 	User::Leave(KErrCorrupt);
   622 	return FALSE;
   623 	}
   624 
   625 TBool TUnicodeExpander::HandleUByteL(TUint8 aByte)
   626 	{
   627 	// Plain Unicode; get the low byte and emit the Unicode value.
   628 	if (aByte <= 0xDF || aByte >= 0xF3)
   629 		{
   630 		TUint8 lo;
   631 		if (ReadByteL(lo))
   632 			{
   633 			TUint16 c = (TUint16)((aByte << 8) | lo);
   634 			WriteChar(c);
   635 			return TRUE;
   636 			}
   637 		else
   638 			return FALSE;
   639 		}
   640 
   641 	// Quote a Unicode character that would otherwise conflict with a tag.
   642 	if (aByte == UQU)
   643 		return QuoteUnicodeL();
   644 
   645 	// UCn: change to single byte mode and select window n.
   646 	if (aByte >= UC0 && aByte <= UC0 + 7)
   647 		{
   648 		iUnicodeMode = FALSE;
   649 		iActiveWindowBase = iDynamicWindow[aByte - UC0];
   650 		return TRUE;
   651 		}
   652 
   653 	// UDn: define dynamic window n and switch to it.
   654 	if (aByte >= UD0 && aByte <= UD0 + 7)
   655 		return DefineWindowL(aByte - UD0);
   656 
   657 	// UDX: define window in the expansion space.
   658 	if (aByte == UDX)
   659 		return DefineExpansionWindowL();
   660 
   661 	User::Leave(KErrCorrupt);
   662 	return FALSE;
   663 	}
   664 
   665 TBool TUnicodeExpander::QuoteUnicodeL()
   666 	{
   667 	TUint8 hi, lo;
   668 	if (ReadByteL(hi) && ReadByteL(lo))
   669 		{
   670 		TUint16 c = (TUint16)((hi << 8) | lo);
   671 		WriteChar(c);
   672 		return TRUE;
   673 		}
   674 	else
   675 		return FALSE;
   676 	}
   677 
   678 TBool TUnicodeExpander::DefineWindowL(TInt aIndex)
   679 	{
   680 	TUint8 window;
   681 	if (ReadByteL(window))
   682 		{
   683 		iUnicodeMode = FALSE;
   684 		iActiveWindowBase = DynamicWindowBase(window);
   685 		iDynamicWindow[aIndex] = iActiveWindowBase;
   686 		return TRUE;
   687 		}
   688 	else
   689 		return FALSE;
   690 	}
   691 
   692 TBool TUnicodeExpander::DefineExpansionWindowL()
   693 	{
   694 	TUint8 hi, lo;
   695 	if (ReadByteL(hi) && ReadByteL(lo))
   696 		{
   697 		iUnicodeMode = FALSE;
   698 		iActiveWindowBase = 0x10000 + (0x80 * ((hi & 0x1F) * 0x100 + lo));
   699 		iDynamicWindow[hi >> 5] = iActiveWindowBase;
   700 		return TRUE;
   701 		}
   702 	else
   703 		return FALSE;
   704 	}
   705 
   706 // Read either from the buffer (in the case of restarting after source finished in mid-operation) or from the source.
   707 TBool TUnicodeExpander::ReadByteL(TUint8& aByte)
   708 	{
   709 	if (iInputBufferStart < iInputBufferSize)
   710 		{
   711 		aByte = iInputBuffer[iInputBufferStart++];
   712 		return TRUE;
   713 		}
   714 	else if (iCompressedBytes < iMaxCompressedBytes)
   715 		{
   716 		if (iInputPointer)
   717 			aByte = *iInputPointer++;
   718 		else
   719 			aByte = iInputStream->ReadUint8L();
   720 		iInputBuffer[iInputBufferStart++] = aByte;
   721 		iInputBufferSize = iInputBufferStart;
   722 		iCompressedBytes++;
   723 		return TRUE;
   724 		}
   725 	else
   726 		return FALSE;
   727 	}
   728 
   729 void TUnicodeExpander::WriteChar(TUint16 aChar)
   730 	{
   731 	if (iOutputBufferSize >= EMaxOutputBufferSize)
   732 		Panic(EOutputBufferOverflow); //Panic here is ok since this is a programming error
   733 	iOutputBuffer[(iOutputBufferStart + iOutputBufferSize) % EMaxOutputBufferSize] = aChar;
   734 	iOutputBufferSize++;
   735 	}
   736 
   737 // Write a Unicode character; write using surrogates if in the range 0x10000..0x10FFFF.
   738 void TUnicodeExpander::WriteChar32(TUint aChar)
   739 	{
   740 	if (aChar <= 0xFFFF)
   741 		WriteChar((TUint16)aChar);
   742 	else if (aChar <= 0x10FFFF)
   743 		{
   744 		aChar -= 0x10000;									// reduce to 20-bit value in the range 0x0..0xFFFFF
   745 		WriteChar((TUint16)(0xD800 + (aChar >> 10)));		// first high surrogate + high 10 bits
   746 		WriteChar((TUint16)(0xDC00 + (aChar & 0x03FF)));	// first low surrogate + low 10 bits
   747 		}
   748 	else
   749 		//Panic to be kept here as impossible to test this case (nor the one before). Biggest value that can be passed is 0xFFFFF 
   750 		Panic(ENotUnicode);
   751 	}
   752 
   753 #endif // _UNICODE