Update contrib.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include "BADICTIONARYCOMPRESSION.H"
20 RDictionaryCompressionBitStream::RDictionaryCompressionBitStream() :
21 iNumberOfBitsUsedForDictionaryTokens(0),
22 iOffsetToFirstBit(-1),
23 iOffsetToCurrentBit(-1),
24 iOffsetOnePastLastBit(-1),
25 iOwnsBitBuffer(EFalse),
31 void RDictionaryCompressionBitStream::OpenL(
32 TInt aNumberOfBitsUsedForDictionaryTokens,
33 TInt aOffsetToFirstBit,
34 TInt aOffsetOnePastLastBit,
35 TBool aTransferringOwnershipOfBuffer,
37 const TBaAssert& aAssertObj)
39 iNumberOfBitsUsedForDictionaryTokens = aNumberOfBitsUsedForDictionaryTokens;
40 iOffsetToFirstBit = aOffsetToFirstBit;
41 iOffsetToCurrentBit = aOffsetToFirstBit;
42 iOffsetOnePastLastBit = aOffsetOnePastLastBit;
43 iOwnsBitBuffer = aTransferringOwnershipOfBuffer;
45 iAssertObj = aAssertObj;
47 iAssertObj.AssertDebL(aBuffer!=NULL,EBafPanicNullPointer);
48 iAssertObj.AssertDebL(aOffsetToFirstBit>=0,EBafPanicNegativeOffsetToFirstBit1);
49 iAssertObj.AssertDebL(aOffsetToFirstBit<=aOffsetOnePastLastBit,EBafPanicNegativeLengthOfBitBuffer);
52 void RDictionaryCompressionBitStream::Close()
56 iOwnsBitBuffer=EFalse;
62 TBool RDictionaryCompressionBitStream::EndOfStreamL() const
64 __ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed1));
65 iAssertObj.AssertDebL(iOffsetToFirstBit>=0,EBafPanicNegativeOffsetToFirstBit2);
66 iAssertObj.AssertDebL(iOffsetToCurrentBit>=iOffsetToFirstBit,EBafPanicBadCurrentBitPosition1);
67 iAssertObj.AssertDebL(iOffsetToCurrentBit<=iOffsetOnePastLastBit,EBafPanicBadCurrentBitPosition2);
68 return iOffsetToCurrentBit>=iOffsetOnePastLastBit;
71 TInt RDictionaryCompressionBitStream::IndexOfDictionaryEntryL()
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
74 __ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed2));
75 iAssertObj.AssertDebL(!EndOfStreamL(),EBafPanicEndOfStream1);
76 if (!CurrentBitIsOn())
78 ++iOffsetToCurrentBit;
79 return ReadIntegerL(iNumberOfBitsUsedForDictionaryTokens);
84 void RDictionaryCompressionBitStream::ReadL(TDes8& aBufferToAppendTo,TBool aCalypsoFileFormat)
86 // can only be called if IndexOfDictionaryEntry returned a negative value
87 __ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed3));
88 iAssertObj.AssertDebL(!EndOfStreamL(),EBafPanicEndOfStream2);
89 TInt numberOfConsecutivePrefixBits=0;
93 const TBool currentBitIsOn=CurrentBitIsOn();
94 ++iOffsetToCurrentBit; // increment this regardless whether the current bit is on
99 ++numberOfConsecutivePrefixBits;
101 iAssertObj.AssertDebL(numberOfConsecutivePrefixBits>0,EBafPanicBadNumberOfConsecutivePrefixBits1);
102 iAssertObj.AssertDebL(numberOfConsecutivePrefixBits<=4,EBafPanicBadNumberOfConsecutivePrefixBits2);
103 TInt numberOfBytesToRead;
104 if (numberOfConsecutivePrefixBits==3)
106 numberOfBytesToRead=3+ReadIntegerL(3);
108 else if (numberOfConsecutivePrefixBits==4)
110 numberOfBytesToRead=ReadIntegerL(8);
111 if (!aCalypsoFileFormat)
113 numberOfBytesToRead+=3+(1<<3);
118 numberOfBytesToRead=numberOfConsecutivePrefixBits;
120 const TInt numberOfBitsOffByteBoundary=iOffsetToCurrentBit%8;
121 const TUint8* currentByte=iBuffer+(iOffsetToCurrentBit/8);
122 iAssertObj.AssertDebL(
123 (numberOfBytesToRead + aBufferToAppendTo.Length()) <= aBufferToAppendTo.MaxLength(),
125 for (i=0; i<numberOfBytesToRead; ++i, ++currentByte)
127 TUint byte=*currentByte;
128 iAssertObj.AssertDebL(numberOfBitsOffByteBoundary>=0,EBafPanicBadNumberOfBitsOffByteBoundary1);
129 if (numberOfBitsOffByteBoundary>0)
131 byte>>=numberOfBitsOffByteBoundary;
132 byte|=(*(currentByte+1)<<(8-numberOfBitsOffByteBoundary));
135 aBufferToAppendTo.Append(byte);
137 iOffsetToCurrentBit+=numberOfBytesToRead*8;
138 iAssertObj.AssertDebL(numberOfBitsOffByteBoundary==iOffsetToCurrentBit%8,EBafPanicBadNumberOfBitsOffByteBoundary2);
141 TBool RDictionaryCompressionBitStream::CurrentBitIsOn() const
143 // does not increment the current bit-position
144 __ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed4));
145 return iBuffer[iOffsetToCurrentBit/8]&(1<<(iOffsetToCurrentBit%8));
148 TUint RDictionaryCompressionBitStream::ReadIntegerL(TInt aNumberOfBits)
150 // increments the current bit-position
151 __ASSERT_DEBUG(iBuffer!=NULL,Panic(EBafPanicNotConstructed5));
153 TInt numberOfBitsLeftToRead=aNumberOfBits;
156 const TInt offsetToFirstBitToReadInCurrentByte=iOffsetToCurrentBit%8;
157 const TInt offsetOnePastLastBitToReadInCurrentByte=Min(8,offsetToFirstBitToReadInCurrentByte+numberOfBitsLeftToRead);
158 const TInt numberOfBitsReadFromCurrentByte=offsetOnePastLastBitToReadInCurrentByte-offsetToFirstBitToReadInCurrentByte;
159 iAssertObj.AssertDebL(numberOfBitsReadFromCurrentByte>0,EBafPanicBadNumberOfBitsReadFromCurrentByte);
160 const TUint bitsReadFromCurrentByte=((iBuffer[iOffsetToCurrentBit/8]>>offsetToFirstBitToReadInCurrentByte)&((1<<numberOfBitsReadFromCurrentByte)-1));
161 integer|=(bitsReadFromCurrentByte<<(aNumberOfBits-numberOfBitsLeftToRead));
162 iOffsetToCurrentBit+=numberOfBitsReadFromCurrentByte;
163 numberOfBitsLeftToRead-=numberOfBitsReadFromCurrentByte;
164 iAssertObj.AssertDebL(numberOfBitsLeftToRead>=0,EBafPanicBadNumberOfBitsLeftToRead);
165 if (numberOfBitsLeftToRead<=0)