-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.php
executable file
·123 lines (102 loc) · 4.17 KB
/
proxy.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
<?php
/**
* GoF Proxy https://refactoring.guru/ru/design-patterns/proxy
*
* Proxy (Заместитель) — это структурный паттерн проектирования, который позволяет подставлять вместо реальных объектов
* специальные объекты-заменители. Эти объекты перехватывают вызовы к оригинальному объекту, позволяя сделать что-то до
* или после передачи вызова оригиналу.
*
* Написать программу, используя паттерн Proxy.
*
* Создайте к коду из примера Facade (./facade.php) кеширующий прокси - то есть прокси, который проверяет был ли
* уже такой запрос и если был - отдает его из своей памяти. Если нет - помещает его в память.
* Реализовывать очистку кеша и слежение за временем доступа не надо.
*
* Решение на 118-й строке
*/
require_once "facade.php";
class Cache
{
private array $storage;
public function addToCache(string $key, $value): ?int
{
if (!isset($this->storage[$key])) {
$this->storage[$key] = $value;
}
return $this->getCacheByKey($key);
}
public function getCacheByKey(string $key): ?int
{
if (!isset($this->storage[$key])) {
return null;
}
return $this->storage[$key];
}
}
class Proxy implements FacadeMathInterface
{
public FacadeMathInterface $serviceFacade;
public Cache $cache;
public function __construct()
{
$this->serviceFacade = new FacadeMath();
$this->cache = new Cache();
}
public function add(int $a, int $b): int
{
$key = "$a + $b";
if (!empty($this->cache->getCacheByKey($key))) {
$result = $this->cache->getCacheByKey($key);
echo PHP_EOL . "Returned from cache key '{$key}' = {$result}" . PHP_EOL;
} else {
$result = $this->serviceFacade->add($a, $b);
$this->cache->addToCache($key, $result);
echo PHP_EOL . "Added to cache key '{$key}' = {$result}" . PHP_EOL;
}
return $result;
}
public function devide(int $a, int $b): int
{
$key = "$a / $b";
if (!empty($this->cache->getCacheByKey($key))) {
$result = $this->cache->getCacheByKey($key);
echo PHP_EOL . "Returned from cache key '{$key}' = {$result}" . PHP_EOL;
} else {
$result = $this->serviceFacade->devide($a, $b);
$this->cache->addToCache($key, $result);
echo PHP_EOL . "Added to cache key '{$key}' = {$result}" . PHP_EOL;
}
return $result;
}
public function multiply(int $a, int $b): int
{
$key = "$a * $b";
if (!empty($this->cache->getCacheByKey($key))) {
$result = $this->cache->getCacheByKey($key);
echo PHP_EOL . "Returned from cache key '{$key}' = {$result}" . PHP_EOL;
} else {
$result = $this->serviceFacade->multiply($a, $b);
$this->cache->addToCache($key, $result);
echo PHP_EOL . "Added to cache key '{$key}' = {$result}" . PHP_EOL;
}
return $result;
}
public function subtract(int $a, int $b): int
{
$key = "$a - $b";
if (!empty($this->cache->getCacheByKey($key))) {
$result = $this->cache->getCacheByKey($key);
echo PHP_EOL . "Returned from cache key '{$key}' = {$result}" . PHP_EOL;
} else {
$result = $this->serviceFacade->multiply($a, $b);
$this->cache->addToCache($key, $result);
echo PHP_EOL . "Added to cache key '{$key}' = {$result}" . PHP_EOL;
}
return $result;
}
}
/** Client code */
$proxy = new Proxy();
$proxy->add(2, 1) . PHP_EOL; // выведет: Added to cache key '2 + 1' = 3
$proxy->add(2, 1) . PHP_EOL; // выведет: Returned from cache key '2 + 1' = 3
echo PHP_EOL;