/* * 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.jena.sparql.expr; import org.apache.jena.atlas.lib.Lib ; import org.apache.jena.sparql.engine.binding.Binding ; import org.apache.jena.sparql.function.FunctionEnv ; import org.apache.jena.sparql.graph.NodeTransform; /** A function of three arguments */ public abstract class ExprFunction3 extends ExprFunction { protected final Expr expr1 ; protected final Expr expr2 ; protected final Expr expr3 ; protected ExprFunction3(Expr expr1, Expr expr2, Expr expr3, String fName) { this(expr1, expr2, expr3, fName, null) ; } protected ExprFunction3(Expr expr1, Expr expr2, Expr expr3, String fName, String opSign) { super(fName, opSign) ; this.expr1 = expr1 ; this.expr2 = expr2 ; this.expr3 = expr3 ; } public Expr getArg1() { return expr1 ; } public Expr getArg2() { return expr2 ; } public Expr getArg3() { return expr3 ; } @Override public Expr getArg(int i) { if ( i == 1 ) return expr1 ; if ( i == 2 ) return expr2 ; if ( i == 3 ) return expr3 ; return null ; } @Override public int numArgs() { return 3 ; } // ---- Evaluation @Override public int hashCode() { return getFunctionSymbol().hashCode() ^ Lib.hashCodeObject(expr1) ^ Lib.hashCodeObject(expr2) ^ Lib.hashCodeObject(expr3) ; } @Override final public NodeValue eval(Binding binding, FunctionEnv env) { NodeValue s = evalSpecial(binding, env) ; if ( s != null ) return s ; NodeValue x = eval(binding, env, expr1) ; NodeValue y = eval(binding, env, expr2) ; NodeValue z = eval(binding, env, expr3) ; return eval(x, y, z, env) ; } /** Special form evaluation (example, don't eval the arguments first) */ protected NodeValue evalSpecial(Binding binding, FunctionEnv env) { return null ; } public NodeValue eval(NodeValue x, NodeValue y, NodeValue z, FunctionEnv env) { return eval(x,y, z) ; } public abstract NodeValue eval(NodeValue x, NodeValue y, NodeValue z) ; // ---- Duplication @Override final public Expr copySubstitute(Binding binding) { Expr e1 = (expr1 == null ? null : expr1.copySubstitute(binding)) ; Expr e2 = (expr2 == null ? null : expr2.copySubstitute(binding)) ; Expr e3 = (expr3 == null ? null : expr3.copySubstitute(binding)) ; return copy(e1, e2, e3) ; } @Override final public Expr applyNodeTransform(NodeTransform transform) { Expr e1 = (expr1 == null ? null : expr1.applyNodeTransform(transform)) ; Expr e2 = (expr2 == null ? null : expr2.applyNodeTransform(transform)) ; Expr e3 = (expr3 == null ? null : expr3.applyNodeTransform(transform)) ; return copy(e1, e2, e3) ; } public abstract Expr copy(Expr arg1, Expr arg2, Expr arg3) ; @Override public void visit(ExprVisitor visitor) { visitor.visit(this) ; } public Expr apply(ExprTransform transform, Expr arg1, Expr arg2, Expr arg3) { return transform.transform(this, arg1, arg2, arg3) ; } }