add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / standard / config / FieldDateResolutionMapAttributeImpl.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 java.util.HashMap;
21 import java.util.Map;
22
23 import org.apache.lucene.document.DateTools;
24 import org.apache.lucene.document.DateTools.Resolution;
25 import org.apache.lucene.queryParser.core.config.AbstractQueryConfig;
26 import org.apache.lucene.queryParser.core.config.ConfigAttribute;
27 import org.apache.lucene.queryParser.standard.config.StandardQueryConfigHandler.ConfigurationKeys;
28 import org.apache.lucene.util.AttributeImpl;
29
30 /**
31  * This attribute enables the user to define a default DateResolution per field.
32  * it's used by {@link FieldDateResolutionFCListener#buildFieldConfig(org.apache.lucene.queryParser.core.config.FieldConfig)}
33  *
34  * @see FieldDateResolutionMapAttribute
35  * 
36  * @deprecated
37  * 
38  */
39 @Deprecated
40 public class FieldDateResolutionMapAttributeImpl extends AttributeImpl 
41                                 implements FieldDateResolutionMapAttribute, ConfigAttribute {
42
43   private static final long serialVersionUID = -2104763012523049527L;
44   
45   private AbstractQueryConfig config;
46
47   { enableBackwards = false; }
48   
49   public FieldDateResolutionMapAttributeImpl() {
50     // empty constructor
51   }
52
53   public void setFieldDateResolutionMap(Map<CharSequence, DateTools.Resolution> dateRes) {
54     config.set(ConfigurationKeys.FIELD_DATE_RESOLUTION_MAP, dateRes);
55   }
56   
57   public Map<CharSequence, Resolution> getFieldDateResolutionMap() {
58     return config.get(ConfigurationKeys.FIELD_DATE_RESOLUTION_MAP);
59   }
60
61   @Override
62   public void clear() {
63     throw new UnsupportedOperationException();
64   }
65
66   @Override
67   public void copyTo(AttributeImpl target) {
68     throw new UnsupportedOperationException();
69   }
70
71   @Override
72   public boolean equals(Object other) {
73
74     if (other instanceof FieldDateResolutionMapAttributeImpl
75         && ((FieldDateResolutionMapAttributeImpl) other)
76             .getFieldDateResolutionMap().equals(getFieldDateResolutionMap())) {
77
78       return true;
79
80     }
81
82     return false;
83
84   }
85
86   @Override
87   public int hashCode() {
88     final int prime = 97;
89     Map<CharSequence, DateTools.Resolution> dateRes = getFieldDateResolutionMap();
90     if (dateRes != null) 
91       return dateRes.hashCode() * prime;
92     else 
93       return Float.valueOf(prime).hashCode();
94   }
95
96   @Override
97   public String toString() {
98     return "<fieldDateResolutionMapAttribute map=" + getFieldDateResolutionMap() + "/>";
99   }
100   
101   public void setQueryConfigHandler(AbstractQueryConfig config) {
102     this.config = config;
103     
104     if (!config.has(ConfigurationKeys.FIELD_DATE_RESOLUTION_MAP)) {
105       setFieldDateResolutionMap(new HashMap<CharSequence, DateTools.Resolution>());
106     }
107     
108   }
109
110 }