ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
Describes a data stream. More...
Public Member Functions | |
__toString () | |
Reads all data from the stream into a string, from the beginning to end. More... | |
close () | |
Closes the stream and any underlying resources. More... | |
detach () | |
Separates any underlying resources from the stream. More... | |
getSize () | |
Get the size of the stream if known. More... | |
tell () | |
Returns the current position of the file read/write pointer. More... | |
eof () | |
Returns true if the stream is at the end of the stream. More... | |
isSeekable () | |
Returns whether or not the stream is seekable. More... | |
seek ($offset, $whence=SEEK_SET) | |
Seek to a position in the stream. More... | |
rewind () | |
Seek to the beginning of the stream. More... | |
isWritable () | |
Returns whether or not the stream is writable. More... | |
write ($string) | |
Write data to the stream. More... | |
isReadable () | |
Returns whether or not the stream is readable. More... | |
read ($length) | |
Read data from the stream. More... | |
getContents () | |
Returns the remaining contents in a string. More... | |
getMetadata ($key=null) | |
Get stream metadata as an associative array or retrieve a specific key. More... | |
Describes a data stream.
Typically, an instance will wrap a PHP stream; this interface provides a wrapper around the most common operations, including serialization of the entire stream to a string.
Definition at line 12 of file StreamInterface.php.
Psr\Http\Message\StreamInterface::__toString | ( | ) |
Reads all data from the stream into a string, from the beginning to end.
This method MUST attempt to seek to the beginning of the stream before reading data and read the stream until the end is reached.
Warning: This could attempt to load a large amount of data into memory.
This method MUST NOT raise an exception in order to conform with PHP's string casting operations.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::close | ( | ) |
Closes the stream and any underlying resources.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::detach | ( | ) |
Separates any underlying resources from the stream.
After the stream has been detached, the stream is in an unusable state.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::eof | ( | ) |
Returns true if the stream is at the end of the stream.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::getContents | ( | ) |
Returns the remaining contents in a string.
RuntimeException if unable to read or an error occurs while reading.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::getMetadata | ( | $key = null | ) |
Get stream metadata as an associative array or retrieve a specific key.
The keys returned are identical to the keys returned from PHP's stream_get_meta_data() function.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::getSize | ( | ) |
Get the size of the stream if known.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::isReadable | ( | ) |
Returns whether or not the stream is readable.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::isSeekable | ( | ) |
Returns whether or not the stream is seekable.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\NoSeekStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::isWritable | ( | ) |
Returns whether or not the stream is writable.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\MultipartStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::read | ( | $length | ) |
Read data from the stream.
int | $length | Read up to $length bytes from the object and return them. Fewer than $length bytes may be returned if underlying stream call returns fewer bytes. |
RuntimeException if an error occurs.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::rewind | ( | ) |
Seek to the beginning of the stream.
If the stream is not seekable, this method will raise an exception; otherwise, it will perform a seek(0).
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::seek | ( | $offset, | |
$whence = SEEK_SET |
|||
) |
Seek to a position in the stream.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\NoSeekStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Psr\Http\Message\StreamInterface::tell | ( | ) |
Returns the current position of the file read/write pointer.
RuntimeException on error.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\LimitStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Referenced by GuzzleHttp\Psr7\CachingStream\cacheEntireStream(), GuzzleHttp\Psr7\CachingStream\seek(), and GuzzleHttp\Psr7\CachingStream\write().
Psr\Http\Message\StreamInterface::write | ( | $string | ) |
Write data to the stream.
string | $string | The string that is to be written. |
RuntimeException on failure.
Implemented in GuzzleHttp\Psr7\AppendStream, GuzzleHttp\Psr7\BufferStream, GuzzleHttp\Psr7\CachingStream, GuzzleHttp\Psr7\DroppingStream, GuzzleHttp\Psr7\FnStream, GuzzleHttp\Psr7\PumpStream, GuzzleHttp\Psr7\Stream, Slim\Http\Stream, and ILIAS\Filesystem\Stream\Stream.
Referenced by GuzzleHttp\Psr7\copy_to_stream().