org.geomajas.layer.shapeinmem.FeatureSourceRetriever Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geomajas-layer-geotools Show documentation
Show all versions of geomajas-layer-geotools Show documentation
Geomajas server: Layer geotools - Implementation
/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2012 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/
package org.geomajas.layer.shapeinmem;
import java.io.IOException;
import org.geomajas.global.ExceptionCode;
import org.geomajas.layer.LayerException;
import org.geotools.data.DataStore;
import org.geotools.data.simple.SimpleFeatureSource;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.simple.SimpleFeatureType;
/**
* Both the {@link org.geomajas.layer.geotools.GeoToolsFeatureModel} and the
* {@link org.geomajas.layer.geotools.GeoToolsLayer} use the same FeatureSource a their way of dealing with GeoTools
* persistence. So instead of each of these classes having the same functions, we created this little class.
*
* @author Pieter De Graef
*/
public class FeatureSourceRetriever {
/**
* Reference to a GeoTools data store.
*/
private DataStore dataStore;
/**
* The name of the feature source in the GeoTools data store.
*/
private String featureSourceName;
/**
* The FeatureSource object with which we have access to the GeoTools persistence layer.
*/
private SimpleFeatureSource featureSource;
protected long nextId;
/**
* Set the data store.
*
* @param dataStore data store
* @throws LayerException in case something goes wrong
*/
public void setDataStore(DataStore dataStore) throws LayerException {
this.dataStore = dataStore;
}
/**
* Get the current data store.
*
* @return data store
*/
public DataStore getDataStore() {
return dataStore;
}
/**
* Set feature source name.
*
* @param featureSourceName feature source name
* @throws LayerException oops
*/
public void setFeatureSourceName(String featureSourceName) throws LayerException {
this.featureSourceName = featureSourceName;
}
// Class specific functions:
/**
* Retrieve the GeoTools feature type for the 'featureSourceName'.
*
* @return feature type
* @throws LayerException problem when retrieving feature source
*/
public SimpleFeatureType getSchema() throws LayerException {
return getFeatureSource().getSchema();
}
/**
* Retrieve the FeatureSource object from the data store.
*
* @return An OpenGIS FeatureSource object;
* @throws LayerException
* oops
*/
public SimpleFeatureSource getFeatureSource() throws LayerException {
if (featureSource == null) {
try {
featureSource = dataStore.getFeatureSource(featureSourceName);
} catch (IOException e) {
throw new LayerException(e, ExceptionCode.FEATURE_MODEL_PROBLEM, "Cannot find feature source "
+ featureSourceName);
} catch (NullPointerException e) {
throw new LayerException(e, ExceptionCode.FEATURE_MODEL_PROBLEM, "Cannot find feature source "
+ featureSourceName);
}
}
return featureSource;
}
/**
* Get the name of the feature source.
*
* @return name of feature source
*/
public String getFeatureSourceName() {
return featureSourceName;
}
/**
* Convert the given feature object to a {@link SimpleFeature}.
*
* @param possibleFeature feature object to convert
* @return converted feature
* @throws LayerException object could not be converted
*/
protected SimpleFeature asFeature(Object possibleFeature) throws LayerException {
if (possibleFeature instanceof SimpleFeature) {
return (SimpleFeature) possibleFeature;
} else {
throw new LayerException(ExceptionCode.INVALID_FEATURE_OBJECT, possibleFeature.getClass().getName());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy