/[schmitzm]/branches/2.0-GP14/src/skrueger/geotools/StyledFeatureCollectionTableModel.java
ViewVC logotype

Diff of /branches/2.0-GP14/src/skrueger/geotools/StyledFeatureCollectionTableModel.java

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

trunk/src/skrueger/geotools/StyledFeatureCollectionTableModel.java revision 168 by alfonx, Sun Jun 28 17:57:38 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFeatureCollectionTableModel.java revision 335 by alfonx, Wed Aug 26 18:09:39 2009 UTC
# Line 1  Line 1 
1  /** SCHMITZM - This file is part of the java library of Martin O.J. Schmitz (SCHMITZM)  /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3      This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.   *
4      This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.   * This file is part of the SCHMITZM library - a collection of utility
5      You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA   * classes based on Java 1.6, focusing (not only) on Java Swing
6     * and the Geotools library.
7      Diese Bibliothek ist freie Software; Sie dürfen sie unter den Bedingungen der GNU Lesser General Public License, wie von der Free Software Foundation veröffentlicht, weiterverteilen und/oder modifizieren; entweder gemäß Version 2.1 der Lizenz oder (nach Ihrer Option) jeder späteren Version.   *
8      Diese Bibliothek wird in der Hoffnung weiterverbreitet, daß sie nützlich sein wird, jedoch OHNE IRGENDEINE GARANTIE, auch ohne die implizierte Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Mehr Details finden Sie in der GNU Lesser General Public License.   * The SCHMITZM project is hosted at:
9      Sie sollten eine Kopie der GNU Lesser General Public License zusammen mit dieser Bibliothek erhalten haben; falls nicht, schreiben Sie an die Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA.   * http://wald.intevation.org/projects/schmitzm/
10   **/   *
11  package skrueger.geotools;   * 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  import java.util.Iterator;   * as published by the Free Software Foundation; either version 3
14  import java.util.Map;   * of the License, or (at your option) any later version.
15  import java.util.Vector;   *
16     * This program is distributed in the hope that it will be useful,
17  import org.apache.log4j.Logger;   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  import org.geotools.data.DefaultQuery;   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  import org.geotools.data.FeatureSource;   * GNU General Public License for more details.
20  import org.geotools.data.Query;   *
21  import org.geotools.data.memory.MemoryDataStore;   * You should have received a copy of the GNU Lesser General Public License (license.txt)
22  import org.geotools.feature.AttributeType;   * along with this program; if not, write to the Free Software
23  import org.geotools.feature.FeatureCollection;   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24  import org.opengis.filter.Filter;   * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26  import schmitzm.geotools.gui.FeatureCollectionTableModel;   * Contributors:
27  import skrueger.AttributeMetaData;   *     Martin O. J. Schmitz - initial API and implementation
28  import skrueger.i8n.I8NUtil;   *     Stefan A. Krüger - additional utility classes
29  import skrueger.i8n.Translation;   ******************************************************************************/
30    package skrueger.geotools;
31  import com.vividsolutions.jts.geom.Envelope;  
32    import java.util.Iterator;
33  /**  import java.util.Map;
34   * This class extends the the {@link FeatureCollectionTableModel} with the  import java.util.Vector;
35   * functionalities of the {@link AttributeMetaData} of  
36   * {@linkplain StyledMapInterface styled objects}.  import org.apache.log4j.Logger;
37   * <ul>  import org.geotools.data.DefaultQuery;
38   * <li>column names are translated according to  import org.geotools.data.FeatureSource;
39   * {@link AttributeMetaData#getTitle()}</li>  import org.geotools.data.Query;
40   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>  import org.geotools.data.memory.MemoryDataStore;
41   * </ul>  import org.geotools.feature.FeatureCollection;
42   *  import org.opengis.feature.simple.SimpleFeature;
43   * @author <a href="mailto:[email protected]">Martin Schmitz</a>  import org.opengis.feature.simple.SimpleFeatureType;
44   *         (University of Bonn/Germany)  import org.opengis.feature.type.AttributeDescriptor;
45   */  import org.opengis.feature.type.FeatureType;
46  public class StyledFeatureCollectionTableModel extends  import org.opengis.filter.Filter;
47                  FeatureCollectionTableModel {  
48          final static private Logger LOGGER = Logger  import schmitzm.geotools.gui.FeatureCollectionTableModel;
49                          .getLogger(StyledFeatureCollectionTableModel.class);  import skrueger.AttributeMetaData;
50          /** Holds the data source as styled map. */  import skrueger.i8n.I8NUtil;
51          protected StyledMapInterface<?> map = null;  import skrueger.i8n.Translation;
52          /** Contains only the visible elements of the {@link AttributeMetaData}-Map */  
53          protected Map<Integer, AttributeMetaData> visibleAMD = null;  import com.vividsolutions.jts.geom.Envelope;
54          /** Holds the data source for the table as {@code FeatureSource}. */  
55          protected FeatureSource featureSource = null;  /**
56          /** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */   * This class extends the the {@link FeatureCollectionTableModel} with the
57          protected Map<Integer, AttributeMetaData> origAMD = null;   * functionalities of the {@link AttributeMetaData} of
58          /** Holds the current filter on the table */   * {@linkplain StyledLayerInterface styled objects}.
59          protected Filter filter = null;   * <ul>
60          /** Holds the Bounds for all features. Only set once during the constructor **/   * <li>column names are translated according to
61          protected Envelope bounds;   * {@link AttributeMetaData#getTitle()}</li>
62     * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>
63          /**   * </ul>
64           * Creates a new table model for a styled map.   *
65           *   * @author <a href="mailto:[email protected]">Martin Schmitz</a>
66           * @param map   *         (University of Bonn/Germany)
67           *            the styled map   */
68           */  public class StyledFeatureCollectionTableModel extends
69          public StyledFeatureCollectionTableModel(                  FeatureCollectionTableModel {
70                          StyledFeatureCollectionInterface map) {          final static private Logger LOGGER = Logger
71                  this(map, Filter.INCLUDE);                          .getLogger(StyledFeatureCollectionTableModel.class);
72          }          /** Holds the data source as styled layer. */
73            protected StyledLayerInterface<?> layer = null;
74          /**          /** Contains only the visible elements of the {@link AttributeMetaData}-Map */
75           * Creates a new table model for a styled map.          protected Map<Integer, AttributeMetaData> visibleAMD = null;
76           *          /** Holds the data source for the table as {@code FeatureSource}. */
77           * @param map          protected FeatureSource featureSource = null;
78           *            the styled map          /** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */
79           * @param filter          protected Map<Integer, AttributeMetaData> origAMD = null;
80           *            filter applied to the table          /** Holds the current filter on the table */
81           */          protected Filter filter = null;
82          public StyledFeatureCollectionTableModel(          /** Holds the Bounds for all features. Only set once during the constructor **/
83                          StyledFeatureCollectionInterface map, Filter filter) {          protected Envelope bounds;
84                  super();  
85                  setFeatureCollection(map, filter);          
86          }  
87            /**
88          /**           * Creates a new table model for a styled layer.
89           * Creates a new table model for a styled map.           *
90           *           * @param layer
91           * @param map           *            the styled layer
92           *            the styled map           */
93           */          public StyledFeatureCollectionTableModel(
94          public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map) {                          StyledFeatureCollectionInterface layer) {
95                  this(map, Filter.INCLUDE);                  this(layer, Filter.INCLUDE);
96          }          }
97    
98          /**          /**
99           * Creates a new table model for a styled map.           * Creates a new table model for a styled layer.
100           *           *
101           * @param map           * @param layer
102           *            the styled map           *            the styled layer
103           * @param filter           * @param filter
104           *            filter applied to the table           *            filter applied to the table
105           */           */
106          public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map,          public StyledFeatureCollectionTableModel(
107                          Filter filter) {                          StyledFeatureCollectionInterface layer, Filter filter) {
108                  super();                  super();
109                  setFeatureCollection(map, filter);                  setFeatureCollection(layer, filter);
110          }          }
111    
112          /**  
113           * Sets a new data source for the table.          /**
114           *           * Creates a new table model for a styled layer.
115           * @param fs           *
116           *            the feature source           * @param layer
117           * @param amd           *            the styled layer
118           *            {@link AttributeMetaData}-Map to define the visible attributes           */
119           *            and translation          public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer) {
120           */                  this(layer, Filter.INCLUDE);
121          protected void setFeatureSource(FeatureSource fs,          }
122                          Map<Integer, AttributeMetaData> amd, Filter filter)  
123                          throws Exception {          /**
124                  if (filter == null)           * Creates a new table model for a styled layer.
125                          filter = Filter.INCLUDE;           *
126             * @param layer
127                  this.featureSource = fs;           *            the styled layer
128                  this.filter = filter;           * @param filter
129                  this.origAMD = amd;           *            filter applied to the table
130                  this.visibleAMD = null;           */
131            public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer,
132                  FeatureCollection fc = null;                          Filter filter) {
133                  if (fs != null) {                  super();
134                    setFeatureCollection(layer, filter);
135                          bounds = fs.getBounds();          }
136    
137                          Query query = new DefaultQuery(fs.getSchema().getTypeName(), filter);          /**
138                          if (amd != null) {           * Sets a new data source for the table.
139                                  // determine the names of the visible Attributes           *
140                                  this.visibleAMD = StyledMapUtil.getVisibleAttributeMetaData(           * @param fs
141                                                  amd, true);           *            the feature source
142                                  Vector<String> visibleAttrNames = new Vector<String>();           * @param amd
143                                  // Add the column with the geometry (usually "the_geom")           *            {@link AttributeMetaData}-Map to define the visible attributes
144                                  visibleAttrNames.add(fs.getSchema().getDefaultGeometry()           *            and translation
145                                                  .getLocalName());           */
146                                  for (int attrIdx : visibleAMD.keySet()) {          protected void setFeatureSource(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
147                            Map<Integer, AttributeMetaData> amd, Filter filter)
148                                          /**                          throws Exception {
149                                           * If the user removed columns from the schema of the DBF                  if (filter == null)
150                                           * file, there might exist AttributeMetaData for columns                          filter = Filter.INCLUDE;
151                                           * that don't exists. We check here to avoid an  
152                                           * ArrayOutOfIndex.                  this.featureSource = fs;
153                                           */                  this.filter = filter;
154                                          if (attrIdx < fs.getSchema().getAttributeCount()) {                  this.origAMD = amd;
155                                                  final AttributeType attributeTypeAtIdx = fs.getSchema()                  this.visibleAMD = null;
156                                                                  .getAttributeType(attrIdx);  
157                                                  visibleAttrNames.add(attributeTypeAtIdx.getLocalName());                  FeatureCollection fc = null;
158                                          } else {                  if (fs != null) {
159                                                  LOGGER.warn("AttributeMetaData has been found for columnIdx="+attrIdx+", but fs.getSchema().getAttributeCount() = "+fs.getSchema().getAttributeCount()+". Ignored.");  
160                                          }                          bounds = fs.getBounds();
161                                  }  
162                            Query query = new DefaultQuery(fs.getSchema().getName().getLocalPart(), filter);
163                                  // create a query for the visible attributes                          if (amd != null) {
164                                  String[] properties = visibleAttrNames.toArray(new String[0]);                                  // determine the names of the visible Attributes
165                                    this.visibleAMD = StyledLayerUtil.getVisibleAttributeMetaData(
166                                  LOGGER.debug("Query contains the following attributes: "                                                  amd, true);
167                                                  + visibleAttrNames);                                  Vector<String> visibleAttrNames = new Vector<String>();
168                                    // Add the column with the geometry (usually "the_geom")
169                                  query = new DefaultQuery(fs.getSchema().getTypeName(), filter,                                  visibleAttrNames.add(fs.getSchema().getGeometryDescriptor()
170                                                  properties);                                                  .getLocalName());
171                          }                                  for (int attrIdx : visibleAMD.keySet()) {
172                          fc = fs.getFeatures(query);  
173                                            /**
174                          // FAILS:!!!, even with query = new                                           * If the user removed columns from the schema of the DBF
175                          // DefaultQuery(fs.getSchema().getTypeName(), filter);                                           * file, there might exist AttributeMetaData for columns
176                          // java.lang.UnsupportedOperationException: Unknown feature                                           * that don't exists. We check here to avoid an
177                          // attribute: PQM_MOD                                           * ArrayOutOfIndex.
178                          // at                                           */
179                          // schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93)                                          if (attrIdx < fs.getSchema().getAttributeCount()) {
180                          // bounds = fc.getBounds();                                                  final AttributeDescriptor attributeTypeAtIdx = fs.getSchema()
181                          // SK, 17.4.2009                                                                  .getAttributeDescriptors().get(attrIdx);
182                          //                                                        visibleAttrNames.add(attributeTypeAtIdx.getLocalName());
183                          // System.out.println("Filter = "+filter);                                          } else {
184                          // System.out.println("Size of FC = "+fc.size());                                                  LOGGER.warn("AttributeMetaData has been found for columnIdx="+attrIdx+", but fs.getSchema().getAttributeCount() = "+fs.getSchema().getAttributeCount()+". Ignored.");
185                          // System.out.println("anz att= "+fc.getNumberOfAttributes());                                          }
186                  }                                  }
187                  setFeatureCollection(fc);  
188          }                                  // create a query for the visible attributes
189                                    String[] properties = visibleAttrNames.toArray(new String[0]);
190          /**  
191           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}                                  LOGGER.debug("Query contains the following attributes: "
192           * and sets this as the new data source for the table.                                                  + visibleAttrNames);
193           *  
194           * @param fs                                  query = new DefaultQuery(fs.getSchema().getTypeName(), filter,
195           *            the feature source                                                  properties);
196           * @param amd                          }
197           *            {@link AttributeMetaData}-Map to define the visible attributes                          fc = fs.getFeatures(query);
198           *            and translation  
199           */                          // FAILS:!!!, even with query = new
200          public void setFeatureCollection(StyledFeatureCollectionInterface map,                          // DefaultQuery(fs.getSchema().getTypeName(), filter);
201                          Filter filter) {                          // java.lang.UnsupportedOperationException: Unknown feature
202                  this.map = map;                          // attribute: PQM_MOD
203                  try {                          // at
204                          if (map == null)                          // schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93)
205                                  setFeatureSource(null, null, null);                          // bounds = fc.getBounds();
206                          else {                          // SK, 17.4.2009
207                                  FeatureCollection fc = map.getGeoObject();                          //      
208                                  String fcName = fc.getSchema().getTypeName();                          // System.out.println("Filter = "+filter);
209                                  FeatureSource fs = new MemoryDataStore(fc)                          // System.out.println("Size of FC = "+fc.size());
210                                                  .getFeatureSource(fcName);                          // System.out.println("anz att= "+fc.getNumberOfAttributes());
211                                  setFeatureSource(fs, map.getAttributeMetaDataMap(), filter);                  }
212                          }                  setFeatureCollection(fc);
213                  } catch (Exception err) {          }
214                          throw new RuntimeException(err);  
215                  }          /**
216          }           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}
217             * and sets this as the new data source for the table.
218          /**           *
219           * Sets the {@code StyledFeatureCollection} as new data source for the           * @param fs
220           * table.           *            the feature source
221           *           * @param amd
222           * @param fs           *            {@link AttributeMetaData}-Map to define the visible attributes
223           *            the feature source           *            and translation
224           * @param amd           */
225           *            {@link AttributeMetaData}-Map to define the visible attributes          public void setFeatureCollection(StyledFeaturesInterface layer,
226           *            and translation                          Filter filter) {
227           */                  this.layer = layer;
228          public void setFeatureCollection(StyledFeatureSourceInterface map,                  try {
229                          Filter filter) {                          if (layer == null)
230                  this.map = map;                                  setFeatureSource(null, null, null);
231                  try {                          else {
232                          if (map == null)                                  FeatureCollection fc = layer.getFeatureCollection();
233                                  setFeatureSource(null, null, null);                                  String fcName = fc.getSchema().getName().getLocalPart();
234                          else                                  FeatureSource fs = new MemoryDataStore(fc)
235                                  setFeatureSource(map.getGeoObject(), map                                                  .getFeatureSource(fcName);
236                                                  .getAttributeMetaDataMap(), filter);                                  setFeatureSource(fs, layer.getAttributeMetaDataMap(), filter);
237                  } catch (Exception err) {                          }
238                          throw new RuntimeException(err);                  } catch (Exception err) {
239                  }                          throw new RuntimeException(err);
240          }                  }
241            }
242          /**  
243           * Resets the filter for the table.          /**
244           *           * Sets the {@code StyledFeatureCollection} as new data source for the
245           * @param filter           * table.
246           *            a filter           *
247           */           * @param fs
248          public void setFilter(Filter filter) {           *            the feature source
249                  try {           * @param amd
250                          setFeatureSource(this.featureSource, this.origAMD, filter);           *            {@link AttributeMetaData}-Map to define the visible attributes
251                  } catch (Exception err) {           *            and translation
252                          LOGGER.error("Setting the filter of the table model", err);           */
253                          throw new RuntimeException(err);          public void setFeatureCollection(StyledFeatureSourceInterface layer,
254                  }                          Filter filter) {
255          }                  this.layer = layer;
256                    try {
257          /**                          if (layer == null)
258           * @return <code>Filter.INCLUDE</code> or the {@link Filter} applied to the                                  setFeatureSource(null, null, null);
259           *         Features                          else
260           */                                  setFeatureSource(layer.getGeoObject(), layer
261          public Filter getFilter() {                                                  .getAttributeMetaDataMap(), filter);
262                  return this.filter;                  } catch (Exception err) {
263          }                          throw new RuntimeException(err);
264                    }
265          /**          }
266           * After calling {@code super.reorganize(.)} this method replaced the column  
267           * descriptions with the titles of the {@code AttributeMetaData}.          /**
268           *           * Resets the filter for the table.
269           * @param fireTableStructureChanged           *
270           *            indicates whether a table event is initiated after reorganize           * @param filter
271           */           *            a filter
272          @Override           */
273          protected void reorganize(boolean fireTableStructureChanged) {          public void setFilter(Filter filter) {
274                  super.reorganize(false);                  try {
275                  // translate the column names                          setFeatureSource(this.featureSource, this.origAMD, filter);
276                  if (visibleAMD != null) {                  } catch (Exception err) {
277                          Iterator<Integer> keys = visibleAMD.keySet().iterator();                          LOGGER.error("Setting the filter of the table model", err);
278                          for (int i = 0; i < colNames.length && keys.hasNext(); i++) {                          throw new RuntimeException(err);
279                                  Translation title = visibleAMD.get(keys.next()).getTitle();                  }
280                                  if (!I8NUtil.isEmpty(title)) {          }
281                                          // System.out.println("set colname " + i + " to " +  
282                                          // title.toString());          /**
283                                          colNames[i] = title.toString();           * @return <code>Filter.INCLUDE</code> or the {@link Filter} applied to the
284                                  }           *         Features
285                          }           */
286                  }          public Filter getFilter() {
287                  if (fireTableStructureChanged)                  return this.filter;
288                          fireTableStructureChanged();          }
289          }  
290            /**
291          /**           * After calling {@code super.reorganize(.)} this method replaced the column
292           * @return Cached bounds for the whole dataset (without applying the filter)           * descriptions with the titles of the {@code AttributeMetaData}.
293           *         or <code>null</code>           *
294           */           * @param fireTableStructureChanged
295          public Envelope getBounds() {           *            indicates whether a table event is initiated after reorganize
296                  return bounds;           */
297          }          @Override
298  }          protected void reorganize(boolean fireTableStructureChanged) {
299                    super.reorganize(false);
300                    // translate the column names
301                    if (visibleAMD != null) {
302                            Iterator<Integer> keys = visibleAMD.keySet().iterator();
303                            for (int i = 0; i < colNames.length && keys.hasNext(); i++) {
304                                    Translation title = visibleAMD.get(keys.next()).getTitle();
305                                    if (!I8NUtil.isEmpty(title)) {
306                                            // System.out.println("set colname " + i + " to " +
307                                            // title.toString());
308                                            colNames[i] = title.toString();
309                                    }
310                            }
311                    }
312                    if (fireTableStructureChanged)
313                            fireTableStructureChanged();
314            }
315    
316            /**
317             * @return Cached bounds for the whole dataset (without applying the filter)
318             *         or <code>null</code>
319             */
320            public Envelope getBounds() {
321                    return bounds;
322            }
323    }

Legend:
Removed from v.168  
changed lines
  Added in v.335

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26