0c9b86adfcc7a4fc90fa2833133366f65114df7f
[auerswald-callnotifier.git] / src / callnotifier / EDSS1 / Parser.php
1 <?php
2 namespace callnotifier;
3
4 class EDSS1_Parser
5 {
6     const PARAM = 0;
7     const PARAMLENGTH = 1;
8     const PARAMVAL = 2;
9
10     public function parse($bytes)
11     {
12         $m = new EDSS1_Message();
13         $m->sapi = ord($bytes{0}) >> 2;
14         $m->callResponse = (int) ((ord($bytes{0}) & 2) == 2);
15         $m->tei  = ord($bytes{1}) >> 1;
16
17         $curpos = 4;
18         list($curpos, $cCallRef, $crLen) = $this->readLengthData($bytes, ++$curpos);
19         if ($crLen == 0xFF) {
20             return $m;
21         }
22         $m->callRef = ord($cCallRef);
23         //var_dump($curpos, dechex($m->callRef));
24         $m->type = ord($bytes{++$curpos});
25
26         $complete = false;
27         do {
28             //parameter type
29             $curbit = $bytes{++$curpos};
30             if ($curbit == "\xFF" && $bytes{$curpos + 1} == "\n") {
31                 $complete = true;
32                 break;
33             }
34
35             $paramType = ord($curbit);
36             $param = $this->getParameterByType($paramType);
37             $m->parameters[] = $param;
38
39             //parameter length
40             $curbit = $bytes{++$curpos};
41             $param->length = ord($curbit);
42
43             //parameter data
44             $param->setData(substr($bytes, $curpos + 1, $param->length));
45             $curpos += $param->length;
46         } while ($curpos < strlen($bytes) - 1);
47
48         return $m;
49     }
50
51     /**
52      * Read a datablock preceded with a length byte.
53      *
54      * @return array Array with new cursor position, data and data length
55      */
56     public function readLengthData($bytes, $curpos)
57     {
58         //var_dump('old' . $curpos);
59         $length = ord($bytes{$curpos});
60         if ($length != 0xFF) {
61             $data = substr($bytes, $curpos + 1, $length);
62         } else {
63             $data = null;
64         }
65         return array($curpos + $length, $data, $length);
66     }
67
68     /**
69      * @param integer $type Parameter type ID
70      */
71     public function getParameterByType($type)
72     {
73         $supported = array(0x28, 0x2C, 0x4C, 0x6C, 0x70);
74         if (!in_array($type, $supported)) {
75             return new EDSS1_Parameter($type);
76         }
77
78         $typeHex = sprintf('%02X', $type);
79         $class = 'callnotifier\EDSS1_Parameter_' . $typeHex;
80
81         return new $class($type);
82     }
83 }
84
85 ?>