Last commit for src/library/index_bundle_iterators/IndexBundleIterator.php: 2addb500315b7393a90fe66431d7832b1e7386c7

Adjust copyrights years

Chris Pollett [2024-01-03 21:Jan:rd]
Adjust copyrights years
<?php
/**
 * SeekQuarry/Yioop --
 * Open Source Pure PHP Search Engine, Crawler, and Indexer
 *
 * Copyright (C) 2009 - 2023  Chris Pollett chris@pollett.org
 *
 * LICENSE:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 * END LICENSE
 *
 * @author Chris Pollett chris@pollett.org
 * @license https://www.gnu.org/licenses/ GPL3
 * @link https://www.seekquarry.com/
 * @copyright 2009 - 2023
 * @filesource
 */
namespace seekquarry\yioop\library\index_bundle_iterators;

use seekquarry\yioop\configs as C;
use seekquarry\yioop\library as L;
use seekquarry\yioop\library\PhraseParser;
use seekquarry\yioop\library\CrawlConstants;

/** For toHexString and Yioop constants*/
require_once __DIR__."/../Utility.php";
/**
 * Abstract classed used to model iterating documents indexed in
 * an IndexArchiveBundle or set of such bundles.
 *
 *
 * @author Chris Pollett
 * @see IndexArchiveBundle
 */
abstract class IndexBundleIterator implements CrawlConstants
{
    /**
     * Estimate of the number of documents that this iterator can return
     * @var int
     */
    public $num_docs;
    /**
     * The number of documents already iterated over
     * @var int
     */
    public $seen_docs;
    /**
     * The number of documents in the current block
     * @var int
     */
    public $count_block;
    /**
     * Cache of what currentDocsWithWord returns
     * @var array
     */
    public $pages;
    /**
     * Says whether the value in $this->count_block is up to date
     * @var bool
     */
    public $current_block_fresh;
    /**
     * Number of documents returned for each block (at most)
     * @var int
     */
    public $results_per_block = self::RESULTS_PER_BLOCK;
    /**
     * Default number of documents returned for each block (at most)
     * @var int
     */
    const RESULTS_PER_BLOCK = 200;
    /**
     * Returns the iterators to the first document block that it could iterate
     * over
     */
    abstract function reset();
    /**
     * Forwards the iterator one group of docs
     * @param array $gen_doc_offset a generation, doc_offset pair. If set,
     *     the must be of greater than or equal generation, and if equal the
     *     next block must all have $doc_offsets larger than or equal to
     *     this value
     */
    abstract function advance($gen_doc_offset = null);
    /**
     * Gets the doc_offset and generation for the next document that
     * would be return by this iterator
     *
     * @return mixed an array with the desired document offset
     * and generation; -1 on fail
     */
    abstract function currentGenDocOffsetWithWord();
    /**
     * Hook function used by currentDocsWithWord to return the current block
     * of docs if it is not cached
     *
     * @return mixed doc ids and score if there are docs left, -1 otherwise
     */
     abstract function findDocsWithWord();
    /**
     * Returns a string representation of a plan by which the current iterator
     * finds its results
     *
     * @return string a representation of the current iterator and its
     *      subiterators, useful for determining how a query will be processed
     */
    public function plan()
    {
        $out = " ".get_class($this) . "\n===============\n";
        if (isset($this->word_key)) {
            $out .= "Word Key: " . L\toHexString($this->word_key)."\n";
        }
        if (isset($this->index_name)) {
            $out .= "Index Name: " . $this->index_name . "\n";
        }
        if (isset($this->results_per_block)) {
            $out .= "Results Per Block: " . $this->results_per_block . "\n";
        }
        $out .= "Number of Docs: ".$this->num_docs;
        if (isset($this->index_bundle_iterator)) {
            $out .= "\n   " . str_replace("\n", "\n   ",
                $this->index_bundle_iterator->plan());
        } else if (isset($this->index_bundle_iterators)) {
            $out .= "\nNumber of Child Iterators: " .
                $this->num_iterators . "\n";
            for ($i = 0; $i < $this->num_iterators; $i++) {
                $out .= "\n  Child $i\n  ========\n";
                $out .= "   ". str_replace("\n", "\n    ",
                    $this->index_bundle_iterators[$i]->plan());
            }
        }
        return $out;
    }
    /**
     * Compares two arrays each containing a (generation, offset) pair.
     *
     * @param array $gen_doc1  first ordered pair
     * @param array $gen_doc2  second ordered pair
     * @param int $direction whether the comparison should be done for
     *  a self::ASCEDNING or a self::DESCENDING search
     * @return int -1,0,1 depending on which is bigger
     */
    public function genDocOffsetCmp($gen_doc1, $gen_doc2, $direction =
        self::ASCENDING)
    {
        $diff1 = $gen_doc1[0] - $gen_doc2[0];
        $diff2 = $gen_doc1[1] - $gen_doc2[1];
        if ($diff2 == 0 && $diff1 == $diff2) {
            return 0;
        }
        if ($direction == self::ASCENDING) {
            return ($diff1 != 0) ? $diff1 : $diff2;
        } else {
            return ($diff1 != 0) ? -$diff1 : -$diff2;
        }
    }
    /**
     * Returns the direction of a IndexBundleIterator. Depending on the
     * iterator could be either forward from the start of an index
     * (self::ASCENDING) or backward from the end of the index
     * (self::DESCENDING). For this base class, the function always returns
     * self::ASCENDING, but subclasses might return different values.
     * @return int either CrawlConstants::ASCENDING or
     *  CrawlConstants::DESCENDING
     */
    public function getDirection()
    {
        return self::ASCENDING;
    }
    /**
     * Gets the current block of doc ids and score associated with the
     * this iterators word
     *
     * @return mixed doc ids and score if there are docs left, -1 otherwise
     */
    public function currentDocsWithWord()
    {
        if ($this->current_block_fresh == true) {
            return $this->pages;
        }
        $this->current_block_fresh = true;
        return $this->findDocsWithWord();
    }
    /**
     * Gets the summaries associated with the keys provided the keys
     * can be found in the current block of docs returned by this iterator
     * @param array $keys keys to try to find in the current block of returned
     *     results
     * @return array doc summaries that match provided keys
     */
    public function getCurrentDocsForKeys($keys = null)
    {
        if ($this->current_block_fresh == false) {
            $pages = $this->currentDocsWithWord();
            if (!is_array($pages)) {
                return $pages;
            }
        } else {
            $pages = & $this->pages;
        }
        if ($keys == null) {
            if (is_array($pages)) {
                return $pages;
            } else {
                return null;
            }
        }
        $out_pages = [];
        foreach ($keys as $doc_key) {
            if (!isset($pages[$doc_key])) {
                continue;
            } else {
                $doc_info = $pages[$doc_key];
            }
            if (isset($doc_info[self::SUMMARY_OFFSET]) &&
                isset($doc_info[self::GENERATION])) {
                $out_pages[$doc_key] = $doc_info;
            }
        }
        return $out_pages;
    }
    /**
     * Get the current block of doc summaries for the word iterator and advances
     * the current pointer to the next block of documents. If a doc index is
     * the next block must be of docs after this doc_index
     *
     * @param $doc_offset if set the next block must all have $doc_offsets
     *     equal to or larger than this value
     * @return array doc summaries matching the $this->restrict_phrases
     */
    public function nextDocsWithWord($doc_offset = null)
    {
        $doc_block = $this->getCurrentDocsForKeys();
        if ($doc_block == -1 || !is_array($doc_block) ) {
            return null;
        }
        $this->advance($doc_offset);
        return $doc_block;
    }
    /**
     * Updates the seen_docs count during an advance() call
     */
    public function advanceSeenDocs()
    {
        if ($this->current_block_fresh != true) {
            $doc_block = $this->currentDocsWithWord();
            if ($doc_block == -1 || !is_array($doc_block) ) {
                return;
            }
        }
        $this->current_block_fresh = false;
        $this->seen_docs += $this->count_block;
    }
    /**
     * Sets the value of the result_per_block field. This field controls
     * the maximum number of results that can be returned in one go by
     * currentDocsWithWord()
     *
     * @param int $num the maximum number of results that can be returned by
     *     a block
     */
     public function setResultsPerBlock($num)
     {
        $this->results_per_block = $num;
     }
}
ViewGit