FileDocCategorySizeDatePackage
LineNumberReader.javaAPI DocJava SE 6 API7052Tue Jun 10 00:25:34 BST 2008java.io

LineNumberReader

public class LineNumberReader extends BufferedReader
A buffered character-input stream that keeps track of line numbers. This class defines methods {@link #setLineNumber(int)} and {@link #getLineNumber()} for setting and getting the current line number respectively.

By default, line numbering begins at 0. This number increments at every line terminator as the data is read, and can be changed with a call to setLineNumber(int). Note however, that setLineNumber(int) does not actually change the current position in the stream; it only changes the value that will be returned by getLineNumber().

A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), or a carriage return followed immediately by a linefeed.

version
1.23, 06/04/07
author
Mark Reinhold
since
JDK1.1

Fields Summary
private int
lineNumber
The current line number
private int
markedLineNumber
The line number of the mark, if any
private boolean
skipLF
If the next character is a line feed, skip it
private boolean
markedSkipLF
The skipLF flag when the mark was set
private static final int
maxSkipBufferSize
Maximum skip-buffer size
private char[]
skipBuffer
Skip buffer, null until allocated
Constructors Summary
public LineNumberReader(Reader in)
Create a new line-numbering reader, using the default input-buffer size.

param
in A Reader object to provide the underlying stream


                                      
       
	super(in);
    
public LineNumberReader(Reader in, int sz)
Create a new line-numbering reader, reading characters into a buffer of the given size.

param
in A Reader object to provide the underlying stream
param
sz An int specifying the size of the buffer

	super(in, sz);
    
Methods Summary
public intgetLineNumber()
Get the current line number.

return
The current line number
see
#setLineNumber

	return lineNumber;
    
public voidmark(int readAheadLimit)
Mark the present position in the stream. Subsequent calls to reset() will attempt to reposition the stream to this point, and will also reset the line number appropriately.

param
readAheadLimit Limit on the number of characters that may be read while still preserving the mark. After reading this many characters, attempting to reset the stream may fail.
throws
IOException If an I/O error occurs

	synchronized (lock) {
	    super.mark(readAheadLimit);
	    markedLineNumber = lineNumber;
            markedSkipLF     = skipLF;
	}
    
public intread()
Read a single character. Line terminators are compressed into single newline ('\n') characters. Whenever a line terminator is read the current line number is incremented.

return
The character read, or -1 if the end of the stream has been reached
throws
IOException If an I/O error occurs

	synchronized (lock) {
	    int c = super.read();
	    if (skipLF) {
		if (c == '\n")
		    c = super.read();
		skipLF = false;
	    }
	    switch (c) {
	    case '\r":
		skipLF = true;
	    case '\n":		/* Fall through */
		lineNumber++;
		return '\n";
	    }
	    return c;
	}
    
public intread(char[] cbuf, int off, int len)
Read characters into a portion of an array. Whenever a line terminator is read the current line number is incremented.

param
cbuf Destination buffer
param
off Offset at which to start storing characters
param
len Maximum number of characters to read
return
The number of bytes read, or -1 if the end of the stream has already been reached
throws
IOException If an I/O error occurs

	synchronized (lock) {
	    int n = super.read(cbuf, off, len);

	    for (int i = off; i < off + n; i++) {
		int c = cbuf[i];
		if (skipLF) {
		    skipLF = false;
		    if (c == '\n")
			continue;
		}
		switch (c) {
		case '\r":
		    skipLF = true;
		case '\n":	/* Fall through */
		    lineNumber++;
		    break;
		}
	    }

	    return n;
	}
    
public java.lang.StringreadLine()
Read a line of text. Whenever a line terminator is read the current line number is incremented.

return
A String containing the contents of the line, not including any line termination characters, or null if the end of the stream has been reached
throws
IOException If an I/O error occurs

	synchronized (lock) {
	    String l = super.readLine(skipLF);
            skipLF = false;
	    if (l != null)
		lineNumber++;
	    return l;
	}
    
public voidreset()
Reset the stream to the most recent mark.

throws
IOException If the stream has not been marked, or if the mark has been invalidated

	synchronized (lock) {
	    super.reset();
	    lineNumber = markedLineNumber;
            skipLF     = markedSkipLF;
	}
    
public voidsetLineNumber(int lineNumber)
Set the current line number.

param
lineNumber An int specifying the line number
see
#getLineNumber

	this.lineNumber = lineNumber;
    
public longskip(long n)
Skip characters.

param
n The number of characters to skip
return
The number of characters actually skipped
throws
IOException If an I/O error occurs
throws
IllegalArgumentException If n is negative


                                                                     
          
	if (n < 0) 
	    throw new IllegalArgumentException("skip() value is negative");
	int nn = (int) Math.min(n, maxSkipBufferSize);
	synchronized (lock) {
	    if ((skipBuffer == null) || (skipBuffer.length < nn))
		skipBuffer = new char[nn];
	    long r = n;
	    while (r > 0) {
		int nc = read(skipBuffer, 0, (int) Math.min(r, nn));
		if (nc == -1)
		    break;
		r -= nc;
	    }
	    return n - r;
	}