aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2012-07-23 18:18:33 +0200
committerChristian Weiske <cweiske@cweiske.de>2012-07-23 18:18:33 +0200
commited39da2ea138da1b4a8eac805bcde19dedd8c054 (patch)
tree03013fc5469138be8728ce5d7b20e1637e50fdac
parent9bdfbb8560e0e45fd2f04e10763a81c8b2638da0 (diff)
downloadauerswald-callnotifier-ed39da2ea138da1b4a8eac805bcde19dedd8c054.tar.gz
auerswald-callnotifier-ed39da2ea138da1b4a8eac805bcde19dedd8c054.zip
call reference type parsing
-rw-r--r--src/callnotifier/EDSS1/Message.php11
-rw-r--r--src/callnotifier/EDSS1/Parser.php10
-rw-r--r--tests/callnotifier/EDSS1/ParserTest.php56
3 files changed, 65 insertions, 12 deletions
diff --git a/src/callnotifier/EDSS1/Message.php b/src/callnotifier/EDSS1/Message.php
index d490005..421df79 100644
--- a/src/callnotifier/EDSS1/Message.php
+++ b/src/callnotifier/EDSS1/Message.php
@@ -28,6 +28,17 @@ class EDSS1_Message
public $callRef;
/**
+ * If the message is from the call originating device, or the
+ * other side.
+ *
+ * - 0 = device that originated the call
+ * - 1 = device that answers to orignator requests
+ *
+ * @var integer
+ */
+ public $callRefType;
+
+ /**
* Service AccessPoint Identifier
*
* @var integer
diff --git a/src/callnotifier/EDSS1/Parser.php b/src/callnotifier/EDSS1/Parser.php
index 0c9b86a..f3ebeba 100644
--- a/src/callnotifier/EDSS1/Parser.php
+++ b/src/callnotifier/EDSS1/Parser.php
@@ -19,7 +19,15 @@ class EDSS1_Parser
if ($crLen == 0xFF) {
return $m;
}
- $m->callRef = ord($cCallRef);
+ $m->callRefType = ord($cCallRef{0}) >> 7;
+ $nCallRef = ord($cCallRef{0}) & 127;
+ if ($crLen > 1) {
+ $nCallRef = ord($cCallRef{1}) + ($nCallRef << 8);
+ if ($crLen > 2) {
+ $nCallRef = ord($cCallRef{2}) + ($nCallRef << 8);
+ }
+ }
+ $m->callRef = $nCallRef;
//var_dump($curpos, dechex($m->callRef));
$m->type = ord($bytes{++$curpos});
diff --git a/tests/callnotifier/EDSS1/ParserTest.php b/tests/callnotifier/EDSS1/ParserTest.php
index 2846f7b..e31367d 100644
--- a/tests/callnotifier/EDSS1/ParserTest.php
+++ b/tests/callnotifier/EDSS1/ParserTest.php
@@ -3,17 +3,27 @@ namespace callnotifier;
class EDSS1_ParserTest extends \PHPUnit_Framework_TestCase
{
- public function testParse()
+ protected function parseMsg($bs)
{
- $bs = '00 A3 02 02 08 01 01 7B 70 0C 81 30 31 36 33 34 37 37 39 38 37 38 FF 0A';
$p = new EDSS1_Parser();
$msg = $p->parse(MessageHandler::getBytesFromHexString($bs));
-
self::assertInstanceOf('callnotifier\EDSS1_Message', $msg);
+ return $msg;
+ }
+
+ public function testParse()
+ {
+ $msg = $this->parseMsg(
+ '00 A3 02 02 08 01 01 7B 70 0C 81 30 31 36 33 34 37 37 39 38 37 38 FF 0A'
+ );
+
self::assertEquals(0, $msg->sapi, 'SAPI is wrong');
self::assertEquals(81, $msg->tei, 'TEI is wrong');
self::assertEquals(123, $msg->type, 'Message type is wrong');
+
self::assertEquals(1, $msg->callRef, 'Call reference is wrong');
+ self::assertEquals(0, $msg->callRefType, 'Call reference type is wrong');
+
self::assertEquals(1, count($msg->parameters), 'Wrong parameter count');
$p = $msg->parameters[0];
self::assertInstanceOf('callnotifier\EDSS1_Parameter', $p);
@@ -23,11 +33,8 @@ class EDSS1_ParserTest extends \PHPUnit_Framework_TestCase
public function testParseSAPI()
{
- $bs = 'FC A3 02 02 08 FF 0A';
- $p = new EDSS1_Parser();
- $msg = $p->parse(MessageHandler::getBytesFromHexString($bs));
+ $msg = $this->parseMsg('FC A3 02 02 08 FF 0A');
- self::assertInstanceOf('callnotifier\EDSS1_Message', $msg);
//SAPI: 0xFC = 252. 252 >> 2 = 63
self::assertEquals(63, $msg->sapi, 'SAPI is wrong');
self::assertEquals(0, $msg->callResponse, 'CR-bit is wrong');
@@ -35,15 +42,42 @@ class EDSS1_ParserTest extends \PHPUnit_Framework_TestCase
public function testParseCallResponse()
{
- $bs = 'FE A3 02 02 08 FF 0A';
- $p = new EDSS1_Parser();
- $msg = $p->parse(MessageHandler::getBytesFromHexString($bs));
+ $msg = $this->parseMsg('FE A3 02 02 08 FF 0A');
- self::assertInstanceOf('callnotifier\EDSS1_Message', $msg);
//SAPI: 0xFE = 254. 254 & 2 = 2 -> cr bit set
self::assertEquals(63, $msg->sapi, 'SAPI is wrong');
self::assertEquals(1, $msg->callResponse, 'CR-bit is wrong');
}
+
+ public function testParseCallRefType()
+ {
+ $msg = $this->parseMsg('00 97 16 4C 08 01 81 45 08 02 80 90 FF 0A');
+ self::assertEquals(1, $msg->callRef, 'Call reference is wrong');
+ self::assertEquals(1, $msg->callRefType, 'Call reference type is wrong');
+
+ $msg = $this->parseMsg('00 97 16 4C 08 01 85 45 08 02 80 90 FF 0A');
+ self::assertEquals(5, $msg->callRef, 'Call reference is wrong');
+ self::assertEquals(1, $msg->callRefType, 'Call reference type is wrong');
+
+ $msg = $this->parseMsg('00 97 16 4C 08 01 05 45 08 02 80 90 FF 0A');
+ self::assertEquals(5, $msg->callRef, 'Call reference is wrong');
+ self::assertEquals(0, $msg->callRefType, 'Call reference type is wrong');
+ }
+
+ public function testParseCallRefLong()
+ {
+ $msg = $this->parseMsg('00 97 16 4C 08 02 05 06 45 08 02 80 90 FF 0A');
+ self::assertEquals(0x0506, $msg->callRef, 'Call reference is wrong');
+ self::assertEquals(0, $msg->callRefType, 'Call reference type is wrong');
+
+ $msg = $this->parseMsg('00 97 16 4C 08 02 85 06 45 08 02 80 90 FF 0A');
+ self::assertEquals(0x0506, $msg->callRef, 'Call reference is wrong');
+ self::assertEquals(1, $msg->callRefType, 'Call reference type is wrong');
+
+ $msg = $this->parseMsg('00 97 16 4C 08 03 85 06 07 45 08 02 80 90 FF 0A');
+ self::assertEquals(0x050607, $msg->callRef, 'Call reference is wrong');
+ self::assertEquals(1, $msg->callRefType, 'Call reference type is wrong');
+ }
}
?>