1 |
package skrueger; |
/******************************************************************************* |
2 |
|
* Copyright (c) 2009 Martin O. J. Schmitz. |
3 |
import org.apache.log4j.Logger; |
* |
4 |
|
* This file is part of the SCHMITZM library - a collection of utility |
5 |
import skrueger.geotools.StyledMapInterface; |
* classes based on Java 1.6, focusing (not only) on Java Swing |
6 |
import skrueger.i8n.Translation; |
* and the Geotools library. |
7 |
|
* |
8 |
/** |
* The SCHMITZM project is hosted at: |
9 |
* This class holds meta information about an attribute/column. This |
* http://wald.intevation.org/projects/schmitzm/ |
10 |
* information is used by {@link StyledMapInterface}. |
* |
11 |
* |
* This program is free software; you can redistribute it and/or |
12 |
* @author <a href="mailto:[email protected]">Stefan Alfons Krüger</a> |
* modify it under the terms of the GNU Lesser General Public License |
13 |
*/ |
* as published by the Free Software Foundation; either version 3 |
14 |
public class AttributeMetaData { |
* of the License, or (at your option) any later version. |
15 |
static private final Logger LOGGER = Logger |
* |
16 |
.getLogger(AttributeMetaData.class); |
* This program is distributed in the hope that it will be useful, |
17 |
protected Translation title = new Translation(); |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 |
protected Translation desc = new Translation(); |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19 |
protected boolean visible = false; |
* GNU General Public License for more details. |
20 |
protected String unit = ""; |
* |
21 |
protected int colIdx; |
* You should have received a copy of the GNU Lesser General Public License (license.txt) |
22 |
|
* along with this program; if not, write to the Free Software |
23 |
/** |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
24 |
* Creates an {@link AttributeMetaData} object with the following information |
* or try this link: http://www.gnu.org/licenses/lgpl.html |
25 |
* @param colIdx The column index of this attribute in the underlying table/dbf/etc... |
* |
26 |
* @param visible Shall this attribute be displayed or hidden from the user? |
* Contributors: |
27 |
* @param title {@link Translation} for Name |
* Martin O. J. Schmitz - initial API and implementation |
28 |
* @param desc {@link Translation} for an attribute description |
* Stefan A. Krüger - additional utility classes |
29 |
* @param unit {@link String} of the unit that the information is in |
******************************************************************************/ |
30 |
*/ |
package skrueger; |
31 |
public AttributeMetaData(final int colIdx, final Boolean visible, |
|
32 |
final Translation title, final Translation desc, final String unit) { |
import java.util.ArrayList; |
33 |
|
import java.util.List; |
34 |
this.colIdx = colIdx; |
|
35 |
this.title = title; |
import org.apache.log4j.Logger; |
36 |
this.desc = desc; |
import org.geotools.feature.NameImpl; |
37 |
if (colIdx == 0){ |
import org.opengis.feature.type.AttributeDescriptor; |
38 |
// The first attribut is THE_GEOM and shall never be visible! |
import org.opengis.feature.type.Name; |
39 |
this.visible = false; |
|
40 |
}else |
import skrueger.geotools.Copyable; |
41 |
this.visible = visible; |
import skrueger.geotools.StyledLayerInterface; |
42 |
this.unit = unit; |
import skrueger.i8n.I8NUtil; |
43 |
} |
import skrueger.i8n.Translation; |
44 |
|
|
45 |
/** |
/** |
46 |
* Creates a new visible {@link AttributeMetaData} with default (no) values. |
* This class holds meta information about an attribute/column. This information |
47 |
*/ |
* is used by {@link StyledLayerInterface} and many others.<br/> |
48 |
public AttributeMetaData(final Integer col, final String defaultName) { |
* |
49 |
this(col, true, new Translation(defaultName), new Translation(), ""); |
* @author <a href="mailto:[email protected]">Stefan Alfons Krüger</a> |
50 |
} |
*/ |
51 |
|
public class AttributeMetadata implements Copyable<AttributeMetadata>, |
52 |
public Boolean isVisible() { |
Comparable<AttributeMetadata> { |
53 |
return visible; |
static private final Logger LOGGER = Logger |
54 |
} |
.getLogger(AttributeMetadata.class); |
55 |
|
|
56 |
public void setVisible(final Boolean visible) { |
// public class WeightComparator implements Comparator<AttributeDescriptor> |
57 |
this.visible = visible; |
// { |
58 |
} |
// |
59 |
|
// @Override |
60 |
/** @return the index of this attribute in the underlying table/dbf **/ |
// public int compare(AttributeDescriptor o1, AttributeDescriptor o2) { |
61 |
public int getColIdx() { |
// // TODO Auto-generated method stub |
62 |
return colIdx; |
// return 0; |
63 |
} |
// } |
64 |
|
// |
65 |
public Translation getTitle() { |
// }; |
66 |
return title; |
|
67 |
} |
/** Translation of the attribute's title **/ |
68 |
|
protected Translation title = new Translation(); |
69 |
public void setTitle(final Translation title) { |
|
70 |
this.title = title; |
/** Translation of the attribute's description **/ |
71 |
} |
protected Translation desc = new Translation(); |
72 |
|
|
73 |
public Translation getDesc() { |
/** Is the attribute visible to the user or ignored where possible **/ |
74 |
return desc; |
protected boolean visible = true; |
75 |
} |
|
76 |
|
/** |
77 |
public void setDesc(final Translation desc) { |
* The unit append to all visualizations of values of this attribute (is not |
78 |
this.desc = desc; |
* null) |
79 |
} |
**/ |
80 |
|
protected String unit = ""; |
81 |
public String getUnit() { |
|
82 |
return unit; |
/** The Name of the attribute **/ |
83 |
} |
private Name name; |
84 |
|
|
85 |
public void setUnit(final String unit) { |
public int getWeight() { |
86 |
this.unit = unit; |
return weight; |
87 |
} |
} |
88 |
} |
|
89 |
|
public void setWeight(int weight) { |
90 |
|
this.weight = weight; |
91 |
|
} |
92 |
|
|
93 |
|
public List<Object> getNodataValues() { |
94 |
|
return nodataValues; |
95 |
|
} |
96 |
|
|
97 |
|
public void setNodataValues(List<Object> nodataValues) { |
98 |
|
this.nodataValues = nodataValues; |
99 |
|
} |
100 |
|
|
101 |
|
public Double getFunctionX() { |
102 |
|
return functionX; |
103 |
|
} |
104 |
|
|
105 |
|
public void setFunctionX(Double functionX) { |
106 |
|
this.functionX = functionX; |
107 |
|
} |
108 |
|
|
109 |
|
public Double getFunctionA() { |
110 |
|
return functionA; |
111 |
|
} |
112 |
|
|
113 |
|
public void setFunctionA(Double functionA) { |
114 |
|
this.functionA = functionA; |
115 |
|
} |
116 |
|
|
117 |
|
public void setVisible(boolean visible) { |
118 |
|
this.visible = visible; |
119 |
|
} |
120 |
|
|
121 |
|
/** |
122 |
|
* When listed, the attributes are listed according to their weight (heavier |
123 |
|
* => further down) |
124 |
|
**/ |
125 |
|
protected int weight = 0; |
126 |
|
|
127 |
|
/** |
128 |
|
* Allows to define general NODATA values for an attribute. e.g. -9999 can |
129 |
|
* be set and will always be interpreted as NULL internally and will usually |
130 |
|
* be ignored. |
131 |
|
**/ |
132 |
|
protected List<Object> nodataValues = new ArrayList<Object>(); |
133 |
|
|
134 |
|
/** |
135 |
|
* For numerical attributes the value can be transformed by VALUE*X+A when |
136 |
|
* presented on screen |
137 |
|
**/ |
138 |
|
protected Double functionX = 1.; |
139 |
|
|
140 |
|
/** |
141 |
|
* For numerical attributes the value can be transformed by VALUE*X+A when |
142 |
|
* presented on screen |
143 |
|
**/ |
144 |
|
protected Double functionA = 0.; |
145 |
|
|
146 |
|
/** |
147 |
|
* Creates an {@link AttributeMetadata} object with the following |
148 |
|
* information |
149 |
|
* |
150 |
|
* @param colIdx |
151 |
|
* The column index of this attribute in the underlying |
152 |
|
* table/dbf/etc... |
153 |
|
* @param visible |
154 |
|
* Shall this attribute be displayed or hidden from the user? |
155 |
|
* @param title |
156 |
|
* {@link Translation} for Name |
157 |
|
* @param desc |
158 |
|
* {@link Translation} for an attribute description |
159 |
|
* @param unit |
160 |
|
* {@link String} of the unit that the information is in |
161 |
|
*/ |
162 |
|
public AttributeMetadata(final Name name, final Boolean visible, |
163 |
|
final Translation title, final Translation desc, final String unit) { |
164 |
|
|
165 |
|
this.setName(name); |
166 |
|
this.title = title; |
167 |
|
this.desc = desc; |
168 |
|
|
169 |
|
// The THE_GEOM and shall never be visible! |
170 |
|
if (name.getLocalPart().equalsIgnoreCase("the_geom")) |
171 |
|
this.visible = false; |
172 |
|
else |
173 |
|
this.visible = visible; |
174 |
|
|
175 |
|
this.unit = unit; |
176 |
|
} |
177 |
|
|
178 |
|
/** |
179 |
|
* Creates an {@link AttributeMetadata} object with the following |
180 |
|
* information |
181 |
|
* |
182 |
|
* @param visible |
183 |
|
* Shall this attribute be displayed or hidden from the user? |
184 |
|
* @param title |
185 |
|
* {@link Translation} for Name |
186 |
|
* @param desc |
187 |
|
* {@link Translation} for an attribute description |
188 |
|
* @param unit |
189 |
|
* {@link String} of the unit that the information is in |
190 |
|
*/ |
191 |
|
public AttributeMetadata(final String localName, final Boolean visible, |
192 |
|
final Translation title, final Translation desc, final String unit) { |
193 |
|
this(new NameImpl(localName), true, title, desc, ""); |
194 |
|
} |
195 |
|
|
196 |
|
/** |
197 |
|
* Creates a new visible {@link AttributeMetadata} with default (no) values. |
198 |
|
*/ |
199 |
|
public AttributeMetadata(final String localName, final String defaultTitle) { |
200 |
|
this(localName, true, new Translation(defaultTitle), new Translation(), |
201 |
|
""); |
202 |
|
} |
203 |
|
|
204 |
|
/** |
205 |
|
* Creates a new visible {@link AttributeMetadata} with default (no) values. |
206 |
|
*/ |
207 |
|
public AttributeMetadata(final Name name, final String defaultTitle) { |
208 |
|
this(name, true, new Translation(defaultTitle), new Translation(), ""); |
209 |
|
} |
210 |
|
|
211 |
|
/** |
212 |
|
* Creates a new visible {@link AttributeMetadata} with default (no) values. |
213 |
|
*/ |
214 |
|
public AttributeMetadata(final Name name) { |
215 |
|
this(name, true, new Translation(name.getLocalPart()), |
216 |
|
new Translation(), ""); |
217 |
|
} |
218 |
|
|
219 |
|
/** |
220 |
|
* Creates a new visible {@link AttributeMetadata} with default (no) values. |
221 |
|
*/ |
222 |
|
public AttributeMetadata(final String localName) { |
223 |
|
this(localName, true, new Translation(localName), new Translation(), ""); |
224 |
|
} |
225 |
|
|
226 |
|
/** Only used for {@link Copyable<AttributeMetaData>#copy()} **/ |
227 |
|
private AttributeMetadata() { |
228 |
|
} |
229 |
|
|
230 |
|
public AttributeMetadata(AttributeDescriptor attDesc) { |
231 |
|
this(attDesc.getName()); |
232 |
|
} |
233 |
|
|
234 |
|
public AttributeMetadata(AttributeDescriptor attDesc, int weight) { |
235 |
|
this(attDesc.getName()); |
236 |
|
setWeight(weight); |
237 |
|
} |
238 |
|
|
239 |
|
public boolean isVisible() { |
240 |
|
return visible; |
241 |
|
} |
242 |
|
|
243 |
|
public void setVisible(final Boolean visible) { |
244 |
|
|
245 |
|
// The THE_GEOM and shall never be visible! // TODO MAKE BETTER |
246 |
|
if (name.getLocalPart().equalsIgnoreCase("the_geom")) |
247 |
|
this.visible = false; |
248 |
|
else |
249 |
|
this.visible = visible; |
250 |
|
|
251 |
|
this.visible = visible; |
252 |
|
} |
253 |
|
|
254 |
|
public Translation getTitle() { |
255 |
|
return title; |
256 |
|
} |
257 |
|
|
258 |
|
public void setTitle(final Translation title) { |
259 |
|
this.title = title; |
260 |
|
} |
261 |
|
|
262 |
|
public Translation getDesc() { |
263 |
|
return desc; |
264 |
|
} |
265 |
|
|
266 |
|
public void setDesc(final Translation desc) { |
267 |
|
this.desc = desc; |
268 |
|
} |
269 |
|
|
270 |
|
public String getUnit() { |
271 |
|
return unit; |
272 |
|
} |
273 |
|
|
274 |
|
public void setUnit(final String unit) { |
275 |
|
this.unit = unit; |
276 |
|
} |
277 |
|
|
278 |
|
@Override |
279 |
|
public AttributeMetadata copyTo(AttributeMetadata amd) { |
280 |
|
getTitle().copyTo(amd.getTitle()); |
281 |
|
getDesc().copyTo(amd.getDesc()); |
282 |
|
amd.setUnit(getUnit()); |
283 |
|
amd.setVisible(isVisible()); |
284 |
|
amd.setName(new NameImpl(getName().getNamespaceURI(), getName() |
285 |
|
.getLocalPart())); |
286 |
|
|
287 |
|
amd.setWeight(getWeight()); |
288 |
|
amd.setFunctionX(getFunctionX()); |
289 |
|
amd.setFunctionA(getFunctionA()); |
290 |
|
|
291 |
|
for (Object nodataValue : getNodataValues()) { |
292 |
|
amd.getNodataValues().add(nodataValue); |
293 |
|
} |
294 |
|
|
295 |
|
return amd; |
296 |
|
} |
297 |
|
|
298 |
|
@Override |
299 |
|
public AttributeMetadata copy() { |
300 |
|
return copyTo(new AttributeMetadata()); |
301 |
|
} |
302 |
|
|
303 |
|
/** |
304 |
|
* The local Name. E.g. the name of the DBF column as a String |
305 |
|
*/ |
306 |
|
public String getLocalName() { |
307 |
|
return getName().getLocalPart(); |
308 |
|
} |
309 |
|
|
310 |
|
/** |
311 |
|
* The fully qualified Name of the attribute, e.g. org.bla.plo:blub |
312 |
|
*/ |
313 |
|
public Name getName() { |
314 |
|
return name; |
315 |
|
} |
316 |
|
|
317 |
|
/** |
318 |
|
* The fully qualified Name of the attribute, e.g. org.bla.plo:blub |
319 |
|
*/ |
320 |
|
public void setName(org.opengis.feature.type.Name name) { |
321 |
|
this.name = name; |
322 |
|
} |
323 |
|
|
324 |
|
/** |
325 |
|
* The fully qualified Name of the attribute, e.g. org.bla.plo:blub |
326 |
|
*/ |
327 |
|
public void setLocalName(String localName) { |
328 |
|
this.name = new NameImpl(localName); |
329 |
|
} |
330 |
|
|
331 |
|
/** |
332 |
|
* Orders the Attributes according to their weight. Heavier => further down. |
333 |
|
*/ |
334 |
|
@Override |
335 |
|
public int compareTo(AttributeMetadata atm2) { |
336 |
|
// Double double1 = new Double(1./weight); |
337 |
|
// double double2 = 1./atm2.getWeight(); |
338 |
|
return new Integer(weight).compareTo(atm2.getWeight()); |
339 |
|
} |
340 |
|
|
341 |
|
/** |
342 |
|
* @return a number between 0 (bad) and 1 (good) that is calculated from the amount of translation available in the visible attributes |
343 |
|
*/ |
344 |
|
public double getQuality(List<String> languages) { |
345 |
|
return (I8NUtil.qmTranslation(languages, getTitle()) * 2. + I8NUtil |
346 |
|
.qmTranslation(languages, getDesc()) * 1.) / 3.; |
347 |
|
} |
348 |
|
} |