| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.apache.commons.collections.primitives.adapters.io; |
| 18 | |
|
| 19 | |
import java.io.IOException; |
| 20 | |
import java.io.InputStream; |
| 21 | |
import java.util.NoSuchElementException; |
| 22 | |
|
| 23 | |
import org.apache.commons.collections.primitives.ByteIterator; |
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
public class InputStreamByteIterator implements ByteIterator { |
| 32 | |
|
| 33 | 17 | public InputStreamByteIterator(InputStream in) { |
| 34 | 17 | this.stream = in; |
| 35 | 17 | } |
| 36 | |
|
| 37 | |
public boolean hasNext() { |
| 38 | 1033 | ensureNextAvailable(); |
| 39 | 1031 | return (-1 != next); |
| 40 | |
} |
| 41 | |
|
| 42 | |
public byte next() { |
| 43 | 516 | if(!hasNext()) { |
| 44 | 3 | throw new NoSuchElementException("No next element"); |
| 45 | |
} else { |
| 46 | 512 | nextAvailable = false; |
| 47 | 512 | return (byte)next; |
| 48 | |
} |
| 49 | |
} |
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | |
|
| 55 | |
public void remove() throws UnsupportedOperationException { |
| 56 | 1 | throw new UnsupportedOperationException("remove() is not supported here"); |
| 57 | |
} |
| 58 | |
|
| 59 | |
public static ByteIterator adapt(InputStream in) { |
| 60 | 2 | return null == in ? null : new InputStreamByteIterator(in); |
| 61 | |
} |
| 62 | |
|
| 63 | |
private void ensureNextAvailable() { |
| 64 | 1033 | if(!nextAvailable) { |
| 65 | 519 | readNext(); |
| 66 | |
} |
| 67 | 1031 | } |
| 68 | |
|
| 69 | |
private void readNext() { |
| 70 | |
try { |
| 71 | 519 | next = stream.read(); |
| 72 | 517 | nextAvailable = true; |
| 73 | 2 | } catch(IOException e) { |
| 74 | |
|
| 75 | |
|
| 76 | 2 | throw new RuntimeException(e.toString()); |
| 77 | 517 | } |
| 78 | 517 | } |
| 79 | |
|
| 80 | 17 | private InputStream stream = null; |
| 81 | 17 | private boolean nextAvailable = false; |
| 82 | |
private int next; |
| 83 | |
} |