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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

branches/1.0-gt2-2.6/src/skrueger/AttributeMetaData.java revision 420 by alfonx, Thu Oct 1 20:22:48 2009 UTC branches/2.0-RC2/src/skrueger/AttributeMetadata.java revision 666 by alfonx, Wed Feb 3 18:05:50 2010 UTC
# Line 29  Line 29 
29   ******************************************************************************/   ******************************************************************************/
30  package skrueger;  package skrueger;
31    
32    import java.util.ArrayList;
33    import java.util.HashSet;
34    import java.util.List;
35    
36  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
37    import org.geotools.feature.NameImpl;
38    import org.geotools.feature.Feature.NULL;
39    import org.opengis.feature.type.AttributeDescriptor;
40    import org.opengis.feature.type.Name;
41    
42  import skrueger.geotools.Copyable;  import skrueger.geotools.Copyable;
43  import skrueger.geotools.StyledLayerInterface;  import skrueger.geotools.StyledLayerInterface;
44    import skrueger.i8n.I8NUtil;
45  import skrueger.i8n.Translation;  import skrueger.i8n.Translation;
46    
47  /**  /**
48   * This class holds meta information about an attribute/column. This   * This class holds meta information about an attribute/column. This information
49   * information is used by {@link StyledLayerInterface}.   * is used by {@link StyledLayerInterface} and many others.<br/>
50   *   *
51   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>
52   */   */
53  public class AttributeMetaData implements Copyable<AttributeMetaData>{  public class AttributeMetadata implements Copyable<AttributeMetadata>,
54                    Comparable<AttributeMetadata> {
55            
56          static private final Logger LOGGER = Logger          static private final Logger LOGGER = Logger
57                          .getLogger(AttributeMetaData.class);                          .getLogger(AttributeMetadata.class);
58          protected Translation title = new Translation();  
59            /** Translation of the attribute's description **/
60          protected Translation desc = new Translation();          protected Translation desc = new Translation();
61          protected boolean visible = false;  
62            /**
63             * For numerical attributes the value can be transformed by VALUE*X+A when
64             * presented on screen. TODO not implemented yet
65             **/
66            protected Double functionA = 0.;
67    
68            /**
69             * For numerical attributes the value can be transformed by VALUE*X+A when
70             * presented on screen. TODO not implemented yet
71             **/
72            protected Double functionX = 1.;
73    
74            /** The Name of the attribute **/
75            private Name name;
76    
77            /**
78             * Allows to define general NODATA values for an attribute. e.g. -9999 can
79             * be set and will always be interpreted as NULL internally and will usually
80             * be ignored. This overcomes the problem, that
81             **/
82            protected final HashSet<Object> nodataValues = new HashSet<Object>();
83    
84            /** Translation of the attribute's title **/
85            protected Translation title = new Translation();
86    
87            /**
88             * The unit append to all visualizations of values of this attribute (is not
89             * null)
90             **/
91          protected String unit = "";          protected String unit = "";
92          protected int colIdx;  
93                    /** Is the attribute visible to the user or ignored where possible **/
94            protected boolean visible = true;
95    
96            /**
97             * When listed, the attributes are listed according to their {@link #weight} (heavier
98             * => further down)
99             * @see #compareTo(AttributeMetadata)
100             **/
101            protected int weight = 0;
102    
103            /** Only used for {@link Copyable<AttributeMetaData>#copy()} **/
104            private AttributeMetadata() {
105            }
106    
107            public AttributeMetadata(final AttributeDescriptor attDesc, final int weight,
108                            final List<String> langs) {
109                    this(attDesc.getName(), langs);
110                    setWeight(weight);
111            }
112    
113            public AttributeMetadata(final AttributeDescriptor attDesc, final List<String> langs) {
114                    this(attDesc.getName(), langs);
115            }
116    
117          /**          /**
118           * Creates an {@link AttributeMetaData} object with the following information           * Creates an {@link AttributeMetadata} object with the following
119           * @param colIdx The column index of this attribute in the underlying table/dbf/etc...           * information
120           * @param visible Shall this attribute be displayed or hidden from the user?           *
121           * @param title {@link Translation} for Name           * @param colIdx
122           * @param desc {@link Translation} for an attribute description           *            The column index of this attribute in the underlying
123           * @param unit {@link String} of the unit that the information is in           *            table/dbf/etc...
124             * @param visible
125             *            Shall this attribute be displayed or hidden from the user?
126             * @param title
127             *            {@link Translation} for Name
128             * @param desc
129             *            {@link Translation} for an attribute description
130             * @param unit
131             *            {@link String} of the unit that the information is in
132           */           */
133          public AttributeMetaData(final int colIdx, final Boolean visible,          public AttributeMetadata(final Name name, final Boolean visible,
134                          final Translation title, final Translation desc, final String unit) {                          final Translation title, final Translation desc, final String unit) {
135            
136                  this.colIdx = colIdx;                  this.setName(name);
137                  this.title = title;                  this.title = title;
138                  this.desc = desc;                  this.desc = desc;
139                  if (colIdx == 0){                  this.visible = visible;
                         // The first attribute is THE_GEOM and shall never be visible!  
                         this.visible = false;  
                 }else  
                         this.visible = visible;  
140                  this.unit = unit;                  this.unit = unit;
141          }          }
142            
143    
144          /**          /**
145           * Creates a new visible {@link AttributeMetaData} with default (no) values.             * Creates an {@link AttributeMetadata} object with the following
146             * information
147             *
148             * @param colIdx
149             *            The column index of this attribute in the underlying
150             *            table/dbf/etc...
151             * @param visible
152             *            Shall this attribute be displayed or hidden from the user?
153             * @param unit
154             *            {@link String} of the unit that the information is in
155           */           */
156          public AttributeMetaData(final Integer col, final String defaultName) {          public AttributeMetadata(final Name name, final Boolean visible, final String unit) {
157                  this(col, true, new Translation(defaultName), new Translation(), "");                  this.setName(name);
158                    this.visible = visible;
159                    this.unit = unit;
160          }          }
161    
162          /** Only used for {@link Copyable<AttributeMetaData>#copy()}**/          /**
163          private AttributeMetaData() {           * Creates a new visible {@link AttributeMetadata}
164             */
165            public AttributeMetadata(final Name name, final List<String> langs) {
166                    this(name, true, new Translation(langs, name.getLocalPart()),
167                                    new Translation(), "");
168          }          }
169    
170          public boolean isVisible() {          /**
171                  return visible;           * Creates a new visible {@link AttributeMetadata}
172             */
173            public AttributeMetadata(final Name name, final String defaultTitle,
174                            final List<String> langs) {
175                    this(name, true, new Translation(langs, defaultTitle),
176                                    new Translation(), "");
177          }          }
178    
179          public void setVisible(final Boolean visible) {          /**
180                  this.visible = visible;           * Creates an {@link AttributeMetadata} object with the following
181             * information
182             *
183             * @param visible
184             *            Shall this attribute be displayed or hidden from the user?
185             * @param title
186             *            {@link Translation} for Name
187             * @param desc
188             *            {@link Translation} for an attribute description
189             * @param unit
190             *            {@link String} of the unit that the information is in
191             */
192            public AttributeMetadata(final String localName, final Boolean visible,
193                            final Translation title, final Translation desc, final String unit) {
194                    this(new NameImpl(localName), true, title, desc, "");
195          }          }
196    
197          /** @return the index of this attribute in the underlying table/dbf **/          /**
198          public int getColIdx() {           * Creates a new visible {@link AttributeMetadata} with default (no) values.
199                  return colIdx;           */
200            public AttributeMetadata(final String localName, final List<String> langs) {
201                    this(localName, true, new Translation(langs, localName),
202                                    new Translation(), "");
203          }          }
204    
205          public Translation getTitle() {          /**
206                  return title;           * Creates a new visible {@link AttributeMetadata}
207             */
208            public AttributeMetadata(final String localName, final String defaultTitle,
209                            final List<String> langs) {
210                    this(localName, true, new Translation(langs, defaultTitle),
211                                    new Translation(), "");
212          }          }
213    
214          public void setTitle(final Translation title) {          /**
215                  this.title = title;           * Orders the attributes according to their {@link #weight}. Heavier =>
216             * further down.
217             */
218            @Override
219            public int compareTo(final AttributeMetadata atm2) {
220                    return new Integer(weight).compareTo(atm2.getWeight());
221            }
222    
223            /**
224             * @see Copyable inferface
225             */
226            @Override
227            public AttributeMetadata copy() {
228                    return copyTo(new AttributeMetadata());
229            }
230    
231            /**
232             * @see Copyable inferface
233             */
234            @Override
235            public AttributeMetadata copyTo(final AttributeMetadata amd) {
236                    getTitle().copyTo(amd.getTitle());
237                    getDesc().copyTo(amd.getDesc());
238                    amd.setUnit(getUnit());
239                    amd.setVisible(isVisible());
240                    amd.setName(new NameImpl(getName().getNamespaceURI(), getName()
241                                    .getLocalPart()));
242    
243                    amd.setWeight(getWeight());
244                    amd.setFunctionX(getFunctionX());
245                    amd.setFunctionA(getFunctionA());
246    
247                    for (final Object nodataValue : getNodataValues()) {
248                            amd.getNodataValues().add(nodataValue);
249                    }
250    
251                    return amd;
252          }          }
253    
254          public Translation getDesc() {          public Translation getDesc() {
255                  return desc;                  return desc;
256          }          }
257    
258          public void setDesc(final Translation desc) {          public Double getFunctionA() {
259                  this.desc = desc;                  return functionA;
260            }
261    
262            public Double getFunctionX() {
263                    return functionX;
264            }
265    
266            /**
267             * The local name. E.g. the name of the DBF column as a {@link String}
268             */
269            public String getLocalName() {
270                    return getName().getLocalPart();
271            }
272    
273            /**
274             * The fully qualified {@link Name} of the attribute, e.g. <code>org.bla.plo:blub</code>
275             */
276            public Name getName() {
277                    return name;
278            }
279    
280            public HashSet<Object> getNodataValues() {
281                    return nodataValues;
282            }
283    
284            /**
285             * @return a number between 0 (bad) and 1 (good) that is calculated from the
286             *         amount of translation available. If this attribute is not
287             *         {@link #visible}, it will return 1.
288             */
289            public double getQuality(final List<String> languages) {
290    
291                    if (!isVisible())
292                            return 1.;
293    
294                    return (I8NUtil.qmTranslation(languages, getTitle()) * 2. + I8NUtil
295                                    .qmTranslation(languages, getDesc()) * 1.) / 3.;
296            }
297    
298            public Translation getTitle() {
299                    return title;
300          }          }
301    
302          public String getUnit() {          public String getUnit() {
303                  return unit;                  return unit;
304          }          }
305    
306            public int getWeight() {
307                    return weight;
308            }
309    
310            /**
311             * Will the end-user see this attribute?
312             */
313            public boolean isVisible() {
314                    return visible;
315            }
316    
317            public void setDesc(final Translation desc) {
318                    this.desc = desc;
319            }
320    
321            public void setFunctionA(final Double functionA) {
322                    this.functionA = functionA;
323            }
324    
325            public void setFunctionX(final Double functionX) {
326                    this.functionX = functionX;
327            }
328    
329            /**
330             * The fully qualified Name of the attribute, e.g. org.bla.plo:blub
331             */
332            public void setLocalName(final String localName) {
333                    this.name = new NameImpl(localName);
334            }
335    
336            /**
337             * The fully qualified {@link Name} of the attribute, e.g. <code>org.bla.plo:blub</code>
338             */
339            public void setName(final Name name) {
340                    this.name = name;
341            }
342    
343            public void addNodataValue(Object nodataValue) {
344                    this.nodataValues.add(nodataValue);
345            }
346            
347            public void removeNodataValue(Object nodataValue) {
348                    this.nodataValues.remove(nodataValue);
349            }
350    
351            public void setTitle(final Translation title) {
352                    this.title = title;
353            }
354    
355          public void setUnit(final String unit) {          public void setUnit(final String unit) {
356                  this.unit = unit;                  this.unit = unit;
357          }          }
358    
359          @Override          public void setVisible(final boolean visible) {
360          public AttributeMetaData copyTo(AttributeMetaData amd) {                  this.visible = visible;
361                  getTitle().copyTo(amd.getTitle());          }
362                  getDesc().copyTo(amd.getDesc());  
363                  amd.setUnit(getUnit());          /**
364                  amd.setVisible(isVisible());           * Shall the end-user see this attribute?
365                  amd.setColIdx(getColIdx());           * @param visible
366                             */
367                  return amd;          public void setVisible(final Boolean visible) {
368    //              // The THE_GEOM and shall never be visible!
369    //              if (name.getLocalPart().equalsIgnoreCase("the_geom"))
370    //                      this.visible = false;
371    //              else
372    //                      this.visible = visible;
373    
374                    this.visible = visible;
375          }          }
376    
377            public void setWeight(final int weight) {
378                    this.weight = weight;
379            }
380            
381            /**
382             * For nicer debugging
383             */
384          @Override          @Override
385          public AttributeMetaData copy() {          public String toString() {
386                  AttributeMetaData amd = new AttributeMetaData();                  StringBuffer sb = new StringBuffer();
387                  getTitle().copyTo(amd.getTitle());                  if (name != null) sb.append(name.toString()+" ");
388                  getDesc().copyTo(amd.getDesc());                  sb.append("weight="+weight+" ");
389                  amd.setUnit(getUnit());                  sb.append("title="+getTitle().toString());
390                  amd.setVisible(isVisible());                  return sb.toString();
                 amd.setColIdx(getColIdx());  
                   
                 return amd;  
391          }          }
392    
393          private void setColIdx(int colIdx_) {          /**
394                  colIdx = colIdx_;           * Takes any value object and checks it against the NODATA values. If the
395             * value equals a NODATA value, <code>null</code> is returned. Otherwise the
396             * same object is returned.
397             *
398             * Note: This method is called often.
399             */
400            public Object fiterNodata(final Object value) {
401                    if (nodataValues.contains(value)) return null;
402                    return value;
403          }          }
404  }  }

Legend:
Removed from v.420  
changed lines
  Added in v.666

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26