/[schmitzm]/trunk/src/skrueger/AttributeMetadataImpl.java
ViewVC logotype

Annotation of /trunk/src/skrueger/AttributeMetadataImpl.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 523 - (hide annotations)
Wed Nov 18 09:54:52 2009 UTC (15 years, 3 months ago) by alfonx
Original Path: branches/1.0-gt2-2.6/src/skrueger/AttributeMetadata.java
File size: 9551 byte(s)
* Moved some methods from StylingUtil to FeatureUtil
* Added a new constructor to AttributeMetadata that automatically sets its weight
1 alfonx 244 /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3     *
4     * This file is part of the SCHMITZM library - a collection of utility
5 alfonx 256 * classes based on Java 1.6, focusing (not only) on Java Swing
6 alfonx 244 * and the Geotools library.
7     *
8     * The SCHMITZM project is hosted at:
9     * http://wald.intevation.org/projects/schmitzm/
10     *
11     * This program is free software; you can redistribute it and/or
12     * modify it under the terms of the GNU Lesser General Public License
13     * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15     *
16     * This program is distributed in the hope that it will be useful,
17     * but WITHOUT ANY WARRANTY; without even the implied warranty of
18     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19     * GNU General Public License for more details.
20     *
21     * 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     * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26     * Contributors:
27     * Martin O. J. Schmitz - initial API and implementation
28     * Stefan A. Krüger - additional utility classes
29     ******************************************************************************/
30     package skrueger;
31    
32 alfonx 518 import java.util.ArrayList;
33     import java.util.List;
34    
35 alfonx 244 import org.apache.log4j.Logger;
36 alfonx 464 import org.geotools.feature.NameImpl;
37     import org.opengis.feature.type.AttributeDescriptor;
38     import org.opengis.feature.type.Name;
39 alfonx 244
40 alfonx 420 import skrueger.geotools.Copyable;
41 mojays 325 import skrueger.geotools.StyledLayerInterface;
42 alfonx 518 import skrueger.i8n.I8NUtil;
43 alfonx 244 import skrueger.i8n.Translation;
44    
45     /**
46 alfonx 464 * This class holds meta information about an attribute/column. This information
47 alfonx 518 * is used by {@link StyledLayerInterface} and many others.<br/>
48 alfonx 464 *
49 alfonx 244 * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>
50     */
51 alfonx 518 public class AttributeMetadata implements Copyable<AttributeMetadata>,
52     Comparable<AttributeMetadata> {
53 alfonx 244 static private final Logger LOGGER = Logger
54 alfonx 463 .getLogger(AttributeMetadata.class);
55 alfonx 464
56 alfonx 518 // public class WeightComparator implements Comparator<AttributeDescriptor>
57     // {
58     //
59     // @Override
60     // public int compare(AttributeDescriptor o1, AttributeDescriptor o2) {
61     // // TODO Auto-generated method stub
62     // return 0;
63     // }
64     //
65     // };
66    
67     /** Translation of the attribute's title **/
68 alfonx 244 protected Translation title = new Translation();
69 alfonx 518
70     /** Translation of the attribute's description **/
71 alfonx 244 protected Translation desc = new Translation();
72 alfonx 518
73     /** Is the attribute visible to the user or ignored where possible **/
74 alfonx 464 protected boolean visible = true;
75 alfonx 518
76     /**
77     * The unit append to all visualizations of values of this attribute (is not
78     * null)
79     **/
80 alfonx 244 protected String unit = "";
81 alfonx 518
82     /** The Name of the attribute **/
83 alfonx 470 private Name name;
84 alfonx 464
85 alfonx 518 public int getWeight() {
86     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 alfonx 244 /**
122 alfonx 518 * 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 alfonx 464 * 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 alfonx 244 */
162 alfonx 464 public AttributeMetadata(final Name name, final Boolean visible,
163 alfonx 244 final Translation title, final Translation desc, final String unit) {
164 alfonx 464
165     this.setName(name);
166 alfonx 244 this.title = title;
167     this.desc = desc;
168 alfonx 472
169 alfonx 464 // The THE_GEOM and shall never be visible!
170 alfonx 472 if (name.getLocalPart().equalsIgnoreCase("the_geom"))
171     this.visible = false;
172     else
173     this.visible = visible;
174    
175 alfonx 244 this.unit = unit;
176     }
177    
178     /**
179 alfonx 464 * 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 alfonx 244 */
191 alfonx 464 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 alfonx 244 }
195    
196 alfonx 464 /**
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 alfonx 463 private AttributeMetadata() {
228 alfonx 420 }
229    
230 alfonx 464 public AttributeMetadata(AttributeDescriptor attDesc) {
231     this(attDesc.getName());
232     }
233    
234 alfonx 523 public AttributeMetadata(AttributeDescriptor attDesc, int weight) {
235     this(attDesc.getName());
236     setWeight(weight);
237     }
238    
239 alfonx 420 public boolean isVisible() {
240 alfonx 244 return visible;
241     }
242    
243     public void setVisible(final Boolean visible) {
244 alfonx 518
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 alfonx 244 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 alfonx 420
278     @Override
279 alfonx 463 public AttributeMetadata copyTo(AttributeMetadata amd) {
280 alfonx 420 getTitle().copyTo(amd.getTitle());
281     getDesc().copyTo(amd.getDesc());
282     amd.setUnit(getUnit());
283     amd.setVisible(isVisible());
284 alfonx 472 amd.setName(new NameImpl(getName().getNamespaceURI(), getName()
285     .getLocalPart()));
286 alfonx 464
287 alfonx 518 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 alfonx 420 return amd;
296     }
297    
298     @Override
299 alfonx 463 public AttributeMetadata copy() {
300 alfonx 472 return copyTo(new AttributeMetadata());
301 alfonx 420 }
302    
303 alfonx 464 /**
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 alfonx 420 }
309 alfonx 464
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 alfonx 518
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 alfonx 244 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26