Stream
final class Stream (View source)
internal |
An internal stream class for reading the blk files.
Constants
SEEK_SET |
Set position equal to offset bytes. @ |
SEEK_CUR |
Set position to current location plus offset. |
SEEK_END |
Set position to end-of-file plus offset. |
Properties
protected resource|null | $stream | The underlying stream resource |
Methods
Create a new stream from a string.
Create a stream from an existing file.
Closes the stream.
Get the current stream and separates it from the current instance.
Get the size of the stream.
Returns the current position of the file read/write pointer
Returns true if the stream is at the end of the stream.
Returns whether or not the stream is seekable.
Seek to a position in the stream.
Seek to the beginning of the stream.
Returns whether or not the stream is writable.
Write data to the stream.
Returns whether or not the stream is readable.
Read a variable int.
Read data from the stream.
Returns the remaining contents in a string
Get stream metadata as an associative array or retrieve a specific key.
Gets the stream into a string
Closes the stream.
Details
__construct(resource|Stream $stream)
Initialize a new stream from a resource or {IStream}
if $stream is a {\Cjpg\Bitcoin\Blk\Readers\IStream} it will be rewinded and detached from the source
static Stream|null
fromString(string $string = '')
Create a new stream from a string.
Note that this will create a new file with the help of {\Cjpg\Bitcoin\Blk\Readers\tmpfile()}, if you do not call {\Cjpg\Bitcoin\Blk\Readers\Stream::close()} the file will remain on the system.
static Stream|null
fromFile(string $filename, string $mode = 'r+')
Create a stream from an existing file.
void
close()
Closes the stream.
resource|null
detach()
Get the current stream and separates it from the current instance.
int|null
getSize()
Get the size of the stream.
int|null
tell()
Returns the current position of the file read/write pointer
bool
eof()
Returns true if the stream is at the end of the stream.
bool
isSeekable()
Returns whether or not the stream is seekable.
void
seek(int $offset, int $whence = SEEK_SET)
Seek to a position in the stream.
void
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).
bool
isWritable()
Returns whether or not the stream is writable.
int
write(string $string)
Write data to the stream.
bool
isReadable()
Returns whether or not the stream is readable.
int
readVarInt()
Read a variable int.
string
read(int $length)
Read data from the stream.
string
getContents()
Returns the remaining contents in a string
array|mixed|null
getMetadata(string $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.
string
__toString()
Gets the stream into a string
void
__destruct()
Closes the stream.