1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php
namespace gipfl\Stream;
use Evenement\EventEmitterTrait;
use React\EventLoop\LoopInterface;
use React\Stream\WritableStreamInterface;
use function strlen;
use function strpos;
use function substr;
class BufferedLineReader implements WritableStreamInterface
{
use EventEmitterTrait;
/** @var LoopInterface */
protected $loop;
protected $buffer = '';
protected $writable = true;
/** @var string */
protected $separator;
/** @var int */
protected $separatorLength;
protected $process;
// protected $maxBufferSize; // Not yet. Do we need this?
/**
* @param string $separator
* @param LoopInterface $loop
*/
public function __construct($separator, LoopInterface $loop)
{
$this->loop = $loop;
$this->separator = $separator;
$this->separatorLength = strlen($separator);
$this->process = function () {
$this->processBuffer();
};
}
protected function processBuffer()
{
$lastPos = 0;
while (false !== ($pos = strpos($this->buffer, $this->separator, $lastPos))) {
$this->emit('line', [substr($this->buffer, $lastPos, $pos - $lastPos)]);
$lastPos = $pos + $this->separatorLength;
}
if ($lastPos !== 0) {
$this->buffer = substr($this->buffer, $lastPos);
}
}
public function isWritable()
{
return $this->writable;
}
public function write($data)
{
if (! $this->writable) {
return false;
}
$this->buffer .= $data;
if (strpos($data, $this->separator) !== false) {
$this->loop->futureTick($this->process);
}
return true;
}
public function end($data = null)
{
if ($data !== null) {
$this->buffer .= $data;
}
$this->close();
}
public function close()
{
$this->writable = false;
$this->processBuffer();
$remainingBuffer = $this->buffer;
$this->buffer = '';
if ($length = strlen($remainingBuffer)) {
$this->emit('error', [new \Exception(sprintf(
'There are %d unprocessed bytes in our buffer: %s',
$length,
substr($remainingBuffer, 0, 64)
))]);
}
$this->emit('close');
}
}
|