ProcessStream

Implementation of PSR HTTP streams for processes

class ProcessStream implements StreamInterface
Copyright
2015-2016 Appertly
License
Apache-2.0

Constructors / Destructors

Public
ReturnsSignature and Description
void
__construct(string $input, string $process)

Instance Methods

Public
ReturnsSignature and Description
string

Reads all data from the stream into a string, from the beginning to end.

void

Closes the stream and any underlying resources.

?resource

Separates any underlying resources from the stream.

bool
eof()

Returns true if the stream is at the end of the stream.

string

Returns the remaining contents in a string.

mixed
getMetadata(?string $key = null)

Get stream metadata as an associative array or retrieve a specific key.

?int

Get the size of the stream if known.

bool

Returns whether or not the stream is readable.

bool

Returns whether or not the stream is seekable.

bool

Returns whether or not the stream is writable.

string
read(mixed $length)

Read data from the stream.

void

Seek to the beginning of the stream.

void
seek(mixed $offset, mixed $whence = SEEK_SET)

Seek to a position in the stream.

int

Returns the current position of the file read/write pointer

int
write(mixed $string)

Write data to the stream.

Method Details

__construct

public function __construct(string $input, string $process)
Parameters
NameTypeDescription
$inputstring

The data to write to the process' stdin

$processstring

The process to execute

Throws
TypeConditions
InvalidArgumentException

__toString

public function __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.

See
http://php.net/manual/en/language.oop5.magic.php#object.tostring
Returns
TypeDescription
string

string

close

public function close()

Closes the stream and any underlying resources.

detach

public function detach()

Separates any underlying resources from the stream.

After the stream has been detached, the stream is in an unusable state.

Returns
TypeDescription
?resource

Underlying PHP stream, if any

eof

public function eof()

Returns true if the stream is at the end of the stream.

Returns
TypeDescription
bool

Whether the stream pointer is at the end

getContents

public function getContents()

Returns the remaining contents in a string.

Returns
TypeDescription
string

The stream contents

Throws
TypeConditions
RuntimeException

if unable to read or an error occurs while reading

getMetadata

public function 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.

Parameters
NameTypeDescription
$key?string

Specific metadata to retrieve.

Returns
TypeDescription
mixed

Returns an associative array if no key is provided. Returns a specific key value if a key is provided and the value is found, or null if the key is not found.

getSize

public function getSize()

Get the size of the stream if known.

Returns
TypeDescription
?int

Returns the size in bytes if known, or null if unknown.

isReadable

public function isReadable()

Returns whether or not the stream is readable.

Returns
TypeDescription
bool

Whether or not the stream is readable

isSeekable

public function isSeekable()

Returns whether or not the stream is seekable.

Returns
TypeDescription
bool

Whether the stream is seekable

isWritable

public function isWritable()

Returns whether or not the stream is writable.

Returns
TypeDescription
bool

Whether the stream is writable

read

public function read(mixed $length)

Read data from the stream.

Parameters
NameTypeDescription
$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.

Returns
TypeDescription
string

Returns the data read from the stream, or an empty string if no bytes are available

Throws
TypeConditions
RuntimeException

if an error occurs

rewind

public function rewind()

Seek to the beginning of the stream.

This stream is not seekable, this method will raise an exception if the stream pointer is not at the beginning.

Throws
TypeConditions
RuntimeException

on failure.

seek

public function seek(mixed $offset, mixed $whence = SEEK_SET)

Seek to a position in the stream.

Parameters
NameTypeDescription
$offset

Stream offset

$whence

Specifies how the cursor position will be calculated based on the seek offset. Valid values are identical to the built-in PHP $whence values for fseek(). SEEK_SET: Set position equal to offset bytes SEEK_CUR: Set position to current location plus offset SEEK_END: Set position to end-of-stream plus offset.

Throws
TypeConditions
RuntimeException

on failure.

tell

public function tell()

Returns the current position of the file read/write pointer

Returns
TypeDescription
int

Position of the file pointer

Throws
TypeConditions
RuntimeException

on error.

write

public function write(mixed $string)

Write data to the stream.

This stream is not writable, this method will raise an exception.

Parameters
NameTypeDescription
$string

The string that is to be written

Returns
TypeDescription
int

Returns the number of bytes written to the stream.

Throws
TypeConditions
RuntimeException

on failure