Package groovy.io
Class LineColumnReader
java.lang.Object
java.io.Reader
java.io.BufferedReader
groovy.io.LineColumnReader
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Readable
The
LineColumnReader
is an extension to BufferedReader
that keeps track of the line and column information of where the cursor is.- Since:
- 1.8.0
-
Field Summary
-
Constructor Summary
ConstructorDescriptionLineColumnReader
(Reader reader) Constructor wrapping aReader
(FileReader
,FileReader
,InputStreamReader
, etc.) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes the stream and releases any system resources associated with it.long
long
long
getLine()
long
void
mark
(int readAheadLimit) Marks the present position in the stream.int
read()
Reads a single character.int
read
(char[] chars) Reads characters into an array.int
read
(char[] chars, int startOffset, int length) Reads characters into a portion of an array.int
read
(CharBuffer buffer) Not implemented.readLine()
Reads a line of text.void
reset()
Resets the stream to the most recent mark.void
setColumn
(long column) void
setColumnMark
(long columnMark) void
setLine
(long line) void
setLineMark
(long lineMark) long
skip
(long toSkip) Skips characters.Methods inherited from class java.io.BufferedReader
lines, markSupported, ready
Methods inherited from class java.io.Reader
nullReader, transferTo
-
Constructor Details
-
LineColumnReader
Constructor wrapping aReader
(FileReader
,FileReader
,InputStreamReader
, etc.)- Parameters:
reader
- the reader to wrap
-
-
Method Details
-
mark
Marks the present position in the stream. Subsequent calls to reset() will attempt to reposition the stream to this point.- Overrides:
mark
in classBufferedReader
- Parameters:
readAheadLimit
- Limit on the number of characters that may be read while still preserving the mark. An attempt to reset the stream after reading characters up to this limit or beyond may fail. A limit value larger than the size of the input buffer will cause a new buffer to be allocated whose size is no smaller than limit. Therefore large values should be used with care.- Throws:
IOException
-
reset
Resets the stream to the most recent mark.- Overrides:
reset
in classBufferedReader
- Throws:
IOException
-
read
Reads a single character.- Overrides:
read
in classBufferedReader
- Returns:
- The character read, as an integer in the range 0 to 65535 (0x00-0xffff), or -1 if the end of the stream has been reached
- Throws:
IOException
-
read
Reads characters into a portion of an array.- Overrides:
read
in classBufferedReader
- Parameters:
chars
- Destination array of charstartOffset
- Offset at which to start storing characterslength
- Maximum number of characters to read- Returns:
- an exception if an error occurs
- Throws:
IOException
-
readLine
Reads a line of text. 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.- Overrides:
readLine
in classBufferedReader
- Returns:
- 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
-
skip
Skips characters.- Overrides:
skip
in classBufferedReader
- Parameters:
toSkip
- the number of characters to skip- Returns:
- The number of characters actually skipped
- Throws:
IOException
-
read
Reads characters into an array. This method will block until some input is available, an I/O error occurs, or the end of the stream is reached.- Overrides:
read
in classReader
- Parameters:
chars
- Destination buffer- Returns:
- The number of characters read, or -1 if the end of the stream has been reached
- Throws:
IOException
-
read
Not implemented.- Specified by:
read
in interfaceReadable
- Overrides:
read
in classReader
- Parameters:
buffer
- Destination buffer- Returns:
- The number of characters read, or -1 if the end of the stream has been reached
- Throws:
UnsupportedOperationException
- as the method is not implemented
-
close
Closes the stream and releases any system resources associated with it. Once the stream has been closed, further read(), ready(), mark(), reset(), or skip() invocations will throw an IOException. Closing a previously closed stream has no effect.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classBufferedReader
- Throws:
IOException
-
getColumn
public long getColumn() -
setColumn
public void setColumn(long column) -
getColumnMark
public long getColumnMark() -
setColumnMark
public void setColumnMark(long columnMark) -
getLine
public long getLine() -
setLine
public void setLine(long line) -
getLineMark
public long getLineMark() -
setLineMark
public void setLineMark(long lineMark)
-