/[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 224 by alfonx, Tue Jul 14 15:57:19 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFeatureCollectionTableModel.java revision 490 by alfonx, Fri Oct 23 12:35:59 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.Vector;
33  /**  
34   * This class extends the the {@link FeatureCollectionTableModel} with the  import org.apache.log4j.Logger;
35   * functionalities of the {@link AttributeMetaData} of  import org.geotools.data.DefaultQuery;
36   * {@linkplain StyledLayerInterface styled objects}.  import org.geotools.data.FeatureSource;
37   * <ul>  import org.geotools.data.Query;
38   * <li>column names are translated according to  import org.geotools.feature.FeatureCollection;
39   * {@link AttributeMetaData#getTitle()}</li>  import org.opengis.feature.simple.SimpleFeature;
40   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>  import org.opengis.feature.simple.SimpleFeatureType;
41   * </ul>  import org.opengis.feature.type.AttributeDescriptor;
42   *  import org.opengis.filter.Filter;
43   * @author <a href="mailto:[email protected]">Martin Schmitz</a>  
44   *         (University of Bonn/Germany)  import schmitzm.geotools.gui.FeatureCollectionTableModel;
45   */  import skrueger.AttributeMetadata;
46  public class StyledFeatureCollectionTableModel extends  
47                  FeatureCollectionTableModel {  import com.vividsolutions.jts.geom.Envelope;
48          final static private Logger LOGGER = Logger  
49                          .getLogger(StyledFeatureCollectionTableModel.class);  /**
50          /** Holds the data source as styled map. */   * This class extends the the {@link FeatureCollectionTableModel} with the
51          protected StyledLayerInterface<?> layer = null;   * functionalities of the {@link AttributeMetadata}.
52          /** Contains only the visible elements of the {@link AttributeMetaData}-Map */   * <ul>
53          protected Map<Integer, AttributeMetaData> visibleAMD = null;   * <li>column names are translated according to
54          /** Holds the data source for the table as {@code FeatureSource}. */   * {@link AttributeMetadata#getTitle()}</li>
55          protected FeatureSource featureSource = null;   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>
56          /** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */   * <li>Any filter defined in the {@link StyledFeaturesInterface} will be applied.</li>
57          protected Map<Integer, AttributeMetaData> origAMD = null;   * </ul>
58          /** Holds the current filter on the table */   *
59          protected Filter filter = null;   * @author Stefan A. Krüger
60          /** Holds the Bounds for all features. Only set once during the constructor **/   */
61          protected Envelope bounds;  public class StyledFeatureCollectionTableModel extends
62                    FeatureCollectionTableModel {
63                    final static private Logger LOGGER = Logger
64                            .getLogger(StyledFeatureCollectionTableModel.class);
65          /**          /** Contains the complete {@link AttributeMetadata}-Map of the styled layer. */
66           * Creates a new table model for a styled map.          protected AttributeMetadataMap origAMD = null;
67           *          /** Holds the current filter on the table */
68           * @param layer          protected Filter filter = null;
69           *            the styled layer          /** Holds the Bounds for all features. Only set once during the constructor **/
70           */          protected Envelope bounds;
71          public StyledFeatureCollectionTableModel(  
72                          StyledFeatureCollectionInterface layer) {          
73                  this(layer, Filter.INCLUDE);          /**
74          }           * Creates a new table model for a styled layer.
75             *
76          /**           * @param styledFeatures
77           * Creates a new table model for a styled map.           *            the styled layer
78           *           * @param filter
79           * @param layer           *            filter applied to the table
80           *            the styled layer           */
81           * @param filter          public StyledFeatureCollectionTableModel(StyledFeaturesInterface<?> styledFeatures) {
82           *            filter applied to the table                  setStyledFeatures(styledFeatures);
83           */          }
84          public StyledFeatureCollectionTableModel(  
85                          StyledFeatureCollectionInterface layer, Filter filter) {          /**
86                  super();           * Sets a new data source for the table.
87                  setFeatureCollection(layer, filter);           *
88          }           * @param fs
89             *            the feature source
90             * @param amd
91          /**           *            {@link AttributeMetadata}-Map to define the visible attributes
92           * Creates a new table model for a styled map.           *            and translation
93           *           */
94           * @param layer          protected void setFeatureSource(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
95           *            the styled layer                          AttributeMetadataMap amd, Filter filter)
96           */                          throws Exception {
97          public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer) {                  
98                  this(layer, Filter.INCLUDE);                  if (filter == null)
99          }                          filter = Filter.INCLUDE;
100    
101          /**  //              this.featureSource = fs;
102           * Creates a new table model for a styled map.                  this.filter = filter;
103           *                  this.origAMD = amd;
104           * @param layer  
105           *            the styled layer                  FeatureCollection<SimpleFeatureType, SimpleFeature> fc = null;
106           * @param filter                  if (fs != null) {
107           *            filter applied to the table  
108           */                          bounds = fs.getBounds();
109          public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer,  
110                          Filter filter) {                          final SimpleFeatureType schema = fs.getSchema();
111                  super();                          Query query = new DefaultQuery(schema.getTypeName(), filter);
112                  setFeatureCollection(layer, filter);                          if (amd != null) {
113          }                                  Vector<String> visibleAttrNames = new Vector<String>();
114                                    // Add the column with the geometry (usually "the_geom")
115          /**                                  
116           * Sets a new data source for the table.                                  for (AttributeDescriptor aDesc : schema.getAttributeDescriptors()) {
117           *                                          
118           * @param fs                                          // Always add the geometry
119           *            the feature source                                          if (schema.getGeometryDescriptor()
120           * @param amd                                                  .getName().equals(aDesc.getName())) {
121           *            {@link AttributeMetaData}-Map to define the visible attributes                                                  visibleAttrNames.add(schema.getGeometryDescriptor()
122           *            and translation                                                                  .getLocalName());
123           */                                                  continue;
124          protected void setFeatureSource(FeatureSource fs,                                          }
125                          Map<Integer, AttributeMetaData> amd, Filter filter)                                          
126                          throws Exception {                                          if (amd.get(aDesc.getName()).isVisible())
127                  if (filter == null)                                                  visibleAttrNames.add(aDesc.getName().getLocalPart());
128                          filter = Filter.INCLUDE;                                  }
129    
130                  this.featureSource = fs;                                  // create a query for the visible attributes
131                  this.filter = filter;                                  String[] properties = visibleAttrNames.toArray(new String[] {});
132                  this.origAMD = amd;  
133                  this.visibleAMD = null;                                  LOGGER.debug("Query contains the following attributes: "
134                                                    + visibleAttrNames);
135                  FeatureCollection fc = null;  
136                  if (fs != null) {  
137                                    /**
138                          bounds = fs.getBounds();                                   * I got NPEs when properties contained only [the_geom] ?!??!!??
139                                     */
140                          Query query = new DefaultQuery(fs.getSchema().getTypeName(), filter);                                  if (properties.length > 1) {
141                          if (amd != null) {                                          query = new DefaultQuery(schema.getTypeName(), filter,
142                                  // determine the names of the visible Attributes                                                          properties);
143                                  this.visibleAMD = StyledLayerUtil.getVisibleAttributeMetaData(                                  } else {
144                                                  amd, true);                                          query = new DefaultQuery(schema.getTypeName(), filter);
145                                  Vector<String> visibleAttrNames = new Vector<String>();                                  }
146                                  // Add the column with the geometry (usually "the_geom")                          }
147                                  visibleAttrNames.add(fs.getSchema().getDefaultGeometry()                          fc = fs.getFeatures(query);
148                                                  .getLocalName());                  }
149                                  for (int attrIdx : visibleAMD.keySet()) {                  setFeatureCollection(fc);
150            }
151                                          /**  
152                                           * If the user removed columns from the schema of the DBF          /**
153                                           * file, there might exist AttributeMetaData for columns           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}
154                                           * that don't exists. We check here to avoid an           * and sets this as the new data source for the table.
155                                           * ArrayOutOfIndex.           *
156                                           */           * @param fs
157                                          if (attrIdx < fs.getSchema().getAttributeCount()) {           *            the feature source
158                                                  final AttributeType attributeTypeAtIdx = fs.getSchema()           * @param amd
159                                                                  .getAttributeType(attrIdx);           *            {@link AttributeMetadata}-Map to define the visible attributes
160                                                  visibleAttrNames.add(attributeTypeAtIdx.getLocalName());           *            and translation
161                                          } else {           */
162                                                  LOGGER.warn("AttributeMetaData has been found for columnIdx="+attrIdx+", but fs.getSchema().getAttributeCount() = "+fs.getSchema().getAttributeCount()+". Ignored.");          public void setStyledFeatures(StyledFeaturesInterface<?> styledFeatures) {
163                                          }                  try {
164                                  }                          if (styledFeatures == null)
165                                    setFeatureSource(null, null, null);
166                                  // create a query for the visible attributes                          else {
167                                  String[] properties = visibleAttrNames.toArray(new String[0]);                                  setFeatureSource(styledFeatures.getFeatureSource(), styledFeatures.getAttributeMetaDataMap(), styledFeatures.getFilter());
168                            }
169                                  LOGGER.debug("Query contains the following attributes: "                  } catch (Exception err) {
170                                                  + visibleAttrNames);                          throw new RuntimeException(err);
171                    }
172                                  query = new DefaultQuery(fs.getSchema().getTypeName(), filter,          }
173                                                  properties);  
174                          }          /**
175                          fc = fs.getFeatures(query);           * After calling {@code super.reorganize(.)} this method replaced the column
176             * descriptions with the titles of the {@code AttributeMetaData}.
177                          // FAILS:!!!, even with query = new           *
178                          // DefaultQuery(fs.getSchema().getTypeName(), filter);           * @param fireTableStructureChanged
179                          // java.lang.UnsupportedOperationException: Unknown feature           *            indicates whether a table event is initiated after reorganize
180                          // attribute: PQM_MOD           */
181                          // at          @Override
182                          // schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93)          protected void reorganize(boolean fireTableStructureChanged) {
183                          // bounds = fc.getBounds();                  
184                          // SK, 17.4.2009                  super.reorganize(false);
185                          //                        
186                          // System.out.println("Filter = "+filter);                  // translate the column names
187                          // System.out.println("Size of FC = "+fc.size());                  if (origAMD != null) {
188                          // System.out.println("anz att= "+fc.getNumberOfAttributes());                          for (int i = 0; i < colNames.length; i++) {
189                  }                                  colNames[i] = origAMD.get(colNames[i]).getTitle().toString();
190                  setFeatureCollection(fc);                          }
191          }                          
192                    }
193          /**                  if (fireTableStructureChanged)
194           * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}                          fireTableStructureChanged();
195           * and sets this as the new data source for the table.          }
196           *  
197           * @param fs          /**
198           *            the feature source           * @return Cached bounds for the whole dataset (without applying the filter)
199           * @param amd           *         or <code>null</code>
200           *            {@link AttributeMetaData}-Map to define the visible attributes           */
201           *            and translation          public Envelope getBounds() {
202           */                  return bounds;
203          public void setFeatureCollection(StyledFeaturesInterface layer,          }
204                          Filter filter) {  }
                 this.layer = layer;  
                 try {  
                         if (layer == null)  
                                 setFeatureSource(null, null, null);  
                         else {  
                                 FeatureCollection fc = layer.getFeatureCollection();  
                                 String fcName = fc.getSchema().getTypeName();  
                                 FeatureSource fs = new MemoryDataStore(fc)  
                                                 .getFeatureSource(fcName);  
                                 setFeatureSource(fs, layer.getAttributeMetaDataMap(), filter);  
                         }  
                 } catch (Exception err) {  
                         throw new RuntimeException(err);  
                 }  
         }  
   
         /**  
          * Sets the {@code StyledFeatureCollection} as new data source for the  
          * table.  
          *  
          * @param fs  
          *            the feature source  
          * @param amd  
          *            {@link AttributeMetaData}-Map to define the visible attributes  
          *            and translation  
          */  
         public void setFeatureCollection(StyledFeatureSourceInterface layer,  
                         Filter filter) {  
                 this.layer = layer;  
                 try {  
                         if (layer == null)  
                                 setFeatureSource(null, null, null);  
                         else  
                                 setFeatureSource(layer.getGeoObject(), layer  
                                                 .getAttributeMetaDataMap(), filter);  
                 } catch (Exception err) {  
                         throw new RuntimeException(err);  
                 }  
         }  
   
         /**  
          * Resets the filter for the table.  
          *  
          * @param filter  
          *            a filter  
          */  
         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.224  
changed lines
  Added in v.490

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26