/** * 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.mcasts; import com.foundationdb.server.types.TCast; import com.foundationdb.server.types.TCastBase; import com.foundationdb.server.types.TExecutionContext; import com.foundationdb.server.types.aksql.aktypes.AkBool; import com.foundationdb.server.types.common.BigDecimalWrapper; import com.foundationdb.server.types.common.types.TBigDecimal; import com.foundationdb.server.types.mcompat.mtypes.MApproximateNumber; import com.foundationdb.server.types.mcompat.mtypes.MDateAndTime; import com.foundationdb.server.types.mcompat.mtypes.MNumeric; import com.foundationdb.server.types.value.ValueSource; import com.foundationdb.server.types.value.ValueTarget; @SuppressWarnings("unused") // Used by reflected public class Cast_From_Boolean { public static final TCast BOOL_TO_INTEGER = new TCastBase(AkBool.INSTANCE, MNumeric.INT) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putInt32(source.getBoolean() ? 1 : 0); } }; // MApproximateNumber public static final TCast FLOAT_TO_BOOLEAN = new TCastBase(MApproximateNumber.FLOAT, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getFloat() != 0.0); } }; public static final TCast FLOAT_UNSIGNED_TO_BOOLEAN = new TCastBase(MApproximateNumber.FLOAT_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getFloat() != 0.0); } }; public static final TCast DOUBLE_TO_BOOLEAN = new TCastBase(MApproximateNumber.DOUBLE, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getDouble() != 0.0); } }; public static final TCast DOUBLE_UNSIGNED_TO_BOOLEAN = new TCastBase(MApproximateNumber.DOUBLE_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getDouble() != 0.0); } }; // MBinary // TODO // MDatetimesfinal public static final TCast DATE_TO_BOOLEAN = new TCastBase(MDateAndTime.DATE, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt32() != 0); } }; public static final TCast DATETIME_TO_BOOLEAN = new TCastBase(MDateAndTime.DATETIME, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt64() != 0); } }; public static final TCast TIME_TO_BOOLEAN = new TCastBase(MDateAndTime.TIME, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt32() != 0); } }; public static final TCast YEAR_TO_BOOLEAN = new TCastBase(MDateAndTime.YEAR, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt16() != 0); } }; public static final TCast TIMESTAMP_TO_BOOLEAN = new TCastBase(MDateAndTime.TIMESTAMP, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt32() != 0); } }; // MNumeric public static final TCast TINYINT_UNSIGNED_TO_BOOLEAN = new TCastBase(MNumeric.TINYINT_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt16() != 0); } }; public static final TCast SMALLINT_TO_BOOLEAN = new TCastBase(MNumeric.SMALLINT, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt16() != 0); } }; public static final TCast SMALLINT_UNSIGNED_TO_BOOLEAN = new TCastBase(MNumeric.SMALLINT_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt32() != 0); } }; public static final TCast MEDIUMINT_TO_BOOLEAN = new TCastBase(MNumeric.MEDIUMINT, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt32() != 0); } }; public static final TCast MEDIUMINT_UNSIGNED_TO_BOOLEAN = new TCastBase(MNumeric.MEDIUMINT_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt64() != 0); } }; public static final TCast INT_TO_BOOLEAN = new TCastBase(MNumeric.INT, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt32() != 0); } }; public static final TCast INT_UNSIGNED_TO_BOOLEAN = new TCastBase(MNumeric.INT_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt64() != 0); } }; public static final TCast BIGINT_TO_BOOLEAN = new TCastBase(MNumeric.BIGINT, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt64() != 0); } }; public static final TCast BIGINT_UNSIGNED_TO_BOOLEAN = new TCastBase(MNumeric.BIGINT_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { target.putBool(source.getInt64() != 0); } }; public static final TCast DECIMAL_TO_BOOLEAN = new TCastBase(MNumeric.DECIMAL, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { BigDecimalWrapper decimal = TBigDecimal.getWrapper(source, source.getType()); target.putBool(!decimal.isZero()); } }; public static final TCast DECIMAL_UNSIGNED_TO_BOOLEAN = new TCastBase(MNumeric.DECIMAL_UNSIGNED, AkBool.INSTANCE) { @Override protected void doEvaluate(TExecutionContext context, ValueSource source, ValueTarget target) { BigDecimalWrapper decimal = TBigDecimal.getWrapper(source, source.getType()); target.putBool(!decimal.isZero()); } }; // MString // Handled by string->boolean (i.e. MParsers.BOOLEAN) }