os/security/securityanddataprivacytools/securitytools/certapp/store--/s32ucmp.h
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 * Header for the Standard Compression Scheme for Unicode.
    16 * This code is compiled only in the Unicode build.
    17 *
    18 */
    19 
    20 
    21 #ifndef __S32UCMP_H__
    22 #define __S32UCMP_H__ 1
    23 
    24 /**
    25  * @file
    26  * @internalComponent
    27  */
    28 
    29 #ifdef _UNICODE
    30 
    31 #include <e32base.h>
    32 #include <s32file.h>
    33 
    34 class TUnicodeCompressionState
    35 	{
    36 	public:
    37 	TUnicodeCompressionState();
    38 	void Reset();
    39 	static TInt StaticWindowIndex(TUint16 aCode);
    40 	static TInt DynamicWindowOffsetIndex(TUint16 aCode);
    41 	static TUint32 DynamicWindowBase(TInt aOffsetIndex);
    42 	static TBool EncodeAsIs(TUint16 aCode);
    43 
    44 	enum TPanic
    45 		{
    46 		EUnhandledByte,			// expander code fails to handle all possible byte codes
    47 		ENotUnicode,			// expander can't handle Unicode values outside range 0x0..0x10FFFF;
    48 								// that is, 16-bit codes plus 32-bit codes that can be expressed using
    49 								// 16-bit surrogates
    50 		EOutputBufferOverflow	// output buffer is not big enough
    51 		};
    52 
    53 	static void Panic(TPanic aPanic);
    54 
    55 	protected:
    56 
    57 	enum
    58 		{
    59 		EStaticWindows = 8,
    60 		EDynamicWindows = 8,
    61 		ESpecialBases = 7
    62 		};
    63 
    64 	TBool iUnicodeMode;									// TRUE if in Unicode mode as opposed to single-byte mode
    65 	TUint32 iActiveWindowBase;							// base of the active window - bases are 32-bit because they
    66 														// can be set to the surrogate area, which represents codes
    67 														// from 0x00010000 to 0x0010FFFF - planes 1-16 of ISO-10646.
    68 	static const TUint32 iStaticWindow[EStaticWindows];	// bases of the static windows
    69 	static const TUint32 iDynamicWindowDefault[EDynamicWindows];	// default bases of the dynamic windows
    70 	static const TUint16 iSpecialBase[ESpecialBases];	// bases for window offsets F9..FF
    71 
    72 	TUint32 iDynamicWindow[EDynamicWindows];			// bases of the dynamic windows
    73 	TInt iUnicodeWords;									// Unicode words processed; read by compressor, written by expander
    74 	TInt iMaxUnicodeWords;								// maximum number of Unicode words to read or write
    75 	TInt iCompressedBytes;								// compressed bytes processed: read by expander, written by compressor
    76 	TInt iMaxCompressedBytes;							// maximum number of compressed bytes to read or write
    77 	};
    78 
    79 class MUnicodeSource
    80 	{
    81 	public:
    82 	virtual TUint16 ReadUnicodeValueL() = 0;
    83 	};
    84 
    85 /**
    86  A class to read Unicode values directly from memory.
    87  */
    88 class TMemoryUnicodeSource: public MUnicodeSource
    89 	{
    90 	public:
    91 	inline TMemoryUnicodeSource(const TUint16* aPtr);
    92 	inline TUint16 ReadUnicodeValueL();
    93 
    94 	private:
    95 	const TUint16* iPtr;
    96 	};
    97 
    98 /**
    99  A class to read Unicode values from a stream built on a memory object.
   100  */
   101 class TMemoryStreamUnicodeSource: public MUnicodeSource
   102 	{
   103 	public:
   104 	inline TMemoryStreamUnicodeSource(RReadStream& aStream);
   105 	inline TUint16 ReadUnicodeValueL();
   106 
   107 	private:
   108 	RReadStream& iStream;
   109 	};
   110 
   111 class MUnicodeSink
   112 	{
   113 	public:
   114 	virtual void WriteUnicodeValueL(TUint16 aValue) = 0;
   115 	};
   116 
   117 /**
   118  A class to write Unicode values directly to memory.
   119  */
   120 class TMemoryUnicodeSink: public MUnicodeSink
   121 	{
   122 	public:
   123 	inline TMemoryUnicodeSink(TUint16* aPtr);
   124 	inline void WriteUnicodeValueL(TUint16 aValue);
   125 
   126 	private:
   127 	TUint16* iPtr;
   128 	};
   129 
   130 /**
   131  A class to write Unicode values to a stream built on a memory object.
   132  */
   133 class TMemoryStreamUnicodeSink: public MUnicodeSink
   134 	{
   135 	public:
   136 	inline TMemoryStreamUnicodeSink(RWriteStream& aStream);
   137 	inline void WriteUnicodeValueL(TUint16 aValue);
   138 
   139 	private:
   140 	RWriteStream& iStream;
   141 	};
   142 
   143 /**
   144  
   145 A class to hold functions to compress text using the Standard Compression Scheme for Unicode.
   146 
   147 A note on error handling and leaving.
   148 
   149 Although all the public functions except the constructor can leave, it is possible to guarantee success: that is,
   150 guarantee that a call will not leave, and that compression will be completed. To do this, (i) supply a MUnicodeSource
   151 object with a non-leaving ReadUnicodeValueL function, such as a TMemoryUnicodeSource; (ii) write output to a
   152 RWriteStream with a non-leaving WriteL function, or to a buffer that you already know to be big enough, which can be
   153 found out using CompressedSizeL.
   154 
   155 This guarantee of success is particularly useful when compressing from one memory buffer to another.
   156 */
   157 class TUnicodeCompressor: public TUnicodeCompressionState
   158 	{
   159 	public:
   160 	IMPORT_C TUnicodeCompressor();
   161 	IMPORT_C void CompressL(RWriteStream& aOutput,MUnicodeSource& aInput,
   162 							TInt aMaxOutputBytes = KMaxTInt,TInt aMaxInputWords = KMaxTInt,
   163 							TInt* aOutputBytes = NULL,TInt* aInputWords = NULL);
   164 	IMPORT_C void CompressL(TUint8* aOutput,MUnicodeSource& aInput,
   165 							TInt aMaxOutputBytes = KMaxTInt,TInt aMaxInputWords = KMaxTInt,
   166 							TInt* aOutputBytes = NULL,TInt* aInputWords = NULL);
   167 	IMPORT_C TInt FlushL(RWriteStream& aOutput,TInt aMaxOutputBytes,TInt& aOutputBytes);
   168 	IMPORT_C TInt FlushL(TUint8* aOutput,TInt aMaxOutputBytes,TInt& aOutputBytes);
   169 	IMPORT_C static TInt CompressedSizeL(MUnicodeSource& aInput,TInt aInputWords);
   170 
   171 	private:
   172 
   173 	 // A structure to store a character and its treatment code
   174 	struct TAction
   175 		{
   176 		// Treatment codes: static and dynamic window numbers, plain ASCII or plain Unicode
   177 		enum
   178 			{
   179 			EPlainUnicode = -2,	// character cannot be expressed as ASCII or using static or dynamic windows
   180 			EPlainASCII = -1,	// character can be emitted as an ASCII code
   181 			EFirstDynamic = 0,	// values 0..255 are for dynamic windows with offsets at these places in the offset table
   182 			ELastDynamic = 255,
   183 			EFirstStatic = 256,	// values 256..263 are for static windows 0..7
   184 			ELastStatic = 263
   185 			};
   186 
   187 		inline TAction();
   188 		TAction(TUint16 aCode);
   189 
   190 		TUint16 iCode;		// Unicode value of the character
   191 		TInt iTreatment;	// treatment code: see above
   192 		};
   193 
   194 	void DoCompressL(RWriteStream* aOutputStream,TUint8* aOutputPointer,MUnicodeSource* aInput,
   195 					 TInt aMaxCompressedBytes,TInt aMaxUnicodeWords,
   196 					 TInt* aCompressedBytes,TInt* aUnicodeWords);
   197 	void FlushInputBufferL();
   198 	void FlushOutputBufferL();
   199 	void WriteRunL();
   200 	void WriteCharacter(const TAction& aAction);
   201 	void WriteSCharacter(const TAction& aAction);
   202 	void WriteUCharacter(TUint16 aCode);
   203 	void WriteByte(TUint aByte);
   204 	void WriteCharacterFromBuffer();
   205 	void SelectTreatment(TInt aTreatment);
   206 
   207 	enum
   208 		{
   209 		EMaxInputBufferSize = 4,
   210 		EMaxOutputBufferSize = EMaxInputBufferSize * 3	// no Unicode character can be encoded as more than three bytes
   211 		};
   212 	TAction iInputBuffer[EMaxInputBufferSize];			// circular buffer; queue of Unicode characters to be processed
   213 	TInt iInputBufferStart;								// position of first Unicode character to be processed
   214 	TInt iInputBufferSize;								// characters in the input buffer
   215 	TUint8 iOutputBuffer[EMaxOutputBufferSize];			// circular buffer; queue of compressed bytes to be output
   216 	TInt iOutputBufferStart;							// position of first compressed byte to be output
   217 	TInt iOutputBufferSize;								// characters in the output buffer
   218 	TInt iDynamicWindowIndex;							// index of the current dynamic window
   219 	RWriteStream* iOutputStream;						// if non-null, output is to this stream
   220 	TUint8* iOutputPointer;								// if non-null, output is to memory
   221 	MUnicodeSource* iInput;								// input object
   222 	};
   223 
   224 /**
   225 
   226 A class to hold functions to expand text using the Standard Compression Scheme for Unicode.
   227 
   228 A note on error handling and leaving.
   229 
   230 Although all the public functions except the constructor can leave, it is possible to guarantee success: that is,
   231 guarantee that a call will not leave, and that expansion will be completed. To do this, (i) supply a MUnicodeSink
   232 object with a non-leaving WriteUnicodeValueL function, such as a TMemoryUnicodeSink; (ii) read input from a RReadStream
   233 with a non-leaving ReadL function; (iii) supply a big enough buffer to write the ouput; you can find out how big by
   234 calling ExpandedSizeL, using methods (i) and (ii) to guarantee success.
   235 
   236 This guarantee of success is particularly useful when expanding from one memory buffer to another.
   237 */
   238 class TUnicodeExpander: public TUnicodeCompressionState
   239 	{
   240 	public:
   241 	IMPORT_C TUnicodeExpander();
   242 	IMPORT_C void ExpandL(MUnicodeSink& aOutput,RReadStream& aInput,
   243 						  TInt aMaxOutputWords = KMaxTInt,TInt aMaxInputBytes = KMaxTInt,
   244 						  TInt* aOutputWords = NULL,TInt* aInputBytes = NULL);
   245 	IMPORT_C void ExpandL(MUnicodeSink& aOutput,const TUint8* aInput,
   246 						  TInt aMaxOutputWords = KMaxTInt,TInt aMaxInputBytes = KMaxTInt,
   247 						  TInt* aOutputWords = NULL,TInt* aInputBytes = NULL);
   248 	IMPORT_C TInt FlushL(MUnicodeSink& aOutput,TInt aMaxOutputWords,TInt& aOutputWords);
   249 	IMPORT_C static TInt ExpandedSizeL(RReadStream& aInput,TInt aInputBytes);
   250 	IMPORT_C static TInt ExpandedSizeL(const TUint8* aInput,TInt aInputBytes);
   251 
   252 	private:
   253 	void DoExpandL(MUnicodeSink* aOutput,RReadStream* aInputStream,const TUint8* aInputPointer,
   254 				   TInt aMaxOutputWords,TInt aMaxInputBytes,
   255 				   TInt* aOutputWords,TInt* aInputBytes);
   256 	void HandleByteL();
   257 	void FlushOutputBufferL();
   258 	TBool HandleSByteL(TUint8 aByte);
   259 	TBool HandleUByteL(TUint8 aByte);
   260 	TBool ReadByteL(TUint8& aByte);
   261 	TBool QuoteUnicodeL();
   262 	TBool DefineWindowL(TInt aIndex);
   263 	TBool DefineExpansionWindowL();
   264 	void WriteChar(TText aChar);
   265 	void WriteChar32(TUint aChar);
   266 
   267 	enum
   268 		{
   269 		EMaxInputBufferSize = 3,						// no Unicode character can be encoded as more than 3 bytes
   270 		EMaxOutputBufferSize = 2						// no byte can be expanded into more than 2 Unicode characters
   271 		};
   272 	TUint8 iInputBuffer[EMaxInputBufferSize];			// buffer containing a group of compressed bytes representing
   273 														// a single operation; when an input source ends in the
   274 														// middle of an operation, this buffer enables the next
   275 														// expansion to start in the correct state
   276 	TInt iInputBufferStart;								// next read position in the input buffer
   277 	TInt iInputBufferSize;								// bytes in the input buffer
   278 	TUint16 iOutputBuffer[EMaxOutputBufferSize];		// circular buffer; queue of Unicode characters to be output
   279 	TInt iOutputBufferStart;							// position of first Unicode character to be output
   280 	TInt iOutputBufferSize;								// characters in the output buffer
   281 	MUnicodeSink* iOutput;								// output object
   282 	RReadStream* iInputStream;							// if non-null, input is from this stream
   283 	const TUint8* iInputPointer;						// if non-null, input is from memory
   284 	};
   285 
   286 // inline functions start here
   287 
   288 inline TMemoryUnicodeSource::TMemoryUnicodeSource(const TUint16* aPtr):
   289 	iPtr(aPtr)
   290 	{
   291 	}
   292 
   293 inline TUint16 TMemoryUnicodeSource::ReadUnicodeValueL()
   294 	{
   295 	return *iPtr++;
   296 	}
   297 
   298 inline TMemoryStreamUnicodeSource::TMemoryStreamUnicodeSource(RReadStream& aStream):
   299 	iStream(aStream)
   300 	{
   301 	}
   302 
   303 inline TUint16 TMemoryStreamUnicodeSource::ReadUnicodeValueL()
   304 	{
   305 	TUint16 x;
   306 	iStream.ReadL((TUint8*)&x,sizeof(TUint16));
   307 	return x;
   308 	}
   309 
   310 inline TMemoryUnicodeSink::TMemoryUnicodeSink(TUint16* aPtr):
   311 	iPtr(aPtr)
   312 	{
   313 	}
   314 
   315 inline void TMemoryUnicodeSink::WriteUnicodeValueL(TUint16 aValue)
   316 	{
   317 	*iPtr++ = aValue;
   318 	}
   319 
   320 inline TMemoryStreamUnicodeSink::TMemoryStreamUnicodeSink(RWriteStream& aStream):
   321 	iStream(aStream)
   322 	{
   323 	}
   324 
   325 inline void TMemoryStreamUnicodeSink::WriteUnicodeValueL(TUint16 aValue)
   326 	{
   327 	iStream.WriteL((TUint8*)&aValue,sizeof(TUint16));
   328 	}
   329 
   330 inline TUnicodeCompressor::TAction::TAction():
   331 	iCode(0),
   332 	iTreatment(EPlainUnicode)
   333 	{
   334 	}
   335 
   336 #endif // _UNICODE
   337 
   338 #endif // __S32UCMP_H__