Total Complexity | 55 |
Total Lines | 362 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
Complex classes like PredisProfilerStorage often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use PredisProfilerStorage, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | class PredisProfilerStorage implements ProfilerStorageInterface |
||
26 | { |
||
27 | const TOKEN_PREFIX = 'sf_profiler_'; |
||
28 | |||
29 | const REDIS_OPT_SERIALIZER = 1; |
||
30 | const REDIS_OPT_PREFIX = 2; |
||
31 | const REDIS_SERIALIZER_NONE = 0; |
||
32 | const REDIS_SERIALIZER_PHP = 1; |
||
33 | |||
34 | protected $dsn; |
||
35 | protected $lifetime; |
||
36 | |||
37 | /** |
||
38 | * @var \Predis\Client |
||
|
|||
39 | */ |
||
40 | private $redis; |
||
41 | |||
42 | /** |
||
43 | * Constructor. |
||
44 | * |
||
45 | * @param string $dsn A data source name |
||
46 | * @param string $username Not used |
||
47 | * @param string $password Not used |
||
48 | * @param int $lifetime The lifetime to use for the purge |
||
49 | */ |
||
50 | public function __construct($dsn, $username = '', $password = '', $lifetime = 86400) |
||
51 | { |
||
52 | $this->dsn = $dsn; |
||
53 | $this->lifetime = (int) $lifetime; |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function find($ip, $url, $limit, $method, $start = null, $end = null) |
||
60 | { |
||
61 | $indexName = $this->getIndexName(); |
||
62 | |||
63 | if (!$indexContent = $this->getValue($indexName, self::REDIS_SERIALIZER_NONE)) { |
||
64 | return array(); |
||
65 | } |
||
66 | |||
67 | $profileList = array_reverse(explode("\n", $indexContent)); |
||
68 | $result = array(); |
||
69 | |||
70 | foreach ($profileList as $item) { |
||
71 | if (0 === $limit) { |
||
72 | break; |
||
73 | } |
||
74 | |||
75 | if ('' == $item) { |
||
76 | continue; |
||
77 | } |
||
78 | |||
79 | $values = explode("\t", $item, 7); |
||
80 | list($itemToken, $itemIp, $itemMethod, $itemUrl, $itemTime, $itemParent) = $values; |
||
81 | $statusCode = isset($values[6]) ? $values[6] : null; |
||
82 | |||
83 | $itemTime = (int) $itemTime; |
||
84 | |||
85 | if ($ip && false === strpos($itemIp, $ip) || $url && false === strpos($itemUrl, $url) || $method && false === strpos($itemMethod, $method)) { |
||
86 | continue; |
||
87 | } |
||
88 | |||
89 | if (!empty($start) && $itemTime < $start) { |
||
90 | continue; |
||
91 | } |
||
92 | |||
93 | if (!empty($end) && $itemTime > $end) { |
||
94 | continue; |
||
95 | } |
||
96 | |||
97 | $result[] = array( |
||
98 | 'token' => $itemToken, |
||
99 | 'ip' => $itemIp, |
||
100 | 'method' => $itemMethod, |
||
101 | 'url' => $itemUrl, |
||
102 | 'time' => $itemTime, |
||
103 | 'parent' => $itemParent, |
||
104 | 'status_code' => $statusCode, |
||
105 | ); |
||
106 | --$limit; |
||
107 | } |
||
108 | |||
109 | return $result; |
||
110 | } |
||
111 | |||
112 | /** |
||
113 | * {@inheritdoc} |
||
114 | */ |
||
115 | public function purge() |
||
116 | { |
||
117 | // delete only items from index |
||
118 | $indexName = $this->getIndexName(); |
||
119 | |||
120 | $indexContent = $this->getValue($indexName, self::REDIS_SERIALIZER_NONE); |
||
121 | |||
122 | if (!$indexContent) { |
||
123 | return false; |
||
124 | } |
||
125 | |||
126 | $profileList = explode("\n", $indexContent); |
||
127 | |||
128 | $result = array(); |
||
129 | |||
130 | foreach ($profileList as $item) { |
||
131 | if ('' == $item) { |
||
132 | continue; |
||
133 | } |
||
134 | |||
135 | if (false !== $pos = strpos($item, "\t")) { |
||
136 | $result[] = $this->getItemName(substr($item, 0, $pos)); |
||
137 | } |
||
138 | } |
||
139 | |||
140 | $result[] = $indexName; |
||
141 | |||
142 | return $this->delete($result); |
||
143 | } |
||
144 | |||
145 | /** |
||
146 | * {@inheritdoc} |
||
147 | */ |
||
148 | public function read($token) |
||
149 | { |
||
150 | if (empty($token)) { |
||
151 | return false; |
||
152 | } |
||
153 | |||
154 | $profile = $this->getValue($this->getItemName($token), self::REDIS_SERIALIZER_PHP); |
||
155 | |||
156 | if (false !== $profile) { |
||
157 | $profile = $this->createProfileFromData($token, $profile); |
||
158 | } |
||
159 | |||
160 | return $profile; |
||
161 | } |
||
162 | |||
163 | /** |
||
164 | * {@inheritdoc} |
||
165 | */ |
||
166 | public function write(Profile $profile) |
||
167 | { |
||
168 | $data = array( |
||
169 | 'token' => $profile->getToken(), |
||
170 | 'parent' => $profile->getParentToken(), |
||
171 | 'children' => array_map(function ($p) { |
||
172 | return $p->getToken(); |
||
173 | }, $profile->getChildren()), |
||
174 | 'data' => $profile->getCollectors(), |
||
175 | 'ip' => $profile->getIp(), |
||
176 | 'method' => $profile->getMethod(), |
||
177 | 'url' => $profile->getUrl(), |
||
178 | 'time' => $profile->getTime(), |
||
179 | ); |
||
180 | |||
181 | $profileIndexed = false !== $this->getValue($this->getItemName($profile->getToken())); |
||
182 | |||
183 | if ($this->setValue($this->getItemName($profile->getToken()), $data, $this->lifetime, self::REDIS_SERIALIZER_PHP)) { |
||
184 | if (!$profileIndexed) { |
||
185 | // Add to index |
||
186 | $indexName = $this->getIndexName(); |
||
187 | |||
188 | $indexRow = implode("\t", array( |
||
189 | $profile->getToken(), |
||
190 | $profile->getIp(), |
||
191 | $profile->getMethod(), |
||
192 | $profile->getUrl(), |
||
193 | $profile->getTime(), |
||
194 | $profile->getParentToken(), |
||
195 | $profile->getStatusCode(), |
||
196 | ))."\n"; |
||
197 | |||
198 | return $this->appendValue($indexName, $indexRow, $this->lifetime); |
||
199 | } |
||
200 | |||
201 | return true; |
||
202 | } |
||
203 | |||
204 | return false; |
||
205 | } |
||
206 | |||
207 | /** |
||
208 | * Internal convenience method that returns the instance of Redis. |
||
209 | * |
||
210 | * @throws \RuntimeException |
||
211 | * |
||
212 | * @return \Redis |
||
213 | */ |
||
214 | protected function getRedis() |
||
215 | { |
||
216 | if (null === $this->redis) { |
||
217 | $data = parse_url($this->dsn); |
||
218 | |||
219 | if (false === $data || !isset($data['scheme']) || 'redis' !== $data['scheme'] || !isset($data['host']) || !isset($data['port'])) { |
||
220 | throw new \RuntimeException(sprintf('Please check your configuration. You are trying to use Redis with an invalid dsn "%s". The minimal expected format is "redis://[host]:port".', $this->dsn)); |
||
221 | } |
||
222 | |||
223 | if (!class_exists('\Predis\Client')) { |
||
224 | throw new \RuntimeException('PredisProfilerStorage requires that the predis is installed.'); |
||
225 | } |
||
226 | |||
227 | $redis = new \Predis\Client($this->dsn, array('prefix' => self::TOKEN_PREFIX)); |
||
228 | |||
229 | $this->redis = $redis; |
||
230 | } |
||
231 | |||
232 | return $this->redis; |
||
233 | } |
||
234 | |||
235 | /** |
||
236 | * Set instance of the Redis. |
||
237 | * |
||
238 | * @param \Redis $redis |
||
239 | */ |
||
240 | public function setRedis($redis) |
||
241 | { |
||
242 | $this->redis = $redis; |
||
243 | } |
||
244 | |||
245 | private function createProfileFromData($token, $data, $parent = null) |
||
246 | { |
||
247 | $profile = new Profile($token); |
||
248 | $profile->setIp($data['ip']); |
||
249 | $profile->setMethod($data['method']); |
||
250 | $profile->setUrl($data['url']); |
||
251 | $profile->setTime($data['time']); |
||
252 | $profile->setCollectors($data['data']); |
||
253 | |||
254 | if (!$parent && $data['parent']) { |
||
255 | $parent = $this->read($data['parent']); |
||
256 | } |
||
257 | |||
258 | if ($parent) { |
||
259 | $profile->setParent($parent); |
||
260 | } |
||
261 | |||
262 | foreach ($data['children'] as $token) { |
||
263 | if (!$token) { |
||
264 | continue; |
||
265 | } |
||
266 | |||
267 | if (!$childProfileData = $this->getValue($this->getItemName($token), self::REDIS_SERIALIZER_PHP)) { |
||
268 | continue; |
||
269 | } |
||
270 | |||
271 | $profile->addChild($this->createProfileFromData($token, $childProfileData, $profile)); |
||
272 | } |
||
273 | |||
274 | return $profile; |
||
275 | } |
||
276 | |||
277 | /** |
||
278 | * Gets the item name. |
||
279 | * |
||
280 | * @param string $token |
||
281 | * |
||
282 | * @return string |
||
283 | */ |
||
284 | private function getItemName($token) |
||
285 | { |
||
286 | $name = $token; |
||
287 | |||
288 | if ($this->isItemNameValid($name)) { |
||
289 | return $name; |
||
290 | } |
||
291 | |||
292 | return false; |
||
293 | } |
||
294 | |||
295 | /** |
||
296 | * Gets the name of the index. |
||
297 | * |
||
298 | * @return string |
||
299 | */ |
||
300 | private function getIndexName() |
||
301 | { |
||
302 | $name = 'index'; |
||
303 | |||
304 | if ($this->isItemNameValid($name)) { |
||
305 | return $name; |
||
306 | } |
||
307 | |||
308 | return false; |
||
309 | } |
||
310 | |||
311 | private function isItemNameValid($name) |
||
312 | { |
||
313 | $length = strlen($name); |
||
314 | |||
315 | if ($length > 2147483648) { |
||
316 | throw new \RuntimeException(sprintf('The Redis item key "%s" is too long (%s bytes). Allowed maximum size is 2^31 bytes.', $name, $length)); |
||
317 | } |
||
318 | |||
319 | return true; |
||
320 | } |
||
321 | |||
322 | /** |
||
323 | * Retrieves an item from the Redis server. |
||
324 | * |
||
325 | * @param string $key |
||
326 | * @param int $serializer |
||
327 | * |
||
328 | * @return mixed |
||
329 | */ |
||
330 | private function getValue($key, $serializer = self::REDIS_SERIALIZER_NONE) |
||
331 | { |
||
332 | $redis = $this->getRedis(); |
||
333 | |||
334 | return unserialize($redis->get($key), array('allowed_classes' => true)); |
||
335 | } |
||
336 | |||
337 | /** |
||
338 | * Stores an item on the Redis server under the specified key. |
||
339 | * |
||
340 | * @param string $key |
||
341 | * @param mixed $value |
||
342 | * @param int $expiration |
||
343 | * @param int $serializer |
||
344 | * |
||
345 | * @return bool |
||
346 | */ |
||
347 | private function setValue($key, $value, $expiration = 0, $serializer = self::REDIS_SERIALIZER_NONE) |
||
348 | { |
||
349 | $redis = $this->getRedis(); |
||
350 | |||
351 | return $redis->setex($key, $expiration, serialize($value)); |
||
352 | } |
||
353 | |||
354 | /** |
||
355 | * Appends data to an existing item on the Redis server. |
||
356 | * |
||
357 | * @param string $key |
||
358 | * @param string $value |
||
359 | * @param int $expiration |
||
360 | * |
||
361 | * @return bool |
||
362 | */ |
||
363 | private function appendValue($key, $value, $expiration = 0) |
||
375 | } |
||
376 | |||
377 | /** |
||
378 | * Removes the specified keys. |
||
379 | * |
||
380 | * @param array $keys |
||
381 | * |
||
382 | * @return bool |
||
383 | */ |
||
384 | private function delete(array $keys) |
||
385 | { |
||
387 | } |
||
388 | } |
||
389 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths