1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
/**
* Copyright 2014 JogAmp Community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of JogAmp Community.
*/
package com.jogamp.common.util;
import java.io.IOException;
import java.nio.ByteBuffer;
import org.junit.Assert;
import org.junit.Test;
import com.jogamp.junit.util.SingletonJunitCase;
import static com.jogamp.common.util.BitstreamData.*;
import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
/**
* Test {@link Bitstream} w/ raw linear and bulk read/write access w/o semantics:
* <ul>
* <li>{@link Bitstream#readBit(boolean)}</li>
* <li>{@link Bitstream#writeBit(boolean, int)}</li>
* <li>{@link Bitstream#mark(int)}</li>
* <li>{@link Bitstream#reset()}</li>
* <li>{@link Bitstream#flush()}</li>
* <li>{@link Bitstream#readBits31(boolean, int)}</li>
* <li>{@link Bitstream#writeBits31(boolean, int, int)}</li>
* </ul>
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestBitstream01 extends SingletonJunitCase {
Bitstream<ByteBuffer> getTestStream(final boolean msbFirst, final int preBits, final int skipBits, final int postBits) throws IOException {
final int byteCount = ( preBits + skipBits + postBits + 7 ) / 8;
final ByteBuffer bbTest = ByteBuffer.allocate(byteCount);
final Bitstream.ByteBufferStream bbsTest = new Bitstream.ByteBufferStream(bbTest);
final Bitstream<ByteBuffer> bsTest = new Bitstream<ByteBuffer>(bbsTest, true /* outputMode */);
final String sTest0;
if( msbFirst ) {
sTest0 = testStringMSB.substring(0, preBits+skipBits+postBits);
} else {
sTest0 = testStringLSB.substring(0, preBits+skipBits+postBits);
}
for(int i=0; i<preBits+skipBits+postBits; i++) {
final int bit = Integer.valueOf(sTest0.substring(i, i+1));
bsTest.writeBit(msbFirst, bit);
}
Assert.assertEquals(preBits+skipBits+postBits, bsTest.position());
bsTest.setStream(bsTest.getSubStream(), false /* outputMode */); // switch to input-mode, implies flush()
return bsTest;
}
String getTestStreamResultAsString(final boolean msbFirst, final int preBits, final int skipBits, final int postBits) {
final String pre, post;
if( msbFirst ) {
pre = testStringMSB.substring(0, preBits);
post = testStringMSB.substring(preBits+skipBits, preBits+skipBits+postBits);
} else {
pre = testStringLSB.substring(0, preBits);
post = testStringLSB.substring(preBits+skipBits, preBits+skipBits+postBits);
}
final String r = pre + post;
System.err.println("Test: <"+pre+"> + <"+post+"> = <"+r+">");
return r;
}
@Test
public void test01LinearBitsMSBFirst() throws IOException {
testLinearBitsImpl(true /* msbFirst */);
}
@Test
public void test02LinearBitsLSBFirst() throws IOException {
testLinearBitsImpl(false /* msbFirst */);
}
void testLinearBitsImpl(final boolean msbFirst) throws IOException {
testLinearBitsImpl(msbFirst, 0, 0, 1);
testLinearBitsImpl(msbFirst, 0, 0, 3);
testLinearBitsImpl(msbFirst, 0, 0, 8);
testLinearBitsImpl(msbFirst, 0, 0, 10);
testLinearBitsImpl(msbFirst, 0, 0, 30);
testLinearBitsImpl(msbFirst, 0, 0, 32);
testLinearBitsImpl(msbFirst, 3, 0, 3);
testLinearBitsImpl(msbFirst, 8, 0, 3);
testLinearBitsImpl(msbFirst, 9, 0, 3);
testLinearBitsImpl(msbFirst, 0, 1, 1);
testLinearBitsImpl(msbFirst, 0, 1, 3);
testLinearBitsImpl(msbFirst, 0, 2, 8);
testLinearBitsImpl(msbFirst, 0, 8, 10);
testLinearBitsImpl(msbFirst, 0, 12, 20);
testLinearBitsImpl(msbFirst, 0, 23, 9);
testLinearBitsImpl(msbFirst, 1, 1, 1);
testLinearBitsImpl(msbFirst, 2, 1, 3);
testLinearBitsImpl(msbFirst, 7, 2, 8);
testLinearBitsImpl(msbFirst, 8, 8, 8);
testLinearBitsImpl(msbFirst, 15, 12, 5);
testLinearBitsImpl(msbFirst, 16, 11, 5);
}
String readBits(final boolean msbFirst, final Bitstream<?> copy, final Bitstream<?> input, final int preCount, final int count) throws IOException {
final StringBuilder sbRead = new StringBuilder();
int i = 0;
while( i < count ) {
final int bit = input.readBit(msbFirst);
if( Bitstream.EOS == bit ) {
System.err.printf(" EOS");
break;
} else {
sbRead.append( ( 0 != bit ) ? '1' : '0' );
i++;
Assert.assertEquals(i+preCount, input.position());
if( null != copy ) {
copy.writeBit(msbFirst, bit);
Assert.assertEquals(i+preCount, copy.position());
}
}
}
Assert.assertEquals(i+preCount, input.position());
if( null != copy ) {
Assert.assertEquals(i+preCount, copy.position());
}
return sbRead.toString();
}
void testLinearBitsImpl(final boolean msbFirst, final int preBits, final int skipBits, final int postBits) throws IOException {
final int totalBits = preBits+skipBits+postBits;
System.err.println("XXX TestLinearBits: msbFirst "+msbFirst+", preBits "+preBits+", skipBits "+skipBits+", postBits "+postBits+", totalBits "+totalBits);
// prepare bitstream
System.err.println("Prepare bitstream");
final Bitstream<ByteBuffer> bsTest = getTestStream(msbFirst, preBits, skipBits, postBits);
dumpData("Test", bsTest.getSubStream(), 0, bsTest.getSubStream().limit());
final String sTest = getTestStreamResultAsString(msbFirst, preBits, skipBits, postBits);
// init copy-bitstream
final int byteCount = ( totalBits + 7 ) / 8;
final ByteBuffer bbCopy = ByteBuffer.allocate(byteCount);
final Bitstream.ByteBufferStream bbsCopy = new Bitstream.ByteBufferStream(bbCopy);
final Bitstream<ByteBuffer> bsCopy = new Bitstream<ByteBuffer>(bbsCopy, true /* outputMode */);
// read-bitstream .. and copy bits while reading
System.err.println("Reading bitstream: "+bsTest);
{
final String sReadPre = readBits(msbFirst, bsCopy, bsTest, 0, preBits);
{
final int skippedBits = (int) bsTest.skip(skipBits);
Assert.assertEquals(skipBits, skippedBits);
}
{
final int skippedBits = (int) bsCopy.skip(skipBits);
Assert.assertEquals(skipBits, skippedBits);
}
final String sReadPost = readBits(msbFirst, bsCopy, bsTest, preBits+skipBits, postBits);
final String sRead = sReadPre + sReadPost;
System.err.println("Read.Test: <"+sReadPre+"> + <"+sReadPost+"> = <"+sRead+">");
Assert.assertEquals(sTest, sRead);
Assert.assertEquals(totalBits, bsTest.position());
Assert.assertEquals(totalBits, bsCopy.position());
}
// read copy ..
bsCopy.setStream(bsCopy.getSubStream(), false /* outputMode */); // switch to input-mode, implies flush()
dumpData("Copy", bbCopy, 0, bbCopy.limit());
System.err.println("Reading copy-bitstream: "+bsCopy);
bsCopy.mark(0); // mark at beginning
Assert.assertEquals(0, bsCopy.position());
{
final String sReadPre1 = readBits(msbFirst, null, bsCopy, 0, preBits);
{
final int skippedBits = (int) bsCopy.skip(skipBits);
Assert.assertEquals(skipBits, skippedBits);
}
final String sReadPost1 = readBits(msbFirst, null, bsCopy, preBits+skipBits, postBits);
final String sRead1 = sReadPre1 + sReadPost1;
System.err.println("Read.Copy.1: <"+sReadPre1+"> + <"+sReadPost1+"> = <"+sRead1+">");
Assert.assertEquals(sTest, sRead1);
bsCopy.reset();
final String sReadPre2 = readBits(msbFirst, null, bsCopy, 0, preBits);
Assert.assertEquals(sReadPre1, sReadPre2);
{
final int skippedBits = (int) bsCopy.skip(skipBits);
Assert.assertEquals(skipBits, skippedBits);
}
final String sReadPost2 = readBits(msbFirst, null, bsCopy, preBits+skipBits, postBits);
Assert.assertEquals(sReadPost1, sReadPost2);
final String sRead2 = sReadPre2 + sReadPost2;
System.err.println("Read.Copy.2: <"+sReadPre2+"> + <"+sReadPost2+"> = <"+sRead2+">");
Assert.assertEquals(sTest, sRead2);
Assert.assertEquals(totalBits, bsCopy.position());
}
}
@Test
public void test03BulkBitsMSBFirst() throws IOException {
testBulkBitsImpl(true);
}
@Test
public void test04BulkBitsLSBFirst() throws IOException {
testBulkBitsImpl(false);
}
void testBulkBitsImpl(final boolean msbFirst) throws IOException {
testBulkBitsImpl(msbFirst, 0, 0, 1);
testBulkBitsImpl(msbFirst, 0, 0, 3);
testBulkBitsImpl(msbFirst, 0, 0, 8);
testBulkBitsImpl(msbFirst, 0, 0, 10);
testBulkBitsImpl(msbFirst, 0, 0, 30);
testBulkBitsImpl(msbFirst, 0, 0, 31);
testBulkBitsImpl(msbFirst, 3, 0, 3);
testBulkBitsImpl(msbFirst, 8, 0, 3);
testBulkBitsImpl(msbFirst, 9, 0, 3);
testBulkBitsImpl(msbFirst, 0, 1, 1);
testBulkBitsImpl(msbFirst, 0, 1, 3);
testBulkBitsImpl(msbFirst, 0, 2, 8);
testBulkBitsImpl(msbFirst, 0, 8, 10);
testBulkBitsImpl(msbFirst, 0, 12, 20);
testBulkBitsImpl(msbFirst, 0, 23, 9);
testBulkBitsImpl(msbFirst, 0, 1, 31);
testBulkBitsImpl(msbFirst, 1, 1, 1);
testBulkBitsImpl(msbFirst, 2, 1, 3);
testBulkBitsImpl(msbFirst, 7, 2, 8);
testBulkBitsImpl(msbFirst, 8, 8, 8);
testBulkBitsImpl(msbFirst, 15, 12, 5);
testBulkBitsImpl(msbFirst, 16, 11, 5);
}
void testBulkBitsImpl(final boolean msbFirst, final int preBits, final int skipBits, final int postBits) throws IOException {
final int totalBits = preBits+skipBits+postBits;
System.err.println("XXX TestBulkBits: msbFirst "+msbFirst+", preBits "+preBits+", skipBits "+skipBits+", postBits "+postBits+", totalBits "+totalBits);
// prepare bitstream
System.err.println("Prepare bitstream");
final Bitstream<ByteBuffer> bsTest = getTestStream(msbFirst, preBits, skipBits, postBits);
dumpData("Test", bsTest.getSubStream(), 0, bsTest.getSubStream().limit());
final String sTest = getTestStreamResultAsString(msbFirst, preBits, skipBits, postBits);
// init copy-bitstream
final int byteCount = ( totalBits + 7 ) / 8;
final ByteBuffer bbCopy = ByteBuffer.allocate(byteCount);
final Bitstream.ByteBufferStream bbsCopy = new Bitstream.ByteBufferStream(bbCopy);
final Bitstream<ByteBuffer> bsCopy = new Bitstream<ByteBuffer>(bbsCopy, true /* outputMode */);
// read-bitstream .. and copy bits while reading
System.err.println("Reading bitstream: "+bsTest);
{
final int readBitsPre = bsTest.readBits31(msbFirst, preBits);
Assert.assertEquals(readBitsPre, bsCopy.writeBits31(msbFirst, preBits, readBitsPre));
final int skippedReadBits = (int) bsTest.skip(skipBits);
final int skippedBitsCopy = (int) bsCopy.skip(skipBits);
final int readBitsPost = bsTest.readBits31(msbFirst, postBits);
Assert.assertEquals(readBitsPost, bsCopy.writeBits31(msbFirst, postBits, readBitsPost));
final String sReadPre = toBinaryString(readBitsPre, preBits);
final String sReadPost = toBinaryString(readBitsPost, postBits);
final String sRead = sReadPre + sReadPost;
System.err.println("Read.Test: <"+sReadPre+"> + <"+sReadPost+"> = <"+sRead+">");
Assert.assertEquals(skipBits, skippedReadBits);
Assert.assertEquals(sTest, sRead);
Assert.assertEquals(totalBits, bsTest.position());
Assert.assertEquals(skipBits, skippedBitsCopy);
}
// read copy ..
bsCopy.setStream(bsCopy.getSubStream(), false /* outputMode */); // switch to input-mode, implies flush()
dumpData("Copy", bbCopy, 0, bbCopy.limit());
System.err.println("Reading copy-bitstream: "+bsCopy);
Assert.assertEquals(0, bsCopy.position());
{
final int copyBitsPre = bsCopy.readBits31(msbFirst, preBits);
final int skippedCopyBits = (int) bsCopy.skip(skipBits);
final int copyBitsPost = bsCopy.readBits31(msbFirst, postBits);
final String sCopyPre = toBinaryString(copyBitsPre, preBits);
final String sCopyPost = toBinaryString(copyBitsPost, postBits);
final String sCopy = sCopyPre + sCopyPost;
System.err.println("Copy.Test: <"+sCopyPre+"> + <"+sCopyPost+"> = <"+sCopy+">");
Assert.assertEquals(skipBits, skippedCopyBits);
Assert.assertEquals(sTest, sCopy);
Assert.assertEquals(totalBits, bsCopy.position());
}
}
@Test
public void test05ErrorHandling() throws IOException {
// prepare bitstream
final Bitstream<ByteBuffer> bsTest = getTestStream(false, 0, 0, 0);
System.err.println("01a: "+bsTest);
bsTest.close();
System.err.println("01b: "+bsTest);
try {
bsTest.readBit(false);
} catch (final Exception e) {
Assert.assertNotNull(e);
}
try {
bsTest.writeBit(false, 1);
} catch (final Exception e) {
Assert.assertNotNull(e);
}
}
public static void main(final String args[]) throws IOException {
final String tstname = TestBitstream01.class.getName();
org.junit.runner.JUnitCore.main(tstname);
}
}
|