1 | <?php |
||
16 | class Swift_ByteStream_ArrayByteStream implements Swift_InputByteStream, Swift_OutputByteStream |
||
|
|||
17 | { |
||
18 | /** |
||
19 | * The internal stack of bytes. |
||
20 | * |
||
21 | * @var string[] |
||
22 | */ |
||
23 | private $_array = array(); |
||
24 | |||
25 | /** |
||
26 | * The size of the stack. |
||
27 | * |
||
28 | * @var int |
||
29 | */ |
||
30 | private $_arraySize = 0; |
||
31 | |||
32 | /** |
||
33 | * The internal pointer offset. |
||
34 | * |
||
35 | * @var int |
||
36 | */ |
||
37 | private $_offset = 0; |
||
38 | |||
39 | /** |
||
40 | * Bound streams. |
||
41 | * |
||
42 | * @var Swift_InputByteStream[] |
||
43 | */ |
||
44 | private $_mirrors = array(); |
||
45 | |||
46 | /** |
||
47 | * Create a new ArrayByteStream. |
||
48 | * |
||
49 | * If $stack is given the stream will be populated with the bytes it contains. |
||
50 | * |
||
51 | * @param mixed $stack of bytes in string or array form, optional |
||
52 | */ |
||
53 | 32 | public function __construct($stack = null) |
|
54 | { |
||
55 | 32 | if (is_array($stack)) { |
|
56 | 9 | $this->_array = $stack; |
|
57 | 9 | $this->_arraySize = count($stack); |
|
58 | 32 | } elseif (is_string($stack)) { |
|
59 | 4 | $this->write($stack); |
|
60 | 4 | } else { |
|
61 | 19 | $this->_array = array(); |
|
62 | } |
||
63 | 32 | } |
|
64 | |||
65 | /** |
||
66 | * Reads $length bytes from the stream into a string and moves the pointer |
||
67 | * through the stream by $length. |
||
68 | * |
||
69 | * If less bytes exist than are requested the |
||
70 | * remaining bytes are given instead. If no bytes are remaining at all, boolean |
||
71 | * false is returned. |
||
72 | * |
||
73 | * @param int $length |
||
74 | * |
||
75 | * @return string |
||
76 | */ |
||
77 | 29 | public function read($length) |
|
93 | |||
94 | /** |
||
95 | * Writes $bytes to the end of the stream. |
||
96 | * |
||
97 | * @param string $bytes |
||
98 | */ |
||
99 | 24 | public function write($bytes) |
|
100 | { |
||
101 | 24 | $to_add = str_split($bytes); |
|
102 | 24 | foreach ($to_add as $value) { |
|
103 | 24 | $this->_array[] = $value; |
|
104 | 24 | } |
|
105 | |||
106 | 24 | $this->_arraySize = count($this->_array); |
|
107 | |||
108 | 24 | foreach ($this->_mirrors as $stream) { |
|
109 | 6 | $stream->write($bytes); |
|
110 | 24 | } |
|
111 | 24 | } |
|
112 | |||
113 | /** |
||
114 | * Not used. |
||
115 | */ |
||
116 | 4 | public function commit() |
|
119 | |||
120 | /** |
||
121 | * Attach $is to this stream. |
||
122 | * |
||
123 | * The stream acts as an observer, receiving all data that is written. |
||
124 | * All {@link write()} and {@link flushBuffers()} operations will be mirrored. |
||
125 | * |
||
126 | * @param Swift_InputByteStream $is |
||
127 | */ |
||
128 | 7 | public function bind(Swift_InputByteStream $is) |
|
132 | |||
133 | /** |
||
134 | * Remove an already bound stream. |
||
135 | * |
||
136 | * If $is is not bound, no errors will be raised. |
||
137 | * If the stream currently has any buffered data it will be written to $is |
||
138 | * before unbinding occurs. |
||
139 | * |
||
140 | * @param Swift_InputByteStream $is |
||
141 | */ |
||
142 | 5 | public function unbind(Swift_InputByteStream $is) |
|
150 | |||
151 | /** |
||
152 | * Move the internal read pointer to $byteOffset in the stream. |
||
153 | * |
||
154 | * @param int $byteOffset |
||
155 | * |
||
156 | * @return bool |
||
157 | */ |
||
158 | 8 | public function setReadPointer($byteOffset) |
|
168 | |||
169 | /** |
||
170 | * Flush the contents of the stream (empty it) and set the internal pointer |
||
171 | * to the beginning. |
||
172 | */ |
||
173 | 2 | public function flushBuffers() |
|
183 | } |
||
184 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.