com.bigdata.rdf.internal.constraints.NumericBOp Maven / Gradle / Ivy
/**
Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved.
Contact:
SYSTAP, LLC DBA Blazegraph
2501 Calvert ST NW #106
Washington, DC 20008
[email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.bigdata.rdf.internal.constraints;
import java.util.Map;
import org.apache.log4j.Logger;
import org.openrdf.model.Literal;
import org.openrdf.model.URI;
import org.openrdf.model.vocabulary.XMLSchema;
import com.bigdata.bop.BOp;
import com.bigdata.bop.IBindingSet;
import com.bigdata.bop.IValueExpression;
import com.bigdata.bop.ImmutableBOp;
import com.bigdata.bop.NV;
import com.bigdata.rdf.internal.IV;
import com.bigdata.rdf.sparql.ast.FilterNode;
/**
* A math expression involving a left and right IValueExpression operand. The
* operation to be applied to the operands is specified by the
* {@link Annotations#OP} annotation.
*/
public class NumericBOp extends IVValueExpression implements INeedsMaterialization {
private static final long serialVersionUID = 9136864442064392445L;
private static final transient Logger log = Logger.getLogger(NumericBOp.class);
public interface Annotations extends ImmutableBOp.Annotations {
String OP = NumericBOp.class.getName() + ".op";
}
public enum NumericOp {
ABS, ROUND, CEIL, FLOOR;
}
@Override
protected boolean areGlobalsRequired() {
return false;
}
/**
*
* @param left
* The left operand.
* @param right
* The right operand.
* @param op
* The annotation specifying the operation to be performed on those operands.
*/
@SuppressWarnings("rawtypes")
public NumericBOp(final IValueExpression extends IV> left,
final NumericOp op) {
this(new BOp[] { left }, NV.asMap(Annotations.OP, op));
}
/**
* Required shallow copy constructor.
*
* @param args
* The operands.
* @param op
* The operation.
*/
public NumericBOp(final BOp[] args, Map anns) {
super(args, anns);
if (args.length != 1 || args[0] == null || getProperty(Annotations.OP) == null) {
throw new IllegalArgumentException();
}
}
/**
* Constructor required for {@link com.bigdata.bop.BOpUtility#deepCopy(FilterNode)}.
*
* @param op
*/
public NumericBOp(final NumericBOp op) {
super(op);
}
@SuppressWarnings("rawtypes")
public IValueExpression extends IV> left() {
return get(0);
}
public NumericOp op() {
return (NumericOp) getRequiredProperty(Annotations.OP);
}
@SuppressWarnings("rawtypes")
public IV get(final IBindingSet bs) {
final Literal lit = super.getAndCheckLiteralValue(0, bs);
final URI dt = lit.getDatatype();
final NumericOp op = op();
if ((dt.equals(XMLSchema.INT) || dt.equals(XMLSchema.INTEGER)) &&
(op == NumericOp.CEIL || op == NumericOp.FLOOR || op == NumericOp.ROUND)) {
return get(0).get(bs);
}
if (log.isDebugEnabled())
log.debug(lit);
return MathUtility.numericalFunc(lit, op());
}
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append(op());
sb.append("(").append(left()).append(")");
return sb.toString();
}
/**
* The MathBOp can work on inline numerics. It is only when the operands
* evaluate to non-inline numerics that this bop needs materialization.
*/
@Override
public Requirement getRequirement() {
return INeedsMaterialization.Requirement.SOMETIMES;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy