blob: 22f05d4f2676cba98d6bc47f4178b5b4047972e8 [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;
/** LongCodec codec */
public class LongCodec implements Codec<Long> {
/** default instance */
public static final LongCodec INSTANCE = new LongCodec();
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 Long.class.getName();
}
public boolean canDecode(ColumnDecoder column, Class<?> type) {
return COMPATIBLE_TYPES.contains(column.getType())
&& ((type.isPrimitive() && type == Integer.TYPE) || type.isAssignableFrom(Long.class));
}
public boolean canEncode(Object value) {
return value instanceof Long;
}
@Override
public Long decodeText(
final ReadableByteBuf buffer,
final int length,
final ColumnDecoder column,
final Calendar cal)
throws SQLDataException {
return column.decodeLongText(buffer, length);
}
@Override
public Long decodeBinary(
final ReadableByteBuf buffer,
final int length,
final ColumnDecoder column,
final Calendar cal)
throws SQLDataException {
return column.decodeLongBinary(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.writeLong((Long) value);
}
public int getBinaryEncodeType() {
return DataType.BIGINT.get();
}
}