1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-12-02 17:28:21 +01:00
byte-stream/lib/LineReader.php
Niklas Keller a0a418e01e Add LineReader
Closes #63.
2019-08-22 20:55:09 +02:00

53 lines
1.3 KiB
PHP

<?php
namespace Amp\ByteStream;
use Amp\Promise;
use function Amp\call;
final class LineReader
{
/** @var string */
private $buffer = "";
/** @var InputStream */
private $source;
public function __construct(InputStream $inputStream)
{
$this->source = $inputStream;
}
/**
* @return Promise<string|null>
*/
public function readLine(): Promise
{
return call(function () {
while (null !== $chunk = yield $this->source->read()) {
$this->buffer .= $chunk;
if (($pos = \strpos($this->buffer, "\n")) !== false) {
$line = \substr($this->buffer, 0, $pos);
$this->buffer = \substr($this->buffer, $pos + 1);
return \rtrim($line, "\r");
}
}
if ($this->buffer === "") {
return null;
}
if (($pos = \strpos($this->buffer, "\n")) !== false) {
$line = \substr($this->buffer, 0, $pos);
$this->buffer = \substr($this->buffer, $pos + 1);
return \rtrim($line, "\r");
}
$line = $this->buffer;
$this->buffer = "";
return \rtrim($line, "\r");
});
}
}