use of org.sirix.service.xml.xpath.XPathError in project sirix by sirixdb.
the class SubOpAxis method operate.
/**
* {@inheritDoc}
*/
@Override
public Node operate(final AtomicValue mOperand1, final AtomicValue mOperand2) throws SirixXPathException {
final Type returnType = getReturnType(mOperand1.getTypeKey(), mOperand2.getTypeKey());
final int typeKey = getTrx().keyForName(returnType.getStringRepr());
final byte[] value;
switch(returnType) {
case DOUBLE:
case FLOAT:
case DECIMAL:
case INTEGER:
final double dOp1 = Double.parseDouble(new String(mOperand1.getRawValue()));
final double dOp2 = Double.parseDouble(new String(mOperand2.getRawValue()));
value = TypedValue.getBytes(dOp1 - dOp2);
break;
case DATE:
case TIME:
case DATE_TIME:
case YEAR_MONTH_DURATION:
case DAY_TIME_DURATION:
throw new IllegalStateException("Add operator is not implemented for the type " + returnType.getStringRepr() + " yet.");
default:
throw new XPathError(ErrorType.XPTY0004);
}
return new AtomicValue(value, typeKey);
}
use of org.sirix.service.xml.xpath.XPathError in project sirix by sirixdb.
the class SubOpAxis method getReturnType.
/**
* {@inheritDoc}
*/
@Override
protected Type getReturnType(final int mOp1, final int mOp2) throws SirixXPathException {
Type type1;
Type type2;
try {
type1 = Type.getType(mOp1).getPrimitiveBaseType();
type2 = Type.getType(mOp2).getPrimitiveBaseType();
} catch (final IllegalStateException e) {
throw new XPathError(ErrorType.XPTY0004);
}
if (type1.isNumericType() && type2.isNumericType()) {
// if both have the same numeric type, return it
if (type1 == type2) {
return type1;
}
if (type1 == Type.DOUBLE || type2 == Type.DOUBLE) {
return Type.DOUBLE;
} else if (type1 == Type.FLOAT || type2 == Type.FLOAT) {
return Type.FLOAT;
} else {
assert (type1 == Type.DECIMAL || type2 == Type.DECIMAL);
return Type.DECIMAL;
}
} else {
switch(type1) {
case DATE:
if (type2 == Type.YEAR_MONTH_DURATION || type2 == Type.DAY_TIME_DURATION) {
return type1;
} else if (type2 == Type.DATE) {
return Type.DAY_TIME_DURATION;
}
break;
case TIME:
if (type2 == Type.DAY_TIME_DURATION) {
return type1;
} else if (type2 == Type.TIME) {
return Type.DAY_TIME_DURATION;
}
break;
case DATE_TIME:
if (type2 == Type.YEAR_MONTH_DURATION || type2 == Type.DAY_TIME_DURATION) {
return type1;
} else if (type2 == Type.DATE_TIME) {
return Type.DAY_TIME_DURATION;
}
break;
case YEAR_MONTH_DURATION:
if (type2 == Type.YEAR_MONTH_DURATION) {
return type2;
}
break;
case DAY_TIME_DURATION:
if (type2 == Type.DAY_TIME_DURATION) {
return type2;
}
break;
default:
throw new XPathError(ErrorType.XPTY0004);
}
throw new XPathError(ErrorType.XPTY0004);
}
}
use of org.sirix.service.xml.xpath.XPathError in project sirix by sirixdb.
the class DivOpAxis method operate.
/**
* {@inheritDoc}
*/
@Override
public Node operate(final AtomicValue mOperand1, final AtomicValue mOperand2) throws SirixXPathException {
final Type returnType = getReturnType(mOperand1.getTypeKey(), mOperand2.getTypeKey());
final int typeKey = getTrx().keyForName(returnType.getStringRepr());
final byte[] value;
switch(returnType) {
case DECIMAL:
case FLOAT:
case DOUBLE:
final double aD = Double.parseDouble(new String(mOperand1.getRawValue()));
final double dValue;
if (aD == 0.0 || aD == -0.0) {
dValue = Double.NaN;
} else {
dValue = aD / Double.parseDouble(new String(mOperand2.getRawValue()));
}
value = TypedValue.getBytes(dValue);
return new AtomicValue(value, typeKey);
case INTEGER:
try {
final int iValue = (int) Double.parseDouble(new String(mOperand1.getRawValue())) / (int) Double.parseDouble(new String(mOperand2.getRawValue()));
value = TypedValue.getBytes(iValue);
return new AtomicValue(value, typeKey);
} catch (final ArithmeticException e) {
throw new XPathError(ErrorType.FOAR0001);
}
case YEAR_MONTH_DURATION:
case DAY_TIME_DURATION:
throw new IllegalStateException("Add operator is not implemented for the type " + returnType.getStringRepr() + " yet.");
default:
throw new XPathError(ErrorType.XPTY0004);
}
}
use of org.sirix.service.xml.xpath.XPathError in project sirix by sirixdb.
the class IDivOpAxis method operate.
/**
* {@inheritDoc}
*/
@Override
public Node operate(final AtomicValue mOperand1, final AtomicValue mOperand2) throws SirixXPathException {
final Type returnType = getReturnType(mOperand1.getTypeKey(), mOperand2.getTypeKey());
final int typeKey = getTrx().keyForName(returnType.getStringRepr());
final byte[] value;
try {
final int op1 = (int) Double.parseDouble(new String(mOperand1.getRawValue()));
final int op2 = (int) Double.parseDouble(new String(mOperand2.getRawValue()));
final int iValue = op1 / op2;
value = TypedValue.getBytes(iValue);
return new AtomicValue(value, typeKey);
} catch (final ArithmeticException e) {
// LOGWRAPPER.error(e);
throw new XPathError(ErrorType.FOAR0001);
}
}
use of org.sirix.service.xml.xpath.XPathError in project sirix by sirixdb.
the class ModOpAxis method getReturnType.
/**
* {@inheritDoc}
*/
@Override
protected Type getReturnType(final int mOp1, final int mOp2) throws SirixXPathException {
Type type1;
Type type2;
try {
type1 = Type.getType(mOp1).getPrimitiveBaseType();
type2 = Type.getType(mOp2).getPrimitiveBaseType();
} catch (IllegalStateException e) {
throw new XPathError(ErrorType.XPTY0004);
}
// only numeric values are valid for the mod operator
if (type1.isNumericType() && type2.isNumericType()) {
// if both have the same numeric type, return it
if (type1 == type2) {
return type1;
}
if (type1 == Type.DOUBLE || type2 == Type.DOUBLE) {
return Type.DOUBLE;
} else if (type1 == Type.FLOAT || type2 == Type.FLOAT) {
return Type.FLOAT;
} else {
assert (type1 == Type.DECIMAL || type2 == Type.DECIMAL);
return Type.DECIMAL;
}
} else {
throw new XPathError(ErrorType.XPTY0004);
}
}
Aggregations