/[schmitzm]/branches/2.3.KECK/src/skrueger/geotools/StyledFeatureCollectionTableModel.java
ViewVC logotype

Diff of /branches/2.3.KECK/src/skrueger/geotools/StyledFeatureCollectionTableModel.java

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

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

Legend:
Removed from v.62  
changed lines
  Added in v.224

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26