_boost; } /** * Sets the boost for this query clause to $boost. * * @param float $boost */ public function setBoost($boost) { $this->_boost = $boost; } /** * Score specified document * * @param integer $docId * @param Zend_Search_Lucene_Interface $reader * @return float */ abstract public function score($docId, Zend_Search_Lucene_Interface $reader); /** * Get document ids likely matching the query * * It's an array with document ids as keys (performance considerations) * * @return array */ abstract public function matchedDocs(); /** * Execute query in context of index reader * It also initializes necessary internal structures * * Query specific implementation * * @param Zend_Search_Lucene_Interface $reader * @param Zend_Search_Lucene_Index_DocsFilter|null $docsFilter */ abstract public function execute(Zend_Search_Lucene_Interface $reader, $docsFilter = null); /** * Constructs an appropriate Weight implementation for this query. * * @param Zend_Search_Lucene_Interface $reader * @return Zend_Search_Lucene_Search_Weight */ abstract public function createWeight(Zend_Search_Lucene_Interface $reader); /** * Constructs an initializes a Weight for a _top-level_query_. * * @param Zend_Search_Lucene_Interface $reader */ protected function _initWeight(Zend_Search_Lucene_Interface $reader) { // Check, that it's a top-level query and query weight is not initialized yet. if ($this->_weight !== null) { return $this->_weight; } $this->createWeight($reader); $sum = $this->_weight->sumOfSquaredWeights(); $queryNorm = $reader->getSimilarity()->queryNorm($sum); $this->_weight->normalize($queryNorm); } /** * Re-write query into primitive queries in the context of specified index * * @param Zend_Search_Lucene_Interface $index * @return Zend_Search_Lucene_Search_Query */ abstract public function rewrite(Zend_Search_Lucene_Interface $index); /** * Optimize query in the context of specified index * * @param Zend_Search_Lucene_Interface $index * @return Zend_Search_Lucene_Search_Query */ abstract public function optimize(Zend_Search_Lucene_Interface $index); /** * Reset query, so it can be reused within other queries or * with other indeces */ public function reset() { $this->_weight = null; } /** * Print a query * * @return string */ abstract public function __toString(); /** * Return query terms * * @return array */ abstract public function getQueryTerms(); /** * Query specific matches highlighting * * @param Zend_Search_Lucene_Search_Highlighter_Interface $highlighter Highlighter object (also contains doc for highlighting) */ abstract protected function _highlightMatches(Zend_Search_Lucene_Search_Highlighter_Interface $highlighter); /** * Highlight matches in $inputHTML * * @param string $inputHTML * @param string $defaultEncoding HTML encoding, is used if it's not specified using Content-type HTTP-EQUIV meta tag. * @param Zend_Search_Lucene_Search_Highlighter_Interface|null $highlighter * @return string */ public function highlightMatches($inputHTML, $defaultEncoding = '', $highlighter = null) { if ($highlighter === null) { include_once 'Zend/Search/Lucene/Search/Highlighter/Default.php'; $highlighter = new Zend_Search_Lucene_Search_Highlighter_Default(); } /** * Zend_Search_Lucene_Document_Html */ include_once 'Zend/Search/Lucene/Document/Html.php'; $doc = Zend_Search_Lucene_Document_Html::loadHTML($inputHTML, false, $defaultEncoding); $highlighter->setDocument($doc); $this->_highlightMatches($highlighter); return $doc->getHTML(); } /** * Highlight matches in $inputHtmlFragment and return it (without HTML header and body tag) * * @param string $inputHtmlFragment * @param string $encoding Input HTML string encoding * @param Zend_Search_Lucene_Search_Highlighter_Interface|null $highlighter * @return string */ public function htmlFragmentHighlightMatches($inputHtmlFragment, $encoding = 'UTF-8', $highlighter = null) { if ($highlighter === null) { include_once 'Zend/Search/Lucene/Search/Highlighter/Default.php'; $highlighter = new Zend_Search_Lucene_Search_Highlighter_Default(); } $inputHTML = '' . iconv($encoding, 'UTF-8//IGNORE', $inputHtmlFragment) . ''; /** * Zend_Search_Lucene_Document_Html */ include_once 'Zend/Search/Lucene/Document/Html.php'; $doc = Zend_Search_Lucene_Document_Html::loadHTML($inputHTML); $highlighter->setDocument($doc); $this->_highlightMatches($highlighter); return $doc->getHtmlBody(); } }