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 |
|
|
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 |
* <li>column names are translated according to |
39 |
* {@link AttributeMetaData#getTitle()}</li> |
* {@link AttributeMetaData#getTitle()}</li> |
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 |
protected Map<Integer, AttributeMetaData> visibleAMD = null; |
.getLogger(StyledFeatureCollectionTableModel.class); |
50 |
|
/** Holds the data source as styled map. */ |
51 |
public StyledFeatureCollectionTableModel(StyledFeatureCollectionInterface map) { |
protected StyledLayerInterface<?> layer = null; |
52 |
this(map,Filter.INCLUDE); |
/** Contains only the visible elements of the {@link AttributeMetaData}-Map */ |
53 |
} |
protected Map<Integer, AttributeMetaData> visibleAMD = null; |
54 |
|
/** Holds the data source for the table as {@code FeatureSource}. */ |
55 |
public StyledFeatureCollectionTableModel(StyledFeatureCollectionInterface map, Filter filter) { |
protected FeatureSource featureSource = null; |
56 |
super(); |
/** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */ |
57 |
setFeatureCollection(map, filter); |
protected Map<Integer, AttributeMetaData> origAMD = null; |
58 |
} |
/** Holds the current filter on the table */ |
59 |
|
protected Filter filter = null; |
60 |
public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map) { |
/** Holds the Bounds for all features. Only set once during the constructor **/ |
61 |
this(map,Filter.INCLUDE); |
protected Envelope bounds; |
62 |
} |
|
63 |
|
|
64 |
public StyledFeatureCollectionTableModel(StyledFeatureSourceInterface map, Filter filter) { |
|
65 |
super(); |
/** |
66 |
setFeatureCollection(map, filter); |
* Creates a new table model for a styled map. |
67 |
} |
* |
68 |
|
* @param layer |
69 |
protected void setFeatureSource(FeatureSource fs, Map<Integer, AttributeMetaData> amd, Filter filter) throws Exception { |
* the styled layer |
70 |
this.visibleAMD = null; |
*/ |
71 |
if ( filter == null ) |
public StyledFeatureCollectionTableModel( |
72 |
filter = Filter.INCLUDE; |
StyledFeatureCollectionInterface layer) { |
73 |
|
this(layer, Filter.INCLUDE); |
74 |
FeatureCollection fc = null; |
} |
75 |
if (fs != null) { |
|
76 |
Query query = new DefaultQuery(); |
/** |
77 |
if (amd != null) { |
* Creates a new table model for a styled map. |
78 |
// determine the names of the visible Attributes |
* |
79 |
this.visibleAMD = StyledMapUtil.getVisibleAttributeMetaData(amd, true); |
* @param layer |
80 |
Vector<String> visibleAttrNames = new Vector<String>(); |
* the styled layer |
81 |
// Add the column with the geometry (usually "the_geom") |
* @param filter |
82 |
visibleAttrNames.add(fs.getSchema().getDefaultGeometry().getLocalName()); |
* filter applied to the table |
83 |
for (int attrIdx : visibleAMD.keySet()) |
*/ |
84 |
visibleAttrNames.add(fs.getSchema().getAttributeType(attrIdx).getLocalName()); |
public StyledFeatureCollectionTableModel( |
85 |
|
StyledFeatureCollectionInterface layer, Filter filter) { |
86 |
// create a query for the visible attributes |
super(); |
87 |
String[] properties = visibleAttrNames.toArray(new String[0]); |
setFeatureCollection(layer, filter); |
88 |
query = new DefaultQuery(fs.getSchema().getTypeName(), filter, properties); |
} |
89 |
} |
|
90 |
fc = fs.getFeatures(query); |
|
91 |
} |
/** |
92 |
setFeatureCollection(fc); |
* Creates a new table model for a styled map. |
93 |
} |
* |
94 |
|
* @param layer |
95 |
public void setFeatureCollection(StyledFeatureCollectionInterface map, Filter filter) { |
* the styled layer |
96 |
try { |
*/ |
97 |
if (map == null) |
public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer) { |
98 |
setFeatureSource(null, null, null); |
this(layer, Filter.INCLUDE); |
99 |
else { |
} |
100 |
FeatureCollection fc = map.getGeoObject(); |
|
101 |
String fcName = fc.getFeatureType().getTypeName(); |
/** |
102 |
FeatureSource fs = new MemoryDataStore(fc).getFeatureSource(fcName); |
* Creates a new table model for a styled map. |
103 |
setFeatureSource(fs, map.getAttributeMetaDataMap(), filter); |
* |
104 |
} |
* @param layer |
105 |
} catch (Exception err) { |
* the styled layer |
106 |
throw new RuntimeException(err); |
* @param filter |
107 |
} |
* filter applied to the table |
108 |
} |
*/ |
109 |
|
public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer, |
110 |
public void setFeatureCollection(StyledFeatureSourceInterface map, Filter filter) { |
Filter filter) { |
111 |
try { |
super(); |
112 |
if (map == null) |
setFeatureCollection(layer, filter); |
113 |
setFeatureSource(null, null, null); |
} |
114 |
else |
|
115 |
setFeatureSource(map.getGeoObject(), map.getAttributeMetaDataMap(), filter); |
/** |
116 |
} catch (Exception err) { |
* Sets a new data source for the table. |
117 |
throw new RuntimeException(err); |
* |
118 |
} |
* @param fs |
119 |
} |
* the feature source |
120 |
|
* @param amd |
121 |
@Override |
* {@link AttributeMetaData}-Map to define the visible attributes |
122 |
public void reorganize() { |
* and translation |
123 |
super.reorganize(); |
*/ |
124 |
// translate the column names |
protected void setFeatureSource(FeatureSource fs, |
125 |
if (visibleAMD != null) { |
Map<Integer, AttributeMetaData> amd, Filter filter) |
126 |
Iterator<Integer> keys = visibleAMD.keySet().iterator(); |
throws Exception { |
127 |
for (int i = 0; i < colNames.length && keys.hasNext(); i++) { |
if (filter == null) |
128 |
Translation title = visibleAMD.get(keys.next()).getTitle(); |
filter = Filter.INCLUDE; |
129 |
if (!I8NUtil.isEmpty(title)) { |
|
130 |
System.out.println("set colname " + i + " to " + title.toString()); |
this.featureSource = fs; |
131 |
colNames[i] = title.toString(); |
this.filter = filter; |
132 |
} |
this.origAMD = amd; |
133 |
} |
this.visibleAMD = null; |
134 |
} |
|
135 |
fireTableStructureChanged(); |
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 |
178 |
|
// DefaultQuery(fs.getSchema().getTypeName(), filter); |
179 |
|
// java.lang.UnsupportedOperationException: Unknown feature |
180 |
|
// attribute: PQM_MOD |
181 |
|
// at |
182 |
|
// schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93) |
183 |
|
// bounds = fc.getBounds(); |
184 |
|
// SK, 17.4.2009 |
185 |
|
// |
186 |
|
// System.out.println("Filter = "+filter); |
187 |
|
// System.out.println("Size of FC = "+fc.size()); |
188 |
|
// System.out.println("anz att= "+fc.getNumberOfAttributes()); |
189 |
|
} |
190 |
|
setFeatureCollection(fc); |
191 |
|
} |
192 |
|
|
193 |
|
/** |
194 |
|
* Converts the {@code StyledFeatureCollection} to a {@code FeatureSource} |
195 |
|
* and sets this as the new data source for the table. |
196 |
|
* |
197 |
|
* @param fs |
198 |
|
* the feature source |
199 |
|
* @param amd |
200 |
|
* {@link AttributeMetaData}-Map to define the visible attributes |
201 |
|
* and translation |
202 |
|
*/ |
203 |
|
public void setFeatureCollection(StyledFeaturesInterface layer, |
204 |
|
Filter filter) { |
205 |
|
this.layer = layer; |
206 |
|
try { |
207 |
|
if (layer == null) |
208 |
|
setFeatureSource(null, null, null); |
209 |
|
else { |
210 |
|
FeatureCollection fc = layer.getFeatureCollection(); |
211 |
|
String fcName = fc.getSchema().getTypeName(); |
212 |
|
FeatureSource fs = new MemoryDataStore(fc) |
213 |
|
.getFeatureSource(fcName); |
214 |
|
setFeatureSource(fs, layer.getAttributeMetaDataMap(), filter); |
215 |
|
} |
216 |
|
} catch (Exception err) { |
217 |
|
throw new RuntimeException(err); |
218 |
|
} |
219 |
|
} |
220 |
|
|
221 |
|
/** |
222 |
|
* Sets the {@code StyledFeatureCollection} as new data source for the |
223 |
|
* table. |
224 |
|
* |
225 |
|
* @param fs |
226 |
|
* the feature source |
227 |
|
* @param amd |
228 |
|
* {@link AttributeMetaData}-Map to define the visible attributes |
229 |
|
* and translation |
230 |
|
*/ |
231 |
|
public void setFeatureCollection(StyledFeatureSourceInterface layer, |
232 |
|
Filter filter) { |
233 |
|
this.layer = layer; |
234 |
|
try { |
235 |
|
if (layer == null) |
236 |
|
setFeatureSource(null, null, null); |
237 |
|
else |
238 |
|
setFeatureSource(layer.getGeoObject(), layer |
239 |
|
.getAttributeMetaDataMap(), filter); |
240 |
|
} catch (Exception err) { |
241 |
|
throw new RuntimeException(err); |
242 |
|
} |
243 |
|
} |
244 |
|
|
245 |
|
/** |
246 |
|
* Resets the filter for the table. |
247 |
|
* |
248 |
|
* @param filter |
249 |
|
* a filter |
250 |
|
*/ |
251 |
|
public void setFilter(Filter filter) { |
252 |
|
try { |
253 |
|
setFeatureSource(this.featureSource, this.origAMD, filter); |
254 |
|
} catch (Exception err) { |
255 |
|
LOGGER.error("Setting the filter of the table model", err); |
256 |
|
throw new RuntimeException(err); |
257 |
|
} |
258 |
|
} |
259 |
|
|
260 |
|
/** |
261 |
|
* @return <code>Filter.INCLUDE</code> or the {@link Filter} applied to the |
262 |
|
* Features |
263 |
|
*/ |
264 |
|
public Filter getFilter() { |
265 |
|
return this.filter; |
266 |
|
} |
267 |
|
|
268 |
|
/** |
269 |
|
* After calling {@code super.reorganize(.)} this method replaced the column |
270 |
|
* descriptions with the titles of the {@code AttributeMetaData}. |
271 |
|
* |
272 |
|
* @param fireTableStructureChanged |
273 |
|
* indicates whether a table event is initiated after reorganize |
274 |
|
*/ |
275 |
|
@Override |
276 |
|
protected void reorganize(boolean fireTableStructureChanged) { |
277 |
|
super.reorganize(false); |
278 |
|
// translate the column names |
279 |
|
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() { |
299 |
|
return bounds; |
300 |
|
} |
301 |
} |
} |