/[schmitzm]/branches/2.2.x/src/skrueger/geotools/StyledFeatureCollectionTableModel.java
ViewVC logotype

Annotation of /branches/2.2.x/src/skrueger/geotools/StyledFeatureCollectionTableModel.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1046 - (hide annotations)
Wed Sep 22 12:10:52 2010 UTC (14 years, 5 months ago) by mojays
File size: 10075 byte(s)
BugFix: deal with "auto-put" behavior of AttributeMetadataMapImpl.get(.) in AttributeMetaDataAttributeTypeFilter, so that "the_geom" is never (automatically) inserted in the AMD
StyledFeatureCollection: check for geometry attribute by FeatureUtil.isGeometryAttribute(.)
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 alfonx 862 * Stefan A. Tzeggai - additional utility classes
29 alfonx 244 ******************************************************************************/
30     package skrueger.geotools;
31    
32 alfonx 534 import java.util.HashMap;
33 alfonx 1042 import java.util.LinkedHashSet;
34 alfonx 681 import java.util.List;
35 alfonx 244 import java.util.Vector;
36    
37     import org.apache.log4j.Logger;
38     import org.geotools.data.DefaultQuery;
39     import org.geotools.data.FeatureSource;
40     import org.geotools.data.Query;
41     import org.geotools.feature.FeatureCollection;
42 alfonx 335 import org.opengis.feature.simple.SimpleFeature;
43     import org.opengis.feature.simple.SimpleFeatureType;
44 alfonx 332 import org.opengis.feature.type.AttributeDescriptor;
45 mojays 1032 import org.opengis.feature.type.Name;
46 alfonx 244 import org.opengis.filter.Filter;
47    
48 alfonx 534 import schmitzm.geotools.feature.FeatureUtil;
49 alfonx 244 import schmitzm.geotools.gui.FeatureCollectionTableModel;
50 alfonx 788 import skrueger.AttributeMetadataImpl;
51 alfonx 772 import skrueger.AttributeMetadataInterface;
52 alfonx 244
53     import com.vividsolutions.jts.geom.Envelope;
54    
55     /**
56     * This class extends the the {@link FeatureCollectionTableModel} with the
57 alfonx 769 * functionalities of the {@link AttributeMetadataImpl}.
58 alfonx 244 * <ul>
59     * <li>column names are translated according to
60 alfonx 769 * {@link AttributeMetadataImpl#getTitle()}</li>
61 alfonx 244 * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>
62 alfonx 534 * <li>Any filter defined in the {@link StyledFeaturesInterface} will be
63     * applied.</li>
64 alfonx 244 * </ul>
65     *
66 alfonx 862 * @author Stefan A. Tzeggai
67 alfonx 244 */
68     public class StyledFeatureCollectionTableModel extends
69     FeatureCollectionTableModel {
70     final static private Logger LOGGER = Logger
71     .getLogger(StyledFeatureCollectionTableModel.class);
72 alfonx 769 /** Contains the complete {@link AttributeMetadataImpl}-Map of the styled layer. */
73 alfonx 772 protected AttributeMetadataMap<? extends AttributeMetadataInterface> amdMap = null;
74 alfonx 244 /** Holds the current filter on the table */
75     protected Filter filter = null;
76     /** Holds the Bounds for all features. Only set once during the constructor **/
77     protected Envelope bounds;
78 alfonx 534 /**
79     * Tooltips für die Spaltennamen. Wird nur beim Aufruf von
80     * {@link #reorganize} befuellt.
81     */
82     protected String[] colTooltips = null;
83 alfonx 244
84 alfonx 681 /** A cache for the #sortedValuesVisibleOnly() **/
85 alfonx 772 protected List<? extends AttributeMetadataInterface> amdMapVisibleOnly = null;
86 alfonx 681
87 alfonx 244 /**
88     * Creates a new table model for a styled layer.
89     *
90 alfonx 428 * @param styledFeatures
91 alfonx 244 * the styled layer
92     * @param filter
93     * filter applied to the table
94     */
95 alfonx 534 public StyledFeatureCollectionTableModel(
96     StyledFeaturesInterface<?> styledFeatures) {
97 alfonx 428 setStyledFeatures(styledFeatures);
98 alfonx 244 }
99    
100     /**
101 alfonx 681 * This overwritten method filters the values for NODATA-values defined in
102 alfonx 769 * the {@link AttributeMetadataImpl}
103 alfonx 681 */
104     @Override
105     public Object getValueAt(int row, int col) {
106     Object rawValue = super.getValueAt(row, col);
107     return amdMap.sortedValuesVisibleOnly().get(col).fiterNodata(rawValue);
108     }
109    
110     /**
111 alfonx 244 * Sets a new data source for the table.
112     *
113     * @param fs
114     * the feature source
115 alfonx 534 * @param amdm
116 alfonx 769 * {@link AttributeMetadataImpl}-Map to define the visible attributes
117 alfonx 244 * and translation
118     */
119 alfonx 534 protected void setFeatureSource(
120     FeatureSource<SimpleFeatureType, SimpleFeature> fs,
121 alfonx 772 AttributeMetadataMap<? extends AttributeMetadataInterface> amdm, Filter filter) throws Exception {
122 alfonx 534
123 alfonx 244 if (filter == null)
124     filter = Filter.INCLUDE;
125    
126 alfonx 534 // this.featureSource = fs;
127 alfonx 244 this.filter = filter;
128 alfonx 534 this.amdMap = amdm;
129 alfonx 681 this.amdMapVisibleOnly = amdMap.sortedValuesVisibleOnly();
130 mojays 1046
131 alfonx 428 FeatureCollection<SimpleFeatureType, SimpleFeature> fc = null;
132 alfonx 244 if (fs != null) {
133    
134     bounds = fs.getBounds();
135    
136 alfonx 464 final SimpleFeatureType schema = fs.getSchema();
137     Query query = new DefaultQuery(schema.getTypeName(), filter);
138 alfonx 534 if (amdm != null) {
139 mojays 1046 LinkedHashSet<String> visibleAttrNames = new LinkedHashSet<String>();
140 alfonx 534
141 alfonx 607 // Add the column with the geometry (usually "the_geom") always
142 alfonx 1042 String geomColumnLocalName = schema.getGeometryDescriptor()
143     .getLocalName();
144     visibleAttrNames.add(geomColumnLocalName);
145 alfonx 534
146     // Add other visible attributes as ordered by weights
147 alfonx 772 for (AttributeMetadataInterface a : amdMapVisibleOnly) {
148 alfonx 534 visibleAttrNames.add(a.getLocalName());
149 alfonx 244 }
150    
151 alfonx 681 // Tested with 2.6.x trunk from 2009-11-26 and it now works. So
152     // we only request the properties we need!
153     // /**
154     // * I got NPEs when properties contained only [the_geom]
155     // ?!??!!??
156     // */
157     // if (properties.length > 1) {
158     query = new DefaultQuery(schema.getTypeName(), filter,
159     visibleAttrNames.toArray(new String[] {}));
160     // } else {
161     // query = new DefaultQuery(schema.getTypeName(), filter);
162     // }
163 alfonx 1042
164     System.out.println(query.getPropertyNames());
165 alfonx 244 }
166     fc = fs.getFeatures(query);
167     }
168     setFeatureCollection(fc);
169     }
170    
171     /**
172     * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}
173     * and sets this as the new data source for the table.
174     *
175     * @param fs
176     * the feature source
177     * @param amd
178 alfonx 769 * {@link AttributeMetadataImpl}-Map to define the visible attributes
179 alfonx 244 * and translation
180     */
181 alfonx 428 public void setStyledFeatures(StyledFeaturesInterface<?> styledFeatures) {
182 alfonx 244 try {
183 alfonx 428 if (styledFeatures == null)
184 alfonx 244 setFeatureSource(null, null, null);
185     else {
186 alfonx 534 setFeatureSource(styledFeatures.getFeatureSource(),
187     styledFeatures.getAttributeMetaDataMap(),
188     styledFeatures.getFilter());
189 alfonx 244 }
190     } catch (Exception err) {
191     throw new RuntimeException(err);
192     }
193     }
194    
195     /**
196     * After calling {@code super.reorganize(.)} this method replaced the column
197     * descriptions with the titles of the {@code AttributeMetaData}.
198     *
199     * @param fireTableStructureChanged
200     * indicates whether a table event is initiated after reorganize
201     */
202     @Override
203     protected void reorganize(boolean fireTableStructureChanged) {
204 alfonx 534
205     featureArray = FeatureUtil.featuresToArray(featureTable);
206     if (featureArray == null || featureArray.length == 0) {
207     colNames = new String[0];
208     colTooltips = new String[0]; // Only set and used in
209 alfonx 681 // StyledFeatureCollectionTableModel
210 alfonx 534 colClass = new Class[0];
211     } else {
212     // Struktur der Tabelle vom AttributeMetaDtaaMap übernehmen
213     SimpleFeatureType schema = featureArray[0].getFeatureType();
214     // Pruefen, welche Attribute angezeigt werden
215     attrTypes.clear();
216 alfonx 772 for (AttributeMetadataInterface amd : amdMapVisibleOnly) {
217 mojays 1032 Name name = amd.getName();
218     AttributeDescriptor type = schema.getDescriptor(name);
219     // if type can not be determined by complete name,
220     // try only the local name
221     if ( type == null )
222     type = schema.getDescriptor(name.getLocalPart());
223 alfonx 534 if (attrFilter == null || attrFilter.accept(type))
224     attrTypes.add(type);
225     }
226     // Namen und Attribut-Indizes der angezeigten Spalten ermitteln
227     colNames = new String[attrTypes.size()];
228     colTooltips = new String[attrTypes.size()]; // Only set and used in
229 alfonx 681 // StyledFeatureCollectionTableModel
230 alfonx 534 colClass = new Class[attrTypes.size()];
231     attrIdxForCol = new int[attrTypes.size()];
232 alfonx 464 for (int i = 0; i < colNames.length; i++) {
233 mojays 1032 Name name = amdMapVisibleOnly.get(i).getName();
234     AttributeDescriptor descriptor = schema.getDescriptor(name);
235     // if type can not be determined by complete name,
236     // try only the local name
237     if ( descriptor == null )
238     descriptor = schema.getDescriptor(name.getLocalPart());
239 alfonx 534
240     // Not so nice in 26: find the index of an attribute...
241     int idx = schema.getAttributeDescriptors().indexOf(descriptor);
242     attrIdxForCol[i] = idx;
243    
244     String attName = schema.getAttributeDescriptors().get(idx)
245     .getLocalName();
246     colNames[i] = amdMap.get(attName).getTitle().toString();
247 alfonx 772 AttributeMetadataInterface amd = amdMap.get(attName);
248 alfonx 681 colTooltips[i] = "<html>" + amd.getDesc().toString() + "<br>"
249     + amd.getName() + "</html>";
250     colClass[i] = schema.getAttributeDescriptors().get(idx)
251     .getType().getBinding();
252 alfonx 244 }
253     }
254 alfonx 534
255     // store feature indexes in HashMap to optimize findFeature(.)
256     featureIdx = new HashMap<String, Integer>();
257     for (int i = 0; i < featureArray.length; i++)
258     if (featureArray[i] != null)
259     featureIdx.put(featureArray[i].getID(), i);
260 alfonx 681 //
261     // // translate the column names
262     // if (amdMap != null) {
263     // for (int i = 0; i < colNames.length; i++) {
264     // colTooltips[i] = amdMap.get(colNames[i]).getDesc().toString()
265     // + "<br>" + colNames[i];
266     // colNames[i] = amdMap.get(colNames[i]).getTitle().toString();
267     //
268     // }
269     // }
270 alfonx 244 if (fireTableStructureChanged)
271     fireTableStructureChanged();
272 alfonx 534
273 alfonx 244 }
274    
275     /**
276     * @return Cached bounds for the whole dataset (without applying the filter)
277     * or <code>null</code>
278     */
279     public Envelope getBounds() {
280     return bounds;
281     }
282     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26