Class CharSource
- All Implemented Interfaces:
InputSupplier<Reader>
Reader, a
CharSource is not an open, stateful stream of characters that can be read and closed.
Instead, it is an immutable supplier of Reader 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. Like BufferedReader, 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 a CharSource using ByteSource.asCharSource(Charset).
- Since:
- 14.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic CharSourceconcat(CharSource... sources) Deprecated.Concatenates multipleCharSourceinstances into a single source.static CharSourceconcat(Iterable<? extends CharSource> sources) Deprecated.Concatenates multipleCharSourceinstances into a single source.static CharSourceconcat(Iterator<? extends CharSource> sources) Deprecated.Concatenates multipleCharSourceinstances into a single source.longDeprecated.Copies the contents of this source to the given sink.longcopyTo(Appendable appendable) Deprecated.Appends the contents of this source to the givenAppendable(such as aWriter).static CharSourceempty()Deprecated.Returns an immutableCharSourcethat contains no characters.final ReadergetInput()Deprecated.This method is only provided for temporary compatibility with theInputSupplierinterface and should not be called directly.booleanisEmpty()Deprecated.Returns whether the source has zero chars.Deprecated.Opens a newBufferedReaderfor reading from this source.abstract ReaderDeprecated.Opens a newReaderfor reading from this source.read()Deprecated.Reads the contents of this source as a string.Deprecated.Reads the first link of this source as a string.Deprecated.Reads all the lines of this source as a list of strings.static CharSourcewrap(CharSequence charSequence) Deprecated.Returns a view of the given character sequence as aCharSource.
-
Constructor Details
-
CharSource
public CharSource()Deprecated.
-
-
Method Details
-
openStream
Deprecated.Opens a newReaderfor 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:
IOException- if an I/O error occurs in the process of opening the reader
-
getInput
Deprecated.This method is only provided for temporary compatibility with theInputSupplierinterface and should not be called directly. UseopenStream()instead.This method is a temporary method provided for easing migration from suppliers to sources and sinks.- Specified by:
getInputin interfaceInputSupplier<Reader>- Throws:
IOException- Since:
- 15.0
-
openBufferedStream
Deprecated.Opens a newBufferedReaderfor 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:
IOException- if an I/O error occurs in the process of opening the reader
-
copyTo
Deprecated.Appends the contents of this source to the givenAppendable(such as aWriter). Does not closeappendableif it isCloseable.- Throws:
IOException- if an I/O error occurs in the process of reading from this source or writing toappendable
-
copyTo
Deprecated.Copies the contents of this source to the given sink.- Throws:
IOException- if an I/O error occurs in the process of reading from this source or writing tosink
-
read
Deprecated.Reads the contents of this source as a string.- Throws:
IOException- if an I/O error occurs in the process of reading from this source
-
readFirstLine
Deprecated.Reads the first link of this source as a string. Returnsnullif this source is empty.Like
BufferedReader, this method breaks lines on any of\n,\ror\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:
IOException- if an I/O error occurs in the process of reading from this source
-
readLines
Deprecated.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,\ror\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:
IOException- if an I/O error occurs in the process of reading from this source
-
isEmpty
Deprecated.Returns whether the source has zero chars. The default implementation is to open a stream and check for EOF.- Throws:
IOException- if an I/O error occurs- Since:
- 15.0
-
concat
Deprecated.Concatenates multipleCharSourceinstances 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
CharSourcecontaining the concatenated data - Since:
- 15.0
-
concat
Deprecated.Concatenates multipleCharSourceinstances 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
Iteratorwill be copied to anImmutableListwhen 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
CharSourcecontaining the concatenated data - Throws:
NullPointerException- if any ofsourcesisnull- Since:
- 15.0
-
concat
Deprecated.Concatenates multipleCharSourceinstances 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
CharSourcecontaining the concatenated data - Throws:
NullPointerException- if any ofsourcesisnull- Since:
- 15.0
-
wrap
Deprecated.Returns a view of the given character sequence as aCharSource. The behavior of the returnedCharSourceand anyReaderinstances created by it is unspecified if thecharSequenceis mutated while it is being read, so don't do that.- Since:
- 15.0 (since 14.0 as
CharStreams.asCharSource(String))
-
empty
Deprecated.Returns an immutableCharSourcethat contains no characters.- Since:
- 15.0
-