/[schmitzm]/trunk/src/skrueger/geotools/StyledFeatureCollectionTableModel.java
ViewVC logotype

Diff of /trunk/src/skrueger/geotools/StyledFeatureCollectionTableModel.java

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

trunk/src/skrueger/geotools/StyledFeatureCollectionTableModel.java revision 225 by alfonx, Wed Jul 15 08:05:22 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFeatureCollectionTableModel.java revision 332 by alfonx, Wed Aug 26 17:15:49 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 StyledLayerInterface 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.type.AttributeDescriptor;
43   * @author <a href="mailto:[email protected]">Martin Schmitz</a>  import org.opengis.filter.Filter;
44   *         (University of Bonn/Germany)  
45   */  import schmitzm.geotools.gui.FeatureCollectionTableModel;
46  public class StyledFeatureCollectionTableModel extends  import skrueger.AttributeMetaData;
47                  FeatureCollectionTableModel {  import skrueger.i8n.I8NUtil;
48          final static private Logger LOGGER = Logger  import skrueger.i8n.Translation;
49                          .getLogger(StyledFeatureCollectionTableModel.class);  
50          /** Holds the data source as styled layer. */  import com.vividsolutions.jts.geom.Envelope;
51          protected StyledLayerInterface<?> layer = null;  
52          /** Contains only the visible elements of the {@link AttributeMetaData}-Map */  /**
53          protected Map<Integer, AttributeMetaData> visibleAMD = null;   * This class extends the the {@link FeatureCollectionTableModel} with the
54          /** Holds the data source for the table as {@code FeatureSource}. */   * functionalities of the {@link AttributeMetaData} of
55          protected FeatureSource featureSource = null;   * {@linkplain StyledLayerInterface styled objects}.
56          /** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */   * <ul>
57          protected Map<Integer, AttributeMetaData> origAMD = null;   * <li>column names are translated according to
58          /** Holds the current filter on the table */   * {@link AttributeMetaData#getTitle()}</li>
59          protected Filter filter = null;   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>
60          /** Holds the Bounds for all features. Only set once during the constructor **/   * </ul>
61          protected Envelope bounds;   *
62     * @author <a href="mailto:[email protected]">Martin Schmitz</a>
63             *         (University of Bonn/Germany)
64     */
65          /**  public class StyledFeatureCollectionTableModel extends
66           * Creates a new table model for a styled layer.                  FeatureCollectionTableModel {
67           *          final static private Logger LOGGER = Logger
68           * @param layer                          .getLogger(StyledFeatureCollectionTableModel.class);
69           *            the styled layer          /** Holds the data source as styled layer. */
70           */          protected StyledLayerInterface<?> layer = null;
71          public StyledFeatureCollectionTableModel(          /** Contains only the visible elements of the {@link AttributeMetaData}-Map */
72                          StyledFeatureCollectionInterface layer) {          protected Map<Integer, AttributeMetaData> visibleAMD = null;
73                  this(layer, Filter.INCLUDE);          /** Holds the data source for the table as {@code FeatureSource}. */
74          }          protected FeatureSource featureSource = null;
75            /** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */
76          /**          protected Map<Integer, AttributeMetaData> origAMD = null;
77           * Creates a new table model for a styled layer.          /** Holds the current filter on the table */
78           *          protected Filter filter = null;
79           * @param layer          /** Holds the Bounds for all features. Only set once during the constructor **/
80           *            the styled layer          protected Envelope bounds;
81           * @param filter  
82           *            filter applied to the table          
83           */  
84          public StyledFeatureCollectionTableModel(          /**
85                          StyledFeatureCollectionInterface layer, Filter filter) {           * Creates a new table model for a styled layer.
86                  super();           *
87                  setFeatureCollection(layer, filter);           * @param layer
88          }           *            the styled layer
89             */
90            public StyledFeatureCollectionTableModel(
91          /**                          StyledFeatureCollectionInterface layer) {
92           * Creates a new table model for a styled layer.                  this(layer, Filter.INCLUDE);
93           *          }
94           * @param layer  
95           *            the styled layer          /**
96           */           * Creates a new table model for a styled layer.
97          public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer) {           *
98                  this(layer, Filter.INCLUDE);           * @param layer
99          }           *            the styled layer
100             * @param filter
101          /**           *            filter applied to the table
102           * Creates a new table model for a styled layer.           */
103           *          public StyledFeatureCollectionTableModel(
104           * @param layer                          StyledFeatureCollectionInterface layer, Filter filter) {
105           *            the styled layer                  super();
106           * @param filter                  setFeatureCollection(layer, filter);
107           *            filter applied to the table          }
108           */  
109          public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer,  
110                          Filter filter) {          /**
111                  super();           * Creates a new table model for a styled layer.
112                  setFeatureCollection(layer, filter);           *
113          }           * @param layer
114             *            the styled layer
115          /**           */
116           * Sets a new data source for the table.          public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer) {
117           *                  this(layer, Filter.INCLUDE);
118           * @param fs          }
119           *            the feature source  
120           * @param amd          /**
121           *            {@link AttributeMetaData}-Map to define the visible attributes           * Creates a new table model for a styled layer.
122           *            and translation           *
123           */           * @param layer
124          protected void setFeatureSource(FeatureSource fs,           *            the styled layer
125                          Map<Integer, AttributeMetaData> amd, Filter filter)           * @param filter
126                          throws Exception {           *            filter applied to the table
127                  if (filter == null)           */
128                          filter = Filter.INCLUDE;          public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer,
129                            Filter filter) {
130                  this.featureSource = fs;                  super();
131                  this.filter = filter;                  setFeatureCollection(layer, filter);
132                  this.origAMD = amd;          }
133                  this.visibleAMD = null;  
134            /**
135                  FeatureCollection fc = null;           * Sets a new data source for the table.
136                  if (fs != null) {           *
137             * @param fs
138                          bounds = fs.getBounds();           *            the feature source
139             * @param amd
140                          Query query = new DefaultQuery(fs.getSchema().getTypeName(), filter);           *            {@link AttributeMetaData}-Map to define the visible attributes
141                          if (amd != null) {           *            and translation
142                                  // determine the names of the visible Attributes           */
143                                  this.visibleAMD = StyledLayerUtil.getVisibleAttributeMetaData(          protected void setFeatureSource(FeatureSource fs,
144                                                  amd, true);                          Map<Integer, AttributeMetaData> amd, Filter filter)
145                                  Vector<String> visibleAttrNames = new Vector<String>();                          throws Exception {
146                                  // Add the column with the geometry (usually "the_geom")                  if (filter == null)
147                                  visibleAttrNames.add(fs.getSchema().getDefaultGeometry()                          filter = Filter.INCLUDE;
148                                                  .getLocalName());  
149                                  for (int attrIdx : visibleAMD.keySet()) {                  this.featureSource = fs;
150                    this.filter = filter;
151                                          /**                  this.origAMD = amd;
152                                           * If the user removed columns from the schema of the DBF                  this.visibleAMD = null;
153                                           * file, there might exist AttributeMetaData for columns  
154                                           * that don't exists. We check here to avoid an                  FeatureCollection fc = null;
155                                           * ArrayOutOfIndex.                  if (fs != null) {
156                                           */  
157                                          if (attrIdx < fs.getSchema().getAttributeCount()) {                          bounds = fs.getBounds();
158                                                  final AttributeType attributeTypeAtIdx = fs.getSchema()  
159                                                                  .getAttributeType(attrIdx);                          Query query = new DefaultQuery(fs.getSchema().getTypeName(), filter);
160                                                  visibleAttrNames.add(attributeTypeAtIdx.getLocalName());                          if (amd != null) {
161                                          } else {                                  // determine the names of the visible Attributes
162                                                  LOGGER.warn("AttributeMetaData has been found for columnIdx="+attrIdx+", but fs.getSchema().getAttributeCount() = "+fs.getSchema().getAttributeCount()+". Ignored.");                                  this.visibleAMD = StyledLayerUtil.getVisibleAttributeMetaData(
163                                          }                                                  amd, true);
164                                  }                                  Vector<String> visibleAttrNames = new Vector<String>();
165                                    // Add the column with the geometry (usually "the_geom")
166                                  // create a query for the visible attributes                                  visibleAttrNames.add(fs.getSchema().getDefaultGeometry()
167                                  String[] properties = visibleAttrNames.toArray(new String[0]);                                                  .getLocalName());
168                                    for (int attrIdx : visibleAMD.keySet()) {
169                                  LOGGER.debug("Query contains the following attributes: "  
170                                                  + visibleAttrNames);                                          /**
171                                             * If the user removed columns from the schema of the DBF
172                                  query = new DefaultQuery(fs.getSchema().getTypeName(), filter,                                           * file, there might exist AttributeMetaData for columns
173                                                  properties);                                           * that don't exists. We check here to avoid an
174                          }                                           * ArrayOutOfIndex.
175                          fc = fs.getFeatures(query);                                           */
176                                            if (attrIdx < fs.getSchema().getAttributeCount()) {
177                          // FAILS:!!!, even with query = new                                                  final AttributeDescriptor attributeTypeAtIdx = fs.getSchema()
178                          // DefaultQuery(fs.getSchema().getTypeName(), filter);                                                                  .getAttributeType(attrIdx);
179                          // java.lang.UnsupportedOperationException: Unknown feature                                                  visibleAttrNames.add(attributeTypeAtIdx.getLocalName());
180                          // attribute: PQM_MOD                                          } else {
181                          // at                                                  LOGGER.warn("AttributeMetaData has been found for columnIdx="+attrIdx+", but fs.getSchema().getAttributeCount() = "+fs.getSchema().getAttributeCount()+". Ignored.");
182                          // schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93)                                          }
183                          // bounds = fc.getBounds();                                  }
184                          // SK, 17.4.2009  
185                          //                                        // create a query for the visible attributes
186                          // System.out.println("Filter = "+filter);                                  String[] properties = visibleAttrNames.toArray(new String[0]);
187                          // System.out.println("Size of FC = "+fc.size());  
188                          // System.out.println("anz att= "+fc.getNumberOfAttributes());                                  LOGGER.debug("Query contains the following attributes: "
189                  }                                                  + visibleAttrNames);
190                  setFeatureCollection(fc);  
191          }                                  query = new DefaultQuery(fs.getSchema().getTypeName(), filter,
192                                                    properties);
193          /**                          }
194           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}                          fc = fs.getFeatures(query);
195           * and sets this as the new data source for the table.  
196           *                          // FAILS:!!!, even with query = new
197           * @param fs                          // DefaultQuery(fs.getSchema().getTypeName(), filter);
198           *            the feature source                          // java.lang.UnsupportedOperationException: Unknown feature
199           * @param amd                          // attribute: PQM_MOD
200           *            {@link AttributeMetaData}-Map to define the visible attributes                          // at
201           *            and translation                          // schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93)
202           */                          // bounds = fc.getBounds();
203          public void setFeatureCollection(StyledFeaturesInterface layer,                          // SK, 17.4.2009
204                          Filter filter) {                          //      
205                  this.layer = layer;                          // System.out.println("Filter = "+filter);
206                  try {                          // System.out.println("Size of FC = "+fc.size());
207                          if (layer == null)                          // System.out.println("anz att= "+fc.getNumberOfAttributes());
208                                  setFeatureSource(null, null, null);                  }
209                          else {                  setFeatureCollection(fc);
210                                  FeatureCollection fc = layer.getFeatureCollection();          }
211                                  String fcName = fc.getSchema().getTypeName();  
212                                  FeatureSource fs = new MemoryDataStore(fc)          /**
213                                                  .getFeatureSource(fcName);           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}
214                                  setFeatureSource(fs, layer.getAttributeMetaDataMap(), filter);           * and sets this as the new data source for the table.
215                          }           *
216                  } catch (Exception err) {           * @param fs
217                          throw new RuntimeException(err);           *            the feature source
218                  }           * @param amd
219          }           *            {@link AttributeMetaData}-Map to define the visible attributes
220             *            and translation
221          /**           */
222           * Sets the {@code StyledFeatureCollection} as new data source for the          public void setFeatureCollection(StyledFeaturesInterface layer,
223           * table.                          Filter filter) {
224           *                  this.layer = layer;
225           * @param fs                  try {
226           *            the feature source                          if (layer == null)
227           * @param amd                                  setFeatureSource(null, null, null);
228           *            {@link AttributeMetaData}-Map to define the visible attributes                          else {
229           *            and translation                                  FeatureCollection fc = layer.getFeatureCollection();
230           */                                  String fcName = fc.getSchema().getTypeName();
231          public void setFeatureCollection(StyledFeatureSourceInterface layer,                                  FeatureSource fs = new MemoryDataStore(fc)
232                          Filter filter) {                                                  .getFeatureSource(fcName);
233                  this.layer = layer;                                  setFeatureSource(fs, layer.getAttributeMetaDataMap(), filter);
234                  try {                          }
235                          if (layer == null)                  } catch (Exception err) {
236                                  setFeatureSource(null, null, null);                          throw new RuntimeException(err);
237                          else                  }
238                                  setFeatureSource(layer.getGeoObject(), layer          }
239                                                  .getAttributeMetaDataMap(), filter);  
240                  } catch (Exception err) {          /**
241                          throw new RuntimeException(err);           * Sets the {@code StyledFeatureCollection} as new data source for the
242                  }           * table.
243          }           *
244             * @param fs
245          /**           *            the feature source
246           * Resets the filter for the table.           * @param amd
247           *           *            {@link AttributeMetaData}-Map to define the visible attributes
248           * @param filter           *            and translation
249           *            a filter           */
250           */          public void setFeatureCollection(StyledFeatureSourceInterface layer,
251          public void setFilter(Filter filter) {                          Filter filter) {
252                  try {                  this.layer = layer;
253                          setFeatureSource(this.featureSource, this.origAMD, filter);                  try {
254                  } catch (Exception err) {                          if (layer == null)
255                          LOGGER.error("Setting the filter of the table model", err);                                  setFeatureSource(null, null, null);
256                          throw new RuntimeException(err);                          else
257                  }                                  setFeatureSource(layer.getGeoObject(), layer
258          }                                                  .getAttributeMetaDataMap(), filter);
259                    } catch (Exception err) {
260          /**                          throw new RuntimeException(err);
261           * @return <code>Filter.INCLUDE</code> or the {@link Filter} applied to the                  }
262           *         Features          }
263           */  
264          public Filter getFilter() {          /**
265                  return this.filter;           * Resets the filter for the table.
266          }           *
267             * @param filter
268          /**           *            a filter
269           * After calling {@code super.reorganize(.)} this method replaced the column           */
270           * descriptions with the titles of the {@code AttributeMetaData}.          public void setFilter(Filter filter) {
271           *                  try {
272           * @param fireTableStructureChanged                          setFeatureSource(this.featureSource, this.origAMD, filter);
273           *            indicates whether a table event is initiated after reorganize                  } catch (Exception err) {
274           */                          LOGGER.error("Setting the filter of the table model", err);
275          @Override                          throw new RuntimeException(err);
276          protected void reorganize(boolean fireTableStructureChanged) {                  }
277                  super.reorganize(false);          }
278                  // translate the column names  
279                  if (visibleAMD != null) {          /**
280                          Iterator<Integer> keys = visibleAMD.keySet().iterator();           * @return <code>Filter.INCLUDE</code> or the {@link Filter} applied to the
281                          for (int i = 0; i < colNames.length && keys.hasNext(); i++) {           *         Features
282                                  Translation title = visibleAMD.get(keys.next()).getTitle();           */
283                                  if (!I8NUtil.isEmpty(title)) {          public Filter getFilter() {
284                                          // System.out.println("set colname " + i + " to " +                  return this.filter;
285                                          // title.toString());          }
286                                          colNames[i] = title.toString();  
287                                  }          /**
288                          }           * After calling {@code super.reorganize(.)} this method replaced the column
289                  }           * descriptions with the titles of the {@code AttributeMetaData}.
290                  if (fireTableStructureChanged)           *
291                          fireTableStructureChanged();           * @param fireTableStructureChanged
292          }           *            indicates whether a table event is initiated after reorganize
293             */
294          /**          @Override
295           * @return Cached bounds for the whole dataset (without applying the filter)          protected void reorganize(boolean fireTableStructureChanged) {
296           *         or <code>null</code>                  super.reorganize(false);
297           */                  // translate the column names
298          public Envelope getBounds() {                  if (visibleAMD != null) {
299                  return bounds;                          Iterator<Integer> keys = visibleAMD.keySet().iterator();
300          }                          for (int i = 0; i < colNames.length && keys.hasNext(); i++) {
301  }                                  Translation title = visibleAMD.get(keys.next()).getTitle();
302                                    if (!I8NUtil.isEmpty(title)) {
303                                            // System.out.println("set colname " + i + " to " +
304                                            // title.toString());
305                                            colNames[i] = title.toString();
306                                    }
307                            }
308                    }
309                    if (fireTableStructureChanged)
310                            fireTableStructureChanged();
311            }
312    
313            /**
314             * @return Cached bounds for the whole dataset (without applying the filter)
315             *         or <code>null</code>
316             */
317            public Envelope getBounds() {
318                    return bounds;
319            }
320    }

Legend:
Removed from v.225  
changed lines
  Added in v.332

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26