blob: f6a0c689b9de29814808206cd5bf46a364899890 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.uima.ruta.expression.feature;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import org.apache.uima.cas.Feature;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.text.AnnotationFS;
import org.apache.uima.ruta.RutaStream;
import org.apache.uima.ruta.UIMAConstants;
import org.apache.uima.ruta.expression.ExpressionFactory;
import org.apache.uima.ruta.expression.annotation.IAnnotationExpression;
import org.apache.uima.ruta.expression.annotation.IAnnotationListExpression;
import org.apache.uima.ruta.expression.bool.IBooleanExpression;
import org.apache.uima.ruta.expression.bool.IBooleanListExpression;
import org.apache.uima.ruta.expression.list.ListExpression;
import org.apache.uima.ruta.expression.number.INumberExpression;
import org.apache.uima.ruta.expression.number.INumberListExpression;
import org.apache.uima.ruta.expression.string.IStringExpression;
import org.apache.uima.ruta.expression.string.IStringListExpression;
import org.apache.uima.ruta.expression.type.ITypeExpression;
import org.apache.uima.ruta.rule.MatchContext;
public class GenericFeatureExpression extends ListExpression<Object> implements INumberExpression,
IBooleanExpression, IStringExpression, IAnnotationExpression, IAnnotationListExpression,
IBooleanListExpression, INumberListExpression, IStringListExpression, ITypeExpression {
private FeatureExpression featureExpression;
private INumberExpression numberExpression;
private IStringExpression stringExpression;
private IBooleanExpression booleanExpression;
private IAnnotationExpression annotationExpression;
private INumberListExpression numberListExpression;
private IStringListExpression stringListExpression;
private IBooleanListExpression booleanListExpression;
private IAnnotationListExpression annotationListExpression;
private ITypeExpression typeExpression;
public GenericFeatureExpression(FeatureExpression fe) {
super();
this.featureExpression = fe;
}
@Override
public String getStringValue(MatchContext context, RutaStream stream) {
if (stringExpression == null) {
stringExpression = ExpressionFactory.createStringFeatureExpression(featureExpression);
}
return stringExpression.getStringValue(context, stream);
}
@Override
public boolean getBooleanValue(MatchContext context, RutaStream stream) {
if (booleanExpression == null) {
booleanExpression = ExpressionFactory.createBooleanFeatureExpression(featureExpression);
}
return booleanExpression.getBooleanValue(context, stream);
}
@Override
public int getIntegerValue(MatchContext context, RutaStream stream) {
if (numberExpression == null) {
numberExpression = ExpressionFactory.createNumberFeatureExpression(featureExpression);
}
return numberExpression.getIntegerValue(context, stream);
}
@Override
public double getDoubleValue(MatchContext context, RutaStream stream) {
if (numberExpression == null) {
numberExpression = ExpressionFactory.createNumberFeatureExpression(featureExpression);
}
return numberExpression.getDoubleValue(context, stream);
}
@Override
public float getFloatValue(MatchContext context, RutaStream stream) {
if (numberExpression == null) {
numberExpression = ExpressionFactory.createNumberFeatureExpression(featureExpression);
}
return numberExpression.getFloatValue(context, stream);
}
@Override
public AnnotationFS getAnnotation(MatchContext context, RutaStream stream) {
if (annotationExpression == null) {
annotationExpression = ExpressionFactory.createAnnotationFeatureExpression(featureExpression);
}
return annotationExpression.getAnnotation(context, stream);
}
@Override
public Type getType(MatchContext context, RutaStream stream) {
// special case where an argument is interpreted as a type expression
if (typeExpression == null) {
typeExpression = featureExpression.getTypeExpr(context, stream);
}
return typeExpression.getType(context, stream);
}
public FeatureExpression getFeatureExpression() {
return featureExpression;
}
public void setFeatureExpression(FeatureExpression featureExpression) {
this.featureExpression = featureExpression;
}
@Override
public List<String> getStringList(MatchContext context, RutaStream stream) {
if (stringListExpression == null) {
stringListExpression = ExpressionFactory.createStringListFeatureExpression(featureExpression);
}
return stringListExpression.getStringList(context, stream);
}
@Override
public List<Number> getNumberList(MatchContext context, RutaStream stream) {
if (numberListExpression == null) {
numberListExpression = ExpressionFactory.createNumberListFeatureExpression(featureExpression);
}
return numberListExpression.getNumberList(context, stream);
}
@Override
public List<Boolean> getBooleanList(MatchContext context, RutaStream stream) {
if (booleanListExpression == null) {
booleanListExpression = ExpressionFactory
.createBooleanListFeatureExpression(featureExpression);
}
return booleanListExpression.getBooleanList(context, stream);
}
@Override
public List<AnnotationFS> getAnnotationList(MatchContext context, RutaStream stream) {
if (annotationListExpression == null) {
annotationListExpression = ExpressionFactory
.createAnnotationListFeatureExpression(featureExpression);
}
return annotationListExpression.getAnnotationList(context, stream);
}
@Override
public List<Object> getList(MatchContext context, RutaStream stream) {
Feature feature = featureExpression.getFeature(context, stream);
Type range = feature.getRange();
if (!range.isArray()) {
return Collections.emptyList();
}
List<Object> result = new ArrayList<Object>();
if (StringUtils.equals(range.getName(), UIMAConstants.TYPE_FSARRAY)) {
result.addAll(getAnnotationList(context, stream));
} else if (StringUtils.equals(range.getName(), UIMAConstants.TYPE_BOOLEANARRAY)) {
result.addAll(getBooleanList(context, stream));
} else if (StringUtils.equals(range.getName(), UIMAConstants.TYPE_STRINGARRAY)) {
result.addAll(getStringList(context, stream));
} else if (StringUtils.equals(range.getName(), UIMAConstants.TYPE_INTARRAY)
|| StringUtils.equals(range.getName(), UIMAConstants.TYPE_DOUBLEARRAY)
|| StringUtils.equals(range.getName(), UIMAConstants.TYPE_FLOATARRAY)) {
result.addAll(getNumberList(context, stream));
}
return result;
}
}