Class CharSource
- java.lang.Object
-
- com.google.common.io.CharSource
-
- All Implemented Interfaces:
InputSupplier<java.io.Reader>
public abstract class CharSource extends java.lang.Object implements InputSupplier<java.io.Reader>
A readable source of characters, such as a text file. Unlike aReader
, aCharSource
is not an open, stateful stream of characters that can be read and closed. Instead, it is an immutable supplier ofReader
instances.CharSource
provides two kinds of methods:- Methods that return a reader: These methods should return a new, independent instance each time they are called. The caller is responsible for ensuring that the returned reader is closed.
- Convenience methods: These are implementations of common operations that are typically implemented by opening a reader using one of the methods in the first category, doing something and finally closing the reader that was opened.
Several methods in this class, such as
readLines()
, break the contents of the source into lines. LikeBufferedReader
, these methods break lines on any of\n
,\r
or\r\n
, do not include the line separator in each line and do not consider there to be an empty line at the end if the contents are terminated with a line separator.Any
ByteSource
containing text encoded with a specific character encoding may be viewed as aCharSource
usingByteSource.asCharSource(Charset)
.- Since:
- 14.0
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CharSource()
Constructor for use by subclasses.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static CharSource
concat(CharSource... sources)
Concatenates multipleCharSource
instances into a single source.static CharSource
concat(java.lang.Iterable<? extends CharSource> sources)
Concatenates multipleCharSource
instances into a single source.static CharSource
concat(java.util.Iterator<? extends CharSource> sources)
Concatenates multipleCharSource
instances into a single source.long
copyTo(CharSink sink)
Copies the contents of this source to the given sink.long
copyTo(java.lang.Appendable appendable)
Appends the contents of this source to the givenAppendable
(such as aWriter
).static CharSource
empty()
Returns an immutableCharSource
that contains no characters.java.io.Reader
getInput()
Deprecated.This method is only provided for temporary compatibility with theInputSupplier
interface and should not be called directly.boolean
isEmpty()
Returns whether the source has zero chars.java.io.BufferedReader
openBufferedStream()
Opens a newBufferedReader
for reading from this source.abstract java.io.Reader
openStream()
Opens a newReader
for reading from this source.java.lang.String
read()
Reads the contents of this source as a string.java.lang.String
readFirstLine()
Reads the first link of this source as a string.ImmutableList<java.lang.String>
readLines()
Reads all the lines of this source as a list of strings.<T> T
readLines(LineProcessor<T> processor)
Reads lines of text from this source, processing each line as it is read using the givenprocessor
.static CharSource
wrap(java.lang.CharSequence charSequence)
Returns a view of the given character sequence as aCharSource
.
-
-
-
Method Detail
-
openStream
public abstract java.io.Reader openStream() throws java.io.IOException
Opens a newReader
for reading from this source. This method should return a new, independent reader each time it is called.The caller is responsible for ensuring that the returned reader is closed.
- Throws:
java.io.IOException
- if an I/O error occurs in the process of opening the reader
-
getInput
@Deprecated public final java.io.Reader getInput() throws java.io.IOException
Deprecated.This method is only provided for temporary compatibility with theInputSupplier
interface and should not be called directly. UseopenStream()
instead. This method is scheduled for removal in Guava 18.0.This method is a temporary method provided for easing migration from suppliers to sources and sinks.- Specified by:
getInput
in interfaceInputSupplier<java.io.Reader>
- Throws:
java.io.IOException
- Since:
- 15.0
-
openBufferedStream
public java.io.BufferedReader openBufferedStream() throws java.io.IOException
Opens a newBufferedReader
for reading from this source. This method should return a new, independent reader each time it is called.The caller is responsible for ensuring that the returned reader is closed.
- Throws:
java.io.IOException
- if an I/O error occurs in the process of opening the reader
-
copyTo
public long copyTo(java.lang.Appendable appendable) throws java.io.IOException
Appends the contents of this source to the givenAppendable
(such as aWriter
). Does not closeappendable
if it isCloseable
.- Throws:
java.io.IOException
- if an I/O error occurs in the process of reading from this source or writing toappendable
-
copyTo
public long copyTo(CharSink sink) throws java.io.IOException
Copies the contents of this source to the given sink.- Throws:
java.io.IOException
- if an I/O error occurs in the process of reading from this source or writing tosink
-
read
public java.lang.String read() throws java.io.IOException
Reads the contents of this source as a string.- Throws:
java.io.IOException
- if an I/O error occurs in the process of reading from this source
-
readFirstLine
@Nullable public java.lang.String readFirstLine() throws java.io.IOException
Reads the first link of this source as a string. Returnsnull
if this source is empty.Like
BufferedReader
, this method breaks lines on any of\n
,\r
or\r\n
, does not include the line separator in the returned line and does not consider there to be an extra empty line at the end if the content is terminated with a line separator.- Throws:
java.io.IOException
- if an I/O error occurs in the process of reading from this source
-
readLines
public ImmutableList<java.lang.String> readLines() throws java.io.IOException
Reads all the lines of this source as a list of strings. The returned list will be empty if this source is empty.Like
BufferedReader
, this method breaks lines on any of\n
,\r
or\r\n
, does not include the line separator in the returned lines and does not consider there to be an extra empty line at the end if the content is terminated with a line separator.- Throws:
java.io.IOException
- if an I/O error occurs in the process of reading from this source
-
readLines
@Beta public <T> T readLines(LineProcessor<T> processor) throws java.io.IOException
Reads lines of text from this source, processing each line as it is read using the givenprocessor
. Stops when all lines have been processed or the processor returnsfalse
and returns the result produced by the processor.Like
BufferedReader
, this method breaks lines on any of\n
,\r
or\r\n
, does not include the line separator in the lines passed to theprocessor
and does not consider there to be an extra empty line at the end if the content is terminated with a line separator.- Throws:
java.io.IOException
- if an I/O error occurs in the process of reading from this source or ifprocessor
throws anIOException
- Since:
- 16.0
-
isEmpty
public boolean isEmpty() throws java.io.IOException
Returns whether the source has zero chars. The default implementation is to open a stream and check for EOF.- Throws:
java.io.IOException
- if an I/O error occurs- Since:
- 15.0
-
concat
public static CharSource concat(java.lang.Iterable<? extends CharSource> sources)
Concatenates multipleCharSource
instances into a single source. Streams returned from the source will contain the concatenated data from the streams of the underlying sources.Only one underlying stream will be open at a time. Closing the concatenated stream will close the open underlying stream.
- Parameters:
sources
- the sources to concatenate- Returns:
- a
CharSource
containing the concatenated data - Since:
- 15.0
-
concat
public static CharSource concat(java.util.Iterator<? extends CharSource> sources)
Concatenates multipleCharSource
instances into a single source. Streams returned from the source will contain the concatenated data from the streams of the underlying sources.Only one underlying stream will be open at a time. Closing the concatenated stream will close the open underlying stream.
Note: The input
Iterator
will be copied to anImmutableList
when this method is called. This will fail if the iterator is infinite and may cause problems if the iterator eagerly fetches data for each source when iterated (rather than producing sources that only load data through their streams). Prefer using theconcat(Iterable)
overload if possible.- Parameters:
sources
- the sources to concatenate- Returns:
- a
CharSource
containing the concatenated data - Throws:
java.lang.NullPointerException
- if any ofsources
isnull
- Since:
- 15.0
-
concat
public static CharSource concat(CharSource... sources)
Concatenates multipleCharSource
instances into a single source. Streams returned from the source will contain the concatenated data from the streams of the underlying sources.Only one underlying stream will be open at a time. Closing the concatenated stream will close the open underlying stream.
- Parameters:
sources
- the sources to concatenate- Returns:
- a
CharSource
containing the concatenated data - Throws:
java.lang.NullPointerException
- if any ofsources
isnull
- Since:
- 15.0
-
wrap
public static CharSource wrap(java.lang.CharSequence charSequence)
Returns a view of the given character sequence as aCharSource
. The behavior of the returnedCharSource
and anyReader
instances created by it is unspecified if thecharSequence
is mutated while it is being read, so don't do that.- Since:
- 15.0 (since 14.0 as
CharStreams.asCharSource(String)
)
-
empty
public static CharSource empty()
Returns an immutableCharSource
that contains no characters.- Since:
- 15.0
-
-