pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / config / FuzzyAttributeImpl.java
1 package org.apache.lucene.queryParser.standard.config;
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 org.apache.lucene.queryParser.core.config.AbstractQueryConfig;
21 import org.apache.lucene.queryParser.core.config.ConfigAttribute;
22 import org.apache.lucene.queryParser.core.config.QueryConfigHandler;
23 import org.apache.lucene.queryParser.standard.config.StandardQueryConfigHandler.ConfigurationKeys;
24 import org.apache.lucene.queryParser.standard.processors.PhraseSlopQueryNodeProcessor;
25 import org.apache.lucene.util.AttributeImpl;
26
27 /**
28  * This attribute is used by {@link PhraseSlopQueryNodeProcessor} processor and
29  * must be defined in the {@link QueryConfigHandler}. This attribute tells the
30  * processor what is the default phrase slop when no slop is defined in a
31  * phrase. <br/>
32  * 
33  * @see org.apache.lucene.queryParser.standard.config.FuzzyAttribute
34  * 
35  * @deprecated
36  * 
37  */
38 @Deprecated
39 public class FuzzyAttributeImpl extends AttributeImpl implements
40     FuzzyAttribute, ConfigAttribute {
41
42   private static final long serialVersionUID = -2104763012527049527L;
43
44   private AbstractQueryConfig config;
45
46   {
47     enableBackwards = false;
48   }
49
50   public FuzzyAttributeImpl() {
51     // empty constructor
52   }
53
54   public void setPrefixLength(int prefixLength) {
55     getFuzzyConfig().setPrefixLength(prefixLength);
56   }
57
58   public int getPrefixLength() {
59     return getFuzzyConfig().getPrefixLength();
60   }
61
62   public void setFuzzyMinSimilarity(float minSimilarity) {
63     getFuzzyConfig().setMinSimilarity(minSimilarity);
64   }
65   
66   private FuzzyConfig getFuzzyConfig() {
67     FuzzyConfig fuzzyConfig = config.get(ConfigurationKeys.FUZZY_CONFIG);
68     
69     if (fuzzyConfig == null) {
70       fuzzyConfig = new FuzzyConfig();
71       config.set(ConfigurationKeys.FUZZY_CONFIG, fuzzyConfig);
72     }
73     
74     return fuzzyConfig;
75     
76   }
77
78   public float getFuzzyMinSimilarity() {
79     return getFuzzyConfig().getMinSimilarity();
80   }
81
82   @Override
83   public void clear() {
84     throw new UnsupportedOperationException();
85   }
86
87   @Override
88   public void copyTo(AttributeImpl target) {
89     throw new UnsupportedOperationException();
90   }
91
92   @Override
93   public boolean equals(Object other) {
94
95     if (other instanceof FuzzyAttributeImpl
96         && ((FuzzyAttributeImpl) other).getPrefixLength() == getPrefixLength()) {
97
98       return true;
99
100     }
101
102     return false;
103
104   }
105
106   @Override
107   public int hashCode() {
108     return Integer.valueOf(getPrefixLength()).hashCode();
109   }
110
111   @Override
112   public String toString() {
113     FuzzyConfig fuzzyConfig = getFuzzyConfig();
114     return "<fuzzyAttribute prefixLength=" + fuzzyConfig.getPrefixLength()
115         + ",minSimilarity=" + fuzzyConfig.getMinSimilarity() + "/>";
116   }
117
118   public void setQueryConfigHandler(AbstractQueryConfig config) {
119     this.config = config;
120
121     if (!config.has(ConfigurationKeys.FUZZY_CONFIG)) {
122       config.set(ConfigurationKeys.FUZZY_CONFIG, new FuzzyConfig());
123     }
124
125   }
126
127 }