-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStream.php
125 lines (110 loc) · 2.86 KB
/
Stream.php
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
/**
* Bread PHP Framework (http://github.com/saiv/Bread)
* Copyright 2010-2012, SAIV Development Team <[email protected]>
*
* Licensed under a Creative Commons Attribution 3.0 Unported License.
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010-2012, SAIV Development Team <[email protected]>
* @link http://github.com/saiv/Bread Bread PHP Framework
* @package Bread
* @since Bread PHP Framework
* @license http://creativecommons.org/licenses/by/3.0/
*/
namespace Bread;
use Bread\Event;
use Bread\Stream;
class Stream extends Event\Emitter implements Stream\Interfaces\Readable,
Stream\Interfaces\Writable {
use Stream\Traits\Pipe;
public $loop;
public $stream;
protected $readable = true;
protected $writable = true;
protected $closing = false;
protected $bufferSize = 4096;
protected $buffer;
public function __construct($stream, Event\Interfaces\Loop $loop) {
$this->stream = $stream;
$this->loop = $loop;
$this->buffer = new Stream\Buffer($this->stream, $this->loop);
$this->buffer->on('error', function ($error) {
$this->emit('error', array(
$error, $this
));
$this->close();
});
$this->buffer->on('drain', function () {
$this->emit('drain');
});
$this->resume();
}
public function isReadable() {
return $this->readable;
}
public function isWritable() {
return $this->writable;
}
public function pause() {
$this->loop->removeReadStream($this->stream);
}
public function resume() {
$this->loop->addReadStream($this->stream, array(
$this, 'handleData'
));
}
public function write($data) {
if (!$this->writable) {
return;
}
return $this->buffer->write($data);
}
public function close() {
if (!$this->writable && !$this->closing) {
return;
}
$this->closing = false;
$this->readable = false;
$this->writable = false;
$this->emit('close', array(
$this
));
$this->loop->removeStream($this->stream);
$this->buffer->removeAllListeners();
$this->removeAllListeners();
$this->handleClose();
}
public function end($data = null) {
if (!$this->writable) {
return;
}
$this->closing = true;
$this->readable = false;
$this->writable = false;
$this->emit('end', array(
$data
));
$this->buffer->on('close', function () {
$this->close();
});
$this->buffer->end($data);
}
public function handleData($stream) {
$data = fread($stream, $this->bufferSize);
$this->emit('data', array(
$data, $this
));
if (!is_resource($stream) || feof($stream)) {
$this->end();
}
}
public function handleClose() {
if (is_resource($this->stream)) {
fclose($this->stream);
}
}
public function getBuffer() {
return $this->buffer;
}
}