LimitStream.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. declare(strict_types=1);
  3. namespace GuzzleHttp\Psr7;
  4. use Psr\Http\Message\StreamInterface;
  5. /**
  6. * Decorator used to return only a subset of a stream.
  7. */
  8. final class LimitStream implements StreamInterface
  9. {
  10. use StreamDecoratorTrait;
  11. /** @var int Offset to start reading from */
  12. private $offset;
  13. /** @var int Limit the number of bytes that can be read */
  14. private $limit;
  15. /**
  16. * @param StreamInterface $stream Stream to wrap
  17. * @param int $limit Total number of bytes to allow to be read
  18. * from the stream. Pass -1 for no limit.
  19. * @param int $offset Position to seek to before reading (only
  20. * works on seekable streams).
  21. */
  22. public function __construct(
  23. StreamInterface $stream,
  24. int $limit = -1,
  25. int $offset = 0
  26. ) {
  27. $this->stream = $stream;
  28. $this->setLimit($limit);
  29. $this->setOffset($offset);
  30. }
  31. public function eof(): bool
  32. {
  33. // Always return true if the underlying stream is EOF
  34. if ($this->stream->eof()) {
  35. return true;
  36. }
  37. // No limit and the underlying stream is not at EOF
  38. if ($this->limit === -1) {
  39. return false;
  40. }
  41. return $this->stream->tell() >= $this->offset + $this->limit;
  42. }
  43. /**
  44. * Returns the size of the limited subset of data
  45. */
  46. public function getSize(): ?int
  47. {
  48. if (null === ($length = $this->stream->getSize())) {
  49. return null;
  50. } elseif ($this->limit === -1) {
  51. return $length - $this->offset;
  52. } else {
  53. return min($this->limit, $length - $this->offset);
  54. }
  55. }
  56. /**
  57. * Allow for a bounded seek on the read limited stream
  58. */
  59. public function seek($offset, $whence = SEEK_SET): void
  60. {
  61. if ($whence !== SEEK_SET || $offset < 0) {
  62. throw new \RuntimeException(sprintf(
  63. 'Cannot seek to offset %s with whence %s',
  64. $offset,
  65. $whence
  66. ));
  67. }
  68. $offset += $this->offset;
  69. if ($this->limit !== -1) {
  70. if ($offset > $this->offset + $this->limit) {
  71. $offset = $this->offset + $this->limit;
  72. }
  73. }
  74. $this->stream->seek($offset);
  75. }
  76. /**
  77. * Give a relative tell()
  78. */
  79. public function tell(): int
  80. {
  81. return $this->stream->tell() - $this->offset;
  82. }
  83. /**
  84. * Set the offset to start limiting from
  85. *
  86. * @param int $offset Offset to seek to and begin byte limiting from
  87. *
  88. * @throws \RuntimeException if the stream cannot be seeked.
  89. */
  90. public function setOffset(int $offset): void
  91. {
  92. $current = $this->stream->tell();
  93. if ($current !== $offset) {
  94. // If the stream cannot seek to the offset position, then read to it
  95. if ($this->stream->isSeekable()) {
  96. $this->stream->seek($offset);
  97. } elseif ($current > $offset) {
  98. throw new \RuntimeException("Could not seek to stream offset $offset");
  99. } else {
  100. $this->stream->read($offset - $current);
  101. }
  102. }
  103. $this->offset = $offset;
  104. }
  105. /**
  106. * Set the limit of bytes that the decorator allows to be read from the
  107. * stream.
  108. *
  109. * @param int $limit Number of bytes to allow to be read from the stream.
  110. * Use -1 for no limit.
  111. */
  112. public function setLimit(int $limit): void
  113. {
  114. $this->limit = $limit;
  115. }
  116. public function read($length): string
  117. {
  118. if ($this->limit === -1) {
  119. return $this->stream->read($length);
  120. }
  121. // Check if the current position is less than the total allowed
  122. // bytes + original offset
  123. $remaining = ($this->offset + $this->limit) - $this->stream->tell();
  124. if ($remaining > 0) {
  125. // Only return the amount of requested data, ensuring that the byte
  126. // limit is not exceeded
  127. return $this->stream->read(min($remaining, $length));
  128. }
  129. return '';
  130. }
  131. }