use of org.geotoolkit.wps.xml.v200.LiteralDataDomain in project geotoolkit by Geomatys.
the class LiteralAdaptorTest method stringWPS2.
@Test
public void stringWPS2() {
final DomainMetadataType metaType = new DomainMetadataType("String", "http://www.w3.org/TR/xmlschema-2/#string");
final LiteralDataDomain domain = new LiteralDataDomain();
domain.setDataType(metaType);
final LiteralAdaptor adaptor = LiteralAdaptor.create(domain);
assertEquals(String.class, adaptor.getValueClass());
final DataOutput output = new DataOutput();
final LiteralValue lit = new LiteralValue();
lit.setValue("hello world");
final Data data = new Data(lit);
output.setData(data);
final Object result = adaptor.fromWPS2Input(output);
assertEquals("hello world", result);
}
use of org.geotoolkit.wps.xml.v200.LiteralDataDomain in project geotoolkit by Geomatys.
the class LiteralAdaptorTest method booleanWPS2.
@Test
public void booleanWPS2() {
final DomainMetadataType metaType = new DomainMetadataType(null, "xs:boolean");
final LiteralDataDomain domain = new LiteralDataDomain();
domain.setDataType(metaType);
final LiteralAdaptor adaptor = LiteralAdaptor.create(domain);
assertEquals(Boolean.class, adaptor.getValueClass());
final DataOutput output = new DataOutput();
final LiteralValue lit = new LiteralValue();
lit.setValue("true");
final Data data = new Data(lit);
output.setData(data);
final Object result = adaptor.fromWPS2Input(output);
assertEquals(true, result);
}
use of org.geotoolkit.wps.xml.v200.LiteralDataDomain in project geotoolkit by Geomatys.
the class WPS2ProcessDescriptor method toDescriptor.
/**
* Convert Description to GeneralParameterDescriptor.
*
* @throws UnsupportedOperationException if data type could not be mapped
*/
private static GeneralParameterDescriptor toDescriptor(String processId, Description input) throws UnsupportedParameterException {
final List<? extends Description> subInputs;
final DataDescription dataDescType;
final int min;
final int max;
if (input instanceof InputDescription) {
final InputDescription id = (InputDescription) input;
subInputs = id.getInput();
dataDescType = id.getDataDescription();
max = id.getMaxOccurs();
min = id.getMinOccurs();
} else if (input instanceof OutputDescription) {
final OutputDescription od = (OutputDescription) input;
subInputs = od.getOutput();
dataDescType = od.getDataDescription();
min = 1;
max = 1;
} else {
throw new IllegalArgumentException("Unexpected description type " + input.getClass());
}
final String inputName = input.getIdentifier().getValue();
final String title = input.getFirstTitle();
final String remarks = input.getFirstAbstract();
Map userObject = new HashMap();
for (MetadataType meta : input.getMetadata()) {
if (meta instanceof AdditionalParametersType) {
AdditionalParametersType params = (AdditionalParametersType) meta;
for (AdditionalParameter param : params.getAdditionalParameter()) {
userObject.put(param.getName().getValue(), param.getValue());
}
}
}
if (dataDescType instanceof LiteralData) {
final LiteralData cd = (LiteralData) dataDescType;
for (LiteralDataDomain domain : cd.getLiteralDataDomain()) {
final LiteralAdaptor adaptor = LiteralAdaptor.create(domain);
if (adaptor == null)
continue;
String defaultValueValue = null;
final ValueType defaultValue = domain.getDefaultValue();
if (defaultValue != null)
defaultValueValue = defaultValue.getValue();
final Unit unit = getUnit(domain.getUOM());
Object[] allowedValues = null;
if (domain.getAllowedValues() != null && domain.getAllowedValues().getStringValues() != null) {
allowedValues = new Object[domain.getAllowedValues().getStringValues().size()];
int i = 0;
for (String value : domain.getAllowedValues().getStringValues()) {
allowedValues[i] = adaptor.convert(value);
i++;
}
}
try {
userObject.put(DataAdaptor.USE_ADAPTOR, adaptor);
return new ExtendedParameterDescriptor(inputName, title, remarks, min, max, adaptor.getValueClass(), adaptor.convert(defaultValueValue), allowedValues, userObject);
} catch (UnconvertibleObjectException ex2) {
throw new UnsupportedParameterException(processId, inputName, "Can't convert the default literal input value.", ex2);
}
}
throw new UnsupportedParameterException(processId, inputName, "Unidentifiable literal input " + inputName);
} else if (dataDescType instanceof ComplexData) {
final ComplexData cdt = (ComplexData) dataDescType;
// ensure default format is first in the list
Collections.sort(cdt.getFormat(), (Format o1, Format o2) -> {
boolean d1 = Boolean.TRUE.equals(o1.isDefault());
boolean d2 = Boolean.TRUE.equals(o2.isDefault());
if (d1 == d2)
return 0;
return d1 ? -1 : +1;
});
// find a complexe type adaptor
DataAdaptor adaptor = null;
for (Format format : cdt.getFormat()) {
adaptor = ComplexAdaptor.getAdaptor(format);
if (adaptor != null)
break;
}
if (adaptor == null) {
final StringBuilder sb = new StringBuilder();
for (Format format : cdt.getFormat()) {
if (sb.length() != 0)
sb.append(", ");
sb.append(format.getMimeType()).append(' ');
sb.append(format.getEncoding()).append(' ');
sb.append(format.getSchema());
}
throw new UnsupportedParameterException(processId, inputName, "No compatible format found for parameter " + inputName + " formats : " + sb);
}
userObject.put(DataAdaptor.USE_ADAPTOR, adaptor);
return new ExtendedParameterDescriptor(inputName, title, remarks, min, max, adaptor.getValueClass(), null, null, userObject);
} else if (dataDescType instanceof BoundingBoxData) {
final BboxAdaptor adaptor = BboxAdaptor.create((BoundingBoxData) dataDescType);
userObject.put(DataAdaptor.USE_ADAPTOR, adaptor);
return new ExtendedParameterDescriptor(inputName, title, remarks, min, max, Envelope.class, null, null, userObject);
} else if (!subInputs.isEmpty()) {
// sub group type
final List<GeneralParameterDescriptor> params = new ArrayList<>();
for (Description dt : subInputs) {
params.add(toDescriptor(processId, dt));
}
return new ParameterBuilder().addName(inputName).addName(title).setRemarks(remarks).createGroup(params.toArray(new GeneralParameterDescriptor[0]));
} else {
throw new UnsupportedParameterException(processId, inputName, "Unidentifiable input " + inputName + " " + dataDescType);
}
}
use of org.geotoolkit.wps.xml.v200.LiteralDataDomain in project geotoolkit by Geomatys.
the class LiteralAdaptorTest method doubleWPS2.
@Test
public void doubleWPS2() {
final DomainMetadataType metaType = new DomainMetadataType(null, "xs:double");
final LiteralDataDomain domain = new LiteralDataDomain();
domain.setDataType(metaType);
final LiteralAdaptor adaptor = LiteralAdaptor.create(domain);
assertEquals(Double.class, adaptor.getValueClass());
final DataOutput output = new DataOutput();
final LiteralValue lit = new LiteralValue();
lit.setValue("3.14");
final Data data = new Data(lit);
output.setData(data);
final Object result = adaptor.fromWPS2Input(output);
assertEquals(3.14, (Double) result, DELTA);
}
Aggregations