class StreamedResponse

StreamedResponse represents a streamed HTTP response.

A StreamedResponse uses a callback for its content.

The callback should use the standard PHP functions like echo to stream the response back to the client. The flush() method can also be used if needed.

@author Fabien Potencier <fabien@symfony.com>

@api

Hierarchy

Expanded class hierarchy of StreamedResponse

See also

flush()

6 files declare their use of StreamedResponse
file.inc in drupal/core/includes/file.inc
API for handling file uploads and server file management.
HttpKernel.php in drupal/core/lib/Drupal/Core/HttpKernel.php
Definition of Drupal\Core\HttpKernel.
image.module in drupal/core/modules/image/image.module
Exposes global functionality for creating image styles.
StreamedResponseListener.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/EventListener/StreamedResponseListener.php
StreamedResponseTest.php in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/StreamedResponseTest.php

... See full list

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/StreamedResponse.php, line 29

Namespace

Symfony\Component\HttpFoundation
View source
class StreamedResponse extends Response {
  protected $callback;
  protected $streamed;

  /**
   * Constructor.
   *
   * @param mixed   $callback A valid PHP callback
   * @param integer $status   The response status code
   * @param array   $headers  An array of response headers
   *
   * @api
   */
  public function __construct($callback = null, $status = 200, $headers = array()) {
    parent::__construct(null, $status, $headers);
    if (null !== $callback) {
      $this
        ->setCallback($callback);
    }
    $this->streamed = false;
  }

  /**
   * {@inheritDoc}
   */
  public static function create($callback = null, $status = 200, $headers = array()) {
    return new static($callback, $status, $headers);
  }

  /**
   * Sets the PHP callback associated with this Response.
   *
   * @param mixed $callback A valid PHP callback
   */
  public function setCallback($callback) {
    if (!is_callable($callback)) {
      throw new \LogicException('The Response callback must be a valid PHP callable.');
    }
    $this->callback = $callback;
  }

  /**
   * {@inheritdoc}
   */
  public function prepare(Request $request) {
    if ('HTTP/1.0' != $request->server
      ->get('SERVER_PROTOCOL')) {
      $this
        ->setProtocolVersion('1.1');
    }
    $this->headers
      ->set('Cache-Control', 'no-cache');
    return parent::prepare($request);
  }

  /**
   * {@inheritdoc}
   *
   * This method only sends the content once.
   */
  public function sendContent() {
    if ($this->streamed) {
      return;
    }
    $this->streamed = true;
    if (null === $this->callback) {
      throw new \LogicException('The Response callback must not be null.');
    }
    call_user_func($this->callback);
  }

  /**
   * {@inheritdoc}
   *
   * @throws \LogicException when the content is not null
   */
  public function setContent($content) {
    if (null !== $content) {
      throw new \LogicException('The content cannot be set on a StreamedResponse instance.');
    }
  }

  /**
   * {@inheritdoc}
   *
   * @return false
   */
  public function getContent() {
    return false;
  }

}

Members

Name Modifiers Type Descriptionsort descending Overrides
StreamedResponse::setContent public function Overrides Response::setContent
StreamedResponse::getContent public function Overrides Response::getContent
StreamedResponse::$callback protected property
StreamedResponse::$streamed protected property
Response::$headers public property
Response::$content protected property
Response::$version protected property
Response::$statusCode protected property
Response::$statusText protected property
Response::$charset protected property
Response::__clone public function Clones the current Response instance.
StreamedResponse::__construct public function Constructor. Overrides Response::__construct
Response::isNotModified public function Determines if the Response validators (ETag, Last-Modified) match a conditional value specified in the Request.
StreamedResponse::create public static function Factory method for chainability Overrides Response::create
Response::getProtocolVersion public function Gets the HTTP protocol version.
Response::isInformational public function Is response informative?
Response::isInvalid public function Is response invalid?
Response::isSuccessful public function Is response successful?
Response::isForbidden public function Is the reponse forbidden?
Response::isNotFound public function Is the response a not found error?
Response::isRedirect public function Is the response a redirect of some form?
Response::isRedirection public function Is the response a redirect?
Response::isEmpty public function Is the response empty?
Response::isOk public function Is the response OK?
Response::isClientError public function Is there a client error?
Response::setPrivate public function Marks the response as "private".
Response::setPublic public function Marks the response as "public".
Response::expire public function Marks the response stale by setting the Age header to be equal to the maximum age of the response.
Response::setNotModified public function Modifies the response so that it conforms to the rules defined for a 304 status code.
StreamedResponse::prepare public function Prepares the Response before it is sent to the client. Overrides Response::prepare
Response::getCharset public function Retrieves the response charset.
Response::getStatusCode public function Retrieves the status code for the current web response.
Response::getVary public function Returns an array of header names given in the Vary header.
Response::getAge public function Returns the age of the response.
Response::getDate public function Returns the Date header as a DateTime instance.
Response::getLastModified public function Returns the Last-Modified HTTP header as a DateTime instance.
Response::getEtag public function Returns the literal value of the ETag HTTP header.
Response::__toString public function Returns the Response as an HTTP string.
Response::getTtl public function Returns the response's time-to-live in seconds.
Response::getExpires public function Returns the value of the Expires header as a DateTime instance.
Response::hasVary public function Returns true if the response includes a Vary header.
Response::isValidateable public function Returns true if the response includes headers that can be used to validate the response with the origin server using a conditional GET request.
Response::isFresh public function Returns true if the response is "fresh".
Response::isCacheable public function Returns true if the response is worth caching under any circumstance.
Response::mustRevalidate public function Returns true if the response must be revalidated by caches.
Response::send public function Sends HTTP headers and content.
Response::sendHeaders public function Sends HTTP headers.
Response::setDate public function Sets the Date header.
Response::setEtag public function Sets the ETag value.
Response::setExpires public function Sets the Expires HTTP header with a DateTime instance.
Response::setProtocolVersion public function Sets the HTTP protocol version (1.0 or 1.1).
Response::setLastModified public function Sets the Last-Modified HTTP header with a DateTime instance.
Response::getMaxAge public function Sets the number of seconds after the time specified in the response's Date header when the the response should no longer be considered fresh.
Response::setSharedMaxAge public function Sets the number of seconds after which the response should no longer be considered fresh by shared caches.
Response::setMaxAge public function Sets the number of seconds after which the response should no longer be considered fresh.
StreamedResponse::setCallback public function Sets the PHP callback associated with this Response.
Response::setCharset public function Sets the response charset.
Response::setStatusCode public function Sets the response status code.
Response::setCache public function Sets the response's cache headers (validation and/or expiration).
Response::setClientTtl public function Sets the response's time-to-live for private/client caches.
Response::setTtl public function Sets the response's time-to-live for shared caches.
Response::setVary public function Sets the Vary header.
Response::$statusTexts public static property Status codes translation table.
StreamedResponse::sendContent public function This method only sends the content once. Overrides Response::sendContent
Response::isServerError public function Was there a server side error?