forked from cbergau/PHPDesignPatterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
command.php
86 lines (73 loc) · 1.67 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
<?php
/**
* Command pattern example
*
* @author Christian Bergau <[email protected]>
* @copyright Free for all
* @link http://en.wikipedia.org/wiki/Command_pattern
*/
class Invoker
{
protected $commands = array();
public function addCommand($name, $commands)
{
$this->commands[$name] = $commands;
}
public function executeCommands($name, Receiver $receiver)
{
if (!isset($this->commands[$name])) {
throw new Exception('Invalid name');
}
foreach ($this->commands[$name] as $command) {
$command->execute($receiver);
}
}
}
interface CommandInterface
{
public function execute(Receiver $receiver);
}
class FirstConcreteCommand implements CommandInterface
{
public function execute(Receiver $receiver)
{
echo "First command on ".$receiver->getName();
}
}
class SecondConcreteCommand implements CommandInterface
{
public function execute(Receiver $receiver)
{
echo "Second command on ".$receiver->getName();
}
}
class Receiver
{
protected $name;
public function __construct($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}
$invoker = new Invoker();
$invoker->addCommand(
'standard',
array(
new FirstConcreteCommand(),
)
);
$invoker->addCommand(
'deluxe',
array(
new FirstConcreteCommand(),
new SecondConcreteCommand()
)
);
$someReceiver = new Receiver('ReceiverOne');
$invoker->executeCommands('standard', $someReceiver);
$anotherReceiver = new Receiver('ReceiverTwo');
$invoker->executeCommands('deluxe', $anotherReceiver);