pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / processors / MultiTermRewriteMethodProcessor.java
1 package org.apache.lucene.queryParser.standard.processors;
2
3 /**
4  * Licensed to the Apache Software Foundation (ASF) under one or more
5  * contributor license agreements.  See the NOTICE file distributed with
6  * this work for additional information regarding copyright ownership.
7  * The ASF licenses this file to You under the Apache License, Version 2.0
8  * (the "License"); you may not use this file except in compliance with
9  * the License.  You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 import java.util.List;
21
22 import org.apache.lucene.queryParser.core.nodes.ParametricRangeQueryNode;
23 import org.apache.lucene.queryParser.core.nodes.QueryNode;
24 import org.apache.lucene.queryParser.core.processors.QueryNodeProcessorImpl;
25 import org.apache.lucene.queryParser.standard.config.StandardQueryConfigHandler.ConfigurationKeys;
26 import org.apache.lucene.queryParser.standard.nodes.AbstractRangeQueryNode;
27 import org.apache.lucene.queryParser.standard.nodes.WildcardQueryNode;
28 import org.apache.lucene.search.MultiTermQuery;
29
30 /**
31  * This processor instates the default
32  * {@link org.apache.lucene.search.MultiTermQuery.RewriteMethod},
33  * {@link MultiTermQuery#CONSTANT_SCORE_AUTO_REWRITE_DEFAULT}, for multi-term
34  * query nodes.
35  */
36 public class MultiTermRewriteMethodProcessor extends QueryNodeProcessorImpl {
37
38   public static final String TAG_ID = "MultiTermRewriteMethodConfiguration";
39
40   @Override
41   protected QueryNode postProcessNode(QueryNode node) {
42
43     // set setMultiTermRewriteMethod for WildcardQueryNode and
44     // PrefixWildcardQueryNode
45     if (node instanceof WildcardQueryNode
46         || node instanceof AbstractRangeQueryNode) {
47
48
49       // read the attribute value and use a TAG to take the value to the Builder
50       MultiTermQuery.RewriteMethod rewriteMethod = getQueryConfigHandler()
51           .get(ConfigurationKeys.MULTI_TERM_REWRITE_METHOD);
52       
53       if (rewriteMethod == null) {
54         // This should not happen, this attribute is created in the
55         // StandardQueryConfigHandler
56         throw new IllegalArgumentException(
57             "StandardQueryConfigHandler.ConfigurationKeys.MULTI_TERM_REWRITE_METHOD should be set on the QueryConfigHandler");
58       }
59
60
61       node.setTag(MultiTermRewriteMethodProcessor.TAG_ID, rewriteMethod);
62
63     }
64
65     return node;
66   }
67
68   @Override
69   protected QueryNode preProcessNode(QueryNode node) {
70     return node;
71   }
72
73   @Override
74   protected List<QueryNode> setChildrenOrder(List<QueryNode> children) {
75     return children;
76   }
77 }