-
Notifications
You must be signed in to change notification settings - Fork 0
/
chain-of-responsibility.php
executable file
·100 lines (86 loc) · 2.72 KB
/
chain-of-responsibility.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
<?php
/**
* GoF Chain Of responsibility https://refactoring.guru/ru/design-patterns/chain-of-responsibility
*
* Цепочка обязанностей — это поведенческий паттерн проектирования, который позволяет передавать запросы последовательно
* по цепочке обработчиков. Каждый последующий обработчик решает, может ли он обработать запрос сам и стоит ли
* передавать запрос дальше по цепи.
*
* Написать программу, используя паттерн Chain Of Responsibility.
*
* - Вызов экстренной службы через единый интерфейс
* - Можно вызвать:
* - Пожарных
* - Полицию
* - Медицинскую помощь
*
* Решение на 84-й строке
*/
interface Handler
{
public function setNext(Handler $handler);
public function handle(string $request);
}
abstract class BaseHandler implements Handler
{
public Handler $nextHandler;
public function setNext(Handler $handler): Handler
{
$this->nextHandler = $handler;
return $handler;
}
public function handle(string $request): ?string
{
if ($this->nextHandler) {
return $this->nextHandler->handle($request);
}
return null;
}
}
class FireHandler extends BaseHandler
{
public function handle(string $request): ?string
{
if ($request == "01") {
return "execute Fire service" . PHP_EOL;
} else {
return parent::handle($request);
}
}
}
class PoliceHandler extends BaseHandler
{
public function handle(string $request): ?string
{
if ($request == "02") {
return "execute Police service" . PHP_EOL;
} else {
return parent::handle($request);
}
}
}
class MedicalHandler extends BaseHandler
{
public function handle(string $request): ?string
{
if ($request == "03") {
return "execute Medical service" . PHP_EOL;
} else {
return parent::handle($request);
}
}
}
/** Client code */
$fire = new FireHandler();
$police = new PoliceHandler();
$medical = new MedicalHandler();
$fire->setNext($police)->setNext($medical);
// вызовет по очереди методы handle всех связанных выше сервисов
foreach (["01", "02", "03"] as $request) {
echo "Client: call by phone number " . $request . PHP_EOL;
$result = $fire->handle($request);
if (!empty($result)) {
echo " " . $result;
}
}
echo PHP_EOL;