CommandMessage.php
1.35 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
<?php
/**
 * Created by PhpStorm.
 * User: billy
 * Date: 01/09/2017
 * Time: 5:30 PM
 */
namespace App\Modules\Onenet\Message;
/**
 * Class CommandMessage
 * @package App\Modules\Onenet\Message
 */
class CommandMessage extends Message
{
    /**
     * @var string
     */
    private $command;
    /**
     * @var array
     */
    private $param;
    /**
     * CommandMessage constructor.
     * @param $deviceId
     * @param $command
     * @param $param
     */
    public function __construct($deviceId, $command, $param=array())
    {
        parent::__construct($deviceId);
        $this->command = $command;
        $this->param = $param;
    }
    /**
     * @return string
     */
    public function getCommand()
    {
        return $this->command;
    }
    /**
     * @param string $command
     */
    public function setCommand($command)
    {
        $this->command = $command;
    }
    /**
     * pack message to send to onenet
     * @return string
     */
    public function pack()
    {
        $msg = array();
        //header
        array_push($msg, '{');
        //body
        array_push($msg, $this->command.join('', $this->param));
        //tail
        array_push($msg, '}');
        return join('', $msg);
    }
    /**
     * unpack
     * @param $value
     */
    public function unpack($value)
    {
        echo "unpack";
    }
}