-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path05-stream-parse.php
46 lines (37 loc) · 1.32 KB
/
05-stream-parse.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
<?php
declare(strict_types = 1);
namespace RTCKit\SIP\Examples;
error_reporting(-1);
require(__DIR__ . '/../vendor/autoload.php');
use RTCKit\SIP\Request;
use RTCKit\SIP\Response;
use RTCKit\SIP\StreamParser;
$parser = new StreamParser;
$fp = fopen(__DIR__ . '/../tests/fixtures/stream/generic.txt', 'r');
while (!feof($fp)) {
$bytes = fread($fp, 256);
if ($parser->process($bytes, $messages) === StreamParser::SUCCESS) {
foreach($messages as $message) {
/* Consume messages ... */
if ($message instanceof Request) {
printf(
"Request %10s %30s %30s %40s" . PHP_EOL,
$message->method,
substr($message->from->uri->user, 0, 30),
substr($message->to->uri->user, 0, 30),
substr($message->callId->value, 0, 40)
);
} else {
printf(
"Response %10s %30s %30s %40s %03d %s" . PHP_EOL,
$message->cSeq->method,
substr($message->from->uri->user, 0, 30),
substr($message->to->uri->user, 0, 30),
substr($message->callId->value, 0, 40),
$message->code,
$message->reason
);
}
}
}
}