blob: 2e91ecd14281527171dbbcd71db1c14f09ddd180 [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.vxquery.runtime.functions.comparison;
import java.io.IOException;
import org.apache.vxquery.context.DynamicContext;
import org.apache.vxquery.datamodel.accessors.TaggedValuePointable;
import org.apache.vxquery.datamodel.accessors.atomic.XSBinaryPointable;
import org.apache.vxquery.datamodel.accessors.atomic.XSDatePointable;
import org.apache.vxquery.datamodel.accessors.atomic.XSDateTimePointable;
import org.apache.vxquery.datamodel.accessors.atomic.XSDecimalPointable;
import org.apache.vxquery.datamodel.accessors.atomic.XSDurationPointable;
import org.apache.vxquery.datamodel.accessors.atomic.XSQNamePointable;
import org.apache.vxquery.datamodel.accessors.atomic.XSTimePointable;
import org.apache.vxquery.exceptions.SystemException;
import org.apache.hyracks.data.std.primitive.BooleanPointable;
import org.apache.hyracks.data.std.primitive.DoublePointable;
import org.apache.hyracks.data.std.primitive.FloatPointable;
import org.apache.hyracks.data.std.primitive.IntegerPointable;
import org.apache.hyracks.data.std.primitive.LongPointable;
import org.apache.hyracks.data.std.primitive.UTF8StringPointable;
public abstract class AbstractDisjunctiveComparisonOperation extends AbstractValueComparisonOperation {
final AbstractValueComparisonOperation aOp1 = createBaseComparisonOperation1();
final AbstractValueComparisonOperation aOp2 = createBaseComparisonOperation2();
protected abstract AbstractValueComparisonOperation createBaseComparisonOperation1();
protected abstract AbstractValueComparisonOperation createBaseComparisonOperation2();
@Override
public boolean operateAnyURIAnyURI(UTF8StringPointable stringp1, UTF8StringPointable stringp2)
throws SystemException, IOException {
return (aOp1.operateAnyURIAnyURI(stringp1, stringp2) || aOp2.operateAnyURIAnyURI(stringp1, stringp2));
}
@Override
public boolean operateBase64BinaryBase64Binary(XSBinaryPointable binaryp1, XSBinaryPointable binaryp2)
throws SystemException, IOException {
return (aOp1.operateBase64BinaryBase64Binary(binaryp1, binaryp2) || aOp2.operateBase64BinaryBase64Binary(
binaryp1, binaryp2));
}
@Override
public boolean operateBooleanBoolean(BooleanPointable boolp1, BooleanPointable boolp2) throws SystemException,
IOException {
return (aOp1.operateBooleanBoolean(boolp1, boolp2) || aOp2.operateBooleanBoolean(boolp1, boolp2));
}
@Override
public boolean operateDateDate(XSDatePointable datep1, XSDatePointable datep2, DynamicContext dCtx)
throws SystemException, IOException {
return (aOp1.operateDateDate(datep1, datep2, dCtx) || aOp2.operateDateDate(datep1, datep2, dCtx));
}
@Override
public boolean operateDatetimeDatetime(XSDateTimePointable datetimep1, XSDateTimePointable datetimep2,
DynamicContext dCtx) throws SystemException, IOException {
return (aOp1.operateDatetimeDatetime(datetimep1, datetimep2, dCtx) || aOp2.operateDatetimeDatetime(datetimep1,
datetimep2, dCtx));
}
@Override
public boolean operateDecimalDecimal(XSDecimalPointable decp1, XSDecimalPointable decp2) throws SystemException,
IOException {
return (aOp1.operateDecimalDecimal(decp1, decp2) || aOp2.operateDecimalDecimal(decp1, decp2));
}
@Override
public boolean operateDecimalDouble(XSDecimalPointable decp1, DoublePointable doublep2) throws SystemException,
IOException {
if (Double.isNaN(doublep2.getDouble())) {
return false;
}
return (aOp1.operateDecimalDouble(decp1, doublep2) || aOp2.operateDecimalDouble(decp1, doublep2));
}
@Override
public boolean operateDecimalFloat(XSDecimalPointable decp1, FloatPointable floatp2) throws SystemException,
IOException {
if (Float.isNaN(floatp2.getFloat())) {
return false;
}
return (aOp1.operateDecimalFloat(decp1, floatp2) || aOp2.operateDecimalFloat(decp1, floatp2));
}
@Override
public boolean operateDecimalInteger(XSDecimalPointable decp1, LongPointable longp2) throws SystemException,
IOException {
return (aOp1.operateDecimalInteger(decp1, longp2) || aOp2.operateDecimalInteger(decp1, longp2));
}
@Override
public boolean operateDoubleDecimal(DoublePointable doublep1, XSDecimalPointable decp2) throws SystemException,
IOException {
if (Double.isNaN(doublep1.getDouble())) {
return false;
}
return (aOp1.operateDoubleDecimal(doublep1, decp2) || aOp2.operateDoubleDecimal(doublep1, decp2));
}
@Override
public boolean operateDoubleDouble(DoublePointable doublep1, DoublePointable doublep2) throws SystemException,
IOException {
if (Double.isNaN(doublep1.getDouble()) || Double.isNaN(doublep2.getDouble())) {
return false;
}
return (aOp1.operateDoubleDouble(doublep1, doublep2) || aOp2.operateDoubleDouble(doublep1, doublep2));
}
@Override
public boolean operateDoubleFloat(DoublePointable doublep1, FloatPointable floatp2) throws SystemException,
IOException {
if (Double.isNaN(doublep1.getDouble()) || Float.isNaN(floatp2.getFloat())) {
return false;
}
return (aOp1.operateDoubleFloat(doublep1, floatp2) || aOp2.operateDoubleFloat(doublep1, floatp2));
}
@Override
public boolean operateDoubleInteger(DoublePointable doublep1, LongPointable longp2) throws SystemException,
IOException {
if (Double.isNaN(doublep1.getDouble())) {
return false;
}
return (aOp1.operateDoubleInteger(doublep1, longp2) || aOp2.operateDoubleInteger(doublep1, longp2));
}
@Override
public boolean operateDTDurationDTDuration(LongPointable longp1, LongPointable longp2) throws SystemException,
IOException {
return (aOp1.operateDTDurationDTDuration(longp1, longp2) || aOp2.operateDTDurationDTDuration(longp1, longp2));
}
@Override
public boolean operateDTDurationDuration(LongPointable longp1, XSDurationPointable durationp2)
throws SystemException, IOException {
return (aOp1.operateDTDurationDuration(longp1, durationp2) || aOp2
.operateDTDurationDuration(longp1, durationp2));
}
@Override
public boolean operateDTDurationYMDuration(LongPointable longp1, IntegerPointable intp2) throws SystemException,
IOException {
return (aOp1.operateDTDurationYMDuration(longp1, intp2) || aOp2.operateDTDurationYMDuration(longp1, intp2));
}
@Override
public boolean operateDurationDTDuration(XSDurationPointable durationp1, LongPointable longp2)
throws SystemException, IOException {
return (aOp1.operateDurationDTDuration(durationp1, longp2) || aOp2
.operateDurationDTDuration(durationp1, longp2));
}
@Override
public boolean operateDurationDuration(XSDurationPointable durationp1, XSDurationPointable durationp2)
throws SystemException, IOException {
return (aOp1.operateDurationDuration(durationp1, durationp2) || aOp2.operateDurationDuration(durationp1,
durationp2));
}
@Override
public boolean operateDurationYMDuration(XSDurationPointable durationp1, IntegerPointable intp2)
throws SystemException, IOException {
return (aOp1.operateDurationYMDuration(durationp1, intp2) || aOp2.operateDurationYMDuration(durationp1, intp2));
}
@Override
public boolean operateFloatDecimal(FloatPointable floatp1, XSDecimalPointable decp2) throws SystemException,
IOException {
if (Float.isNaN(floatp1.getFloat())) {
return false;
}
return (aOp1.operateFloatDecimal(floatp1, decp2) || aOp2.operateFloatDecimal(floatp1, decp2));
}
@Override
public boolean operateFloatDouble(FloatPointable floatp1, DoublePointable doublep2) throws SystemException,
IOException {
if (Float.isNaN(floatp1.getFloat()) || Double.isNaN(doublep2.doubleValue())) {
return false;
}
return (aOp1.operateFloatDouble(floatp1, doublep2) || aOp2.operateFloatDouble(floatp1, doublep2));
}
@Override
public boolean operateFloatFloat(FloatPointable floatp1, FloatPointable floatp2) throws SystemException,
IOException {
if (Float.isNaN(floatp1.getFloat()) || Float.isNaN(floatp2.getFloat())) {
return false;
}
return (aOp1.operateFloatFloat(floatp1, floatp2) || aOp2.operateFloatFloat(floatp1, floatp2));
}
@Override
public boolean operateFloatInteger(FloatPointable floatp1, LongPointable longp2) throws SystemException,
IOException {
if (Float.isNaN(floatp1.getFloat())) {
return false;
}
return (aOp1.operateFloatInteger(floatp1, longp2) || aOp2.operateFloatInteger(floatp1, longp2));
}
@Override
public boolean operateGDayGDay(XSDatePointable datep1, XSDatePointable datep2, DynamicContext dCtx)
throws SystemException, IOException {
return (aOp1.operateGDayGDay(datep1, datep2, dCtx) || aOp2.operateGDayGDay(datep1, datep2, dCtx));
}
@Override
public boolean operateGMonthDayGMonthDay(XSDatePointable datep1, XSDatePointable datep2, DynamicContext dCtx)
throws SystemException, IOException {
return (aOp1.operateGMonthDayGMonthDay(datep1, datep2, dCtx) || aOp2.operateGMonthDayGMonthDay(datep1, datep2,
dCtx));
}
@Override
public boolean operateGMonthGMonth(XSDatePointable datep1, XSDatePointable datep2, DynamicContext dCtx)
throws SystemException, IOException {
return (aOp1.operateGMonthGMonth(datep1, datep2, dCtx) || aOp2.operateGMonthGMonth(datep1, datep2, dCtx));
}
@Override
public boolean operateGYearGYear(XSDatePointable datep1, XSDatePointable datep2, DynamicContext dCtx)
throws SystemException, IOException {
return (aOp1.operateGYearGYear(datep1, datep2, dCtx) || aOp2.operateGYearGYear(datep1, datep2, dCtx));
}
@Override
public boolean operateGYearMonthGYearMonth(XSDatePointable datep1, XSDatePointable datep2, DynamicContext dCtx)
throws SystemException, IOException {
return (aOp1.operateGYearMonthGYearMonth(datep1, datep2, dCtx) || aOp2.operateGYearMonthGYearMonth(datep1,
datep2, dCtx));
}
@Override
public boolean operateHexBinaryHexBinary(XSBinaryPointable binaryp1, XSBinaryPointable binaryp2)
throws SystemException, IOException {
return (aOp1.operateHexBinaryHexBinary(binaryp1, binaryp2) || aOp2
.operateHexBinaryHexBinary(binaryp1, binaryp2));
}
@Override
public boolean operateIntegerDecimal(LongPointable longp1, XSDecimalPointable decp2) throws SystemException,
IOException {
return (aOp1.operateIntegerDecimal(longp1, decp2) || aOp2.operateIntegerDecimal(longp1, decp2));
}
@Override
public boolean operateIntegerDouble(LongPointable longp1, DoublePointable doublep2) throws SystemException,
IOException {
if (Double.isNaN(doublep2.doubleValue())) {
return false;
}
return (aOp1.operateIntegerDouble(longp1, doublep2) || aOp2.operateIntegerDouble(longp1, doublep2));
}
@Override
public boolean operateIntegerFloat(LongPointable longp1, FloatPointable floatp2) throws SystemException,
IOException {
if (Float.isNaN(floatp2.floatValue())) {
return false;
}
return (aOp1.operateIntegerFloat(longp1, floatp2) || aOp2.operateIntegerFloat(longp1, floatp2));
}
@Override
public boolean operateIntegerInteger(LongPointable longp1, LongPointable longp2) throws SystemException,
IOException {
return (aOp1.operateIntegerInteger(longp1, longp2) || aOp2.operateIntegerInteger(longp1, longp2));
}
@Override
public boolean operateNotationNotation(UTF8StringPointable stringp1, UTF8StringPointable stringp2)
throws SystemException, IOException {
return (aOp1.operateNotationNotation(stringp1, stringp2) || aOp2.operateNotationNotation(stringp1, stringp2));
}
@Override
public boolean operateQNameQName(XSQNamePointable qnamep1, XSQNamePointable qnamep2) throws SystemException,
IOException {
return (aOp1.operateQNameQName(qnamep1, qnamep2) || aOp2.operateQNameQName(qnamep1, qnamep2));
}
@Override
public boolean operateStringString(UTF8StringPointable stringp1, UTF8StringPointable stringp2)
throws SystemException, IOException {
return (aOp1.operateStringString(stringp1, stringp2) || aOp2.operateStringString(stringp1, stringp2));
}
@Override
public boolean operateTimeTime(XSTimePointable timep1, XSTimePointable timep2, DynamicContext dCtx)
throws SystemException, IOException {
return (aOp1.operateTimeTime(timep1, timep2, dCtx) || aOp2.operateTimeTime(timep1, timep2, dCtx));
}
@Override
public boolean operateYMDurationDTDuration(IntegerPointable intp1, LongPointable longp2) throws SystemException,
IOException {
return (aOp1.operateYMDurationDTDuration(intp1, longp2) || aOp2.operateYMDurationDTDuration(intp1, longp2));
}
@Override
public boolean operateYMDurationDuration(IntegerPointable intp1, XSDurationPointable durationp2)
throws SystemException, IOException {
return (aOp1.operateYMDurationDuration(intp1, durationp2) || aOp2.operateYMDurationDuration(intp1, durationp2));
}
@Override
public boolean operateYMDurationYMDuration(IntegerPointable intp1, IntegerPointable intp2) throws SystemException,
IOException {
return (aOp1.operateYMDurationYMDuration(intp1, intp2) || aOp2.operateYMDurationYMDuration(intp1, intp2));
}
@Override
public boolean operateNull(TaggedValuePointable tvp1, TaggedValuePointable tvp2)
throws SystemException, IOException {
return (aOp1.operateNull(tvp1, tvp2) || aOp2.operateNull(tvp1, tvp2));
}
}