Using new publishGeoTIFF method (not deprecated)
This commit is contained in:
parent
2dd01c0c82
commit
faa01e40da
|
@ -44,304 +44,295 @@ import it.geosolutions.geoserver.rest.encoder.feature.GSFeatureTypeEncoder;
|
|||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
@Slf4j
|
||||
public class SDIManagerWrapper extends SDIManager{
|
||||
public class SDIManagerWrapper extends SDIManager {
|
||||
|
||||
public SDIManagerWrapper() throws SDIInteractionException {
|
||||
}
|
||||
public SDIManagerWrapper() throws SDIInteractionException {
|
||||
}
|
||||
|
||||
/**
|
||||
* Expected paramters :
|
||||
* - "workspace"
|
||||
* - "layerTitle"
|
||||
* - "documentID"
|
||||
* - "basePersistencePath" (useCaseDescriptor specific, e.g. "GNA")
|
||||
*
|
||||
* @param fileSet
|
||||
* @param params
|
||||
* @return
|
||||
* @throws SDIInteractionException
|
||||
*/
|
||||
public RegisteredFileSet materializeLayer(RegisteredFileSet fileSet, Document params) throws SDIInteractionException{
|
||||
try {
|
||||
log.debug("Materializing FS {} on {} ", fileSet, getGeoserverHostName());
|
||||
/**
|
||||
* Expected paramters : - "workspace" - "layerTitle" - "documentID" -
|
||||
* "basePersistencePath" (useCaseDescriptor specific, e.g. "GNA")
|
||||
*
|
||||
* @param fileSet
|
||||
* @param params
|
||||
* @return
|
||||
* @throws SDIInteractionException
|
||||
*/
|
||||
public RegisteredFileSet materializeLayer(RegisteredFileSet fileSet, Document params)
|
||||
throws SDIInteractionException {
|
||||
try {
|
||||
log.debug("Materializing FS {} on {} ", fileSet, getGeoserverHostName());
|
||||
|
||||
// validate parameters
|
||||
String workspace = BaseExecutionRequest.getMandatory("workspace", params);
|
||||
String documentID = BaseExecutionRequest.getMandatory("documentID", params);
|
||||
String basePersistencePAth = BaseExecutionRequest.getMandatory("basePersistencePath", params);
|
||||
// validate parameters
|
||||
String workspace = BaseExecutionRequest.getMandatory("workspace", params);
|
||||
String documentID = BaseExecutionRequest.getMandatory("documentID", params);
|
||||
String basePersistencePAth = BaseExecutionRequest.getMandatory("basePersistencePath", params);
|
||||
|
||||
// check if empty
|
||||
if (fileSet.getPayloads().isEmpty())
|
||||
throw new SDIInteractionException("No payload to materialize");
|
||||
|
||||
// check if empty
|
||||
if (fileSet.getPayloads().isEmpty()) throw new SDIInteractionException("No payload to materialize");
|
||||
// Document geoserverInfo = new Document();
|
||||
GCubeSDILayerBuilder layerBuilder = new GCubeSDILayerBuilder();
|
||||
layerBuilder.setWorkspace(workspace);
|
||||
layerBuilder.setHost(getGeoserverHostName());
|
||||
|
||||
// Evaluate layer data in filesets
|
||||
// TODO optimize cicles
|
||||
List<SupportedFormat> toCheckFormats = SupportedFormat.getByExtension(".tif", ".shp");
|
||||
SupportedFormat selectedFormat = null;
|
||||
String baseName = null;
|
||||
for (SupportedFormat format : toCheckFormats) {
|
||||
log.debug("Checking for {}", format);
|
||||
for (Object o : fileSet.getPayloads()) {
|
||||
RegisteredFile file = Serialization.convert(o, RegisteredFile.class);
|
||||
format.consider(file);
|
||||
}
|
||||
if (format.getIsProposedFilesetValid()) {
|
||||
log.debug("Selected format is {}. Fileset is {}", format, format.getToUseFileSet());
|
||||
selectedFormat = format;
|
||||
// get basename for layer
|
||||
baseName = format.getToUseFileSet().get(0).getName();
|
||||
baseName = Files.fixFilename(baseName).substring(0, baseName.lastIndexOf('.'));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Document geoserverInfo = new Document();
|
||||
GCubeSDILayerBuilder layerBuilder=new GCubeSDILayerBuilder();
|
||||
layerBuilder.setWorkspace(workspace);
|
||||
layerBuilder.setHost(getGeoserverHostName());
|
||||
if (selectedFormat == null)
|
||||
throw new SDIInteractionException(
|
||||
"Unable to identify layer format. Configured formats are " + toCheckFormats);
|
||||
|
||||
// Evaluate Layer Name
|
||||
log.debug("Base layer name is {}, checking conflicts.. ", baseName);
|
||||
String toSetLayerName = baseName;
|
||||
|
||||
// Checking if layer already exists
|
||||
int count = 0;
|
||||
GeoServerRESTReader gsReader = getCurrentGeoserver().getReader();
|
||||
while (gsReader.getLayer(workspace, toSetLayerName) != null) {
|
||||
count++;
|
||||
toSetLayerName = baseName + "_" + count;
|
||||
log.debug("layer for " + baseName + " already existing, trying " + toSetLayerName);
|
||||
}
|
||||
log.debug("Layer name will be {}", toSetLayerName);
|
||||
layerBuilder.setLayerName(toSetLayerName);
|
||||
|
||||
// Evaluate layer data in filesets
|
||||
// TODO optimize cicles
|
||||
List<SupportedFormat> toCheckFormats=SupportedFormat.getByExtension(".tif",".shp");
|
||||
SupportedFormat selectedFormat = null;
|
||||
String baseName=null;
|
||||
for(SupportedFormat format: toCheckFormats){
|
||||
log.debug("Checking for {}",format);
|
||||
for (Object o : fileSet.getPayloads()) {
|
||||
RegisteredFile file = Serialization.convert(o, RegisteredFile.class);
|
||||
format.consider(file);
|
||||
}
|
||||
if(format.getIsProposedFilesetValid()){
|
||||
log.debug("Selected format is {}. Fileset is {}",format,format.getToUseFileSet());
|
||||
selectedFormat = format;
|
||||
// get basename for layer
|
||||
baseName = format.getToUseFileSet().get(0).getName();
|
||||
baseName= Files.fixFilename(baseName).substring(0,baseName.lastIndexOf('.'));
|
||||
break;
|
||||
}
|
||||
}
|
||||
// Publishing layer in GS
|
||||
String storeName = toSetLayerName + "_store";
|
||||
layerBuilder.setStoreName(storeName);
|
||||
|
||||
if(selectedFormat==null)
|
||||
throw new SDIInteractionException("Unable to identify layer format. Configured formats are "+toCheckFormats);
|
||||
GeoServerRESTPublisher publisher = getCurrentGeoserver().getPublisher();
|
||||
log.debug("Trying to create remote workspace : " + workspace);
|
||||
createWorkspace(workspace);
|
||||
|
||||
// Actually publishing files into GS
|
||||
|
||||
// Evaluate Layer Name
|
||||
log.debug("Base layer name is {}, checking conflicts.. ",baseName);
|
||||
String toSetLayerName = baseName;
|
||||
Boolean published = null;
|
||||
|
||||
//Checking if layer already exists
|
||||
int count = 0;
|
||||
GeoServerRESTReader gsReader = getCurrentGeoserver().getReader();
|
||||
while (gsReader.getLayer(workspace, toSetLayerName) != null) {
|
||||
count++;
|
||||
toSetLayerName = baseName + "_" + count;
|
||||
log.debug("layer for " + baseName + " already existing, trying " + toSetLayerName);
|
||||
}
|
||||
log.debug("Layer name will be {}", toSetLayerName);
|
||||
layerBuilder.setLayerName(toSetLayerName);
|
||||
switch (selectedFormat.getFileExtension()) {
|
||||
case ".tif": {
|
||||
RegisteredFile f = selectedFormat.getToUseFileSet().get(0);
|
||||
File temp = null;
|
||||
try {
|
||||
temp = Files.downloadFromUrl(f.getName(), f.getLink());
|
||||
//Added by Francesco M.
|
||||
published = publisher.publishGeoTIFF(workspace, storeName, toSetLayerName, temp, EPSG_4326,
|
||||
REPROJECT_TO_DECLARED, "raster", null);
|
||||
// published = publisher.publishGeoTIFF(workspace, storeName,
|
||||
// toSetLayerName,temp,EPSG_4326,REPROJECT_TO_DECLARED,"raster");
|
||||
} finally {
|
||||
if (temp != null)
|
||||
java.nio.file.Files.deleteIfExists(temp.toPath());
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ".shp": {
|
||||
// TODO Evaluate SRS
|
||||
String absolutePath = transferFilesetToGS(basePersistencePAth, documentID,
|
||||
selectedFormat.getToUseFileSet(), fileSet.getUUID(), toSetLayerName, baseName, layerBuilder);
|
||||
URL directoryPath = new URL("file:" + absolutePath + "/" + toSetLayerName + ".shp");
|
||||
published = publisher.publishShp(workspace, storeName, null, toSetLayerName,
|
||||
// UploadMethod.FILE, // neeeds zip
|
||||
GeoServerRESTPublisher.UploadMethod.EXTERNAL, // needs shp
|
||||
directoryPath.toURI(), EPSG_4326, // SRS
|
||||
"");
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
throw new SDIInteractionException("Unsupported data format");
|
||||
}
|
||||
}
|
||||
|
||||
// check if success
|
||||
if (!published) {
|
||||
throw new SDIInteractionException("Unable to publish layer " + toSetLayerName + " under " + workspace
|
||||
+ ". Unknown Geoserver fault.");
|
||||
}
|
||||
|
||||
RESTLayer l = gsReader.getLayer(workspace, toSetLayerName);
|
||||
RESTFeatureType f = gsReader.getFeatureType(l);
|
||||
|
||||
layerBuilder.setBBOX(f.getMaxX(), f.getMinX(), f.getMaxY(), f.getMinY(), 0d, 0d);
|
||||
|
||||
// Publishing layer in GS
|
||||
String storeName = toSetLayerName + "_store";
|
||||
layerBuilder.setStoreName(storeName);
|
||||
GCubeSDILayer materialization = layerBuilder.getLayer();
|
||||
log.info("Generated Materialization {}", materialization);
|
||||
|
||||
GeoServerRESTPublisher publisher = getCurrentGeoserver().getPublisher();
|
||||
log.debug("Trying to create remote workspace : " + workspace);
|
||||
createWorkspace(workspace);
|
||||
// Add Materialization to registered file set
|
||||
List materializations = fileSet.getMaterializations();
|
||||
if (materializations == null)
|
||||
materializations = new ArrayList();
|
||||
materializations.add(materialization);
|
||||
fileSet.put(RegisteredFileSet.MATERIALIZATIONS, materializations);
|
||||
|
||||
return fileSet;
|
||||
} catch (SDIInteractionException e) {
|
||||
throw e;
|
||||
} catch (Throwable t) {
|
||||
throw new SDIInteractionException(
|
||||
"Unexpected exception while trying to materialize File Set " + t.getMessage(), t);
|
||||
}
|
||||
}
|
||||
|
||||
private String transferFilesetToGS(String basePersistencePAth, String documentID, List<RegisteredFile> fileSet,
|
||||
String fileSetUUID, String toSetLayerName, String baseName, GCubeSDILayerBuilder layerBuilder)
|
||||
throws MalformedURLException, InvalidSourceException, SourceNotSetException, InvalidDestinationException,
|
||||
DestinationNotSetException, InitializationException, FailedTransferException {
|
||||
String folderRelativePath = basePersistencePAth + "/" + documentID + "/" + fileSetUUID + "/" + toSetLayerName;
|
||||
log.debug("GS Relative destination path is {}", folderRelativePath);
|
||||
layerBuilder.setPersistencePath(folderRelativePath);
|
||||
|
||||
List<String> filenames = new ArrayList<>();
|
||||
|
||||
// Actually publishing files into GS
|
||||
String absolutePath = null;
|
||||
|
||||
Boolean published = null;
|
||||
for (RegisteredFile file : fileSet) {
|
||||
log.info("Sending {} to GS {} at {} ", file, getGeoserverHostName(), folderRelativePath);
|
||||
String completeFilename = Files.fixFilename(file.getName());
|
||||
completeFilename = completeFilename.replaceAll(baseName, toSetLayerName);
|
||||
|
||||
switch(selectedFormat.getFileExtension()){
|
||||
case ".tif" : {
|
||||
RegisteredFile f = selectedFormat.getToUseFileSet().get(0);
|
||||
File temp= null;
|
||||
try {
|
||||
temp = Files.downloadFromUrl(f.getName(),f.getLink());
|
||||
published = publisher.publishGeoTIFF(workspace, storeName, toSetLayerName,temp,EPSG_4326,REPROJECT_TO_DECLARED,"raster");
|
||||
}finally{ if (temp!=null) java.nio.file.Files.deleteIfExists(temp.toPath());}
|
||||
break;
|
||||
}
|
||||
case ".shp" :{
|
||||
//TODO Evaluate SRS
|
||||
String absolutePath = transferFilesetToGS(basePersistencePAth,documentID,selectedFormat.getToUseFileSet(),
|
||||
fileSet.getUUID(),toSetLayerName,baseName,layerBuilder);
|
||||
URL directoryPath = new URL("file:" + absolutePath + "/" + toSetLayerName + ".shp");
|
||||
published = publisher.publishShp(
|
||||
workspace,
|
||||
storeName,
|
||||
null,
|
||||
toSetLayerName,
|
||||
// UploadMethod.FILE, // neeeds zip
|
||||
GeoServerRESTPublisher.UploadMethod.EXTERNAL, // needs shp
|
||||
directoryPath.toURI(),
|
||||
EPSG_4326, //SRS
|
||||
"");
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
throw new SDIInteractionException("Unsupported data format");
|
||||
}
|
||||
}
|
||||
Destination destination = new Destination(completeFilename);
|
||||
destination.setCreateSubfolders(true);
|
||||
destination.setOnExistingFileName(DestinationClashPolicy.REWRITE);
|
||||
destination.setOnExistingSubFolder(DestinationClashPolicy.APPEND);
|
||||
|
||||
// check if success
|
||||
if (!published) {
|
||||
throw new SDIInteractionException("Unable to publish layer " + toSetLayerName + " under " + workspace + ". Unknown Geoserver fault.");
|
||||
}
|
||||
destination.setPersistenceId("geoserver");
|
||||
destination.setSubFolder(folderRelativePath);
|
||||
|
||||
RESTLayer l = gsReader.getLayer(workspace, toSetLayerName);
|
||||
RESTFeatureType f = gsReader.getFeatureType(l);
|
||||
log.debug("Sending {} to {}", file, destination);
|
||||
TransferResult result = getDtGeoServer().httpSource(new URL(file.getLink()), destination);
|
||||
log.debug("Transferred " + result);
|
||||
|
||||
filenames.add(completeFilename);
|
||||
// NB Clash con subfolder is APPEND, thus FOLDER is expected to be the one
|
||||
// specified by caller
|
||||
// geoserverInfo.put(""result.getRemotePath().substring(0,
|
||||
// result.getRemotePath().lastIndexOf("/")));
|
||||
absolutePath = result.getRemotePath().substring(0, result.getRemotePath().lastIndexOf("/"));
|
||||
}
|
||||
layerBuilder.setFiles(filenames);
|
||||
return absolutePath;
|
||||
}
|
||||
|
||||
layerBuilder.setBBOX(f.getMaxX(),f.getMinX(),f.getMaxY(),f.getMinY(),0d,0d);
|
||||
public void deleteLayer(GCubeSDILayer toDelete) throws SDIInteractionException {
|
||||
log.trace("Deleting {}", toDelete);
|
||||
try {
|
||||
AbstractGeoServerDescriptor gs = getCurrentGeoserver();
|
||||
GeoServerRESTPublisher publisher = gs.getPublisher();
|
||||
for (Object platformObj : toDelete.getPlatformInfo()) {
|
||||
PlatformInfo info = Serialization.convert(platformObj, PlatformInfo.class);
|
||||
switch (info.getType()) {
|
||||
case GeoServerPlatform.GS_PLATFORM: {
|
||||
GeoServerPlatform gsInfo = Serialization.convert(info, GeoServerPlatform.class);
|
||||
log.trace("Deleting {} ", gsInfo);
|
||||
// remove store (recursion deletes related layers)
|
||||
log.trace("Removing datastore {}:{}", gsInfo.getWorkspace(), gsInfo.getStoreName());
|
||||
if (!publisher.removeDatastore(gsInfo.getWorkspace(), gsInfo.getStoreName(), true))
|
||||
throw new SDIInteractionException(
|
||||
"Unable to remove store " + gsInfo.getWorkspace() + ":" + gsInfo.getStoreName());
|
||||
// remove ws if empty
|
||||
log.trace("Checking if empty WS {}", gsInfo.getWorkspace());
|
||||
if (gs.getReader().getDatastores(gsInfo.getWorkspace()).isEmpty())
|
||||
if (!publisher.removeWorkspace(gsInfo.getWorkspace(), true))
|
||||
throw new SDIInteractionException("Unable to remove WS " + gsInfo.getWorkspace());
|
||||
|
||||
|
||||
GCubeSDILayer materialization = layerBuilder.getLayer();
|
||||
log.info("Generated Materialization {}", materialization);
|
||||
|
||||
//Add Materialization to registered file set
|
||||
List materializations = fileSet.getMaterializations();
|
||||
if (materializations == null) materializations = new ArrayList();
|
||||
materializations.add(materialization);
|
||||
fileSet.put(RegisteredFileSet.MATERIALIZATIONS, materializations);
|
||||
|
||||
return fileSet;
|
||||
}catch(SDIInteractionException e){
|
||||
throw e;
|
||||
}catch (Throwable t){
|
||||
throw new SDIInteractionException("Unexpected exception while trying to materialize File Set "+t.getMessage(),t);
|
||||
}
|
||||
}
|
||||
|
||||
private String transferFilesetToGS(String basePersistencePAth,String documentID,List<RegisteredFile> fileSet,
|
||||
String fileSetUUID,
|
||||
String toSetLayerName, String baseName, GCubeSDILayerBuilder layerBuilder)
|
||||
throws MalformedURLException, InvalidSourceException, SourceNotSetException, InvalidDestinationException,
|
||||
DestinationNotSetException, InitializationException, FailedTransferException {
|
||||
String folderRelativePath = basePersistencePAth + "/" + documentID + "/" + fileSetUUID + "/" + toSetLayerName;
|
||||
log.debug("GS Relative destination path is {}", folderRelativePath);
|
||||
layerBuilder.setPersistencePath(folderRelativePath);
|
||||
|
||||
List<String> filenames = new ArrayList<>();
|
||||
|
||||
String absolutePath = null;
|
||||
|
||||
for (RegisteredFile file : fileSet) {
|
||||
log.info("Sending {} to GS {} at {} ", file, getGeoserverHostName(), folderRelativePath);
|
||||
String completeFilename = Files.fixFilename(file.getName());
|
||||
completeFilename = completeFilename.replaceAll(baseName, toSetLayerName);
|
||||
|
||||
|
||||
Destination destination = new Destination(completeFilename);
|
||||
destination.setCreateSubfolders(true);
|
||||
destination.setOnExistingFileName(DestinationClashPolicy.REWRITE);
|
||||
destination.setOnExistingSubFolder(DestinationClashPolicy.APPEND);
|
||||
|
||||
destination.setPersistenceId("geoserver");
|
||||
destination.setSubFolder(folderRelativePath);
|
||||
|
||||
log.debug("Sending {} to {}", file, destination);
|
||||
TransferResult result = getDtGeoServer().httpSource(new URL(file.getLink()), destination);
|
||||
log.debug("Transferred " + result);
|
||||
|
||||
|
||||
filenames.add(completeFilename);
|
||||
// NB Clash con subfolder is APPEND, thus FOLDER is expected to be the one specified by caller
|
||||
//geoserverInfo.put(""result.getRemotePath().substring(0, result.getRemotePath().lastIndexOf("/")));
|
||||
absolutePath = result.getRemotePath().substring(0, result.getRemotePath().lastIndexOf("/"));
|
||||
}
|
||||
layerBuilder.setFiles(filenames);
|
||||
return absolutePath;
|
||||
}
|
||||
|
||||
public void deleteLayer(GCubeSDILayer toDelete) throws SDIInteractionException {
|
||||
log.trace("Deleting {}",toDelete);
|
||||
try{
|
||||
AbstractGeoServerDescriptor gs=getCurrentGeoserver();
|
||||
GeoServerRESTPublisher publisher = gs.getPublisher();
|
||||
for(Object platformObj : toDelete.getPlatformInfo()){
|
||||
PlatformInfo info =Serialization.convert(platformObj, PlatformInfo.class);
|
||||
switch(info.getType()){
|
||||
case GeoServerPlatform.GS_PLATFORM:{
|
||||
GeoServerPlatform gsInfo = Serialization.convert(info,GeoServerPlatform.class);
|
||||
log.trace("Deleting {} ",gsInfo);
|
||||
// remove store (recursion deletes related layers)
|
||||
log.trace("Removing datastore {}:{}",gsInfo.getWorkspace(),gsInfo.getStoreName());
|
||||
if(!publisher.removeDatastore(gsInfo.getWorkspace(),gsInfo.getStoreName(),true))
|
||||
throw new SDIInteractionException("Unable to remove store "+gsInfo.getWorkspace()+":"+gsInfo.getStoreName());
|
||||
// remove ws if empty
|
||||
log.trace("Checking if empty WS {}",gsInfo.getWorkspace());
|
||||
if(gs.getReader().getDatastores(gsInfo.getWorkspace()).isEmpty())
|
||||
if(!publisher.removeWorkspace(gsInfo.getWorkspace(),true))
|
||||
throw new SDIInteractionException("Unable to remove WS "+gsInfo.getWorkspace());
|
||||
|
||||
// remove actual files data
|
||||
// TODO REMOVE HARDCODED PATCH
|
||||
String path="geoserver/"+gsInfo.getPersistencePath();
|
||||
log.info("Deleting files at {}@{}",path,getGeoserverHostName());
|
||||
try{
|
||||
Client dtClient = new Client("https://"+getGeoserverHostName());
|
||||
dtClient.delete(path);
|
||||
// remove actual files data
|
||||
// TODO REMOVE HARDCODED PATCH
|
||||
String path = "geoserver/" + gsInfo.getPersistencePath();
|
||||
log.info("Deleting files at {}@{}", path, getGeoserverHostName());
|
||||
try {
|
||||
Client dtClient = new Client("https://" + getGeoserverHostName());
|
||||
dtClient.delete(path);
|
||||
// getDtGeoServer().getWebClient().delete("geoserver/"+path);
|
||||
}catch(Exception e){
|
||||
throw new Exception("Data Transfer ERROR. Unable to delete files at "+getGeoserverHostName()+" PATH "+path,e);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
throw new Exception("Data Transfer ERROR. Unable to delete files at " + getGeoserverHostName()
|
||||
+ " PATH " + path, e);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
default : {
|
||||
throw new SDIInteractionException("Unable to manage platform "+info);
|
||||
}
|
||||
}
|
||||
}
|
||||
}catch(SDIInteractionException e){
|
||||
throw e;
|
||||
}catch (Throwable t){
|
||||
throw new SDIInteractionException("Unexpected exception while trying to delete Layer : "+t.getMessage(),t);
|
||||
}
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
throw new SDIInteractionException("Unable to manage platform " + info);
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (SDIInteractionException e) {
|
||||
throw e;
|
||||
} catch (Throwable t) {
|
||||
throw new SDIInteractionException("Unexpected exception while trying to delete Layer : " + t.getMessage(),
|
||||
t);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
private static class CQL_GS_Feature extends GSFeatureTypeEncoder{
|
||||
private static final String CQL = "cqlFilter";
|
||||
public void setCQL(String cql){this.set(CQL,cql);}
|
||||
private static class CQL_GS_Feature extends GSFeatureTypeEncoder {
|
||||
private static final String CQL = "cqlFilter";
|
||||
|
||||
}
|
||||
public void setCQL(String cql) {
|
||||
this.set(CQL, cql);
|
||||
}
|
||||
|
||||
public GCubeSDILayer configureCentroidLayer(String name, String workspace, String storeName, PostgisTable table, DatabaseConnection connection) throws SDIInteractionException {
|
||||
}
|
||||
|
||||
GCubeSDILayerBuilder builder = new GCubeSDILayerBuilder()
|
||||
.setWorkspace(workspace)
|
||||
.setStoreName(storeName)
|
||||
.setHost(getGeoserverHostName())
|
||||
.setLayerName(name);
|
||||
public GCubeSDILayer configureCentroidLayer(String name, String workspace, String storeName, PostgisTable table,
|
||||
DatabaseConnection connection) throws SDIInteractionException {
|
||||
|
||||
CQL_GS_Feature fte=new CQL_GS_Feature();
|
||||
fte.setAbstract("Centroid layer for "+name);
|
||||
fte.setEnabled(true);
|
||||
fte.setNativeCRS(WGS84_FULL);
|
||||
fte.setTitle(name);
|
||||
fte.setName(name);
|
||||
fte.setCQL(DBConstants.Defaults.DISPLAYED+" = true");
|
||||
GCubeSDILayerBuilder builder = new GCubeSDILayerBuilder().setWorkspace(workspace).setStoreName(storeName)
|
||||
.setHost(getGeoserverHostName()).setLayerName(name);
|
||||
|
||||
CQL_GS_Feature fte = new CQL_GS_Feature();
|
||||
fte.setAbstract("Centroid layer for " + name);
|
||||
fte.setEnabled(true);
|
||||
fte.setNativeCRS(WGS84_FULL);
|
||||
fte.setTitle(name);
|
||||
fte.setName(name);
|
||||
fte.setCQL(DBConstants.Defaults.DISPLAYED + " = true");
|
||||
|
||||
fte.setLatLonBoundingBox(-180.0, -90.0, 180.0, 90.0, WGS84_FULL);
|
||||
|
||||
fte.setLatLonBoundingBox(-180.0, -90.0, 180.0, 90.0, WGS84_FULL);
|
||||
String style = "clustered_centroids";
|
||||
|
||||
String style="clustered_centroids";
|
||||
GSLayerEncoder layerEncoder = new GSLayerEncoder();
|
||||
layerEncoder.setDefaultStyle(style);
|
||||
layerEncoder.setEnabled(true);
|
||||
layerEncoder.setQueryable(true);
|
||||
|
||||
GSLayerEncoder layerEncoder=new GSLayerEncoder();
|
||||
layerEncoder.setDefaultStyle(style);
|
||||
layerEncoder.setEnabled(true);
|
||||
layerEncoder.setQueryable(true);
|
||||
try {
|
||||
// Checking workspace
|
||||
createWorkspace(workspace);
|
||||
// Checking store
|
||||
createStoreFromPostgisDB(workspace, storeName, connection);
|
||||
// Checking layer
|
||||
publishStyle(Files.getFileFromResources("styles/clustered_points.sld"), style);
|
||||
|
||||
log.info("Creating layer in {} : {} with FTE {} , LE {}", workspace, storeName, fte, layerEncoder);
|
||||
if (getCurrentGeoserver().getReader().getLayer(workspace, name) == null)
|
||||
if (!getCurrentGeoserver().getPublisher().publishDBLayer(workspace, storeName, fte, layerEncoder))
|
||||
throw new SDIInteractionException("Unable to create layer " + name);
|
||||
log.debug("layer " + name + " already exists");
|
||||
|
||||
try {
|
||||
//Checking workspace
|
||||
createWorkspace(workspace);
|
||||
//Checking store
|
||||
createStoreFromPostgisDB(workspace, storeName,connection);
|
||||
//Checking layer
|
||||
publishStyle(Files.getFileFromResources("styles/clustered_points.sld"),style);
|
||||
|
||||
log.info("Creating layer in {} : {} with FTE {} , LE {}",workspace,storeName,fte,layerEncoder);
|
||||
if(getCurrentGeoserver().getReader().getLayer(workspace, name)==null)
|
||||
if(!getCurrentGeoserver().getPublisher().publishDBLayer(workspace, storeName, fte, layerEncoder))
|
||||
throw new SDIInteractionException("Unable to create layer "+name);
|
||||
log.debug("layer "+name+" already exists");
|
||||
|
||||
|
||||
return builder.getLayer();
|
||||
} catch (IllegalArgumentException | MalformedURLException e) {
|
||||
throw new SDIInteractionException("Unable to create layer "+name,e);
|
||||
}
|
||||
}
|
||||
return builder.getLayer();
|
||||
} catch (IllegalArgumentException | MalformedURLException e) {
|
||||
throw new SDIInteractionException("Unable to create layer " + name, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue