All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.phoenix.expression.function.ScalarFunction Maven / Gradle / Ivy

There is a newer version: 4.15.0-HBase-1.5
Show newest version
/*
 * 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.phoenix.expression.function;

import java.util.List;

import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
import org.apache.phoenix.compile.KeyPart;
import org.apache.phoenix.expression.Expression;
import org.apache.phoenix.expression.LiteralExpression;
import org.apache.phoenix.expression.visitor.ExpressionVisitor;
import org.apache.phoenix.util.ByteUtil;


public abstract class ScalarFunction extends FunctionExpression {
    public static final int NO_TRAVERSAL = -1;
    
    public ScalarFunction() {
    }
    
    public ScalarFunction(List children) {
        super(children);
    }
    
    public ScalarFunction clone(List children) {
        try {
            // FIXME: we could potentially implement this on each subclass and not use reflection
            return getClass().getConstructor(List.class).newInstance(children);
        } catch (Exception e) {
            throw new RuntimeException(e); // Impossible, since it was originally constructed this way
        }
    }
    
    protected static byte[] evaluateExpression(Expression rhs) {
        ImmutableBytesWritable ptr = new ImmutableBytesWritable();
        rhs.evaluate(null, ptr);
        byte[] key = ByteUtil.copyKeyBytesIfNecessary(ptr);
        return key;
    }

    /**
     * Retrieve the literal value at childIndex. The argument must be a constant 
     * (i.e. marked as isConstant=true)
     */
    protected final  T getLiteralValue(int childIndex, Class type) {
    	Expression expression = getChildren().get(childIndex);
    	// It's safe to assume expression is a LiteralExpression since
    	// only arguments marked as isConstant = true should be handled through
    	// this method.
    	return type.cast(((LiteralExpression) expression).getValue());
    }

    @Override
    public  T accept(ExpressionVisitor visitor) {
        List l = acceptChildren(visitor, visitor.visitEnter(this));
        T t = visitor.visitLeave(this, l);
        if (t == null) {
            t = visitor.defaultReturn(this, l);
        }
        return t;
    }
    
    /**
     * Determines whether or not a function may be used to form
     * the start/stop key of a scan
     * When OrderPreserving is YES, in order to make order-by optimization
     * valid, it should return 0. (refer to {@link RoundDateExpression})
     * @return the zero-based position of the argument to traverse
     *  into to look for a primary key column reference, or
     *  {@value #NO_TRAVERSAL} if the function cannot be used to
     *  form the scan key.
     */
    public int getKeyFormationTraversalIndex() {
        return preservesOrder() == OrderPreserving.NO ? NO_TRAVERSAL : 0;
    }

    /**
     * Manufactures a KeyPart used to construct the KeyRange given
     * a constant and a comparison operator.
     * @param childPart the KeyPart formulated for the child expression
     *  at the {@link #getKeyFormationTraversalIndex()} position.
     * @return the KeyPart for constructing the KeyRange for this
     *  function.
     */
    public KeyPart newKeyPart(KeyPart childPart) {
        return null;
    }
    
    /**
     * Used to determine if the same ScalarFunction instance may be
     * used by multiple threads. 
     * @return true if function is thread safe and false otherwise.
     */
    public boolean isThreadSafe() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy