~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/processors/BooleanSingleChildOptimizationQueryNodeProcessor.java

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
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.QueryNodeException;
23
 
import org.apache.lucene.queryParser.core.nodes.BooleanQueryNode;
24
 
import org.apache.lucene.queryParser.core.nodes.ModifierQueryNode;
25
 
import org.apache.lucene.queryParser.core.nodes.QueryNode;
26
 
import org.apache.lucene.queryParser.core.nodes.ModifierQueryNode.Modifier;
27
 
import org.apache.lucene.queryParser.core.processors.QueryNodeProcessorImpl;
28
 
import org.apache.lucene.queryParser.standard.nodes.BooleanModifierNode;
29
 
 
30
 
/**
31
 
 * This processor removes every {@link BooleanQueryNode} that contains only one
32
 
 * child and returns this child. If this child is {@link ModifierQueryNode} that
33
 
 * was defined by the user. A modifier is not defined by the user when it's a
34
 
 * {@link BooleanModifierNode} <br/>
35
 
 * 
36
 
 * @see ModifierQueryNode
37
 
 */
38
 
public class BooleanSingleChildOptimizationQueryNodeProcessor extends
39
 
    QueryNodeProcessorImpl {
40
 
 
41
 
  public BooleanSingleChildOptimizationQueryNodeProcessor() {
42
 
    // empty constructor
43
 
  }
44
 
 
45
 
  @Override
46
 
  protected QueryNode postProcessNode(QueryNode node) throws QueryNodeException {
47
 
 
48
 
    if (node instanceof BooleanQueryNode) {
49
 
      List<QueryNode> children = node.getChildren();
50
 
 
51
 
      if (children != null && children.size() == 1) {
52
 
        QueryNode child = children.get(0);
53
 
 
54
 
        if (child instanceof ModifierQueryNode) {
55
 
          ModifierQueryNode modNode = (ModifierQueryNode) child;
56
 
 
57
 
          if (modNode instanceof BooleanModifierNode
58
 
              || modNode.getModifier() == Modifier.MOD_NONE) {
59
 
 
60
 
            return child;
61
 
 
62
 
          }
63
 
 
64
 
        } else {
65
 
          return child;
66
 
        }
67
 
 
68
 
      }
69
 
 
70
 
    }
71
 
 
72
 
    return node;
73
 
 
74
 
  }
75
 
 
76
 
  @Override
77
 
  protected QueryNode preProcessNode(QueryNode node) throws QueryNodeException {
78
 
 
79
 
    return node;
80
 
 
81
 
  }
82
 
 
83
 
  @Override
84
 
  protected List<QueryNode> setChildrenOrder(List<QueryNode> children)
85
 
      throws QueryNodeException {
86
 
 
87
 
    return children;
88
 
 
89
 
  }
90
 
 
91
 
}