/[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

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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26