1
|
|
|
<?php |
2
|
|
|
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace EasyDictionary; |
6
|
|
|
|
7
|
|
|
use EasyDictionary\Interfaces\DataProviderInterface; |
8
|
|
|
use EasyDictionary\Interfaces\DictionaryInterface; |
9
|
|
|
use Psr\SimpleCache\CacheInterface; |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* Class AbstractDictionary |
13
|
|
|
* @package EasyDictionary |
|
|
|
|
14
|
|
|
*/ |
|
|
|
|
15
|
|
|
abstract class AbstractDictionary implements DictionaryInterface |
16
|
|
|
{ |
17
|
|
|
/** |
|
|
|
|
18
|
|
|
* @var string |
19
|
|
|
*/ |
20
|
|
|
protected $name = ''; |
21
|
|
|
|
22
|
|
|
/** |
|
|
|
|
23
|
|
|
* @var DataProviderInterface |
24
|
|
|
*/ |
25
|
|
|
protected $dataProvider = null; |
26
|
|
|
|
27
|
|
|
/** |
|
|
|
|
28
|
|
|
* @var callable |
29
|
|
|
*/ |
30
|
|
|
protected $view = null; |
31
|
|
|
|
32
|
|
|
/** |
|
|
|
|
33
|
|
|
* @var \Psr\SimpleCache\CacheInterface |
34
|
|
|
*/ |
35
|
|
|
protected $cache = null; |
36
|
|
|
|
37
|
|
|
/** |
|
|
|
|
38
|
|
|
* @var int |
39
|
|
|
*/ |
40
|
|
|
protected $cacheTTL = 0; |
41
|
|
|
|
42
|
|
|
/** |
|
|
|
|
43
|
|
|
* @var iterable |
44
|
|
|
*/ |
45
|
|
|
protected $data = []; |
46
|
|
|
|
47
|
|
|
/** |
|
|
|
|
48
|
|
|
* @var array |
49
|
|
|
*/ |
50
|
|
|
protected $searchFields = []; |
51
|
|
|
|
52
|
|
|
/** |
|
|
|
|
53
|
|
|
* @var bool |
54
|
|
|
*/ |
55
|
|
|
protected $dataLoaded = false; |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* AbstractDictionary constructor. |
59
|
|
|
* @param string $name |
|
|
|
|
60
|
|
|
*/ |
61
|
|
|
public function __construct(string $name = '') |
62
|
|
|
{ |
63
|
|
|
$this->setName($name); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
/** |
|
|
|
|
67
|
|
|
* @param callable|null $view |
|
|
|
|
68
|
|
|
* @return $this |
|
|
|
|
69
|
|
|
*/ |
70
|
|
|
public function setDefaultView(callable $view = null) |
71
|
|
|
{ |
72
|
|
|
$this->view = $view; |
73
|
|
|
|
74
|
|
|
return $this; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
/** |
|
|
|
|
78
|
|
|
* @return null|DataProviderInterface |
79
|
|
|
*/ |
80
|
|
|
public function getDataProvider(): ?DataProviderInterface |
81
|
|
|
{ |
82
|
|
|
return $this->dataProvider; |
83
|
|
|
} |
84
|
|
|
|
85
|
|
|
/** |
|
|
|
|
86
|
|
|
* @param DataProviderInterface $provider |
|
|
|
|
87
|
|
|
* @return $this |
|
|
|
|
88
|
|
|
*/ |
89
|
|
|
public function setDataProvider(DataProviderInterface $provider) |
90
|
|
|
{ |
91
|
|
|
$this->dataProvider = $provider; |
92
|
|
|
|
93
|
|
|
return $this; |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
/** |
|
|
|
|
97
|
|
|
* @return \Iterator |
98
|
|
|
*/ |
99
|
|
|
public function getIterator(): iterable |
100
|
|
|
{ |
101
|
|
|
$view = $this->getDefaultView(); |
102
|
|
|
|
103
|
|
|
if (is_null($view)) { |
104
|
|
|
foreach ($this->getData() as $key => $item) { |
105
|
|
|
yield $key => $item; |
106
|
|
|
} |
107
|
|
|
} else { |
108
|
|
|
yield from $this->withView($view); |
109
|
|
|
} |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
/** |
|
|
|
|
113
|
|
|
* @return callable|null |
114
|
|
|
*/ |
115
|
|
|
public function getDefaultView(): ?callable |
116
|
|
|
{ |
117
|
|
|
return $this->view; |
118
|
|
|
} |
119
|
|
|
|
120
|
|
|
/** |
|
|
|
|
121
|
|
|
* @return mixed |
122
|
|
|
*/ |
123
|
|
|
public function getData(): iterable |
124
|
|
|
{ |
125
|
|
|
if (false === $this->dataLoaded) { |
126
|
|
|
$cache = $this->getCache(); |
127
|
|
|
|
128
|
|
|
if (is_null($cache)) { |
129
|
|
|
$this->data = $this->loadData(); |
130
|
|
|
} else { |
131
|
|
|
$key = static::class . '_' . $this->getName(); |
132
|
|
|
|
133
|
|
|
try { |
134
|
|
|
if (!($this->data = $cache->get($key, []))) { |
135
|
|
|
$this->data = $this->loadData(); |
136
|
|
|
$cache->set($key, $this->data, $this->cacheTTL); |
137
|
|
|
} |
138
|
|
|
} catch (\Psr\SimpleCache\InvalidArgumentException $e) { |
139
|
|
|
$this->data = []; |
|
|
|
|
140
|
|
|
} |
141
|
|
|
} |
142
|
|
|
|
143
|
|
|
$this->dataLoaded = true; |
144
|
|
|
} |
145
|
|
|
|
146
|
|
|
return $this->data; |
147
|
|
|
} |
148
|
|
|
|
149
|
|
|
/** |
|
|
|
|
150
|
|
|
* @return CacheInterface |
151
|
|
|
*/ |
152
|
|
|
public function getCache(): ?CacheInterface |
153
|
|
|
{ |
154
|
|
|
return $this->cache; |
155
|
|
|
} |
156
|
|
|
|
157
|
|
|
/** |
|
|
|
|
158
|
|
|
* @param CacheInterface $cache |
|
|
|
|
159
|
|
|
* @param int $ttl |
|
|
|
|
160
|
|
|
* @return $this |
|
|
|
|
161
|
|
|
*/ |
162
|
|
|
public function setCache(CacheInterface $cache, int $ttl = 3600) |
163
|
|
|
{ |
164
|
|
|
$this->cache = $cache; |
165
|
|
|
$this->cacheTTL = $ttl; |
166
|
|
|
|
167
|
|
|
return $this; |
168
|
|
|
} |
169
|
|
|
|
170
|
|
|
/** |
|
|
|
|
171
|
|
|
* @return iterable |
172
|
|
|
*/ |
173
|
|
|
abstract protected function loadData(): iterable; |
174
|
|
|
|
175
|
|
|
/** |
|
|
|
|
176
|
|
|
* @return string |
177
|
|
|
*/ |
178
|
|
|
public function getName(): string |
179
|
|
|
{ |
180
|
|
|
return $this->name; |
181
|
|
|
} |
182
|
|
|
|
183
|
|
|
/** |
|
|
|
|
184
|
|
|
* @param string $name |
|
|
|
|
185
|
|
|
* @return self |
|
|
|
|
186
|
|
|
*/ |
187
|
|
|
public function setName(string $name) |
188
|
|
|
{ |
189
|
|
|
$this->name = $name; |
190
|
|
|
|
191
|
|
|
return $this; |
|
|
|
|
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
/** |
|
|
|
|
195
|
|
|
* @param callable $callable |
|
|
|
|
196
|
|
|
* @return \Generator |
|
|
|
|
197
|
|
|
*/ |
198
|
|
|
public function withView(callable $callable = null): iterable |
199
|
|
|
{ |
200
|
|
|
if (is_callable($callable)) { |
201
|
|
|
yield from call_user_func($callable, $this->getData()); |
202
|
|
|
} else { |
203
|
|
|
yield from $this->getIterator(); |
204
|
|
|
} |
205
|
|
|
} |
206
|
|
|
|
207
|
|
|
/** |
|
|
|
|
208
|
|
|
* @return int |
209
|
|
|
*/ |
210
|
|
|
public function count(): int |
211
|
|
|
{ |
212
|
|
|
return count($this->getData()); |
213
|
|
|
} |
214
|
|
|
|
215
|
|
|
/** |
|
|
|
|
216
|
|
|
* @param string $pattern |
|
|
|
|
217
|
|
|
* @param bool $strict |
|
|
|
|
218
|
|
|
* @return iterable |
|
|
|
|
219
|
|
|
*/ |
220
|
|
|
public function search(string $pattern, bool $strict = false): iterable |
221
|
|
|
{ |
222
|
|
|
$data = []; |
223
|
|
|
$searchData = []; |
224
|
|
|
$searchFields = array_filter($this->getSearchFields($strict)); |
225
|
|
|
foreach ($this as $key => $value) { |
226
|
|
|
$data[$key] = $value; |
227
|
|
|
|
228
|
|
|
if (is_array($value)) { |
229
|
|
|
$searchData[$key] = (string)$key . ' ' . |
230
|
|
|
join(' ', empty($searchFields) ? $value : array_intersect_key($value, $searchFields)); |
231
|
|
|
} else { |
232
|
|
|
$searchData[$key] = (string)$key . ' ' . (string)$value; |
233
|
|
|
} |
234
|
|
|
} |
235
|
|
|
|
236
|
|
|
return array_intersect_key($data, preg_grep($pattern, $searchData)); |
|
|
|
|
237
|
|
|
} |
238
|
|
|
|
239
|
|
|
/** |
|
|
|
|
240
|
|
|
* @param bool $strict |
|
|
|
|
241
|
|
|
* @return array |
|
|
|
|
242
|
|
|
*/ |
243
|
|
|
public function getSearchFields(bool $strict = false): array |
244
|
|
|
{ |
245
|
|
|
return true === $strict ? array_filter($this->searchFields) : $this->searchFields; |
246
|
|
|
} |
247
|
|
|
|
248
|
|
|
/** |
|
|
|
|
249
|
|
|
* @param array $searchFields |
|
|
|
|
250
|
|
|
* @return $this |
|
|
|
|
251
|
|
|
*/ |
252
|
|
|
public function setSearchFields(array $searchFields) |
253
|
|
|
{ |
254
|
|
|
$this->searchFields = $searchFields; |
255
|
|
|
|
256
|
|
|
return $this; |
257
|
|
|
} |
258
|
|
|
} |
259
|
|
|
|