Search/Lucene/Search/BooleanExpressionRecognizer.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Search_Lucene  
Subpackage
Search  
Version
$Id$  

\Zend_Search_Lucene_Search_BooleanExpressionRecognizer

Package: Zend_Search_Lucene\Search
Abstract Finite State Machine
Take a look on Wikipedia state machine description: http://en.wikipedia.org/wiki/Finite_state_machine Any type of Transducers (Moore machine or Mealy machine) also may be implemented by using this abstract FSM. process() methods invokes a specified actions which may construct FSM output. Actions may be also used to signal, that we have reached Accept State
Parent(s)
\Zend_Search_Lucene_FSM
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Constants

>VConstant  ST_START = 0
State Machine states
>VConstant  ST_LITERAL = 1
>VConstant  ST_NOT_OPERATOR = 2
>VConstant  ST_AND_OPERATOR = 3
>VConstant  ST_OR_OPERATOR = 4
>VConstant  IN_LITERAL = 0
Input symbols
>VConstant  IN_NOT_OPERATOR = 1
>VConstant  IN_AND_OPERATOR = 2
>VConstant  IN_OR_OPERATOR = 3

Properties

>VPropertyprivatearray $_conjunctions = array()
Set of boolean query conjunctions
Each conjunction is an array of conjunction elements Each conjunction element is presented with two-elements array: array(, ) So, it has a structure: array( array( array(, ), // first literal of first conjuction array(, ), // second literal of first conjuction ... array(, ) ), // end of first conjuction array( array(, ), // first literal of second conjuction array(, ), // second literal of second conjuction ... array(, ) ), // end of second conjuction ... ) // end of structure
Default valuearray()Details
Type
array
>VPropertyprivatearray $_currentConjunction = array()
Current conjuction
Default valuearray()Details
Type
array
>VPropertyprivatemixed $_literal
Current literal
Details
Type
mixed
>VPropertyprivateboolean $_negativeLiteral = false
NOT operator signal
Default valuefalseDetails
Type
boolean

Methods

methodpublic__construct() : void

Object constructor

methodpublicemptyNotOperatorAction() : void

default (omitted) + NOT operator processing

methodpublicemptyOperatorAction() : void

default (omitted) operator processing

methodpublicfinishExpression() : array

Finish an expression and return result

Result is a set of boolean query conjunctions Each conjunction is an array of conjunction elements Each conjunction element is presented with two-elements array: array(, ) So, it has a structure: array( array( array(, ), // first literal of first conjuction array(, ), // second literal of first conjuction ... array(, ) ), // end of first conjuction array( array(, ), // first literal of second conjuction array(, ), // second literal of second conjuction ... array(, ) ), // end of second conjuction ... ) // end of structure
Returns
TypeDescription
array
Throws
ExceptionDescription
\Zend_Search_Lucene_Exception
methodpublicliteralAction() : void

Literal processing

methodpublicnotOperatorAction() : void

NOT operator processing

methodpublicorOperatorAction() : void

OR operator processing Close current conjunction

methodpublicprocessLiteral( $literal) : void

Process expression literal.

Parameters
NameTypeDescription
$literal
methodpublicprocessOperator(integer $operator) : void

Process next operator.

Operators are defined by class constants: IN_AND_OPERATOR, IN_OR_OPERATOR and IN_NOT_OPERATOR
Parameters
NameTypeDescription
$operatorinteger
Documentation was generated by phpDocumentor 2.2.0 .