org.vfny.geoserver.global.GeoServerFeatureSource Maven / Gradle / Ivy
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.vfny.geoserver.global;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import java.util.logging.Logger;
import org.geoserver.feature.DefaultCRSFilterVisitor;
import org.geoserver.feature.ReprojectingFilterVisitor;
import org.geotools.data.DataSourceException;
import org.geotools.data.DataStore;
import org.geotools.data.DefaultQuery;
import org.geotools.data.FeatureListener;
import org.geotools.data.FeatureLocking;
import org.geotools.data.FeatureSource;
import org.geotools.data.FeatureStore;
import org.geotools.data.Query;
import org.geotools.data.QueryCapabilities;
import org.geotools.data.ResourceInfo;
import org.geotools.data.crs.ForceCoordinateSystemFeatureResults;
import org.geotools.data.crs.ReprojectFeatureResults;
import org.geotools.factory.CommonFactoryFinder;
import org.geotools.feature.FeatureCollection;
import org.geotools.feature.FeatureTypes;
import org.geotools.feature.SchemaException;
import org.geotools.geometry.jts.ReferencedEnvelope;
import org.geotools.referencing.CRS;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.simple.SimpleFeatureType;
import org.opengis.feature.type.GeometryDescriptor;
import org.opengis.feature.type.Name;
import org.opengis.filter.Filter;
import org.opengis.filter.FilterFactory2;
import org.opengis.referencing.FactoryException;
import org.opengis.referencing.crs.CoordinateReferenceSystem;
import org.opengis.referencing.operation.OperationNotFoundException;
import org.opengis.referencing.operation.TransformException;
/**
* GeoServer wrapper for backend Geotools2 DataStore.
*
*
* Support FeatureSource decorator for FeatureTypeInfo that takes care of
* mapping the FeatureTypeInfo's FeatureSource with the schema and definition
* query configured for it.
*
*
*
* Because GeoServer requires that attributes always be returned in the same
* order we need a way to smoothly inforce this. Could we use this class to do
* so?
*
*
* @author Gabriel Roldan
* @version $Id: GeoServerFeatureSource.java 10266 2008-09-17 17:42:49Z aaime $
*/
public class GeoServerFeatureSource implements FeatureSource {
/** Shared package logger */
private static final Logger LOGGER = org.geotools.util.logging.Logging.getLogger("org.vfny.geoserver.global");
/** FeatureSource being served up */
protected FeatureSource source;
/** The single filter factory for this source (grabbing it has a high sync penalty */
FilterFactory2 ff = CommonFactoryFinder.getFilterFactory2(null);
/**
* GeoTools2 Schema information
*
*
* Is this the same as source.getSchema() or is it used supply the order
* that GeoServer requires attributes to be returned in?
*
*/
protected SimpleFeatureType schema;
/** Used to constrain the Feature made available to GeoServer. */
protected Filter definitionQuery = Filter.INCLUDE;
/** Geometries will be forced to this CRS (or null, if no forcing is needed) */
protected CoordinateReferenceSystem declaredCRS;
/** How to handle SRS */
protected int srsHandling;
/**
* Creates a new GeoServerFeatureSource object.
*
* @param source GeoTools2 FeatureSource
* @param schema SimpleFeatureType returned by this FeatureSource
* @param definitionQuery Filter used to limit results
* @param declaredCRS Geometries will be forced or projected to this CRS
*/
GeoServerFeatureSource(FeatureSource source, SimpleFeatureType schema, Filter definitionQuery,
CoordinateReferenceSystem declaredCRS, int srsHandling) {
this.source = source;
this.schema = schema;
this.definitionQuery = definitionQuery;
this.declaredCRS = declaredCRS;
this.srsHandling = srsHandling;
if (this.definitionQuery == null) {
this.definitionQuery = Filter.INCLUDE;
}
}
/**
* Returns the same name than the feature type (ie,
* {@code getSchema().getName()} to honor the simple feature land common
* practice of calling the same both the Features produces and their types
*
* @since 1.7
* @see FeatureSource#getName()
*/
public Name getName() {
return getSchema().getName();
}
/**
* Factory that make the correct decorator for the provided featureSource.
*
*
* This factory method is public and will be used to create all required
* subclasses. By comparison the constructors for this class have package
* visibiliy.
*
*
* @param featureSource
* @param schema DOCUMENT ME!
* @param definitionQuery DOCUMENT ME!
* @param declaredCRS
*
* @return
*/
public static GeoServerFeatureSource create(FeatureSource featureSource, SimpleFeatureType schema,
Filter definitionQuery, CoordinateReferenceSystem declaredCRS, int srsHandling) {
if (featureSource instanceof FeatureLocking) {
return new GeoServerFeatureLocking(
(FeatureLocking) featureSource, schema,
definitionQuery, declaredCRS, srsHandling);
} else if (featureSource instanceof FeatureStore) {
return new GeoServerFeatureStore(
(FeatureStore) featureSource, schema,
definitionQuery, declaredCRS, srsHandling);
}
return new GeoServerFeatureSource(featureSource, schema, definitionQuery, declaredCRS, srsHandling);
}
/**
* Takes a query and adapts it to match re definitionQuery filter
* configured for a feature type.
*
* @param query Query against this DataStore
* @param schema TODO
*
* @return Query restricted to the limits of definitionQuery
*
* @throws IOException See DataSourceException
* @throws DataSourceException If query could not meet the restrictions of
* definitionQuery
*/
protected Query makeDefinitionQuery(Query query, SimpleFeatureType schema) throws IOException {
if ((query == Query.ALL) || query.equals(Query.ALL)) {
return query;
}
try {
String[] propNames = extractAllowedAttributes(query, schema);
Filter filter = query.getFilter();
filter = makeDefinitionFilter(filter);
DefaultQuery defQuery = new DefaultQuery(query);
defQuery.setFilter(filter);
defQuery.setPropertyNames(propNames);
//set sort by
if (query.getSortBy() != null) {
defQuery.setSortBy(query.getSortBy());
}
return defQuery;
} catch (Exception ex) {
throw new DataSourceException(
"Could not restrict the query to the definition criteria: " + ex.getMessage(), ex);
}
}
/**
* List of allowed attributes.
*
*
* Creates a list of FeatureTypeInfo's attribute names based on the
* attributes requested by query
and making sure they not
* contain any non exposed attribute.
*
*
*
* Exposed attributes are those configured in the "attributes" element of
* the FeatureTypeInfo's configuration
*
*
* @param query User's origional query
* @param schema TODO
*
* @return List of allowed attribute types
*/
private String[] extractAllowedAttributes(Query query, SimpleFeatureType schema) {
String[] propNames = null;
if (query.retrieveAllProperties()) {
propNames = new String[schema.getAttributeCount()];
for (int i = 0; i < schema.getAttributeCount(); i++) {
propNames[i] = schema.getDescriptor(i).getLocalName();
}
} else {
String[] queriedAtts = query.getPropertyNames();
int queriedAttCount = queriedAtts.length;
List allowedAtts = new LinkedList();
for (int i = 0; i < queriedAttCount; i++) {
if (schema.getDescriptor(queriedAtts[i]) != null) {
allowedAtts.add(queriedAtts[i]);
} else {
LOGGER.info("queried a not allowed property: " + queriedAtts[i]
+ ". Ommitting it from query");
}
}
propNames = (String[]) allowedAtts.toArray(new String[allowedAtts.size()]);
}
return propNames;
}
/**
* If a definition query has been configured for the FeatureTypeInfo, makes
* and return a new Filter that contains both the query's filter and the
* layer's definition one, by logic AND'ing them.
*
* @param filter Origional user supplied Filter
*
* @return Filter adjusted to the limitations of definitionQuery
*
* @throws DataSourceException If the filter could not meet the limitations
* of definitionQuery
*/
protected Filter makeDefinitionFilter(Filter filter)
throws DataSourceException {
Filter newFilter = filter;
try {
if (definitionQuery != Filter.INCLUDE) {
newFilter = ff.and(definitionQuery, filter);
}
} catch (Exception ex) {
throw new DataSourceException("Can't create the definition filter", ex);
}
return newFilter;
}
/**
* Implement getDataStore.
*
*
* Description ...
*
*
* @return
*
* @see org.geotools.data.FeatureSource#getDataStore()
*/
public DataStore getDataStore() {
return (DataStore) source.getDataStore();
}
/**
* Implement addFeatureListener.
*
*
* Description ...
*
*
* @param listener
*
* @see org.geotools.data.FeatureSource#addFeatureListener(org.geotools.data.FeatureListener)
*/
public void addFeatureListener(FeatureListener listener) {
source.addFeatureListener(listener);
}
/**
* Implement removeFeatureListener.
*
*
* Description ...
*
*
* @param listener
*
* @see org.geotools.data.FeatureSource#removeFeatureListener(org.geotools.data.FeatureListener)
*/
public void removeFeatureListener(FeatureListener listener) {
source.removeFeatureListener(listener);
}
/**
* Implement getFeatures.
*
*
* Description ...
*
*
* @param query
*
* @return
*
* @throws IOException
*
* @see org.geotools.data.FeatureSource#getFeatures(org.geotools.data.Query)
*/
public FeatureCollection getFeatures(Query query)
throws IOException {
Query reprojected = reprojectFilter(query);
Query newQuery = adaptQuery(reprojected, schema);
CoordinateReferenceSystem targetCRS = query.getCoordinateSystemReproject();
try {
//this is the raw "unprojected" feature collection
FeatureCollection fc = source.getFeatures(newQuery);
return reprojectFeatureCollection(targetCRS, fc);
} catch (Exception e) {
throw new DataSourceException(e);
}
}
private Query reprojectFilter(Query query) throws IOException {
SimpleFeatureType nativeFeatureType = source.getSchema();
final GeometryDescriptor geom = nativeFeatureType.getGeometryDescriptor();
// if no geometry involved, no reprojection needed
if(geom == null)
return query;
try {
// default CRS: the CRS we can assume geometry and bbox elements in filter are
// that is, usually the declared one, but the native one in the leave case
CoordinateReferenceSystem defaultCRS = null;
// we need to reproject all bbox and geometries to a target crs, which is
// the native one usually, but it's the declared on in the force case (since in
// that case we completely ignore the native one)
CoordinateReferenceSystem targetCRS = null;
CoordinateReferenceSystem nativeCRS = geom.getCoordinateReferenceSystem();
if(srsHandling == FeatureTypeInfo.FORCE) {
defaultCRS = declaredCRS;
targetCRS = declaredCRS;
nativeFeatureType = FeatureTypes.transform(nativeFeatureType, declaredCRS);
} else if(srsHandling == FeatureTypeInfo.REPROJECT) {
defaultCRS = declaredCRS;
targetCRS = nativeCRS;
} else { // FeatureTypeInfo.LEAVE
defaultCRS = nativeCRS;
targetCRS = nativeCRS;
}
// now we apply a default to all geometries and bbox in the filter
DefaultCRSFilterVisitor defaultCRSVisitor = new DefaultCRSFilterVisitor(ff, defaultCRS);
Filter defaultedFilter = (Filter) query.getFilter().accept(defaultCRSVisitor, null);
// and then we reproject all geometries so that the datastore receives
// them in the native projection system (or the forced one, in case of force)
ReprojectingFilterVisitor reprojectingVisitor = new ReprojectingFilterVisitor(ff, nativeFeatureType);
Filter reprojectedFilter = (Filter) defaultedFilter.accept(reprojectingVisitor, null);
DefaultQuery reprojectedQuery = new DefaultQuery(query);
reprojectedQuery.setFilter(reprojectedFilter);
return reprojectedQuery;
} catch(Exception e) {
throw new DataSourceException("Had troubles handling filter reprojection...", e);
}
}
/**
* Wraps feature collection as needed in order to respect srs handling and reprojection
* @param targetCRS
* @param fc
* @return
* @throws IOException
* @throws SchemaException
* @throws TransformException
* @throws OperationNotFoundException
* @throws FactoryException
*/
protected FeatureCollection reprojectFeatureCollection(
CoordinateReferenceSystem targetCRS,
FeatureCollection fc)
throws IOException, SchemaException, TransformException,
OperationNotFoundException, FactoryException {
if ( fc.getSchema().getGeometryDescriptor() == null ) {
// reprojection and crs forcing do not make sense, bail out
return fc;
}
CoordinateReferenceSystem nativeCRS = fc.getSchema().getGeometryDescriptor().getCoordinateReferenceSystem();
if(nativeCRS == null) {
fc = new ForceCoordinateSystemFeatureResults(fc, declaredCRS);
nativeCRS = declaredCRS;
} else if(srsHandling == FeatureTypeInfo.FORCE && !nativeCRS.equals(declaredCRS)) {
fc = new ForceCoordinateSystemFeatureResults(fc, declaredCRS);
nativeCRS = declaredCRS;
} else if(srsHandling == FeatureTypeInfo.REPROJECT && targetCRS == null
&& !nativeCRS.equals(declaredCRS)) {
fc = new ReprojectFeatureResults(fc,declaredCRS);
}
//was reproject specified as part of the query?
if (targetCRS != null ) {
//reprojection is occuring
if ( nativeCRS == null ) {
//we do not know what the native crs which means we can
// not be sure if we should reproject or not... so we go
// ahead and reproject regardless
fc = new ReprojectFeatureResults(fc,targetCRS);
}
else {
//only reproject if native != target
if (!CRS.equalsIgnoreMetadata(nativeCRS, targetCRS)) {
fc = new ReprojectFeatureResults(fc,targetCRS);
}
}
}
return fc;
}
/**
* Transforms the query applying the definition query in this layer, removes reprojection
* since data stores cannot be trusted
* @param query
* @param schema TODO
* @return
* @throws IOException
*/
protected Query adaptQuery(Query query, SimpleFeatureType schema) throws IOException {
// if needed, reproject the filter to the native srs
Query newQuery = makeDefinitionQuery(query, schema);
// // see if the CRS got xfered over
// // a. old had a CRS, new doesnt
// boolean requireXferCRS = (newQuery.getCoordinateSystem() == null)
// && (query.getCoordinateSystem() != null);
//
// if ((newQuery.getCoordinateSystem() != null) && (query.getCoordinateSystem() != null)) {
// //b. both have CRS, but they're different
// requireXferCRS = !(newQuery.getCoordinateSystem().equals(query.getCoordinateSystem()));
// }
//
// if (requireXferCRS) {
// //carry along the CRS
// if (!(newQuery instanceof DefaultQuery)) {
// newQuery = new DefaultQuery(newQuery);
// }
//
// ((DefaultQuery) newQuery).setCoordinateSystem(query.getCoordinateSystem());
// }
//JD: this is a huge hack... but its the only way to ensure that we
// we get what we ask for ... which is not reprojection, since
// datastores are unreliable in this aspect we dont know if they will
// reproject or not.
// AA: added force coordinate system reset as well, since we cannot
// trust GT2 datastores there neither.
if ( newQuery.getCoordinateSystemReproject() != null ) {
((DefaultQuery)newQuery).setCoordinateSystemReproject(null);
}
if ( newQuery.getCoordinateSystem() != null ) {
((DefaultQuery)newQuery).setCoordinateSystem(null);
}
return newQuery;
}
public FeatureCollection getFeatures(Filter filter)
throws IOException {
return getFeatures(new DefaultQuery(schema.getTypeName(), filter));
}
public FeatureCollection getFeatures() throws IOException {
return getFeatures(Query.ALL);
}
/**
* Implement getSchema.
*
*
* Description ...
*
*
* @return
*
* @see org.geotools.data.FeatureSource#getSchema()
*/
public SimpleFeatureType getSchema() {
return schema;
}
/**
* Retrieves the total extent of this FeatureSource.
*
*
* Please note this extent will reflect the provided definitionQuery.
*
*
* @return Extent of this FeatureSource, or null
if no
* optimizations exist.
*
* @throws IOException If bounds of definitionQuery
*/
public ReferencedEnvelope getBounds() throws IOException {
// since CRS is at most forced, we don't need to change this code
if (definitionQuery == Filter.INCLUDE) {
return source.getBounds();
} else {
Query query = new DefaultQuery(getSchema().getTypeName(), definitionQuery);
return source.getBounds(query);
}
}
/**
* Retrive the extent of the Query.
*
*
* This method provides access to an optimized getBounds opperation. If no
* optimized opperation is available null
will be returned.
*
*
*
* You may still make use of getFeatures( Query ).getCount() which will
* return the correct answer (even if it has to itterate through all the
* results to do so.
*
*
* @param query User's query
*
* @return Extend of Query or null
if no optimization is
* available
*
* @throws IOException If a problem is encountered with source
*/
public ReferencedEnvelope getBounds(Query query) throws IOException {
// since CRS is at most forced, we don't need to change this code
try {
query = makeDefinitionQuery(query, schema);
} catch (IOException ex) {
return null;
}
return source.getBounds(query);
}
/**
* Adjust query and forward to source.
*
*
* This method provides access to an optimized getCount opperation. If no
* optimized opperation is available -1
will be returned.
*
*
*
* You may still make use of getFeatures( Query ).getCount() which will
* return the correct answer (even if it has to itterate through all the
* results to do so).
*
*
* @param query User's query.
*
* @return Number of Features for Query, or -1 if no optimization is
* available.
*/
public int getCount(Query query) {
try {
query = makeDefinitionQuery(query, schema);
} catch (IOException ex) {
return -1;
}
try {
return source.getCount(query);
} catch (IOException e) {
return 0;
}
}
public Set getSupportedHints() {
return source.getSupportedHints();
}
public ResourceInfo getInfo() {
return source.getInfo();
}
public QueryCapabilities getQueryCapabilities() {
return source.getQueryCapabilities();
}
}