52n-wps-algorithm-gcube/src/main/java/org/n52/wps/algorithm/descriptor/LiteralDataInputDescriptor....

181 lines
6.7 KiB
Java
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Copyright (C) 2007 - 2016 52°North Initiative for Geospatial Open Source
* Software GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.n52.wps.algorithm.descriptor;
import com.google.common.base.Preconditions;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.n52.wps.io.data.ILiteralData;
import org.n52.wps.io.data.binding.literal.LiteralAnyURIBinding;
import org.n52.wps.io.data.binding.literal.LiteralBase64BinaryBinding;
import org.n52.wps.io.data.binding.literal.LiteralBooleanBinding;
import org.n52.wps.io.data.binding.literal.LiteralByteBinding;
import org.n52.wps.io.data.binding.literal.LiteralDateTimeBinding;
import org.n52.wps.io.data.binding.literal.LiteralDoubleBinding;
import org.n52.wps.io.data.binding.literal.LiteralFloatBinding;
import org.n52.wps.io.data.binding.literal.LiteralIntBinding;
import org.n52.wps.io.data.binding.literal.LiteralLongBinding;
import org.n52.wps.io.data.binding.literal.LiteralShortBinding;
import org.n52.wps.io.data.binding.literal.LiteralStringBinding;
import org.n52.wps.io.BasicXMLTypeFactory;
/**
*
* @author tkunicki
*/
public class LiteralDataInputDescriptor<T extends Class<? extends ILiteralData>> extends InputDescriptor<T> {
private final String dataType;
private final String defaultValue;
private final List<String> allowedValues;
protected LiteralDataInputDescriptor(Builder builder) {
super(builder);
this.dataType = builder.dataType;
this.defaultValue = builder.defaultValue;
this.allowedValues = builder.allowedValues != null ?
Collections.unmodifiableList(builder.allowedValues) :
Collections.EMPTY_LIST;
// if allowedValues and defaultValue are set, make sure defaultValue is in set of allowedValues
Preconditions.checkState(
!hasAllowedValues() || !hasDefaultValue() || allowedValues.contains(defaultValue),
"defaultValue of %s not in set of allowedValues", defaultValue);
}
public String getDataType() {
return dataType;
}
public boolean hasDefaultValue() {
return defaultValue != null && defaultValue.length() > 0;
}
public String getDefaultValue() {
return defaultValue;
}
public boolean hasAllowedValues() {
return allowedValues != null && allowedValues.size() > 0;
}
public List<String> getAllowedValues() {
return allowedValues;
}
public static <T extends Class<? extends ILiteralData>> Builder<?,T> builder(String identifier, T binding) {
return new BuilderTyped(identifier, binding);
}
// utility functions, quite verbose...
public static Builder<?,Class<LiteralAnyURIBinding>> anyURIBuilder(String identifier) {
return builder(identifier, LiteralAnyURIBinding.class);
}
public static Builder<?,Class<LiteralBase64BinaryBinding>> base64BinaryBuilder(String identifier) {
return builder(identifier, LiteralBase64BinaryBinding.class);
}
public static Builder<?,Class<LiteralBooleanBinding>> booleanBuilder(String identifier) {
return builder(identifier, LiteralBooleanBinding.class);
}
public static Builder<?,Class<LiteralByteBinding>> byteBuilder(String identifier) {
return builder(identifier, LiteralByteBinding.class);
}
public static Builder<?,Class<LiteralDateTimeBinding>> dateTimeBuilder(String identifier) {
return builder(identifier, LiteralDateTimeBinding.class);
}
public static Builder<?,Class<LiteralDoubleBinding>> doubleBuilder(String identifier) {
return builder(identifier, LiteralDoubleBinding.class);
}
public static Builder<?,Class<LiteralFloatBinding>> floatBuilder(String identifier) {
return builder(identifier, LiteralFloatBinding.class);
}
public static Builder<?,Class<LiteralIntBinding>> intBuilder(String identifier) {
return builder(identifier, LiteralIntBinding.class);
}
public static Builder<?,Class<LiteralLongBinding>> longBuilder(String identifier) {
return builder(identifier, LiteralLongBinding.class);
}
public static Builder<?,Class<LiteralShortBinding>> shortBuilder(String identifier) {
return builder(identifier, LiteralShortBinding.class);
}
public static Builder<?,Class<LiteralStringBinding>> stringBuilder(String identifier) {
return builder(identifier, LiteralStringBinding.class);
}
private static class BuilderTyped<T extends Class<? extends ILiteralData>> extends Builder<BuilderTyped<T>, T> {
public BuilderTyped(String identifier, T binding) {
super(identifier, binding);
}
@Override
protected BuilderTyped self() {
return this;
}
}
public static abstract class Builder<B extends Builder<B,T>, T extends Class<? extends ILiteralData>> extends InputDescriptor.Builder<B,T> {
private final String dataType;
private String defaultValue;
private List<String> allowedValues;
protected Builder(String identifier, T binding) {
super(identifier, binding);
this.dataType = Preconditions.checkNotNull(
BasicXMLTypeFactory.getXMLDataTypeforBinding(binding),
"Unable to resolve XML DataType for binding class %s",
binding);
}
public B defaultValue(String defaultValue) {
this.defaultValue = defaultValue;
return self();
}
public B allowedValues(Class<? extends Enum> allowedValues) {
Enum[] constants = allowedValues.getEnumConstants();
List<String> names = new ArrayList<String>(constants.length);
for (Enum constant : constants) { names.add(constant.name()); }
return allowedValues(names);
}
public B allowedValues(String[] allowedValues) {
return allowedValues(Arrays.asList(allowedValues));
}
public B allowedValues(List<String> allowedValues) {
this.allowedValues = allowedValues;
return self();
}
@Override
public LiteralDataInputDescriptor<T> build() {
return new LiteralDataInputDescriptor<T>(this);
}
}
}