/[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 168 by alfonx, Sun Jun 28 17:57:38 2009 UTC branches/2.0-RC2/src/skrueger/geotools/StyledFeatureCollectionTableModel.java revision 621 by alfonx, Thu Jan 28 10:06:05 2010 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.HashMap;
33  /**  import java.util.Vector;
34   * This class extends the the {@link FeatureCollectionTableModel} with the  
35   * functionalities of the {@link AttributeMetaData} of  import org.apache.log4j.Logger;
36   * {@linkplain StyledMapInterface styled objects}.  import org.geotools.data.DefaultQuery;
37   * <ul>  import org.geotools.data.FeatureSource;
38   * <li>column names are translated according to  import org.geotools.data.Query;
39   * {@link AttributeMetaData#getTitle()}</li>  import org.geotools.feature.FeatureCollection;
40   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>  import org.opengis.feature.simple.SimpleFeature;
41   * </ul>  import org.opengis.feature.simple.SimpleFeatureType;
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.feature.FeatureUtil;
46  public class StyledFeatureCollectionTableModel extends  import schmitzm.geotools.gui.FeatureCollectionTableModel;
47                  FeatureCollectionTableModel {  import skrueger.AttributeMetadata;
48          final static private Logger LOGGER = Logger  
49                          .getLogger(StyledFeatureCollectionTableModel.class);  import com.vividsolutions.jts.geom.Envelope;
50          /** Holds the data source as styled map. */  
51          protected StyledMapInterface<?> map = null;  /**
52          /** Contains only the visible elements of the {@link AttributeMetaData}-Map */   * This class extends the the {@link FeatureCollectionTableModel} with the
53          protected Map<Integer, AttributeMetaData> visibleAMD = null;   * functionalities of the {@link AttributeMetadata}.
54          /** Holds the data source for the table as {@code FeatureSource}. */   * <ul>
55          protected FeatureSource featureSource = null;   * <li>column names are translated according to
56          /** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */   * {@link AttributeMetadata#getTitle()}</li>
57          protected Map<Integer, AttributeMetaData> origAMD = null;   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>
58          /** Holds the current filter on the table */   * <li>Any filter defined in the {@link StyledFeaturesInterface} will be
59          protected Filter filter = null;   * applied.</li>
60          /** Holds the Bounds for all features. Only set once during the constructor **/   * </ul>
61          protected Envelope bounds;   *
62     * @author Stefan A. Krüger
63          /**   */
64           * Creates a new table model for a styled map.  public class StyledFeatureCollectionTableModel extends
65           *                  FeatureCollectionTableModel {
66           * @param map          final static private Logger LOGGER = Logger
67           *            the styled map                          .getLogger(StyledFeatureCollectionTableModel.class);
68           */          /** Contains the complete {@link AttributeMetadata}-Map of the styled layer. */
69          public StyledFeatureCollectionTableModel(          protected AttributeMetadataMap amdMap = null;
70                          StyledFeatureCollectionInterface map) {          /** Holds the current filter on the table */
71                  this(map, Filter.INCLUDE);          protected Filter filter = null;
72          }          /** Holds the Bounds for all features. Only set once during the constructor **/
73            protected Envelope bounds;
74          /**          /**
75           * Creates a new table model for a styled map.           * Tooltips für die Spaltennamen. Wird nur beim Aufruf von
76           *           * {@link #reorganize} befuellt.
77           * @param map           */
78           *            the styled map          protected String[] colTooltips = null;
79           * @param filter  
80           *            filter applied to the table          /**
81           */           * Creates a new table model for a styled layer.
82          public StyledFeatureCollectionTableModel(           *
83                          StyledFeatureCollectionInterface map, Filter filter) {           * @param styledFeatures
84                  super();           *            the styled layer
85                  setFeatureCollection(map, filter);           * @param filter
86          }           *            filter applied to the table
87             */
88          /**          public StyledFeatureCollectionTableModel(
89           * Creates a new table model for a styled map.                          StyledFeaturesInterface<?> styledFeatures) {
90           *                  setStyledFeatures(styledFeatures);
91           * @param map          }
92           *            the styled map  
93           */          /**
94          public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map) {           * Sets a new data source for the table.
95                  this(map, Filter.INCLUDE);           *
96          }           * @param fs
97             *            the feature source
98          /**           * @param amdm
99           * Creates a new table model for a styled map.           *            {@link AttributeMetadata}-Map to define the visible attributes
100           *           *            and translation
101           * @param map           */
102           *            the styled map          protected void setFeatureSource(
103           * @param filter                          FeatureSource<SimpleFeatureType, SimpleFeature> fs,
104           *            filter applied to the table                          AttributeMetadataMap amdm, Filter filter) throws Exception {
105           */  
106          public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map,                  if (filter == null)
107                          Filter filter) {                          filter = Filter.INCLUDE;
108                  super();  
109                  setFeatureCollection(map, filter);                  // this.featureSource = fs;
110          }                  this.filter = filter;
111                    this.amdMap = amdm;
112          /**  
113           * Sets a new data source for the table.                  FeatureCollection<SimpleFeatureType, SimpleFeature> fc = null;
114           *                  if (fs != null) {
115           * @param fs  
116           *            the feature source                          bounds = fs.getBounds();
117           * @param amd  
118           *            {@link AttributeMetaData}-Map to define the visible attributes                          final SimpleFeatureType schema = fs.getSchema();
119           *            and translation                          Query query = new DefaultQuery(schema.getTypeName(), filter);
120           */                          if (amdm != null) {
121          protected void setFeatureSource(FeatureSource fs,                                  Vector<String> visibleAttrNames = new Vector<String>();
122                          Map<Integer, AttributeMetaData> amd, Filter filter)  
123                          throws Exception {                                  // Add the column with the geometry (usually "the_geom") always
124                  if (filter == null)                                  visibleAttrNames.add(schema.getGeometryDescriptor()
125                          filter = Filter.INCLUDE;                                                  .getLocalName());
126    
127                  this.featureSource = fs;                                  // Add other visible attributes as ordered by weights
128                  this.filter = filter;                                  for (AttributeMetadata a : amdm.sortedValuesVisibleOnly()) {
129                  this.origAMD = amd;                                          visibleAttrNames.add(a.getLocalName());
130                  this.visibleAMD = null;                                  }
131    
132                  FeatureCollection fc = null;  //                      Tested with 2.6.x trunk from 2009-11-26 and it now works. So we only request the properties we need!                    
133                  if (fs != null) {  //                              /**
134    //                               * I got NPEs when properties contained only [the_geom] ?!??!!??
135                          bounds = fs.getBounds();  //                               */
136    //                              if (properties.length > 1) {
137                          Query query = new DefaultQuery(fs.getSchema().getTypeName(), filter);                                          query = new DefaultQuery(schema.getTypeName(), filter,
138                          if (amd != null) {                                                          visibleAttrNames.toArray(new String[] {}));
139                                  // determine the names of the visible Attributes  //                              } else {
140                                  this.visibleAMD = StyledMapUtil.getVisibleAttributeMetaData(  //                                      query = new DefaultQuery(schema.getTypeName(), filter);
141                                                  amd, true);  //                              }
142                                  Vector<String> visibleAttrNames = new Vector<String>();                          }
143                                  // Add the column with the geometry (usually "the_geom")                          fc = fs.getFeatures(query);
144                                  visibleAttrNames.add(fs.getSchema().getDefaultGeometry()                  }
145                                                  .getLocalName());                  setFeatureCollection(fc);
146                                  for (int attrIdx : visibleAMD.keySet()) {          }
147    
148                                          /**          /**
149                                           * If the user removed columns from the schema of the DBF           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}
150                                           * file, there might exist AttributeMetaData for columns           * and sets this as the new data source for the table.
151                                           * that don't exists. We check here to avoid an           *
152                                           * ArrayOutOfIndex.           * @param fs
153                                           */           *            the feature source
154                                          if (attrIdx < fs.getSchema().getAttributeCount()) {           * @param amd
155                                                  final AttributeType attributeTypeAtIdx = fs.getSchema()           *            {@link AttributeMetadata}-Map to define the visible attributes
156                                                                  .getAttributeType(attrIdx);           *            and translation
157                                                  visibleAttrNames.add(attributeTypeAtIdx.getLocalName());           */
158                                          } else {          public void setStyledFeatures(StyledFeaturesInterface<?> styledFeatures) {
159                                                  LOGGER.warn("AttributeMetaData has been found for columnIdx="+attrIdx+", but fs.getSchema().getAttributeCount() = "+fs.getSchema().getAttributeCount()+". Ignored.");                  try {
160                                          }                          if (styledFeatures == null)
161                                  }                                  setFeatureSource(null, null, null);
162                            else {
163                                  // create a query for the visible attributes                                  setFeatureSource(styledFeatures.getFeatureSource(),
164                                  String[] properties = visibleAttrNames.toArray(new String[0]);                                                  styledFeatures.getAttributeMetaDataMap(),
165                                                    styledFeatures.getFilter());
166                                  LOGGER.debug("Query contains the following attributes: "                          }
167                                                  + visibleAttrNames);                  } catch (Exception err) {
168                            throw new RuntimeException(err);
169                                  query = new DefaultQuery(fs.getSchema().getTypeName(), filter,                  }
170                                                  properties);          }
171                          }  
172                          fc = fs.getFeatures(query);          /**
173             * After calling {@code super.reorganize(.)} this method replaced the column
174                          // FAILS:!!!, even with query = new           * descriptions with the titles of the {@code AttributeMetaData}.
175                          // DefaultQuery(fs.getSchema().getTypeName(), filter);           *
176                          // java.lang.UnsupportedOperationException: Unknown feature           * @param fireTableStructureChanged
177                          // attribute: PQM_MOD           *            indicates whether a table event is initiated after reorganize
178                          // at           */
179                          // schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93)          @Override
180                          // bounds = fc.getBounds();          protected void reorganize(boolean fireTableStructureChanged) {
181                          // SK, 17.4.2009  
182                          //                        featureArray = FeatureUtil.featuresToArray(featureTable);
183                          // System.out.println("Filter = "+filter);                  if (featureArray == null || featureArray.length == 0) {
184                          // System.out.println("Size of FC = "+fc.size());                          colNames = new String[0];
185                          // System.out.println("anz att= "+fc.getNumberOfAttributes());                          colTooltips = new String[0]; // Only set and used in
186                  }                                                                                          // StyledFeatureCollectionTableModel
187                  setFeatureCollection(fc);                          colClass = new Class[0];
188          }                  } else {
189                            // Struktur der Tabelle vom AttributeMetaDtaaMap übernehmen
190          /**                          SimpleFeatureType schema = featureArray[0].getFeatureType();
191           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}                          // Pruefen, welche Attribute angezeigt werden
192           * and sets this as the new data source for the table.                          attrTypes.clear();
193           *                          for (AttributeMetadata amd : amdMap.sortedValuesVisibleOnly()) {
194           * @param fs                                  AttributeDescriptor type = schema.getDescriptor(amd.getName());
195           *            the feature source                                  if (attrFilter == null || attrFilter.accept(type))
196           * @param amd                                          attrTypes.add(type);
197           *            {@link AttributeMetaData}-Map to define the visible attributes                          }
198           *            and translation                          // Namen und Attribut-Indizes der angezeigten Spalten ermitteln
199           */                          colNames = new String[attrTypes.size()];
200          public void setFeatureCollection(StyledFeatureCollectionInterface map,                          colTooltips = new String[attrTypes.size()]; // Only set and used in
201                          Filter filter) {                                                                                                                  // StyledFeatureCollectionTableModel
202                  this.map = map;                          colClass = new Class[attrTypes.size()];
203                  try {                          attrIdxForCol = new int[attrTypes.size()];
204                          if (map == null)                          for (int i = 0; i < colNames.length; i++) {
205                                  setFeatureSource(null, null, null);                                  AttributeDescriptor descriptor = schema.getDescriptor(amdMap.sortedValuesVisibleOnly().get(i).getName());
206                          else {  
207                                  FeatureCollection fc = map.getGeoObject();                                  // Not so nice in 26: find the index of an attribute...
208                                  String fcName = fc.getSchema().getTypeName();                                  int idx = schema.getAttributeDescriptors().indexOf(descriptor);
209                                  FeatureSource fs = new MemoryDataStore(fc)                                  attrIdxForCol[i] = idx;
210                                                  .getFeatureSource(fcName);  
211                                  setFeatureSource(fs, map.getAttributeMetaDataMap(), filter);                                  String attName = schema.getAttributeDescriptors().get(idx)
212                          }                                                  .getLocalName();
213                  } catch (Exception err) {                                  colNames[i] = amdMap.get(attName).getTitle().toString();
214                          throw new RuntimeException(err);                                  AttributeMetadata amd = amdMap.get(attName);
215                  }                                  colTooltips[i] = "<html>"+amd.getDesc().toString()+"<br>"+amd.getName()+"</html>";
216          }                                  colClass[i] = schema.getAttributeDescriptors().get(idx).getType()
217                                                    .getBinding();
218          /**                          }
219           * Sets the {@code StyledFeatureCollection} as new data source for the                  }
220           * table.  
221           *                  // store feature indexes in HashMap to optimize findFeature(.)
222           * @param fs                  featureIdx = new HashMap<String, Integer>();
223           *            the feature source                  for (int i = 0; i < featureArray.length; i++)
224           * @param amd                          if (featureArray[i] != null)
225           *            {@link AttributeMetaData}-Map to define the visible attributes                                  featureIdx.put(featureArray[i].getID(), i);
226           *            and translation  //
227           */  //              // translate the column names
228          public void setFeatureCollection(StyledFeatureSourceInterface map,  //              if (amdMap != null) {
229                          Filter filter) {  //                      for (int i = 0; i < colNames.length; i++) {
230                  this.map = map;  //                              colTooltips[i] = amdMap.get(colNames[i]).getDesc().toString()
231                  try {  //                                              + "<br>" + colNames[i];
232                          if (map == null)  //                              colNames[i] = amdMap.get(colNames[i]).getTitle().toString();
233                                  setFeatureSource(null, null, null);  //
234                          else  //                      }
235                                  setFeatureSource(map.getGeoObject(), map  //              }
236                                                  .getAttributeMetaDataMap(), filter);                  if (fireTableStructureChanged)
237                  } catch (Exception err) {                          fireTableStructureChanged();
238                          throw new RuntimeException(err);  
239                  }          }
240          }  
241            /**
242          /**           * @return Cached bounds for the whole dataset (without applying the filter)
243           * Resets the filter for the table.           *         or <code>null</code>
244           *           */
245           * @param filter          public Envelope getBounds() {
246           *            a filter                  return bounds;
247           */          }
248          public void setFilter(Filter filter) {  }
                 try {  
                         setFeatureSource(this.featureSource, this.origAMD, filter);  
                 } catch (Exception err) {  
                         LOGGER.error("Setting the filter of the table model", err);  
                         throw new RuntimeException(err);  
                 }  
         }  
   
         /**  
          * @return <code>Filter.INCLUDE</code> or the {@link Filter} applied to the  
          *         Features  
          */  
         public Filter getFilter() {  
                 return this.filter;  
         }  
   
         /**  
          * After calling {@code super.reorganize(.)} this method replaced the column  
          * descriptions with the titles of the {@code AttributeMetaData}.  
          *  
          * @param fireTableStructureChanged  
          *            indicates whether a table event is initiated after reorganize  
          */  
         @Override  
         protected void reorganize(boolean fireTableStructureChanged) {  
                 super.reorganize(false);  
                 // translate the column names  
                 if (visibleAMD != null) {  
                         Iterator<Integer> keys = visibleAMD.keySet().iterator();  
                         for (int i = 0; i < colNames.length && keys.hasNext(); i++) {  
                                 Translation title = visibleAMD.get(keys.next()).getTitle();  
                                 if (!I8NUtil.isEmpty(title)) {  
                                         // System.out.println("set colname " + i + " to " +  
                                         // title.toString());  
                                         colNames[i] = title.toString();  
                                 }  
                         }  
                 }  
                 if (fireTableStructureChanged)  
                         fireTableStructureChanged();  
         }  
   
         /**  
          * @return Cached bounds for the whole dataset (without applying the filter)  
          *         or <code>null</code>  
          */  
         public Envelope getBounds() {  
                 return bounds;  
         }  
 }  

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26