Complex classes like Search 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 Search, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
35 | class Search |
||
36 | { |
||
37 | /** |
||
38 | * If you don’t need to track the total number of hits at all you can improve |
||
39 | * query times by setting this option to false. Defaults to true. |
||
40 | * |
||
41 | * @var bool |
||
42 | */ |
||
43 | private $trackTotalHits; |
||
44 | |||
45 | /** |
||
46 | * To retrieve hits from a certain offset. Defaults to 0. |
||
47 | * |
||
48 | * @var int |
||
49 | */ |
||
50 | private $from; |
||
51 | |||
52 | /** |
||
53 | * The number of hits to return. Defaults to 10. If you do not care about getting some |
||
54 | * hits back but only about the number of matches and/or aggregations, setting the value |
||
55 | * to 0 will help performance. |
||
56 | * |
||
57 | * @var int |
||
58 | */ |
||
59 | private $size; |
||
60 | |||
61 | /** |
||
62 | * Allows to control how the _source field is returned with every hit. By default |
||
63 | * operations return the contents of the _source field unless you have used the |
||
64 | * stored_fields parameter or if the _source field is disabled. |
||
65 | * |
||
66 | * @var bool |
||
67 | */ |
||
68 | private $source; |
||
69 | |||
70 | /** |
||
71 | * Allows to selectively load specific stored fields for each document represented by a search hit. |
||
72 | * |
||
73 | * @var array |
||
74 | */ |
||
75 | private $storedFields; |
||
76 | |||
77 | /** |
||
78 | * Allows to return a script evaluation (based on different fields) for each hit. |
||
79 | * Script fields can work on fields that are not stored, and allow to return custom |
||
80 | * values to be returned (the evaluated value of the script). Script fields can |
||
81 | * also access the actual _source document indexed and extract specific elements |
||
82 | * to be returned from it (can be an "object" type). |
||
83 | * |
||
84 | * @var array |
||
85 | */ |
||
86 | private $scriptFields; |
||
87 | |||
88 | /** |
||
89 | * Allows to return the doc value representation of a field for each hit. Doc value |
||
90 | * fields can work on fields that are not stored. Note that if the fields parameter |
||
91 | * specifies fields without docvalues it will try to load the value from the fielddata |
||
92 | * cache causing the terms for that field to be loaded to memory (cached), which will |
||
93 | * result in more memory consumption. |
||
94 | * |
||
95 | * @var array |
||
96 | */ |
||
97 | private $docValueFields; |
||
98 | |||
99 | /** |
||
100 | * Enables explanation for each hit on how its score was computed. |
||
101 | * |
||
102 | * @var bool |
||
103 | */ |
||
104 | private $explain; |
||
105 | |||
106 | /** |
||
107 | * Returns a version for each search hit. |
||
108 | * |
||
109 | * @var bool |
||
110 | */ |
||
111 | private $version; |
||
112 | |||
113 | /** |
||
114 | * Allows to configure different boost level per index when searching across more |
||
115 | * than one indices. This is very handy when hits coming from one index matter more |
||
116 | * than hits coming from another index (think social graph where each user has an index). |
||
117 | * |
||
118 | * @var array |
||
119 | */ |
||
120 | private $indicesBoost; |
||
121 | |||
122 | /** |
||
123 | * Exclude documents which have a _score less than the minimum specified in min_score. |
||
124 | * |
||
125 | * @var int |
||
126 | */ |
||
127 | private $minScore; |
||
128 | |||
129 | /** |
||
130 | * Pagination of results can be done by using the from and size but the cost becomes |
||
131 | * prohibitive when the deep pagination is reached. The index.max_result_window which |
||
132 | * defaults to 10,000 is a safeguard, search requests take heap memory and time |
||
133 | * proportional to from + size. The Scroll api is recommended for efficient deep |
||
134 | * scrolling but scroll contexts are costly and it is not recommended to use it for |
||
135 | * real time user requests. The search_after parameter circumvents this problem by |
||
136 | * providing a live cursor. The idea is to use the results from the previous page to |
||
137 | * help the retrieval of the next page. |
||
138 | * |
||
139 | * @var array |
||
140 | */ |
||
141 | private $searchAfter; |
||
142 | |||
143 | /** |
||
144 | * URI parameters alongside Request body search. |
||
145 | * |
||
146 | * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/search-uri-request.html |
||
147 | * |
||
148 | * @var array |
||
149 | */ |
||
150 | private $uriParams = []; |
||
151 | |||
152 | /** |
||
153 | * While a search request returns a single “page” of results, the scroll API can be used to retrieve |
||
154 | * large numbers of results (or even all results) from a single search request, in much the same way |
||
155 | * as you would use a cursor on a traditional database. Scrolling is not intended for real time user |
||
156 | * requests, but rather for processing large amounts of data, e.g. in order to reindex the contents |
||
157 | * of one index into a new index with a different configuration. |
||
158 | * |
||
159 | * @var string |
||
160 | */ |
||
161 | private $scroll; |
||
162 | |||
163 | /** |
||
164 | * @var OrderedSerializer |
||
165 | */ |
||
166 | private static $serializer; |
||
167 | |||
168 | /** |
||
169 | * @var SearchEndpointInterface[] |
||
170 | */ |
||
171 | private $endpoints = []; |
||
172 | |||
173 | /** |
||
174 | * Constructor to initialize static properties |
||
175 | */ |
||
176 | public function __construct() |
||
180 | |||
181 | /** |
||
182 | * Wakeup method to initialize static properties |
||
183 | */ |
||
184 | public function __wakeup() |
||
188 | |||
189 | /** |
||
190 | * Initializes the serializer |
||
191 | */ |
||
192 | private function initializeSerializer() |
||
203 | |||
204 | /** |
||
205 | * Destroys search endpoint. |
||
206 | * |
||
207 | * @param string $type Endpoint type. |
||
208 | */ |
||
209 | public function destroyEndpoint($type) |
||
213 | |||
214 | /** |
||
215 | * Adds query to the search. |
||
216 | * |
||
217 | * @param BuilderInterface $query |
||
218 | * @param string $boolType |
||
219 | * @param string $key |
||
220 | * |
||
221 | * @return $this |
||
222 | */ |
||
223 | public function addQuery(BuilderInterface $query, $boolType = BoolQuery::MUST, $key = null) |
||
230 | |||
231 | /** |
||
232 | * Returns endpoint instance. |
||
233 | * |
||
234 | * @param string $type Endpoint type. |
||
235 | * |
||
236 | * @return SearchEndpointInterface |
||
237 | */ |
||
238 | private function getEndpoint($type) |
||
246 | |||
247 | /** |
||
248 | * Returns queries inside BoolQuery instance. |
||
249 | * |
||
250 | * @return BuilderInterface |
||
251 | */ |
||
252 | public function getQueries() |
||
258 | |||
259 | /** |
||
260 | * Sets query endpoint parameters. |
||
261 | * |
||
262 | * @param array $parameters |
||
263 | * |
||
264 | * @return $this |
||
265 | */ |
||
266 | public function setQueryParameters(array $parameters) |
||
272 | |||
273 | /** |
||
274 | * Sets parameters to the endpoint. |
||
275 | * |
||
276 | * @param string $endpointName |
||
277 | * @param array $parameters |
||
278 | */ |
||
279 | public function setEndpointParameters($endpointName, array $parameters) |
||
285 | |||
286 | /** |
||
287 | * Adds a post filter to search. |
||
288 | * |
||
289 | * @param BuilderInterface $filter Filter. |
||
290 | * @param string $boolType Example boolType values: |
||
291 | * - must |
||
292 | * - must_not |
||
293 | * - should. |
||
294 | * @param string $key |
||
295 | * |
||
296 | * @return $this. |
||
297 | */ |
||
298 | public function addPostFilter(BuilderInterface $filter, $boolType = BoolQuery::MUST, $key = null) |
||
306 | |||
307 | /** |
||
308 | * Returns queries inside BoolFilter instance. |
||
309 | * |
||
310 | * @return BuilderInterface |
||
311 | */ |
||
312 | public function getPostFilters() |
||
318 | |||
319 | /** |
||
320 | * Sets post filter endpoint parameters. |
||
321 | * |
||
322 | * @param array $parameters |
||
323 | * |
||
324 | * @return $this |
||
325 | */ |
||
326 | public function setPostFilterParameters(array $parameters) |
||
332 | |||
333 | /** |
||
334 | * Adds aggregation into search. |
||
335 | * |
||
336 | * @param AbstractAggregation $aggregation |
||
337 | * |
||
338 | * @return $this |
||
339 | */ |
||
340 | public function addAggregation(AbstractAggregation $aggregation) |
||
346 | |||
347 | /** |
||
348 | * Returns all aggregations. |
||
349 | * |
||
350 | * @return BuilderInterface[] |
||
351 | */ |
||
352 | public function getAggregations() |
||
356 | |||
357 | /** |
||
358 | * Adds inner hit into search. |
||
359 | * |
||
360 | * @param NestedInnerHit $innerHit |
||
361 | * |
||
362 | * @return $this |
||
363 | */ |
||
364 | public function addInnerHit(NestedInnerHit $innerHit) |
||
370 | |||
371 | /** |
||
372 | * Returns all inner hits. |
||
373 | * |
||
374 | * @return BuilderInterface[] |
||
375 | */ |
||
376 | public function getInnerHits() |
||
380 | |||
381 | /** |
||
382 | * Adds sort to search. |
||
383 | * |
||
384 | * @param BuilderInterface $sort |
||
385 | * |
||
386 | * @return $this |
||
387 | */ |
||
388 | public function addSort(BuilderInterface $sort) |
||
394 | |||
395 | /** |
||
396 | * Returns all set sorts. |
||
397 | * |
||
398 | * @return BuilderInterface[] |
||
399 | */ |
||
400 | public function getSorts() |
||
404 | |||
405 | /** |
||
406 | * Allows to highlight search results on one or more fields. |
||
407 | * |
||
408 | * @param Highlight $highlight |
||
409 | * |
||
410 | * @return $this. |
||
411 | */ |
||
412 | public function addHighlight($highlight) |
||
418 | |||
419 | /** |
||
420 | * Returns highlight builder. |
||
421 | * |
||
422 | * @return BuilderInterface |
||
423 | */ |
||
424 | public function getHighlights() |
||
431 | |||
432 | /** |
||
433 | * Adds suggest into search. |
||
434 | * |
||
435 | * @param BuilderInterface $suggest |
||
436 | * |
||
437 | * @return $this |
||
438 | */ |
||
439 | public function addSuggest(NamedBuilderInterface $suggest) |
||
445 | |||
446 | /** |
||
447 | * Returns all suggests. |
||
448 | * |
||
449 | * @return BuilderInterface[] |
||
450 | */ |
||
451 | public function getSuggests() |
||
455 | |||
456 | /** |
||
457 | * @return int |
||
458 | */ |
||
459 | public function getFrom() |
||
463 | |||
464 | /** |
||
465 | * @param int $from |
||
466 | * @return $this |
||
467 | */ |
||
468 | public function setFrom($from) |
||
473 | |||
474 | /** |
||
475 | * @return bool |
||
476 | */ |
||
477 | public function isTrackTotalHits() |
||
481 | |||
482 | /** |
||
483 | * @param bool $trackTotalHits |
||
484 | * @return $this |
||
485 | */ |
||
486 | public function setTrackTotalHits(bool $trackTotalHits) |
||
491 | |||
492 | /** |
||
493 | * @return int |
||
494 | */ |
||
495 | public function getSize() |
||
499 | |||
500 | /** |
||
501 | * @param int $size |
||
502 | * @return $this |
||
503 | */ |
||
504 | public function setSize($size) |
||
509 | |||
510 | /** |
||
511 | * @return bool |
||
512 | */ |
||
513 | public function isSource() |
||
517 | |||
518 | /** |
||
519 | * @param bool $source |
||
520 | * @return $this |
||
521 | */ |
||
522 | public function setSource($source) |
||
527 | |||
528 | /** |
||
529 | * @return array |
||
530 | */ |
||
531 | public function getStoredFields() |
||
535 | |||
536 | /** |
||
537 | * @param array $storedFields |
||
538 | * @return $this |
||
539 | */ |
||
540 | public function setStoredFields($storedFields) |
||
545 | |||
546 | /** |
||
547 | * @return array |
||
548 | */ |
||
549 | public function getScriptFields() |
||
553 | |||
554 | /** |
||
555 | * @param array $scriptFields |
||
556 | * @return $this |
||
557 | */ |
||
558 | public function setScriptFields($scriptFields) |
||
563 | |||
564 | /** |
||
565 | * @return array |
||
566 | */ |
||
567 | public function getDocValueFields() |
||
571 | |||
572 | /** |
||
573 | * @param array $docValueFields |
||
574 | * @return $this |
||
575 | */ |
||
576 | public function setDocValueFields($docValueFields) |
||
581 | |||
582 | /** |
||
583 | * @return bool |
||
584 | */ |
||
585 | public function isExplain() |
||
589 | |||
590 | /** |
||
591 | * @param bool $explain |
||
592 | * @return $this |
||
593 | */ |
||
594 | public function setExplain($explain) |
||
599 | |||
600 | /** |
||
601 | * @return bool |
||
602 | */ |
||
603 | public function isVersion() |
||
607 | |||
608 | /** |
||
609 | * @param bool $version |
||
610 | * @return $this |
||
611 | */ |
||
612 | public function setVersion($version) |
||
617 | |||
618 | /** |
||
619 | * @return array |
||
620 | */ |
||
621 | public function getIndicesBoost() |
||
625 | |||
626 | /** |
||
627 | * @param array $indicesBoost |
||
628 | * @return $this |
||
629 | */ |
||
630 | public function setIndicesBoost($indicesBoost) |
||
635 | |||
636 | /** |
||
637 | * @return int |
||
638 | */ |
||
639 | public function getMinScore() |
||
643 | |||
644 | /** |
||
645 | * @param int $minScore |
||
646 | * @return $this |
||
647 | */ |
||
648 | public function setMinScore($minScore) |
||
653 | |||
654 | /** |
||
655 | * @return array |
||
656 | */ |
||
657 | public function getSearchAfter() |
||
661 | |||
662 | /** |
||
663 | * @param array $searchAfter |
||
664 | * @return $this |
||
665 | */ |
||
666 | public function setSearchAfter($searchAfter) |
||
671 | |||
672 | /** |
||
673 | * @return string |
||
674 | */ |
||
675 | public function getScroll() |
||
679 | |||
680 | /** |
||
681 | * @param string $scroll |
||
682 | * @return $this |
||
683 | */ |
||
684 | public function setScroll($scroll = '5m') |
||
692 | |||
693 | /** |
||
694 | * @param string $name |
||
695 | * @param string|array|bool $value |
||
696 | * |
||
697 | * @return $this |
||
698 | */ |
||
699 | public function addUriParam($name, $value) |
||
734 | |||
735 | /** |
||
736 | * Returns query url parameters. |
||
737 | * |
||
738 | * @return array |
||
739 | */ |
||
740 | public function getUriParams() |
||
744 | |||
745 | /** |
||
746 | * {@inheritdoc} |
||
747 | */ |
||
748 | public function toArray() |
||
775 | } |
||
776 |
Let’s assume you have a class which uses late-static binding:
The code above will run fine in your PHP runtime. However, if you now create a sub-class and call the
getSomeVariable()
on that sub-class, you will receive a runtime error:In the case above, it makes sense to update
SomeClass
to useself
instead: