os/ossrv/lowlevellibsandfws/apputils/src/BADICTIONARYCOMPRESSION.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32std.h>
sl@0
    17
#include <baflpan.h>
sl@0
    18
#include "BADICTIONARYCOMPRESSION.H"
sl@0
    19
sl@0
    20
RDictionaryCompressionBitStream::RDictionaryCompressionBitStream() :
sl@0
    21
	iNumberOfBitsUsedForDictionaryTokens(0),
sl@0
    22
	iOffsetToFirstBit(-1),
sl@0
    23
	iOffsetToCurrentBit(-1),
sl@0
    24
	iOffsetOnePastLastBit(-1),
sl@0
    25
	iOwnsBitBuffer(EFalse),
sl@0
    26
	iBuffer(NULL),
sl@0
    27
	iAssertObj()
sl@0
    28
	{
sl@0
    29
	}
sl@0
    30
sl@0
    31
void RDictionaryCompressionBitStream::OpenL(
sl@0
    32
				TInt aNumberOfBitsUsedForDictionaryTokens,
sl@0
    33
				TInt aOffsetToFirstBit,
sl@0
    34
				TInt aOffsetOnePastLastBit,
sl@0
    35
				TBool aTransferringOwnershipOfBuffer,
sl@0
    36
				TUint8* aBuffer,
sl@0
    37
				const TBaAssert& aAssertObj)
sl@0
    38
	{
sl@0
    39
	iNumberOfBitsUsedForDictionaryTokens = aNumberOfBitsUsedForDictionaryTokens;
sl@0
    40
	iOffsetToFirstBit = aOffsetToFirstBit;
sl@0
    41
	iOffsetToCurrentBit = aOffsetToFirstBit;
sl@0
    42
	iOffsetOnePastLastBit = aOffsetOnePastLastBit;
sl@0
    43
	iOwnsBitBuffer = aTransferringOwnershipOfBuffer;
sl@0
    44
	iBuffer = aBuffer;
sl@0
    45
	iAssertObj = aAssertObj;
sl@0
    46
sl@0
    47
	iAssertObj.AssertDebL(aBuffer!=NULL,EBafPanicNullPointer);
sl@0
    48
	iAssertObj.AssertDebL(aOffsetToFirstBit>=0,EBafPanicNegativeOffsetToFirstBit1);
sl@0
    49
	iAssertObj.AssertDebL(aOffsetToFirstBit<=aOffsetOnePastLastBit,EBafPanicNegativeLengthOfBitBuffer);
sl@0
    50
	}
sl@0
    51
sl@0
    52
void RDictionaryCompressionBitStream::Close()
sl@0
    53
	{
sl@0
    54
	if (iOwnsBitBuffer)
sl@0
    55
		{
sl@0
    56
		iOwnsBitBuffer=EFalse;
sl@0
    57
		delete [] iBuffer;
sl@0
    58
		}
sl@0
    59
	iBuffer=NULL;
sl@0
    60
	}
sl@0
    61
sl@0
    62
TBool RDictionaryCompressionBitStream::EndOfStreamL() const
sl@0
    63
	{
sl@0
    64
	__ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed1));
sl@0
    65
	iAssertObj.AssertDebL(iOffsetToFirstBit>=0,EBafPanicNegativeOffsetToFirstBit2);
sl@0
    66
	iAssertObj.AssertDebL(iOffsetToCurrentBit>=iOffsetToFirstBit,EBafPanicBadCurrentBitPosition1);
sl@0
    67
	iAssertObj.AssertDebL(iOffsetToCurrentBit<=iOffsetOnePastLastBit,EBafPanicBadCurrentBitPosition2);
sl@0
    68
	return iOffsetToCurrentBit>=iOffsetOnePastLastBit;
sl@0
    69
	}
sl@0
    70
sl@0
    71
TInt RDictionaryCompressionBitStream::IndexOfDictionaryEntryL()
sl@0
    72
	{
sl@0
    73
	// increments the current bit-position if it returns a value >=0; returns KErrNotFound if the next thing in the stream is plain data rather than the index of a dictionary entry
sl@0
    74
	__ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed2));
sl@0
    75
	iAssertObj.AssertDebL(!EndOfStreamL(),EBafPanicEndOfStream1);
sl@0
    76
	if (!CurrentBitIsOn())
sl@0
    77
		{
sl@0
    78
		++iOffsetToCurrentBit;
sl@0
    79
		return ReadIntegerL(iNumberOfBitsUsedForDictionaryTokens);
sl@0
    80
		}
sl@0
    81
	return KErrNotFound;
sl@0
    82
	}
sl@0
    83
sl@0
    84
void RDictionaryCompressionBitStream::ReadL(TDes8& aBufferToAppendTo,TBool aCalypsoFileFormat)
sl@0
    85
	{
sl@0
    86
	// can only be called if IndexOfDictionaryEntry returned a negative value
sl@0
    87
	__ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed3));
sl@0
    88
	iAssertObj.AssertDebL(!EndOfStreamL(),EBafPanicEndOfStream2);
sl@0
    89
	TInt numberOfConsecutivePrefixBits=0;
sl@0
    90
	TInt i;
sl@0
    91
	for (i=0; i<4; ++i)
sl@0
    92
		{
sl@0
    93
		const TBool currentBitIsOn=CurrentBitIsOn();
sl@0
    94
		++iOffsetToCurrentBit; // increment this regardless whether the current bit is on
sl@0
    95
		if (!currentBitIsOn)
sl@0
    96
			{
sl@0
    97
			break;
sl@0
    98
			}
sl@0
    99
		++numberOfConsecutivePrefixBits;
sl@0
   100
		}
sl@0
   101
	iAssertObj.AssertDebL(numberOfConsecutivePrefixBits>0,EBafPanicBadNumberOfConsecutivePrefixBits1);
sl@0
   102
	iAssertObj.AssertDebL(numberOfConsecutivePrefixBits<=4,EBafPanicBadNumberOfConsecutivePrefixBits2);
sl@0
   103
	TInt numberOfBytesToRead;
sl@0
   104
	if (numberOfConsecutivePrefixBits==3)
sl@0
   105
		{
sl@0
   106
		numberOfBytesToRead=3+ReadIntegerL(3);
sl@0
   107
		}
sl@0
   108
	else if (numberOfConsecutivePrefixBits==4)
sl@0
   109
		{
sl@0
   110
		numberOfBytesToRead=ReadIntegerL(8);
sl@0
   111
		if (!aCalypsoFileFormat)
sl@0
   112
			{
sl@0
   113
			numberOfBytesToRead+=3+(1<<3);
sl@0
   114
			}
sl@0
   115
		}
sl@0
   116
	else
sl@0
   117
		{
sl@0
   118
		numberOfBytesToRead=numberOfConsecutivePrefixBits;
sl@0
   119
		}
sl@0
   120
	const TInt numberOfBitsOffByteBoundary=iOffsetToCurrentBit%8;
sl@0
   121
	const TUint8* currentByte=iBuffer+(iOffsetToCurrentBit/8);
sl@0
   122
	iAssertObj.AssertDebL(
sl@0
   123
		(numberOfBytesToRead + aBufferToAppendTo.Length()) <= aBufferToAppendTo.MaxLength(),
sl@0
   124
		EBafPanicBufLength);
sl@0
   125
	for (i=0; i<numberOfBytesToRead; ++i, ++currentByte)
sl@0
   126
		{
sl@0
   127
		TUint byte=*currentByte;
sl@0
   128
		iAssertObj.AssertDebL(numberOfBitsOffByteBoundary>=0,EBafPanicBadNumberOfBitsOffByteBoundary1);
sl@0
   129
		if (numberOfBitsOffByteBoundary>0)
sl@0
   130
			{
sl@0
   131
			byte>>=numberOfBitsOffByteBoundary;
sl@0
   132
			byte|=(*(currentByte+1)<<(8-numberOfBitsOffByteBoundary));
sl@0
   133
			byte&=0xff;
sl@0
   134
			}
sl@0
   135
		aBufferToAppendTo.Append(byte);
sl@0
   136
		}
sl@0
   137
	iOffsetToCurrentBit+=numberOfBytesToRead*8;
sl@0
   138
	iAssertObj.AssertDebL(numberOfBitsOffByteBoundary==iOffsetToCurrentBit%8,EBafPanicBadNumberOfBitsOffByteBoundary2);
sl@0
   139
	}
sl@0
   140
sl@0
   141
TBool RDictionaryCompressionBitStream::CurrentBitIsOn() const
sl@0
   142
	{
sl@0
   143
	// does not increment the current bit-position
sl@0
   144
	__ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed4));
sl@0
   145
	return iBuffer[iOffsetToCurrentBit/8]&(1<<(iOffsetToCurrentBit%8));
sl@0
   146
	}
sl@0
   147
sl@0
   148
TUint RDictionaryCompressionBitStream::ReadIntegerL(TInt aNumberOfBits)
sl@0
   149
	{
sl@0
   150
	// increments the current bit-position
sl@0
   151
	__ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed5));
sl@0
   152
	TInt integer=0;
sl@0
   153
	TInt numberOfBitsLeftToRead=aNumberOfBits;
sl@0
   154
	FOREVER
sl@0
   155
		{
sl@0
   156
		const TInt offsetToFirstBitToReadInCurrentByte=iOffsetToCurrentBit%8;
sl@0
   157
		const TInt offsetOnePastLastBitToReadInCurrentByte=Min(8,offsetToFirstBitToReadInCurrentByte+numberOfBitsLeftToRead);
sl@0
   158
		const TInt numberOfBitsReadFromCurrentByte=offsetOnePastLastBitToReadInCurrentByte-offsetToFirstBitToReadInCurrentByte;
sl@0
   159
		iAssertObj.AssertDebL(numberOfBitsReadFromCurrentByte>0,EBafPanicBadNumberOfBitsReadFromCurrentByte);
sl@0
   160
		const TUint bitsReadFromCurrentByte=((iBuffer[iOffsetToCurrentBit/8]>>offsetToFirstBitToReadInCurrentByte)&((1<<numberOfBitsReadFromCurrentByte)-1));
sl@0
   161
		integer|=(bitsReadFromCurrentByte<<(aNumberOfBits-numberOfBitsLeftToRead));
sl@0
   162
		iOffsetToCurrentBit+=numberOfBitsReadFromCurrentByte;
sl@0
   163
		numberOfBitsLeftToRead-=numberOfBitsReadFromCurrentByte;
sl@0
   164
		iAssertObj.AssertDebL(numberOfBitsLeftToRead>=0,EBafPanicBadNumberOfBitsLeftToRead);
sl@0
   165
		if (numberOfBitsLeftToRead<=0)
sl@0
   166
			{
sl@0
   167
			break;
sl@0
   168
			}
sl@0
   169
		}
sl@0
   170
	return integer;
sl@0
   171
	}
sl@0
   172