stream-interop/interface

Interoperable interfaces for streams in PHP 8.4 and later.

Maintainers

Package info

github.com/stream-interop/interface

pkg:composer/stream-interop/interface

Statistics

Installs: 102

Dependents: 2

Suggesters: 0

Stars: 11

Open Issues: 0

1.0.1 2026-05-02 16:41 UTC

This package is auto-updated.

Last update: 2026-05-02 16:41:42 UTC


README

PDS Skeleton PDS Composer Script Names

Stream-Interop provides an interoperable package of standard interfaces for working with stream resources in PHP 8.4 or later. It reflects, refines, and reconciles the common practices identified within several pre-existing projects.

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 (RFC 2119, RFC 8174).

This package attempts to adhere to the Package Development Standards approach to naming and versioning.

Interfaces

Stream-Interop defines separate interfaces for various affordances around stream resources so that (1) implementations can advertise well-tailored affordances, and (2) consumers can typehint to the specific affordances they require for specific situations.

Stream

Stream is a common baseline for streams.

  • Notes:

    • The $metadata property is expected to change dynamically. That is, as the encapsulated resource gets read from and written to, the metadata for that resource is likely to change. Thus, the $metadata property value is expected to change along with it. In practical terms, this likely means a stream_get_meta_data() call on each access of $metadata.

    • There are no isReadable(), etc. methods. If necessary, such functionality can be determined by typehinting against the interface, or by checking instanceof, etc.

    • The encapsulated resource is not exposed publicly here. The encapsulated resource may remain private or protected. See the ResourceStream interface for details on making the encapsulated resource publicly accessible.

Stream Properties

  • public metadata_array $metadata { get; }
    • Represents the metadata for the encapsulated resource as if by stream_get_meta_data().

    • Directives:

      • Implementations MUST provide the most-recent metadata for the encapsulated resource at the moment of property access; if the encapsulated resource is closed, implementations MUST return an empty array.

      • Implementations MUST NOT allow $metadata to be publicly settable, either as a property or via property hook or method.

Stream Methods

  • public function isClosed() : bool;
    • Returns true if the encapsulated resource has been closed, or false if not.
  • public function isOpen() : bool;
    • Returns true if the encapsulated resource is still open, or false if not.

ResourceStream

ResourceStream extends Stream to afford direct access to the encapsulated resource.

  • Notes:

    • Not all Stream implementations need to expose the encapsulated resource. Exposing the resource gives full control over it to consumers, who can then manipulate it however they like (e.g. close it, move the pointer, and so on). However, having access to the resource may be necessary for some consumers.

    • Some Stream implementations might not encapsulate a resource. Although a resource is the most common data source for a stream, other data sources may be used, in which cases ResourceStream implementation is neither appropriate nor necessary.

ResourceStream Properties

  • public resource $resource { get; }
    • Represents the resource as if opened by fopen(), fsockopen(), popen(), etc.

    • Directives:

      • Implementations MUST ensure $resource is a resource of type (stream); for example, as determined by get_resource_type().

      • Implementations SHOULD NOT allow $resource to be publicly settable, either as a property or via property hook or method.

ClosableStream

ClosableStream extends Stream to afford closing the stream.

  • Directives:

    • Implementations MAY close the encapsulated resource internally without affording ClosableStream.
  • Notes:

    • Not all Stream implementations need to be closable. It may be important for resource closing to be handled by a separate service or authority, and not be closable by Stream consumers.

ClosableStream Methods

  • public function close() : void;

SizableStream

SizableStream extends Stream to afford getting the full length of the stream in bytes.

  • Directives:

    • Implementations MAY get the size of the encapsulated resource internally without affording SizableStream.
  • Notes:

    • Not all Stream implementations need to be sizable. Some encapsulated resources may be unable to report a size; for example, remote or write-only resources.

SizableStream Methods

  • public function getSize() : ?int<0,max>;
    • Returns the length of the encapsulated resource in bytes as if by the fstat() value for size, or null if indeterminate or on error.

ReadableStream

ReadableStream extends Stream to afford non-idempotent reading from the stream.

  • Directives:

    • If the encapsulated resource is not readable at the time it becomes available to the ReadableStream, implementations MUST throw a StreamThrowable.

    • Implementations MAY read from the encapsulated resource internally without affording ReadableStream.

  • Notes:

ReadableStream Methods

  • public function eof() : bool;
    • Tests for end-of-file on the encapsulated resource as if by feof().

    • Directives:

  • public function read(int<1,max> $length) : string;
    • Returns up to $length bytes from the encapsulated resource as if by fread().

    • Directives:

  • public function getContents() : string;
    • Returns the remaining contents of the resource from the current pointer position as if by stream_get_contents().

    • Directives:

SeekableStream

SeekableStream extends Stream to afford moving the stream pointer position back and forth.

  • Directives:

    • If the encapsulated resource is not seekable at the time it becomes available to the SeekableStream, implementations MUST throw a StreamThrowable.

SeekableStream Methods

  • public function rewind() : void;
    • Moves the stream pointer position to the beginning of the stream as if by rewind().

    • Directives:

  • public function seek(
        int $offset,
        SEEK_CUR|SEEK_SET|SEEK_END $whence = SEEK_SET,
    ) : void;
    • Moves the stream pointer position to the $offset as if by fseek().

    • Directives:

  • public function tell() : int;
    • Returns the current stream pointer position as if by ftell().

    • Directives:

StringableStream

StringableStream extends Stream to afford idempotent reading from the encapsulated resource.

  • Directives:

    • If the encapsulated resource is not readable at the time it becomes available to the StringableStream, implementations MUST throw a StreamThrowable.

    • If the encapsulated resource is not seekable at the time it becomes available to the StringableStream, implementations MUST throw a StreamThrowable.

    • Implementations MAY convert all or part of the encapsulated resource to a string internally without affording StringableStream.

  • Notes:

    • These methods are idempotent. Repeated sequential calls to an unchanged resource will return the exact same result, without exposing side effects (such as the pointer position being changed).

StringableStream Methods

  • public function __toString() : string;
    • Returns the entire contents of the encapsulated resource as if by rewind()ing before returning stream_get_contents().

    • Directives:

      • After reading, implementations MUST reposition the encapsulated resource pointer to its initial location.

      • Implementations MUST throw a StreamThrowable on failure.

  • public function subString(int $offset, ?int<0,max> $length = null) : string;
    • Returns a string from the encapsulated resource as if by fseek()ing before reading.

    • Directives:

      • If the $offset is negative, implementations MUST begin reading at that many bytes from the end of the stream; otherwise, implementations MUST begin reading at that many bytes from the start of the stream.

      • If the $length is null, implementations MUST return all remaining bytes from the stream; otherwise, implementations MUST return up to that many bytes from the stream.

      • After reading, implementations MUST reposition the encapsulated resource pointer to its initial location.

      • Implementations MUST throw a StreamThrowable on failure.

WritableStream

WritableStream extends Stream to afford writing to the stream at the current pointer position.

  • Directives:

    • If the encapsulated resource is not writable at the time it becomes available to the WritableStream, implementations MUST throw a StreamThrowable.

    • Implementations MAY write to the encapsulated resource internally without affording WritableStream.

WritableStream Methods

  • public function write(string|Stringable $data) : int;
    • Writes $data starting at the current stream pointer position, returning the number of bytes written, as if by fwrite().

    • Directives:

ReadonlyStream

ReadonlyStream is a marker interface that extends Stream to indicate the implementation attempts to enforce readonly constraints on the encapsulated resource.

  • Directives:

    • Implementations MUST open the encapsulated resource inside the ReadonlyStream.

    • Implementations MUST open the encapsulated resource as php://input or php://memory.

    • Implementations MAY open the encapsulated resource in a mode that allows writing (rb+, w+, etc.) to allow initialization.

    • Implementations MAY initialize the encapsulated resource after opening (e.g., by copying a constructor argument to the encapsulated resource).

    • Implementations MUST NOT modify, or allow modification of, the encapsulated resource content after initialization, whether by implementing WritableStream or by some other means.

    • Implementations MUST NOT expose the encapsulated resource, whether by implementing ResourceStream or by some other means.

    • Implementations MAY allow closing of the encapsulated resource, whether by implementing ClosableStream or by some other means.

  • Notes:

    • The readonly constraints are necessarily strict. Whereas readonly on scalar and array properties can be implemented relatively easily, readonly on a resource property is more difficult. The encapsulated resource, including both its content and its pointer, must be inaccessible from outside the ReadonlyStream to ensure it cannot be modified from outside the ReadonlyStream.

    • ReadonlyStream implementations may be memory-intensive. This is because they usually have to be initialized with a copy of the original resource, typically a file resource, thereby reading all of it into a php://memory resource.

    • php://input is natively readonly. It does not need to be copied to a php://memory resource, and does not need to be initialized.

ImmutableStream

ImmutableStream is a marker interface that extends ReadonlyStream to indicate the implementation attempts to enforce immutability constraints on the encapsulated resource.

  • Directives:

    • Implementations MUST adhere to all ReadonlyStream constraints.

    • Implementations MUST NOT allow non-idempotent reading of the encapsulated resource, whether by implementing ReadableStream or by some other means.

    • Implementations MUST NOT expose the state of the encapsulated resource pointer, whether by implementing SeekableStream or by some other means.

    • Implementations MUST NOT allow closing of the encapsulated resource before the ImmutableStream is destructed, whether by implementing ClosableStream or by some other means.

    • Implementations MUST NOT allow mutation of the $metadata property.

  • Notes:

    • The immutability constraints are necessarily strict. Immutability of a resource is incompatible with non-idempotent reading; doing so modifies its pointer position, thereby changing its state. Likewise, closing the resource changes its state. These constraints leave only StringableStream and SizableStream as compatible interfaces.

StreamThrowable

StreamThrowable is a marker interface that extends Throwable to indicate an Exception is stream-related.

It adds no class members.

StreamTypeAliases

StreamTypeAliases defines custom PHPStan types to aid static analysis.

  • metadata_array: array{
        timed_out: bool,
        blocked: bool,
        eof: bool,
        unread_bytes: int,
        stream_type: string,
        wrapper_type: string,
        wrapper_data: mixed,
        mode: string,
        seekable: bool,
        uri?: string,
        mediatype?: string,
        base64?: bool
    }
    
  • stat_array: array{
        dev: int<0,max>,
        ino: int<0,max>,
        mode: int<0,max>,
        nlink: int<0,max>,
        uid: int<0,max>,
        gid: int<0,max>,
        rdev: int<0,max>,
        size: int<0,max>,
        atime: int<0,max>,
        mtime: int<0,max>,
        ctime: int<0,max>,
        blksize: int<0,max>,
        blocks: int<0,max>
    }
    

Implementations

Implementations MAY encapsulate a string, or some other kind of data source, instead of a resource.

Implementations encapsulating something besides a resource MUST behave as if they encapsulate a resource.

Implementations advertised as readonly or immutable MUST be deeply readonly or immutable. With the exception of implementations meeting the specified ReadonlyStream or ImmutableStream conditions, they MUST NOT encapsulate any references, resources, mutable objects, objects or arrays encapsulating references or resources or mutable objects, and so on.

Implementations MAY define additional class members not defined in these interfaces; implementations advertised as readonly or immutable MUST make those additional class members deeply readonly or immutable.

Notes:

  • Reflection does not invalidate advertisements of readonly or immutable implementations. The ability of a consumer to use Reflection to mutate an implementation advertised as readonly or immutable does not constitute a failure to comply with Stream-Interop.

  • Reference implementations are available at https://github.com/stream-interop/impl.

Q & A

What projects were used as reference points for Stream-Interop?

These are the reference projects for developing the above interfaces.

Please see README-RESEARCH.md for more information.

What about filters?

Stream filters are a powerful aspect of stream resources. However, as they operate on resources directly, creating interfaces for them is out-of-scope for Stream-Interop. Further, none of the projects included in the Stream-Interop research implemented filters, making it difficult to rationalize adding filter interfaces.

Even so, consumers are free to register filters on the resources they inject into a Stream. In addition, implementors are free to create filter mechanisms that intercept the input going into a WritableStream (e.g. via its write() method) or the output coming from a ReadableStream (e.g. via its read() method).

Why is there no Factory interface?

The sheer volume of possible combinations of the various interfaces makes it difficult to provide a factory with proper return typehints. Implementors are encouraged to develop their own factories with proper typehinting.