Package com.yahoo.prelude.query.parser
Class AllParser
java.lang.Object
com.yahoo.prelude.query.parser.AbstractParser
com.yahoo.prelude.query.parser.AllParser
- All Implemented Interfaces:
CustomParser,Parser
- Direct Known Subclasses:
WebParser
Parser for queries of type all and weakAnd.
- Author:
- Steinar Knutsen, bratseth
-
Field Summary
Fields inherited from class com.yahoo.prelude.query.parser.AbstractParser
braceLevelURL, defaultIndex, environment, indexFacts, language, submodes, tokens -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected CompositeItemaddAnd(Item item, CompositeItem parent) protected NotItemprotected OrItemprotected ItemanyItems(boolean topLevel) A collection of one or more items.protected ItemcombineItems(Item topLevelItem, Item item) Returns the top level item resulting from combining the given top level item and the new item.protected Itemprotected ItemhandleComposite(boolean topLevel) indexableItem(String indexPath) Returns an item and whether it had an explicit index ('indexname:' prefix).protected Itemprotected Itemprotected Itemprotected Itemprotected voidsetSubmodeFromIndex(String indexName, IndexFacts.Session indexFacts) Sets the submodes used for url parsing.protected final Itemprotected ItemReturns a WordItem if this is a non CJK query, a WordItem or SegmentItem if this is a CJK query, null if the current item is not a wordMethods inherited from class com.yahoo.prelude.query.parser.AbstractParser
newComposite, normalize, parse, parse, segment, setState, simplifyPhrases, tokenizeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.yahoo.prelude.query.parser.CustomParser
parse
-
Constructor Details
-
AllParser
Creates an all/weakAnd parser.
-
-
Method Details
-
parseItems
- Specified by:
parseItemsin classAbstractParser
-
parseItemsBody
-
simplifyUnnecessaryComposites
-
addAnd
-
addOr
-
addNot
-
negativeItem
-
combineItems
Returns the top level item resulting from combining the given top level item and the new item. This implements most of the weird transformation rules of the parser. -
handleComposite
-
anyItems
A collection of one or more items. More items are collected in the default composite - or. If there's a explicit composite and some other terms, a rank terms combines them -
positiveItem
-
compositeItem
-
setSubmodeFromIndex
Sets the submodes used for url parsing. Override this to influence when such submodes are used. -
indexableItem
Returns an item and whether it had an explicit index ('indexname:' prefix).- Parameters:
indexPath- the index name prefix this is in the context of, only non-empty if this is inside a sameElement. The path includes the index name and the trailing dot.- Returns:
- an item and whether it has an explicit index, or a Pair with the first element null if none
-
word
Returns a WordItem if this is a non CJK query, a WordItem or SegmentItem if this is a CJK query, null if the current item is not a word- Parameters:
quoted- whether this token is inside quotes
-