/[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 56 by alfonx, Fri Apr 17 15:19:00 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFeatureCollectionTableModel.java revision 464 by alfonx, Tue Oct 13 13:22:31 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.TreeMap;   *
16  import java.util.Vector;   * This program is distributed in the hope that it will be useful,
17     * 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.FeatureCollection;   * along with this program; if not, write to the Free Software
23  import org.opengis.filter.Filter;   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24     * or try this link: http://www.gnu.org/licenses/lgpl.html
25  import schmitzm.geotools.gui.FeatureCollectionTableModel;   *
26  import skrueger.AttributeMetaData;   * Contributors:
27  import skrueger.i8n.I8NUtil;   *     Martin O. J. Schmitz - initial API and implementation
28  import skrueger.i8n.Translation;   *     Stefan A. Krüger - additional utility classes
29     ******************************************************************************/
30  /**  package skrueger.geotools;
31   * This class extends the the {@link FeatureCollectionTableModel} with the  
32   * functionalities of the {@link AttributeMetaData} of  import java.util.Vector;
33   * {@linkplain StyledMapInterface styled objects}.  
34   * <ul>  import org.apache.log4j.Logger;
35   * <li>column names are translated according to  import org.geotools.data.DefaultQuery;
36   * {@link AttributeMetaData#getTitle()}</li>  import org.geotools.data.FeatureSource;
37   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>  import org.geotools.data.Query;
38   * </ul>  import org.geotools.feature.FeatureCollection;
39   *  import org.opengis.feature.simple.SimpleFeature;
40   * @author <a href="mailto:[email protected]">Martin Schmitz</a>  import org.opengis.feature.simple.SimpleFeatureType;
41   *         (University of Bonn/Germany)  import org.opengis.feature.type.AttributeDescriptor;
42   *  import org.opengis.filter.Filter;
43   */  
44  public class StyledFeatureCollectionTableModel extends  import schmitzm.geotools.gui.FeatureCollectionTableModel;
45                  FeatureCollectionTableModel {  import skrueger.AttributeMetadata;
46    
47          protected Map<Integer, AttributeMetaData> visibleAMD = null;  import com.vividsolutions.jts.geom.Envelope;
48    
49          public StyledFeatureCollectionTableModel(  /**
50                          StyledFeatureCollectionInterface map) {   * This class extends the the {@link FeatureCollectionTableModel} with the
51                  super();   * functionalities of the {@link AttributeMetadata}.
52                  setFeatureCollection(map);   * <ul>
53          }   * <li>column names are translated according to
54     * {@link AttributeMetadata#getTitle()}</li>
55          public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map) {   * <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li>
56                  super();   * <li>Any filter defined in the {@link StyledFeaturesInterface} will be applied.</li>
57                  setFeatureCollection(map);   * </ul>
58          }   *
59     * @author Stefan A. Krüger
60          protected void setFeatureSource(FeatureSource fs,   */
61                          Map<Integer, AttributeMetaData> amd) throws Exception {  public class StyledFeatureCollectionTableModel extends
62                  FeatureCollection fc = null;                  FeatureCollectionTableModel {
63                  this.visibleAMD = null;          final static private Logger LOGGER = Logger
64                  if (fs != null) {                          .getLogger(StyledFeatureCollectionTableModel.class);
65                          Query query = new DefaultQuery();          /** Contains the complete {@link AttributeMetadata}-Map of the styled layer. */
66                          if (amd != null) {          protected AttributeMetadataMap origAMD = null;
67                                  // determine the names of the visible Attributes          /** Holds the current filter on the table */
68                                  this.visibleAMD = StyledMapUtil.getVisibleAttributeMetaData(          protected Filter filter = null;
69                                                  amd, true);          /** Holds the Bounds for all features. Only set once during the constructor **/
70                                  Vector<String> visibleAttrNames = new Vector<String>();          protected Envelope bounds;
71    
72                                  // Add the column with the geometry (usually "the_geom")          
73                                  visibleAttrNames.add(fs.getSchema().getDefaultGeometry()          /**
74                                                  .getLocalName());           * Creates a new table model for a styled layer.
75             *
76                                  for (int attrIdx : visibleAMD.keySet())           * @param styledFeatures
77                                          visibleAttrNames.add(fs.getSchema().getAttributeType(           *            the styled layer
78                                                          attrIdx).getLocalName());           * @param filter
79             *            filter applied to the table
80                                  // create a query for the visible attributes           */
81                                  String[] properties = visibleAttrNames.toArray(new String[0]);          public StyledFeatureCollectionTableModel(StyledFeaturesInterface<?> styledFeatures) {
82                    setStyledFeatures(styledFeatures);
83                                  query = new DefaultQuery(fs.getSchema().getTypeName(),          }
84                                                  Filter.INCLUDE, properties);  
85                          }          /**
86                          fc = fs.getFeatures(query);           * Sets a new data source for the table.
87                  }           *
88                  setFeatureCollection(fc);           * @param fs
89          }           *            the feature source
90             * @param amd
91          public void setFeatureCollection(StyledFeatureCollectionInterface map) {           *            {@link AttributeMetadata}-Map to define the visible attributes
92                  try {           *            and translation
93                          if (map == null)           */
94                                  setFeatureSource(null, null);          protected void setFeatureSource(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
95                          else {                          AttributeMetadataMap amd, Filter filter)
96                                  FeatureCollection fc = map.getGeoObject();                          throws Exception {
97                                  String fcName = fc.getFeatureType().getTypeName();                  
98                                  FeatureSource fs = new MemoryDataStore(fc)                  if (filter == null)
99                                                  .getFeatureSource(fcName);                          filter = Filter.INCLUDE;
100                                  setFeatureSource(fs, map.getAttributeMetaDataMap());  
101                          }  //              this.featureSource = fs;
102                  } catch (Exception err) {                  this.filter = filter;
103                          throw new RuntimeException(err);                  this.origAMD = amd;
104                  }  
105          }                  FeatureCollection<SimpleFeatureType, SimpleFeature> fc = null;
106                    if (fs != null) {
107          public void setFeatureCollection(StyledFeatureSourceInterface map) {  
108                  try {                          bounds = fs.getBounds();
109                          if (map == null)  
110                                  setFeatureSource(null, null);                          final SimpleFeatureType schema = fs.getSchema();
111                          else                          Query query = new DefaultQuery(schema.getTypeName(), filter);
112                                  setFeatureSource(map.getGeoObject(), map                          if (amd != null) {
113                                                  .getAttributeMetaDataMap());                                  Vector<String> visibleAttrNames = new Vector<String>();
114                  } catch (Exception err) {                                  // Add the column with the geometry (usually "the_geom")
115                          throw new RuntimeException(err);                                  
116                  }                                  for (AttributeDescriptor aDesc : schema.getAttributeDescriptors()) {
117          }                                          
118                                            // Always add the geometry
119          @Override                                          if (schema.getGeometryDescriptor()
120          public void reorganize() {                                                  .getName().equals(aDesc.getName())) {
121                  super.reorganize();                                                  visibleAttrNames.add(schema.getGeometryDescriptor()
122                  // translate the column names                                                                  .getLocalName());
123                  if (visibleAMD != null) {                                                  continue;
124                          Iterator<Integer> keys = visibleAMD.keySet().iterator();                                          }
125                          for (int i = 0; i < colNames.length && keys.hasNext(); i++) {                                          
126                                  Translation title = visibleAMD.get(keys.next()).getTitle();                                          if (amd.get(aDesc.getName()).isVisible())
127                                  if (!I8NUtil.isEmpty(title)) {                                                  visibleAttrNames.add(aDesc.getName().getLocalPart());
128                                          System.out.println("set colname " + i + " to "                                  }
129                                                          + title.toString());  
130                                          colNames[i] = title.toString();                                  // create a query for the visible attributes
131                                  }                                  String[] properties = visibleAttrNames.toArray(new String[] {});
132                          }  
133                  }                                  LOGGER.debug("Query contains the following attributes: "
134                  fireTableStructureChanged();                                                  + visibleAttrNames);
135          }  
136  }                                  query = new DefaultQuery(schema.getTypeName(), filter,
137                                                    properties);
138                            }
139                            fc = fs.getFeatures(query);
140                    }
141                    setFeatureCollection(fc);
142            }
143    
144            /**
145             * Converts the {@code StyledFeatureCollection} to a {@code FeatureSource}
146             * and sets this as the new data source for the table.
147             *
148             * @param fs
149             *            the feature source
150             * @param amd
151             *            {@link AttributeMetadata}-Map to define the visible attributes
152             *            and translation
153             */
154            public void setStyledFeatures(StyledFeaturesInterface<?> styledFeatures) {
155                    try {
156                            if (styledFeatures == null)
157                                    setFeatureSource(null, null, null);
158                            else {
159                                    setFeatureSource(styledFeatures.getFeatureSource(), styledFeatures.getAttributeMetaDataMap(), styledFeatures.getFilter());
160                            }
161                    } catch (Exception err) {
162                            throw new RuntimeException(err);
163                    }
164            }
165    
166            /**
167             * After calling {@code super.reorganize(.)} this method replaced the column
168             * descriptions with the titles of the {@code AttributeMetaData}.
169             *
170             * @param fireTableStructureChanged
171             *            indicates whether a table event is initiated after reorganize
172             */
173            @Override
174            protected void reorganize(boolean fireTableStructureChanged) {
175                    
176                    super.reorganize(false);
177                    
178                    // translate the column names
179                    if (origAMD != null) {
180                            for (int i = 0; i < colNames.length; i++) {
181                                    colNames[i] = origAMD.get(colNames[i]).getTitle().toString();
182                            }
183                            
184                    }
185                    if (fireTableStructureChanged)
186                            fireTableStructureChanged();
187            }
188    
189            /**
190             * @return Cached bounds for the whole dataset (without applying the filter)
191             *         or <code>null</code>
192             */
193            public Envelope getBounds() {
194                    return bounds;
195            }
196    }

Legend:
Removed from v.56  
changed lines
  Added in v.464

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26