| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
- namespace Elasticsearch\Helper\Iterators;
- use ElasticSearch\Client;
- use Iterator;
- /**
- * Class SearchResponseIterator
- *
- * @category Elasticsearch
- * @package Elasticsearch\Helper\Iterators
- * @author Arturo Mejia <arturo.mejia@kreatetechnology.com>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- * @see Iterator
- */
- class SearchResponseIterator implements Iterator
- {
- /**
- * @var Client
- */
- private $client;
- /**
- * @var array
- */
- private $params;
- /**
- * @var int
- */
- private $current_key;
- /**
- * @var array
- */
- private $current_scrolled_response;
- /**
- * @var string
- */
- private $scroll_id;
- /**
- * @var duration
- */
- private $scroll_ttl;
- /**
- * Constructor
- *
- * @param Client $client
- * @param array $params Associative array of parameters
- * @see Client::search()
- */
- public function __construct(Client $client, array $search_params)
- {
- $this->client = $client;
- $this->params = $search_params;
- if (isset($search_params['scroll'])) {
- $this->scroll_ttl = $search_params['scroll'];
- }
- }
- /**
- * Destructor
- */
- public function __destruct()
- {
- $this->clearScroll();
- }
- /**
- * Sets the time to live duration of a scroll window
- *
- * @param string $time_to_live
- * @return $this
- */
- public function setScrollTimeout($time_to_live)
- {
- $this->scroll_ttl = $time_to_live;
- return $this;
- }
- /**
- * Clears the current scroll window if there is a scroll_id stored
- *
- * @return void
- */
- private function clearScroll()
- {
- if (!empty($this->scroll_id)) {
- $this->client->clearScroll(
- array(
- 'scroll_id' => $this->scroll_id,
- 'client' => array(
- 'ignore' => 404
- )
- )
- );
- $this->scroll_id = null;
- }
- }
- /**
- * Rewinds the iterator by performing the initial search.
- *
- *
- * @return void
- * @see Iterator::rewind()
- */
- public function rewind()
- {
- $this->clearScroll();
- $this->current_key = 0;
- $this->current_scrolled_response = $this->client->search($this->params);
- $this->scroll_id = $this->current_scrolled_response['_scroll_id'];
- }
- /**
- * Fetches every "page" after the first one using the lastest "scroll_id"
- *
- * @return void
- * @see Iterator::next()
- */
- public function next()
- {
- if ($this->current_key !== 0) {
- $this->current_scrolled_response = $this->client->scroll(
- array(
- 'scroll_id' => $this->scroll_id,
- 'scroll' => $this->scroll_ttl
- )
- );
- $this->scroll_id = $this->current_scrolled_response['_scroll_id'];
- }
- $this->current_key++;
- }
- /**
- * Returns a boolean value indicating if the current page is valid or not
- *
- * @return bool
- * @see Iterator::valid()
- */
- public function valid()
- {
- return isset($this->current_scrolled_response['hits']['hits'][0]);
- }
- /**
- * Returns the current "page"
- *
- * @return array
- * @see Iterator::current()
- */
- public function current()
- {
- return $this->current_scrolled_response;
- }
- /**
- * Returns the current "page number" of the current "page"
- *
- * @return int
- * @see Iterator::key()
- */
- public function key()
- {
- return $this->current_key;
- }
- }
|