Package com.foundationdb.server.types.mcompat.mfuncs

Source Code of com.foundationdb.server.types.mcompat.mfuncs.MIfElse

/**
* Copyright (C) 2009-2013 FoundationDB, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

package com.foundationdb.server.types.mcompat.mfuncs;

import com.foundationdb.server.types.LazyList;
import com.foundationdb.server.types.TClass;
import com.foundationdb.server.types.TExecutionContext;
import com.foundationdb.server.types.TOverloadResult;
import com.foundationdb.server.types.TPreptimeContext;
import com.foundationdb.server.types.TPreptimeValue;
import com.foundationdb.server.types.TScalar;
import com.foundationdb.server.types.aksql.aktypes.AkBool;
import com.foundationdb.server.types.mcompat.mtypes.MApproximateNumber;
import com.foundationdb.server.types.mcompat.mtypes.MNumeric;
import com.foundationdb.server.types.mcompat.mtypes.MString;
import com.foundationdb.server.types.value.ValueSource;
import com.foundationdb.server.types.value.ValueTarget;
import com.foundationdb.server.types.value.ValueTargets;
import com.foundationdb.server.types.texpressions.Constantness;
import com.foundationdb.server.types.texpressions.TInputSetBuilder;
import com.foundationdb.server.types.texpressions.TScalarBase;

public final class MIfElse extends TScalarBase {

    public static final TScalar[] overloads = new TScalar[] {
            // If both inputs are of the same type (that's what an ANY-exact means), always use that
            new MIfElse(null, ExactInput.BOTH, -20),

            // Else, if either side is a string, use that. Note that each one of these are in their own cast group,
            // because we want the deciding type (e.g. LONGTEXT on the left side, in the first case below) to
            // unquestionably force the other input to be of its same type. If we put, for instance, all of the
            // left-is-stringy overloads into one group, then strongs-based considerations come into play, and since
            // virtually nothing is strongly castable to a varchar, none of these would get picked.
            new MIfElse(MString.LONGTEXT, ExactInput.LEFT, -10),
            new MIfElse(MString.LONGTEXT, ExactInput.RIGHT, -9),
            new MIfElse(MString.VARCHAR, ExactInput.LEFT, -8),
            new MIfElse(MString.VARCHAR, ExactInput.RIGHT, -7),

            // Ditto for the double types.
            new MIfElse(MApproximateNumber.DOUBLE, ExactInput.LEFT, -6),
            new MIfElse(MApproximateNumber.DOUBLE, ExactInput.RIGHT, -5),

            // Next, exact-precision types. Note that now we do put them into groups, since we actually want the
            // usual casting rules
            new MIfElse(MNumeric.DECIMAL, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.BIGINT, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.MEDIUMINT, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.INT, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.SMALLINT, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.TINYINT, ExactInput.LEFT, -4),

            new MIfElse(MNumeric.DECIMAL_UNSIGNED, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.BIGINT_UNSIGNED, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.MEDIUMINT_UNSIGNED, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.INT_UNSIGNED, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.SMALLINT_UNSIGNED, ExactInput.LEFT, -4),
            new MIfElse(MNumeric.TINYINT_UNSIGNED, ExactInput.LEFT, -4),
           
            new MIfElse(MNumeric.DECIMAL, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.BIGINT, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.MEDIUMINT, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.INT, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.SMALLINT, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.TINYINT, ExactInput.RIGHT, -4),
           
            new MIfElse(MNumeric.DECIMAL_UNSIGNED, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.BIGINT_UNSIGNED, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.MEDIUMINT_UNSIGNED, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.INT_UNSIGNED, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.SMALLINT_UNSIGNED, ExactInput.RIGHT, -4),
            new MIfElse(MNumeric.TINYINT_UNSIGNED, ExactInput.RIGHT, -4),

            // Lastly, if nothing else works, treat both as varchar
            new MIfElse(MString.VARCHAR, ExactInput.NEITHER, -2),
    };

    @Override
    protected void buildInputSets(TInputSetBuilder builder) {
        builder.covers(AkBool.INSTANCE, 0).pickingCovers(targetClass, 1, 2);
        if(exactInput == ExactInput.BOTH || exactInput == ExactInput.LEFT)
            builder.setExact(1, true);
        if(exactInput == ExactInput.BOTH || exactInput == ExactInput.RIGHT)
            builder.setExact(2, true);
    }

    @Override
    protected void doEvaluate(TExecutionContext context, LazyList<? extends ValueSource> inputs, ValueTarget output) {
        ValueSource condition = inputs.get(0);
        int whichSource = (!condition.isNull() && condition.getBoolean()) ? 1 : 2;
        ValueSource source = inputs.get(whichSource);
        ValueTargets.copyFrom(source, output);
    }

    @Override
    public String displayName() {
        return "IF";
    }

    @Override
    public TOverloadResult resultType() {
        return TOverloadResult.picking();
    }

    @Override
    protected boolean nullContaminates(int inputIndex) {
        return false;
    }

    @Override
    public int[] getPriorities() {
        return new int[] { priority };
    }

    @Override
    protected Constantness constness(TPreptimeContext context, int inputIndex, LazyList<? extends TPreptimeValue> values) {
        assert inputIndex == 0 : inputIndex; // should be fully resolved after the first call
        ValueSource condition = values.get(0).value();
        if (condition == null)
            return Constantness.NOT_CONST;
        int result = (!condition.isNull() && condition.getBoolean()) ? 1 : 2;
        return values.get(result).value() == null ? Constantness.NOT_CONST : Constantness.CONST;
    }

    private MIfElse(TClass targetClass, ExactInput exactInput, int priority) {
        this.targetClass = targetClass;
        this.exactInput = exactInput;
        this.priority = priority;
    }

    private final TClass targetClass;
    private final ExactInput exactInput;
    private final int priority;

    private enum ExactInput {
        LEFT, RIGHT, NEITHER, BOTH
    }
}
TOP

Related Classes of com.foundationdb.server.types.mcompat.mfuncs.MIfElse

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.