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
|
/*
* Copyright (C) 2014-2021 Brian L. Browning
*
* This file is part of Beagle
*
* Beagle is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Beagle is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package blbutil;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.NoSuchElementException;
import java.util.zip.GZIPInputStream;
/**
* <p>Class {@code InputIt} is a buffered iterator whose {@code next()}
* method returns lines of a text input stream.
* </p>
* <p>If an {@code IOException} is thrown when an {@code InputIt}
* instance reads from the text input stream, the {@code IOException}
* is trapped, an error message is written to standard out, and the
* Java Virtual Machine is terminated.
* </p>
* <p>The GZIP file format specification is described
* <a href="https://www.ietf.org/rfc/rfc1952.txt">RFC 1952</a>
* and the BGZIP file format specification is described in the
* <a href="https://samtools.github.io/hts-specs/SAMv1.pdf">
* Sequence Alignment/Map Format Specification</a>
* </p>
*
* <p>Instances of class {@code InputIt} are not thread-safe.
* </p>
*
* @author Brian L. Browning {@code <browning@uw.edu>}
*/
public class InputIt implements FileIt<String> {
private final File file;
private final BufferedReader in;
private String next = null;
/**
* Constructs a new {@code InputStreamIterator} with default buffer
* size that will iterate through lines of the specified input stream.
*
* @param is input stream of text data
* @param file the file that is the source of the input stream
*/
private InputIt(InputStream is, File file) {
BufferedReader br = null;
try {
InputStreamReader isr = new InputStreamReader(is);
br = new BufferedReader(isr);
next = br.readLine();
}
catch(IOException e) {
Utilities.exit(e, "Error reading " + file);
}
this.in = br;
this.file = file;
}
/**
* Constructs a new {@code InputStreamIterator} with default buffer size
* that will iterate through the lines of the specified input stream.
*
* @param is input stream of text data
* @param file the file that is the source of the input stream
* @param bufferSize the buffer size in bytes
*
* @throws IllegalArgumentException if {@code bufferSize < 0}
*/
private InputIt(InputStream is, File file, int bufferSize) {
BufferedReader br = null;
try {
InputStreamReader isr = new InputStreamReader(is);
br = new BufferedReader(isr, bufferSize);
next = br.readLine();
}
catch(IOException e) {
Utilities.exit(e, "Error reading " + file);
}
this.in = br;
this.file = file;
}
@Override
public File file() {
return file;
}
/**
* Returns {@code true} if the iteration has more elements.
* @return {@code true} if the iteration has more elements
*/
@Override
public boolean hasNext() {
return (next != null);
}
/**
* Returns the next element in the iteration.
* @return the next element in the iteration
* @throws NoSuchElementException if the iteration has no more elements
*/
@Override
public String next() {
if (!hasNext()) {
throw new NoSuchElementException();
}
String current = next;
try {
next = in.readLine();
}
catch (IOException e) {
Utilities.exit(e, "Error reading " + file);
}
return current;
}
/**
* The {@code remove} method is not supported by this iterator.
* @throws UnsupportedOperationException if this method is invoked
*/
@Override
public void remove() {
String s = this.getClass().toString() + ".remove()";
throw new UnsupportedOperationException(s);
}
@Override
public void close() {
try {
in.close();
}
catch (IOException e) {
Utilities.exit(e, "Error closing " + in);
}
next=null;
}
/**
* Returns a string representation of this iterator. The exact details
* of the representation are unspecified and subject to change.
* @return a string representation of this iterator
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder(200);
sb.append("[file= ");
sb.append(file);
sb.append("; next=\"");
sb.append(next);
sb.append("\"]");
return sb.toString();
}
/**
* Constructs and returns an {@code InputIt} instance with the default
* buffer size that iterates through lines of text read from standard input.
*
* @return a new {@code InputIt} instance that iterates
* through lines of text read from standard input
*/
public static InputIt fromStdIn() {
File file = null;
return new InputIt(System.in, file);
}
/**
* Constructs and returns a buffered {@code FileIt<String>} instance
* that iterates through lines of the specified compressed or
* uncompressed text file. If the filename ends in ".gz" or ".bgz", the
* file must be GZIP-compressed.
* @param file a compressed or uncompressed text file
* @param nBufferedBlocks the number buffered GZIP blocks if the
* specified file is bgzip-compressed
* @return {@code FileIt<String>} instance that iterates through the
* lines of the specified file
*
* @throws NullPointerException if {@code file == null}
*/
public static FileIt<String> fromBGZipFile(File file, int nBufferedBlocks) {
String filename = file.getName();
try {
InputStream is = new FileInputStream(file);
BufferedInputStream bis = new BufferedInputStream(is);
if (filename.endsWith(".gz") || filename.endsWith(".bgz")) {
if (BGZipIt.beginsWithBgzipBlock(bis)) {
return new BGZipIt(bis, nBufferedBlocks, file);
}
else {
return new InputIt(new GZIPInputStream(bis), file);
}
}
else {
return new InputIt(is, file);
}
}
catch(FileNotFoundException e) {
Utilities.exit(e, "Error opening " + file);
}
catch(IOException e) {
Utilities.exit(e, "Error reading " + file);
}
assert false;
return null;
}
/**
* Constructs and returns a buffered {@code InputIt} instance that
* iterates through lines of the specified compressed or uncompressed
* text file. If the filename ends in ".gz", the file must be
* GZIP-compressed. The Java virtual machine will exit with an
* error message if an I/O error is encountered.
*
* @param file a compressed or uncompressed text file
* @return a buffered {@code InputIt} instance that iterates
* through lines of the specified text file
* @throws NullPointerException if {@code file == null}
*/
public static InputIt fromGzipFile(File file) {
String filename = file.getName();
try {
InputStream is = new FileInputStream(file);
if (filename.endsWith(".gz") || filename.endsWith(".bgz")) {
return new InputIt(new GZIPInputStream(is), file);
}
else {
return new InputIt(is, file);
}
}
catch(FileNotFoundException e) {
Utilities.exit(e, "Error opening " + file);
}
catch(IOException e) {
Utilities.exit(e, "Error reading " + file);
}
assert false;
return null;
}
/**
* Constructs and returns a buffered {@code InputIt} instance
* that iterates through lines of the specified text file.
*
* @param file a text file
* @return a buffered {@code InputIt} instance that iterates through
* lines of the specified text file
* @throws NullPointerException if {@code filename == null}
*/
public static InputIt fromTextFile(File file) {
try {
return new InputIt(new FileInputStream(file), file);
}
catch(FileNotFoundException e) {
Utilities.exit(e, "Error opening " + file);
}
assert false;
return null;
}
}
|