org.firebirdsql.jdbc.field.FBFloatField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird Show documentation
Show all versions of jaybird Show documentation
JDBC Driver for the Firebird RDBMS
/*
* $Id$
*
* Firebird Open Source JavaEE Connector - JDBC Driver
*
* Distributable under LGPL license.
* You may obtain a copy of the License at http://www.gnu.org/copyleft/lgpl.html
*
* 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
* LGPL License for more details.
*
* This file was created by members of the firebird development team.
* All individual contributions remain the Copyright (C) of those
* individuals. Contributors to this file are either listed here or
* can be obtained from a source control history command.
*
* All rights reserved.
*/
package org.firebirdsql.jdbc.field;
import org.firebirdsql.gds.ng.fields.FieldDescriptor;
import java.math.BigDecimal;
import java.sql.SQLException;
/**
* The class FBFloatField
represents a FLOAT datatype and performs all necessary
* conversions.
*
* @author Roman Rokytskyy
* @author Mark Rotteveel
*/
final class FBFloatField extends FBField {
private static final BigDecimal BD_MAX_FLOAT = new BigDecimal(MAX_FLOAT_VALUE);
private static final BigDecimal BD_MIN_FLOAT = new BigDecimal(MIN_FLOAT_VALUE);
FBFloatField(FieldDescriptor fieldDescriptor, FieldDataProvider dataProvider, int requiredType)
throws SQLException {
super(fieldDescriptor, dataProvider, requiredType);
}
@Override
public Object getObject() throws SQLException {
if (isNull()) return null;
// See JDBC 4.3, B.3 JDBC Types Mapped to Java Object Types
return getDouble();
}
public byte getByte() throws SQLException {
if (isNull()) return BYTE_NULL_VALUE;
float value = getDatatypeCoder().decodeFloat(getFieldData());
// check if value is within bounds
if (value > MAX_BYTE_VALUE || value < MIN_BYTE_VALUE) {
throw invalidGetConversion("byte", String.format("value %f out of range", value));
}
return (byte) value;
}
public short getShort() throws SQLException {
if (isNull()) return SHORT_NULL_VALUE;
float value = getDatatypeCoder().decodeFloat(getFieldData());
// check if value is within bounds
if (value > MAX_SHORT_VALUE || value < MIN_SHORT_VALUE) {
throw invalidGetConversion("short", String.format("value %f out of range", value));
}
return (short) value;
}
public int getInt() throws SQLException {
if (isNull()) return INT_NULL_VALUE;
float value = getDatatypeCoder().decodeFloat(getFieldData());
// check if value is within bounds
if (value > MAX_INT_VALUE || value < MIN_INT_VALUE) {
throw invalidGetConversion("int", String.format("value %f out of range", value));
}
return (int) value;
}
public long getLong() throws SQLException {
if (isNull()) return LONG_NULL_VALUE;
float value = getDatatypeCoder().decodeFloat(getFieldData());
// check if value is within bounds
if (value > MAX_LONG_VALUE || value < MIN_LONG_VALUE) {
throw invalidGetConversion("long", String.format("value %f out of range", value));
}
return (long) value;
}
public float getFloat() throws SQLException {
if (isNull()) return FLOAT_NULL_VALUE;
return getDatatypeCoder().decodeFloat(getFieldData());
}
public double getDouble() throws SQLException {
if (isNull()) return DOUBLE_NULL_VALUE;
return getDatatypeCoder().decodeFloat(getFieldData());
}
public BigDecimal getBigDecimal() throws SQLException {
if (isNull()) return null;
return new BigDecimal(getDatatypeCoder().decodeFloat(getFieldData()));
}
public boolean getBoolean() throws SQLException {
if (isNull()) return BOOLEAN_NULL_VALUE;
return getDatatypeCoder().decodeFloat(getFieldData()) == 1;
}
public String getString() throws SQLException {
if (isNull()) return null;
return String.valueOf(getDatatypeCoder().decodeFloat(getFieldData()));
}
//--- setXXX methods
public void setString(String value) throws SQLException {
if (setWhenNull(value)) return;
String string = value.trim();
try {
setFloat(Float.parseFloat(string));
} catch (NumberFormatException nfex) {
SQLException conversionException = invalidSetConversion(String.class, string);
conversionException.initCause(nfex);
throw conversionException;
}
}
public void setShort(short value) throws SQLException {
setFloat(value);
}
public void setBoolean(boolean value) throws SQLException {
setFloat(value ? 1.0f : 0.0f);
}
public void setFloat(float value) throws SQLException {
setFieldData(getDatatypeCoder().encodeFloat(value));
}
public void setDouble(double value) throws SQLException {
// check if value is within bounds
if (value == Double.NEGATIVE_INFINITY) {
setFloat(Float.NEGATIVE_INFINITY);
} else if (value == Double.POSITIVE_INFINITY) {
setFloat(Float.POSITIVE_INFINITY);
} else if (value > MAX_FLOAT_VALUE || value < MIN_FLOAT_VALUE) {
// TODO: Shouldn't we just overflow to +/-INF?
throw invalidSetConversion("double", String.format("value %f out of range", value));
} else {
setFloat((float) value);
}
}
public void setLong(long value) throws SQLException {
setFloat(value);
}
public void setInteger(int value) throws SQLException {
setFloat(value);
}
public void setByte(byte value) throws SQLException {
setFloat(value);
}
public void setBigDecimal(BigDecimal value) throws SQLException {
if (setWhenNull(value)) return;
// check if value is within bounds
if (value.compareTo(BD_MAX_FLOAT) > 0 || value.compareTo(BD_MIN_FLOAT) < 0) {
throw invalidSetConversion(BigDecimal.class, String.format("value %f out of range", value));
}
setFloat(value.floatValue());
}
}