Parser.php
8.0 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<?php
namespace PHPSocketIO\Engine;
use \PHPSocketIO\Debug;
class Parser
{
public function __construct()
{
Debug::debug('Engine/Parser __construct');
}
public static $packets=array(
'open'=> 0 // non-ws
, 'close'=> 1 // non-ws
, 'ping'=> 2
, 'pong'=> 3
, 'message'=> 4
, 'upgrade'=> 5
, 'noop'=> 6
);
public static $packetsList = array(
'open',
'close',
'ping',
'pong',
'message',
'upgrade',
'noop'
);
public static $err = array(
'type' => 'error',
'data' => 'parser error'
);
public static function encodePacket($packet)
{
$data = !isset($packet['data']) ? '' : $packet['data'];
return self::$packets[$packet['type']].$data;
}
/**
* Encodes a packet with binary data in a base64 string
*
* @param {Object} packet, has `type` and `data`
* @return {String} base64 encoded message
*/
public static function encodeBase64Packet($packet)
{
$data = isset($packet['data']) ? '' : $packet['data'];
return $message = 'b' . self::$packets[$packet['type']] . base64_encode($packet['data']);
}
/**
* Decodes a packet. Data also available as an ArrayBuffer if requested.
*
* @return {Object} with `type` and `data` (if any)
* @api private
*/
public static function decodePacket($data, $binaryType = null, $utf8decode = true)
{
// String data todo check if (typeof data == 'string' || data === undefined)
if ($data[0] === 'b')
{
return self::decodeBase64Packet(substr($data, 1), $binaryType);
}
$type = $data[0];
if (!isset(self::$packetsList[$type]))
{
return self::$err;
}
if (isset($data[1]))
{
return array('type'=> self::$packetsList[$type], 'data'=> substr($data, 1));
}
else
{
return array('type'=> self::$packetsList[$type]);
}
}
/**
* Decodes a packet encoded in a base64 string.
*
* @param {String} base64 encoded message
* @return {Object} with `type` and `data` (if any)
*/
public static function decodeBase64Packet($msg, $binaryType)
{
$type = self::$packetsList[$msg[0]];
$data = base64_decode(substr($data, 1));
return array('type'=> $type, 'data'=> $data);
}
/**
* Encodes multiple messages (payload).
*
* <length>:data
*
* Example:
*
* 11:hello world2:hi
*
* If any contents are binary, they will be encoded as base64 strings. Base64
* encoded strings are marked with a b before the length specifier
*
* @param {Array} packets
* @api private
*/
public static function encodePayload($packets, $supportsBinary = null)
{
if ($supportsBinary)
{
return self::encodePayloadAsBinary($packets);
}
if (!$packets)
{
return '0:';
}
$results = '';
foreach($packets as $msg)
{
$results .= self::encodeOne($msg, $supportsBinary);
}
return $results;
}
public static function encodeOne($packet, $supportsBinary = null, $result = null)
{
$message = self::encodePacket($packet, $supportsBinary, true);
return strlen($message) . ':' . $message;
}
/*
* Decodes data when a payload is maybe expected. Possible binary contents are
* decoded from their base64 representation
*
* @api public
*/
public static function decodePayload($data, $binaryType = null)
{
if(!preg_match('/^\d+:\d/',$data))
{
return self::decodePayloadAsBinary($data, $binaryType);
}
if ($data === '')
{
// parser error - ignoring payload
return self::$err;
}
$length = '';//, n, msg;
for ($i = 0, $l = strlen($data); $i < $l; $i++)
{
$chr = $data[$i];
if (':' != $chr)
{
$length .= $chr;
}
else
{
if ('' == $length || ($length != ($n = intval($length))))
{
// parser error - ignoring payload
return self::$err;
}
$msg = substr($data, $i + 1/*, $n*/);
/*if ($length != strlen($msg))
{
// parser error - ignoring payload
return self::$err;
}*/
if (isset($msg[0]))
{
$packet = self::decodePacket($msg, $binaryType, true);
if (self::$err['type'] == $packet['type'] && self::$err['data'] == $packet['data'])
{
// parser error in individual packet - ignoring payload
return self::$err;
}
return $packet;
}
// advance cursor
$i += $n;
$length = '';
}
}
if ($length !== '')
{
// parser error - ignoring payload
echo new \Exception('parser error');
return self::$err;
}
}
/**
* Encodes multiple messages (payload) as binary.
*
* <1 = binary, 0 = string><number from 0-9><number from 0-9>[...]<number
* 255><data>
*
* Example:
* 1 3 255 1 2 3, if the binary contents are interpreted as 8 bit integers
*
* @param {Array} packets
* @return {Buffer} encoded payload
* @api private
*/
public static function encodePayloadAsBinary($packets)
{
$results = '';
foreach($packets as $msg)
{
$results .= self::encodeOneAsBinary($msg);
}
return $results;
}
public static function encodeOneAsBinary($p)
{
// todo is string or arraybuf
$packet = self::encodePacket($p, true, true);
$encodingLength = ''.strlen($packet);
$sizeBuffer = chr(0);
for ($i = 0; $i < strlen($encodingLength); $i++)
{
$sizeBuffer .= chr($encodingLength[$i]);
}
$sizeBuffer .= chr(255);
return $sizeBuffer.$packet;
}
/*
* Decodes data when a payload is maybe expected. Strings are decoded by
* interpreting each byte as a key code for entries marked to start with 0. See
* description of encodePayloadAsBinary
* @api public
*/
public static function decodePayloadAsBinary($data, $binaryType = null)
{
$bufferTail = $data;
$buffers = array();
while (strlen($bufferTail) > 0)
{
$strLen = '';
$isString = $bufferTail[0] == 0;
$numberTooLong = false;
for ($i = 1; ; $i++)
{
$tail = ord($bufferTail[$i]);
if ($tail === 255) break;
// 310 = char length of Number.MAX_VALUE
if (strlen($strLen) > 310)
{
$numberTooLong = true;
break;
}
$strLen .= $tail;
}
if($numberTooLong) return self::$err;
$bufferTail = substr($bufferTail, strlen($strLen) + 1);
$msgLength = intval($strLen, 10);
$msg = substr($bufferTail, 1, $msgLength + 1);
$buffers[] = $msg;
$bufferTail = substr($bufferTail, $msgLength + 1);
}
$total = count($buffers);
$packets = array();
foreach($buffers as $i => $buffer)
{
$packets[] = self::decodePacket($buffer, $binaryType, true);
}
return $packets;
}
}