use of org.geotoolkit.ows.xml.v110.ValueType in project ddf by codice.
the class WfsFilterDelegate method configureSorting.
private void configureSorting(DomainType constraint) {
if (constraint.getNoValues() != null && constraint.getDefaultValue() != null) {
if (StringUtils.equalsIgnoreCase(constraint.getDefaultValue().getValue(), Boolean.TRUE.toString())) {
this.isSortingSupported = true;
} else if (StringUtils.equalsIgnoreCase(constraint.getDefaultValue().getValue(), Boolean.FALSE.toString())) {
this.isSortingSupported = false;
}
}
if (constraint.getAllowedValues() != null) {
this.isSortingSupported = true;
AllowedValues allowedValues = constraint.getAllowedValues();
List<Object> values = allowedValues.getValueOrRange();
for (Object value : values) {
if (value instanceof ValueType) {
String sortOrder = ((ValueType) value).getValue();
// Could be ASC, ASCENDING, etc.
if (StringUtils.startsWithIgnoreCase(sortOrder, "A")) {
allowedSortOrders.add(SortOrder.ASCENDING);
} else if (StringUtils.startsWithIgnoreCase(sortOrder, "D")) {
allowedSortOrders.add(SortOrder.DESCENDING);
}
}
}
}
}
use of org.geotoolkit.ows.xml.v110.ValueType in project ddf by codice.
the class WfsFilterDelegateTest method testConformanceAllowedValues.
@Test
public void testConformanceAllowedValues() {
// Setup
FilterCapabilities capabilities = MockWfsServer.getFilterCapabilities();
ConformanceType conformance = capabilities.getConformance();
List<DomainType> domainTypes = conformance.getConstraint();
for (DomainType domainType : domainTypes) {
if (StringUtils.equals(domainType.getName(), "ImplementsSorting")) {
domainType.setNoValues(null);
ValueType asc = new ValueType();
asc.setValue("ASC");
ValueType desc = new ValueType();
desc.setValue("DESC");
AllowedValues allowedValues = new AllowedValues();
List<Object> values = new ArrayList<>();
values.add(asc);
values.add(desc);
allowedValues.setValueOrRange(values);
domainType.setAllowedValues(allowedValues);
ValueType defaultValue = new ValueType();
defaultValue.setValue("ASC");
domainType.setDefaultValue(defaultValue);
break;
}
}
// Perform Test
WfsFilterDelegate delegate = new WfsFilterDelegate(mockFeatureMetacardType, capabilities, GeospatialUtil.EPSG_4326_URN, mockMapper, GeospatialUtil.LAT_LON_ORDER);
// Verify
assertThat(delegate.isSortingSupported(), is(true));
assertThat(delegate.getAllowedSortOrders().size(), is(2));
assertThat(delegate.getAllowedSortOrders().contains(SortOrder.ASCENDING), is(true));
assertThat(delegate.getAllowedSortOrders().contains(SortOrder.DESCENDING), is(true));
}
use of org.geotoolkit.ows.xml.v110.ValueType in project ddf by codice.
the class WfsSourceTest method testSortingAscendingSortingNotSupported.
/**
* Verify that the SortBy is NOT set. In this case, sorting is not supported in the capabilities.
*/
@Test
public void testSortingAscendingSortingNotSupported() throws Exception {
// Setup
final String searchPhrase = "*";
final String mockTemporalFeatureProperty = "myTemporalFeatureProperty";
final String mockFeatureType = "{http://example.com}" + SAMPLE_FEATURE_NAME + 0;
final int pageSize = 1;
// Set ImplementsSorting to FALSE (sorting not supported)
FilterCapabilities mockCapabilitiesSortingNotSupported = MockWfsServer.getFilterCapabilities();
ConformanceType conformance = mockCapabilitiesSortingNotSupported.getConformance();
List<DomainType> domainTypes = conformance.getConstraint();
for (DomainType domainType : domainTypes) {
if (StringUtils.equals(domainType.getName(), "ImplementsSorting")) {
ValueType valueType = new ValueType();
valueType.setValue("FALSE");
domainType.setDefaultValue(valueType);
break;
}
}
WfsSource source = getWfsSource(ONE_TEXT_PROPERTY_SCHEMA, mockCapabilitiesSortingNotSupported, 1, false, false, 0);
MetacardMapper mockMetacardMapper = mock(MetacardMapper.class);
when(mockMetacardMapper.getFeatureType()).thenReturn(mockFeatureType);
when(mockMetacardMapper.getSortByTemporalFeatureProperty()).thenReturn(mockTemporalFeatureProperty);
List<MetacardMapper> mappers = new ArrayList<>(1);
mappers.add(mockMetacardMapper);
source.setMetacardToFeatureMapper(mappers);
QueryImpl query = new QueryImpl(builder.attribute(Metacard.ANY_TEXT).is().like().text(searchPhrase));
query.setPageSize(pageSize);
SortBy sortBy = new SortByImpl(Result.TEMPORAL, SortOrder.ASCENDING);
query.setSortBy(sortBy);
// Perform Test
GetFeatureType featureType = source.buildGetFeatureRequest(query);
// Verify
QueryType queryType = (QueryType) featureType.getAbstractQueryExpression().get(0).getValue();
assertFalse(queryType.isSetAbstractSortingClause());
}
use of org.geotoolkit.ows.xml.v110.ValueType in project tck by dmn-tck.
the class DroolsTCKTest method parseType.
private Object parseType(ValueType value, DMNType dmnType) {
if (value.getList() != null && !value.getList().isNil()) {
List<Object> result = new ArrayList<>();
ValueType.List list = value.getList().getValue();
for (ValueType vt : list.getItem()) {
result.add(parseType(vt, (dmnType.isCollection()) ? dmnType : REGISTRY.unknown()));
}
return result;
} else if (isDMNSimpleType(dmnType) || (isDMNAny(dmnType) && isJAXBValue(value) && !isJAXBComponent(value))) {
String text = null;
Object val = value.getValue();
if (val != null && !value.getValue().isNil() && val instanceof JAXBElement<?> && ((JAXBElement<?>) val).getValue() instanceof Node && !isDateTimeOrDuration(((JAXBElement<?>) val).getValue())) {
Node nodeVal = (Node) ((JAXBElement<?>) val).getValue();
if (nodeVal.getFirstChild() != null) {
text = nodeVal.getFirstChild().getTextContent();
}
if (text != null) {
if (isDMNSimpleType(dmnType)) {
return recurseSimpleDMNTypeToFindBuiltInFEELType((BaseDMNTypeImpl) dmnType).fromString(text);
} else {
// no information from DMN; try to use the xml test case file.
Class<?> xmlClass = value.getValue().getDeclaredType();
if (!xmlClass.equals(Object.class) && !xmlClass.equals(String.class)) {
try {
Method m = xmlClass.getMethod("valueOf", String.class);
Object valueOfResult = m.invoke(null, text);
return valueOfResult;
} catch (Exception e) {
return text;
}
} else {
return text;
}
}
} else {
return null;
}
} else if (val instanceof JAXBElement<?> && !(((JAXBElement<?>) val).getValue() instanceof Node) && !isDateTimeOrDuration(((JAXBElement<?>) val).getValue())) {
return ((JAXBElement<?>) val).getValue();
} else {
try {
Object dateTimeOrDurationValue = (val != null) ? ((JAXBElement<?>) val).getValue() : null;
if (dateTimeOrDurationValue instanceof Duration || dateTimeOrDurationValue instanceof XMLGregorianCalendar) {
if (!isDMNAny(dmnType)) {
// need to convert to java.time.* equivalent
text = dateTimeOrDurationValue.toString();
return text != null ? recurseSimpleDMNTypeToFindBuiltInFEELType((BaseDMNTypeImpl) dmnType).fromString(text) : null;
} else {
// no DMN type information from the DMN model
if (dateTimeOrDurationValue instanceof Duration) {
try {
return java.time.Duration.parse(dateTimeOrDurationValue.toString());
} catch (DateTimeParseException e) {
return ComparablePeriod.parse(dateTimeOrDurationValue.toString());
}
} else if (dateTimeOrDurationValue instanceof XMLGregorianCalendar) {
XMLGregorianCalendar xmlCal = (XMLGregorianCalendar) dateTimeOrDurationValue;
if (xmlCal.getTimezone() != DatatypeConstants.FIELD_UNDEFINED && xmlCal.getXMLSchemaType() == DatatypeConstants.DATETIME) {
return ZonedDateTime.parse(xmlCal.toXMLFormat());
} else if (xmlCal.getTimezone() != DatatypeConstants.FIELD_UNDEFINED && xmlCal.getXMLSchemaType() == DatatypeConstants.TIME) {
return OffsetTime.parse(xmlCal.toXMLFormat());
} else if (xmlCal.getXMLSchemaType() == DatatypeConstants.DATETIME) {
return LocalDateTime.of(LocalDate.of(xmlCal.getYear(), xmlCal.getMonth(), xmlCal.getDay()), LocalTime.of(xmlCal.getHour(), xmlCal.getMinute(), xmlCal.getSecond()));
} else if (xmlCal.getXMLSchemaType() == DatatypeConstants.DATE) {
return LocalDate.of(xmlCal.getYear(), xmlCal.getMonth(), xmlCal.getDay());
} else if (xmlCal.getXMLSchemaType() == DatatypeConstants.TIME) {
return LocalTime.parse(xmlCal.toXMLFormat());
}
return xmlCal.toGregorianCalendar();
} else {
return dateTimeOrDurationValue;
}
}
}
} catch (Exception e) {
logger.error("Error trying to coerce JAXB type " + val.getClass().getName() + " with value '" + val.toString() + "': " + e.getMessage());
}
return val;
}
} else if (isDMNCompositeType(dmnType)) {
Map<String, Object> result = new HashMap<>();
if (value.getComponent().size() == 0) {
return null;
}
for (ValueType.Component component : value.getComponent()) {
DMNType fieldType = dmnType.getFields().get(component.getName());
if (!dmnType.getFields().containsKey(component.getName())) {
logger.warn("Error TCK Runner type check: unknown field '" + component.getName() + "' for type '" + dmnType.getName() + "'. This usually happens when a TCK test leverages coercion.");
fieldType = REGISTRY.unknown();
}
if (fieldType == null) {
throw new RuntimeException("Error parsing input: unknown type for field '" + component.getName() + "' on type " + dmnType.getName() + "'");
}
Object fieldValue = parseType(component, fieldType);
result.put(component.getName(), fieldValue);
}
return result;
} else if (isDMNAny(dmnType) && !isJAXBValue(value) && isJAXBComponent(value)) {
Map<String, Object> result = new HashMap<>();
for (ValueType.Component component : value.getComponent()) {
Object fieldValue = parseType(component, REGISTRY.unknown());
result.put(component.getName(), fieldValue);
}
return result;
} else {
throw new RuntimeException("Unable to infer information from JAXB type");
}
}
use of org.geotoolkit.ows.xml.v110.ValueType in project tck by dmn-tck.
the class DmnScalaTCKTest method getValue.
private Object getValue(ValueType valueType) {
final JAXBElement<Object> value = valueType.getValue();
final JAXBElement<ValueType.List> listValue = valueType.getList();
final List<Component> componentValue = valueType.getComponent();
if (value == null && listValue == null && componentValue == null) {
return null;
}
if (listValue != null) {
final List<Object> list = new ArrayList<>();
for (ValueType item : listValue.getValue().getItem()) {
list.add(getValue(item));
}
return list;
}
if (componentValue != null && !componentValue.isEmpty()) {
final Map<String, Object> context = new HashMap<>();
for (Component component : componentValue) {
final Object compValue = getValue(component);
context.put(component.getName(), compValue);
}
return context;
}
if (value instanceof Node) {
final Node node = (Node) value;
final String text = node.getFirstChild().getTextContent();
if ("true".equalsIgnoreCase(text) || "false".equalsIgnoreCase(text)) {
return Boolean.valueOf(text);
}
try {
return Long.valueOf(text);
} catch (NumberFormatException e) {
}
try {
return Double.valueOf(text);
} catch (NumberFormatException e) {
}
return text;
}
if (value != null) {
final Object singleValue = value.getValue();
if (singleValue instanceof XMLGregorianCalendar) {
return transformDateTime((XMLGregorianCalendar) singleValue);
}
if (singleValue instanceof Duration) {
return transformDuration((Duration) singleValue);
}
if (singleValue instanceof String[]) {
String[] array = (String[]) singleValue;
return Arrays.asList(array);
}
return singleValue;
}
throw new RuntimeException(String.format("Unexpected value: '%s'", valueType));
}
Aggregations