use of org.locationtech.geowave.cli.geoserver.coverage.GeoServerAddCoverageCommand in project geowave by locationtech.
the class GeoWaveGrpcCliGeoserverService method geoServerAddCoverageCommand.
@Override
public void geoServerAddCoverageCommand(final org.locationtech.geowave.service.grpc.protobuf.GeoServerAddCoverageCommandParametersProtos request, final StreamObserver<org.locationtech.geowave.service.grpc.protobuf.GeoWaveReturnTypesProtos.StringResponseProtos> responseObserver) {
final GeoServerAddCoverageCommand cmd = new GeoServerAddCoverageCommand();
final Map<FieldDescriptor, Object> m = request.getAllFields();
GeoWaveGrpcServiceCommandUtil.setGrpcToCommandFields(m, cmd);
final File configFile = GeoWaveGrpcServiceOptions.geowaveConfigFile;
final OperationParams params = new ManualOperationParams();
params.getContext().put(ConfigOptions.PROPERTIES_FILE_CONTEXT, configFile);
cmd.prepare(params);
LOGGER.info("Executing GeoServerAddCoverageCommand...");
try {
final String result = cmd.computeResults(params);
final StringResponseProtos resp = StringResponseProtos.newBuilder().setResponseValue(result).build();
responseObserver.onNext(resp);
responseObserver.onCompleted();
} catch (final Exception e) {
LOGGER.error("Exception encountered executing command", e);
responseObserver.onError(e);
}
}
Aggregations