forked from 2lovecode/code-segment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCommand.php
173 lines (140 loc) · 2.97 KB
/
Command.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
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
<?php
/*
*
* 命令模式:将请求封装,并把发出请求的对象和处理请求的对象解耦,并支持撤销请求的操作。
*
* 关键元素:客户,调用者,请求,接收者。
*
* 在我们的示例中,客户对应Test类,调用者对应Console(控制台),命令对应Command接口的具体实现类,接收者对应Light(灯)和Fan(电风扇)。
*
* 我们在使用时,即在客户类Test中使用时,如果多添加一个接收者,我们只需要添加一个Command和接收者,在setCommand时绑定。不用修改调用者的代码。
* 同时,命令模式还支持宏命令和撤销操作,在示例中我们仅提供了宏命令的实现MacroCommand。
*/
interface Command
{
public function execute();
}
class LightOnCommand implements Command
{
private $light;
public function __construct($light)
{
$this->light = $light;
}
public function execute()
{
$this->light->LightOn();
}
}
class LightOffCommand implements Command
{
private $light;
public function __construct($light)
{
$this->light = $light;
}
public function execute()
{
$this->light->LightOff();
}
}
class FanOnConmmand implements Command
{
private $fan;
public function __construct($fan)
{
$this->fan = $fan;
}
public function execute()
{
$this->fan->FanOn();
}
}
class FanOffCommand implements Command
{
private $fan;
public function __construct($fan)
{
$this->fan = $fan;
}
public function execute()
{
$this->fan->FanOff();
}
}
class MacroCommand implements Command
{
private $commands;
public function __construct($commands)
{
$this->commands = $commands;
}
public function execute()
{
foreach ($this->commands as $command) {
$command->execute();
}
}
}
class Light
{
public function LightOn()
{
echo "Light is on<br>\n";
}
public function LightOff()
{
echo "Light is off<br>\n";
}
}
class Fan
{
public function FanOn()
{
echo "Fan is on<br>\n";
}
public function FanOff()
{
echo "Fan is off<br>\n";
}
}
class Console
{
private $commands = null;
public function setCommand($pos, $command)
{
$this->commands[$pos] = $command;
}
public function run($pos)
{
if (isset($this->commands[$pos])) {
$this->commands[$pos]->execute();
}
}
}
class Test
{
public function run()
{
$light = new Light();
$fan = new Fan();
$lightOnCommand = new LightOnCommand($light);
$lightOffCommand = new LightOffCommand($light);
$fanOnConmmand = new FanOnConmmand($fan);
$fanOffCommand = new FanOffCommand($fan);
$macroCommand = new MacroCommand([$lightOnCommand, $lightOffCommand, $fanOnConmmand, $fanOffCommand]);
$console = new Console();
$console->setCommand(0, $lightOnCommand);
$console->setCommand(1, $lightOffCommand);
$console->setCommand(2, $fanOnConmmand);
$console->setCommand(3, $fanOffCommand);
$console->setCommand(4, $macroCommand);
$console->run(0);
$console->run(1);
$console->run(2);
$console->run(3);
$console->run(4);
}
}
$test = new Test();
$test->run();