KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > imagero > uio > io > PackBitsInputStream


1 /*
2  * Copyright (c) Andrey Kuznetsov. All Rights Reserved.
3  *
4  * http://uio.imagero.com
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * o Redistributions of source code must retain the above copyright notice,
10  * this list of conditions and the following disclaimer.
11  *
12  * o Redistributions in binary form must reproduce the above copyright notice,
13  * this list of conditions and the following disclaimer in the documentation
14  * and/or other materials provided with the distribution.
15  *
16  * o Neither the name of imagero Andrei Kouznetsov nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
29  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */

32 package com.imagero.uio.io;
33
34 import java.io.FilterInputStream JavaDoc;
35 import java.io.IOException JavaDoc;
36 import java.io.InputStream JavaDoc;
37
38 /**
39  * PackBits decoder
40  *
41  * @author Andrei Kouznetsov
42  */

43 public class PackBitsInputStream extends FilterInputStream JavaDoc {
44
45     boolean finished;
46
47     int numSamples, value;
48     boolean copyLiter;
49
50     public PackBitsInputStream(InputStream JavaDoc in) {
51         super(in);
52     }
53
54     public int available() throws IOException JavaDoc {
55         if(finished) {
56             return 0;
57         }
58         return 1;
59     }
60
61     public void close() throws IOException JavaDoc {
62     }
63
64     public boolean markSupported() {
65         return false;
66     }
67
68     public synchronized void mark(int readlimit) {
69     }
70
71     public synchronized void reset() throws IOException JavaDoc {
72         throw new IOException JavaDoc("mark/reset not supported");
73     }
74
75     public int read(byte b[]) throws IOException JavaDoc {
76         return read(b, 0, b.length);
77     }
78
79     public int read(byte b[], int off, int len) throws IOException JavaDoc {
80         int i = off;
81
82         try {
83             for(; i < off + len; i++) {
84                 int a = read();
85                 if(a == -1) {
86                     i--;
87                     break;
88                 }
89                 b[i] = (byte) a;
90             }
91         }
92         catch(IOException JavaDoc ex) {
93             ex.printStackTrace();
94         }
95         return i - off;
96     }
97
98     public int read() throws IOException JavaDoc {
99         if(numSamples == 0) {
100             byte l = read128();
101             if(l < 0) {
102                 numSamples = -l + 1;
103                 copyLiter = false;
104                 value = in.read();
105             }
106             else {
107                 numSamples = l + 1;
108                 copyLiter = true;
109             }
110         }
111         numSamples--;
112         if(copyLiter) {
113             return in.read();
114         }
115         else {
116             return value;
117         }
118     }
119
120     byte read128() throws IOException JavaDoc {
121         do {
122             byte a = (byte) in.read();
123             if(a != -128) {
124                 return a;
125             }
126         }
127         while(true);
128     }
129 }
130
Popular Tags