blob: f1d9e1620b235c5f2c6d9f7fea6ea264db30c84e [file] [log] [blame]
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (c) 2012-2014 Monty Program Ab
// Copyright (c) 2015-2021 MariaDB Corporation Ab
package org.mariadb.jdbc.plugin.codec;
import java.io.IOException;
import java.sql.SQLDataException;
import java.util.Calendar;
import java.util.EnumSet;
import org.mariadb.jdbc.client.*;
import org.mariadb.jdbc.client.socket.Writer;
import org.mariadb.jdbc.plugin.Codec;
/** Integer codec */
public class IntCodec implements Codec<Integer> {
/** default instance */
public static final IntCodec INSTANCE = new IntCodec();
private static final EnumSet<DataType> COMPATIBLE_TYPES =
EnumSet.of(
DataType.FLOAT,
DataType.DOUBLE,
DataType.OLDDECIMAL,
DataType.VARCHAR,
DataType.DECIMAL,
DataType.ENUM,
DataType.VARSTRING,
DataType.STRING,
DataType.TINYINT,
DataType.SMALLINT,
DataType.MEDIUMINT,
DataType.INTEGER,
DataType.BIGINT,
DataType.BIT,
DataType.YEAR,
DataType.BLOB,
DataType.TINYBLOB,
DataType.MEDIUMBLOB,
DataType.LONGBLOB);
public String className() {
return Integer.class.getName();
}
public boolean canDecode(ColumnDecoder column, Class<?> type) {
return COMPATIBLE_TYPES.contains(column.getType())
&& ((type.isPrimitive() && type == Integer.TYPE) || type.isAssignableFrom(Integer.class));
}
public boolean canEncode(Object value) {
return value instanceof Integer;
}
@Override
public Integer decodeText(
final ReadableByteBuf buffer,
final int length,
final ColumnDecoder column,
final Calendar cal)
throws SQLDataException {
return column.decodeIntText(buffer, length);
}
@Override
public Integer decodeBinary(
final ReadableByteBuf buffer,
final int length,
final ColumnDecoder column,
final Calendar cal)
throws SQLDataException {
return column.decodeIntBinary(buffer, length);
}
@Override
public void encodeText(Writer encoder, Context context, Object value, Calendar cal, Long maxLen)
throws IOException {
encoder.writeAscii(value.toString());
}
@Override
public void encodeBinary(Writer encoder, Object value, Calendar cal, Long maxLength)
throws IOException {
encoder.writeInt((Integer) value);
}
public int getBinaryEncodeType() {
return DataType.INTEGER.get();
}
}