29 |
******************************************************************************/ |
******************************************************************************/ |
30 |
package skrueger.geotools; |
package skrueger.geotools; |
31 |
|
|
32 |
import java.util.Iterator; |
import java.util.HashMap; |
|
import java.util.Map; |
|
33 |
import java.util.Vector; |
import java.util.Vector; |
34 |
|
|
35 |
import org.apache.log4j.Logger; |
import org.apache.log4j.Logger; |
36 |
import org.geotools.data.DefaultQuery; |
import org.geotools.data.DefaultQuery; |
37 |
import org.geotools.data.FeatureSource; |
import org.geotools.data.FeatureSource; |
38 |
import org.geotools.data.Query; |
import org.geotools.data.Query; |
|
import org.geotools.data.memory.MemoryDataStore; |
|
|
import org.geotools.feature.AttributeType; |
|
39 |
import org.geotools.feature.FeatureCollection; |
import org.geotools.feature.FeatureCollection; |
40 |
|
import org.opengis.feature.simple.SimpleFeature; |
41 |
|
import org.opengis.feature.simple.SimpleFeatureType; |
42 |
|
import org.opengis.feature.type.AttributeDescriptor; |
43 |
import org.opengis.filter.Filter; |
import org.opengis.filter.Filter; |
44 |
|
|
45 |
|
import schmitzm.geotools.feature.FeatureUtil; |
46 |
import schmitzm.geotools.gui.FeatureCollectionTableModel; |
import schmitzm.geotools.gui.FeatureCollectionTableModel; |
47 |
import skrueger.AttributeMetaData; |
import skrueger.AttributeMetadata; |
|
import skrueger.i8n.I8NUtil; |
|
|
import skrueger.i8n.Translation; |
|
48 |
|
|
49 |
import com.vividsolutions.jts.geom.Envelope; |
import com.vividsolutions.jts.geom.Envelope; |
50 |
|
|
51 |
/** |
/** |
52 |
* This class extends the the {@link FeatureCollectionTableModel} with the |
* This class extends the the {@link FeatureCollectionTableModel} with the |
53 |
* functionalities of the {@link AttributeMetaData} of |
* functionalities of the {@link AttributeMetadata}. |
|
* {@linkplain StyledLayerInterface styled objects}. |
|
54 |
* <ul> |
* <ul> |
55 |
* <li>column names are translated according to |
* <li>column names are translated according to |
56 |
* {@link AttributeMetaData#getTitle()}</li> |
* {@link AttributeMetadata#getTitle()}</li> |
57 |
* <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li> |
* <li>columns are hidden according to {@link AttributeMetaData#isVisible()()}</li> |
58 |
|
* <li>Any filter defined in the {@link StyledFeaturesInterface} will be |
59 |
|
* applied.</li> |
60 |
* </ul> |
* </ul> |
61 |
* |
* |
62 |
* @author <a href="mailto:[email protected]">Martin Schmitz</a> |
* @author Stefan A. Krüger |
|
* (University of Bonn/Germany) |
|
63 |
*/ |
*/ |
64 |
public class StyledFeatureCollectionTableModel extends |
public class StyledFeatureCollectionTableModel extends |
65 |
FeatureCollectionTableModel { |
FeatureCollectionTableModel { |
66 |
final static private Logger LOGGER = Logger |
final static private Logger LOGGER = Logger |
67 |
.getLogger(StyledFeatureCollectionTableModel.class); |
.getLogger(StyledFeatureCollectionTableModel.class); |
68 |
/** Holds the data source as styled layer. */ |
/** Contains the complete {@link AttributeMetadata}-Map of the styled layer. */ |
69 |
protected StyledLayerInterface<?> layer = null; |
protected AttributeMetadataMap amdMap = null; |
|
/** Contains only the visible elements of the {@link AttributeMetaData}-Map */ |
|
|
protected Map<Integer, AttributeMetaData> visibleAMD = null; |
|
|
/** Holds the data source for the table as {@code FeatureSource}. */ |
|
|
protected FeatureSource featureSource = null; |
|
|
/** Contains the complete {@link AttributeMetaData}-Map of the styled layer. */ |
|
|
protected Map<Integer, AttributeMetaData> origAMD = null; |
|
70 |
/** Holds the current filter on the table */ |
/** Holds the current filter on the table */ |
71 |
protected Filter filter = null; |
protected Filter filter = null; |
72 |
/** Holds the Bounds for all features. Only set once during the constructor **/ |
/** Holds the Bounds for all features. Only set once during the constructor **/ |
73 |
protected Envelope bounds; |
protected Envelope bounds; |
|
|
|
|
|
|
|
|
|
74 |
/** |
/** |
75 |
* Creates a new table model for a styled layer. |
* Tooltips für die Spaltennamen. Wird nur beim Aufruf von |
76 |
* |
* {@link #reorganize} befuellt. |
|
* @param layer |
|
|
* the styled layer |
|
77 |
*/ |
*/ |
78 |
public StyledFeatureCollectionTableModel( |
protected String[] colTooltips = null; |
|
StyledFeatureCollectionInterface layer) { |
|
|
this(layer, Filter.INCLUDE); |
|
|
} |
|
79 |
|
|
80 |
/** |
/** |
81 |
* Creates a new table model for a styled layer. |
* Creates a new table model for a styled layer. |
82 |
* |
* |
83 |
* @param layer |
* @param styledFeatures |
84 |
* the styled layer |
* the styled layer |
85 |
* @param filter |
* @param filter |
86 |
* filter applied to the table |
* filter applied to the table |
87 |
*/ |
*/ |
88 |
public StyledFeatureCollectionTableModel( |
public StyledFeatureCollectionTableModel( |
89 |
StyledFeatureCollectionInterface layer, Filter filter) { |
StyledFeaturesInterface<?> styledFeatures) { |
90 |
super(); |
setStyledFeatures(styledFeatures); |
|
setFeatureCollection(layer, filter); |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
* Creates a new table model for a styled layer. |
|
|
* |
|
|
* @param layer |
|
|
* the styled layer |
|
|
*/ |
|
|
public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer) { |
|
|
this(layer, Filter.INCLUDE); |
|
|
} |
|
|
|
|
|
/** |
|
|
* Creates a new table model for a styled layer. |
|
|
* |
|
|
* @param layer |
|
|
* the styled layer |
|
|
* @param filter |
|
|
* filter applied to the table |
|
|
*/ |
|
|
public StyledFeatureCollectionTableModel(StyledFeaturesInterface layer, |
|
|
Filter filter) { |
|
|
super(); |
|
|
setFeatureCollection(layer, filter); |
|
91 |
} |
} |
92 |
|
|
93 |
/** |
/** |
95 |
* |
* |
96 |
* @param fs |
* @param fs |
97 |
* the feature source |
* the feature source |
98 |
* @param amd |
* @param amdm |
99 |
* {@link AttributeMetaData}-Map to define the visible attributes |
* {@link AttributeMetadata}-Map to define the visible attributes |
100 |
* and translation |
* and translation |
101 |
*/ |
*/ |
102 |
protected void setFeatureSource(FeatureSource fs, |
protected void setFeatureSource( |
103 |
Map<Integer, AttributeMetaData> amd, Filter filter) |
FeatureSource<SimpleFeatureType, SimpleFeature> fs, |
104 |
throws Exception { |
AttributeMetadataMap amdm, Filter filter) throws Exception { |
105 |
|
|
106 |
if (filter == null) |
if (filter == null) |
107 |
filter = Filter.INCLUDE; |
filter = Filter.INCLUDE; |
108 |
|
|
109 |
this.featureSource = fs; |
// this.featureSource = fs; |
110 |
this.filter = filter; |
this.filter = filter; |
111 |
this.origAMD = amd; |
this.amdMap = amdm; |
|
this.visibleAMD = null; |
|
112 |
|
|
113 |
FeatureCollection fc = null; |
FeatureCollection<SimpleFeatureType, SimpleFeature> fc = null; |
114 |
if (fs != null) { |
if (fs != null) { |
115 |
|
|
116 |
bounds = fs.getBounds(); |
bounds = fs.getBounds(); |
117 |
|
|
118 |
Query query = new DefaultQuery(fs.getSchema().getTypeName(), filter); |
final SimpleFeatureType schema = fs.getSchema(); |
119 |
if (amd != null) { |
Query query = new DefaultQuery(schema.getTypeName(), filter); |
120 |
// determine the names of the visible Attributes |
if (amdm != null) { |
|
this.visibleAMD = StyledLayerUtil.getVisibleAttributeMetaData( |
|
|
amd, true); |
|
121 |
Vector<String> visibleAttrNames = new Vector<String>(); |
Vector<String> visibleAttrNames = new Vector<String>(); |
122 |
// Add the column with the geometry (usually "the_geom") |
|
123 |
visibleAttrNames.add(fs.getSchema().getDefaultGeometry() |
// Add the column with the geometry (usually "the_geom") always |
124 |
|
visibleAttrNames.add(schema.getGeometryDescriptor() |
125 |
.getLocalName()); |
.getLocalName()); |
|
for (int attrIdx : visibleAMD.keySet()) { |
|
126 |
|
|
127 |
/** |
// Add other visible attributes as ordered by weights |
128 |
* If the user removed columns from the schema of the DBF |
for (AttributeMetadata a : amdm.sortedValuesVisibleOnly()) { |
129 |
* file, there might exist AttributeMetaData for columns |
visibleAttrNames.add(a.getLocalName()); |
|
* that don't exists. We check here to avoid an |
|
|
* ArrayOutOfIndex. |
|
|
*/ |
|
|
if (attrIdx < fs.getSchema().getAttributeCount()) { |
|
|
final AttributeType attributeTypeAtIdx = fs.getSchema() |
|
|
.getAttributeType(attrIdx); |
|
|
visibleAttrNames.add(attributeTypeAtIdx.getLocalName()); |
|
|
} else { |
|
|
LOGGER.warn("AttributeMetaData has been found for columnIdx="+attrIdx+", but fs.getSchema().getAttributeCount() = "+fs.getSchema().getAttributeCount()+". Ignored."); |
|
|
} |
|
130 |
} |
} |
131 |
|
|
132 |
// create a query for the visible attributes |
// Tested with 2.6.x trunk from 2009-11-26 and it now works. So we only request the properties we need! |
133 |
String[] properties = visibleAttrNames.toArray(new String[0]); |
// /** |
134 |
|
// * I got NPEs when properties contained only [the_geom] ?!??!!?? |
135 |
LOGGER.debug("Query contains the following attributes: " |
// */ |
136 |
+ visibleAttrNames); |
// if (properties.length > 1) { |
137 |
|
query = new DefaultQuery(schema.getTypeName(), filter, |
138 |
query = new DefaultQuery(fs.getSchema().getTypeName(), filter, |
visibleAttrNames.toArray(new String[] {})); |
139 |
properties); |
// } else { |
140 |
|
// query = new DefaultQuery(schema.getTypeName(), filter); |
141 |
|
// } |
142 |
} |
} |
143 |
fc = fs.getFeatures(query); |
fc = fs.getFeatures(query); |
|
|
|
|
// FAILS:!!!, even with query = new |
|
|
// DefaultQuery(fs.getSchema().getTypeName(), filter); |
|
|
// java.lang.UnsupportedOperationException: Unknown feature |
|
|
// attribute: PQM_MOD |
|
|
// at |
|
|
// schmitzm.geotools.feature.FeatureOperationTree.evaluate(FeatureOperationTree.java:93) |
|
|
// bounds = fc.getBounds(); |
|
|
// SK, 17.4.2009 |
|
|
// |
|
|
// System.out.println("Filter = "+filter); |
|
|
// System.out.println("Size of FC = "+fc.size()); |
|
|
// System.out.println("anz att= "+fc.getNumberOfAttributes()); |
|
144 |
} |
} |
145 |
setFeatureCollection(fc); |
setFeatureCollection(fc); |
146 |
} |
} |
152 |
* @param fs |
* @param fs |
153 |
* the feature source |
* the feature source |
154 |
* @param amd |
* @param amd |
155 |
* {@link AttributeMetaData}-Map to define the visible attributes |
* {@link AttributeMetadata}-Map to define the visible attributes |
156 |
* and translation |
* and translation |
157 |
*/ |
*/ |
158 |
public void setFeatureCollection(StyledFeaturesInterface layer, |
public void setStyledFeatures(StyledFeaturesInterface<?> styledFeatures) { |
|
Filter filter) { |
|
|
this.layer = layer; |
|
159 |
try { |
try { |
160 |
if (layer == null) |
if (styledFeatures == null) |
161 |
setFeatureSource(null, null, null); |
setFeatureSource(null, null, null); |
162 |
else { |
else { |
163 |
FeatureCollection fc = layer.getFeatureCollection(); |
setFeatureSource(styledFeatures.getFeatureSource(), |
164 |
String fcName = fc.getSchema().getTypeName(); |
styledFeatures.getAttributeMetaDataMap(), |
165 |
FeatureSource fs = new MemoryDataStore(fc) |
styledFeatures.getFilter()); |
|
.getFeatureSource(fcName); |
|
|
setFeatureSource(fs, layer.getAttributeMetaDataMap(), filter); |
|
166 |
} |
} |
167 |
} catch (Exception err) { |
} catch (Exception err) { |
168 |
throw new RuntimeException(err); |
throw new RuntimeException(err); |
170 |
} |
} |
171 |
|
|
172 |
/** |
/** |
|
* 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; |
|
|
} |
|
|
|
|
|
/** |
|
173 |
* After calling {@code super.reorganize(.)} this method replaced the column |
* After calling {@code super.reorganize(.)} this method replaced the column |
174 |
* descriptions with the titles of the {@code AttributeMetaData}. |
* descriptions with the titles of the {@code AttributeMetaData}. |
175 |
* |
* |
178 |
*/ |
*/ |
179 |
@Override |
@Override |
180 |
protected void reorganize(boolean fireTableStructureChanged) { |
protected void reorganize(boolean fireTableStructureChanged) { |
181 |
super.reorganize(false); |
|
182 |
// translate the column names |
featureArray = FeatureUtil.featuresToArray(featureTable); |
183 |
if (visibleAMD != null) { |
if (featureArray == null || featureArray.length == 0) { |
184 |
Iterator<Integer> keys = visibleAMD.keySet().iterator(); |
colNames = new String[0]; |
185 |
for (int i = 0; i < colNames.length && keys.hasNext(); i++) { |
colTooltips = new String[0]; // Only set and used in |
186 |
Translation title = visibleAMD.get(keys.next()).getTitle(); |
// StyledFeatureCollectionTableModel |
187 |
if (!I8NUtil.isEmpty(title)) { |
colClass = new Class[0]; |
188 |
// System.out.println("set colname " + i + " to " + |
} else { |
189 |
// title.toString()); |
// Struktur der Tabelle vom AttributeMetaDtaaMap übernehmen |
190 |
colNames[i] = title.toString(); |
SimpleFeatureType schema = featureArray[0].getFeatureType(); |
191 |
} |
// Pruefen, welche Attribute angezeigt werden |
192 |
|
attrTypes.clear(); |
193 |
|
for (AttributeMetadata amd : amdMap.sortedValuesVisibleOnly()) { |
194 |
|
AttributeDescriptor type = schema.getDescriptor(amd.getName()); |
195 |
|
if (attrFilter == null || attrFilter.accept(type)) |
196 |
|
attrTypes.add(type); |
197 |
|
} |
198 |
|
// Namen und Attribut-Indizes der angezeigten Spalten ermitteln |
199 |
|
colNames = new String[attrTypes.size()]; |
200 |
|
colTooltips = new String[attrTypes.size()]; // Only set and used in |
201 |
|
// StyledFeatureCollectionTableModel |
202 |
|
colClass = new Class[attrTypes.size()]; |
203 |
|
attrIdxForCol = new int[attrTypes.size()]; |
204 |
|
for (int i = 0; i < colNames.length; i++) { |
205 |
|
AttributeDescriptor descriptor = schema.getDescriptor(amdMap.sortedValuesVisibleOnly().get(i).getName()); |
206 |
|
|
207 |
|
// Not so nice in 26: find the index of an attribute... |
208 |
|
int idx = schema.getAttributeDescriptors().indexOf(descriptor); |
209 |
|
attrIdxForCol[i] = idx; |
210 |
|
|
211 |
|
String attName = schema.getAttributeDescriptors().get(idx) |
212 |
|
.getLocalName(); |
213 |
|
colNames[i] = amdMap.get(attName).getTitle().toString(); |
214 |
|
AttributeMetadata amd = amdMap.get(attName); |
215 |
|
colTooltips[i] = "<html>"+amd.getDesc().toString()+"<br>"+amd.getName()+"</html>"; |
216 |
|
colClass[i] = schema.getAttributeDescriptors().get(idx).getType() |
217 |
|
.getBinding(); |
218 |
} |
} |
219 |
} |
} |
220 |
|
|
221 |
|
// store feature indexes in HashMap to optimize findFeature(.) |
222 |
|
featureIdx = new HashMap<String, Integer>(); |
223 |
|
for (int i = 0; i < featureArray.length; i++) |
224 |
|
if (featureArray[i] != null) |
225 |
|
featureIdx.put(featureArray[i].getID(), i); |
226 |
|
// |
227 |
|
// // translate the column names |
228 |
|
// if (amdMap != null) { |
229 |
|
// for (int i = 0; i < colNames.length; i++) { |
230 |
|
// colTooltips[i] = amdMap.get(colNames[i]).getDesc().toString() |
231 |
|
// + "<br>" + colNames[i]; |
232 |
|
// colNames[i] = amdMap.get(colNames[i]).getTitle().toString(); |
233 |
|
// |
234 |
|
// } |
235 |
|
// } |
236 |
if (fireTableStructureChanged) |
if (fireTableStructureChanged) |
237 |
fireTableStructureChanged(); |
fireTableStructureChanged(); |
238 |
|
|
239 |
} |
} |
240 |
|
|
241 |
/** |
/** |