All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hsqldb.types.BinaryType Maven / Gradle / Ivy

There is a newer version: 2.7.2
Show newest version
/* Copyright (c) 2001-2019, The HSQL Development Group
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of the HSQL Development Group nor the names of its
 * contributors may be used to endorse or promote products derived from this
 * software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,
 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */


package org.hsqldb.types;

import org.hsqldb.OpTypes;
import org.hsqldb.Session;
import org.hsqldb.SessionInterface;
import org.hsqldb.Tokens;
import org.hsqldb.error.Error;
import org.hsqldb.error.ErrorCode;
import org.hsqldb.lib.ArrayUtil;
import org.hsqldb.lib.StringConverter;

/**
 * Type implementation for BINARY, VARBINARY and (part) BLOB.

* SQL:2008 Standard specifies silent truncation of zero bytes at the end of the * binary strings used for assignment and concatenation.

* * * A binary string of type BINARY VARYING and BLOB when assigned to a column * of similar type but shorter maximum length.

* * * The Second operand of a concatenation when the length of the result exceeds * the maximum implementation-dependent length of BINARY VARYING and BLOB * binary strings.

* * The behaviour is similar to trimming of space characters from strings of * CHARACTER VARYING and CLOB types.

* *

* In most real-world use-cases, all the bytes of variable-length binary values * stored in a database are significant and should not be discarded.

* * HSQLDB follows the Standard completely, despite this inadequacy.

* * Comparison of binary values follows the Standard. When two values are not * the same length and all the bytes of the shorter value equal the initial * sequence of bytes of the longer value, then the shorter value is the smaller. * The Standard treats this determination as implementation dependent.

* * BIT types, which were part of the SQL:1999, can be converted to and from * BINARY. The BIT strings may be padded with zero bits for byte alignment.

* * As an extension to the Standard, HSQLDB supports cast from CHARACTER types * to BINARY. The length of the string must be even and all character * must be hexadecimal characters.

* * * @author Fred Toussi (fredt@users dot sourceforge.net) * @version 2.0.1 * @since 1.9.0 */ public class BinaryType extends Type { public static final long maxBinaryPrecision = Integer.MAX_VALUE; protected BinaryType(int type, long precision) { super(Types.SQL_VARBINARY, type, precision, 0); } public int displaySize() { return precision > Integer.MAX_VALUE ? Integer.MAX_VALUE : (int) precision; } public int getJDBCTypeCode() { return typeCode == Types.SQL_BINARY ? Types.BINARY : Types.VARBINARY; } public Class getJDBCClass() { return byte[].class; } public String getJDBCClassName() { return "[B"; } public String getNameString() { return typeCode == Types.SQL_BINARY ? Tokens.T_BINARY : Tokens.T_VARBINARY; } public String getNameFullString() { return typeCode == Types.SQL_BINARY ? Tokens.T_BINARY : "BINARY VARYING"; } public String getDefinition() { if (precision == 0) { return getNameString(); } StringBuilder sb = new StringBuilder(16); sb.append(getNameString()); sb.append('('); sb.append(precision); sb.append(')'); return sb.toString(); } public boolean isBinaryType() { return true; } public boolean acceptsPrecision() { return true; } public long getMaxPrecision() { return maxBinaryPrecision; } public boolean requiresPrecision() { return typeCode == Types.SQL_VARBINARY; } /** * relaxes the SQL standard list to avoid problems with conversion of * literals and java method parameter type issues */ public int precedenceDegree(Type other) { if (other.typeCode == typeCode) { return 0; } if (!other.isBinaryType()) { return Integer.MIN_VALUE; } switch (typeCode) { case Types.SQL_BIT : case Types.SQL_BIT_VARYING : return Integer.MIN_VALUE; case Types.SQL_BINARY : return other.typeCode == Types.SQL_BLOB ? 4 : 2; case Types.SQL_VARBINARY : return other.typeCode == Types.SQL_BLOB ? 4 : 2; case Types.SQL_BLOB : return other.typeCode == Types.SQL_BINARY ? -4 : -2; default : throw Error.runtimeError(ErrorCode.U_S0500, "BinaryType"); } } public Type getAggregateType(Type other) { if (other == null) { return this; } if (other == SQL_ALL_TYPES) { return this; } if (typeCode == other.typeCode) { return precision >= other.precision ? this : other; } if (other.isCharacterType()) { return other.getAggregateType(this); } switch (other.typeCode) { case Types.SQL_BIT : case Types.SQL_BIT_VARYING : { long bytePrecision = (other.precision + 7) / 8; return precision >= bytePrecision ? this : getBinaryType( this.typeCode, bytePrecision); } case Types.SQL_BINARY : return precision >= other.precision ? this : getBinaryType(typeCode, other.precision); case Types.SQL_VARBINARY : if (typeCode == Types.SQL_BLOB) { return precision >= other.precision ? this : getBinaryType( typeCode, other.precision); } else { return other.precision >= precision ? other : getBinaryType( other.typeCode, precision); } case Types.SQL_BLOB : return other.precision >= precision ? other : getBinaryType( other.typeCode, precision); case Types.SQL_GUID : return other; default : throw Error.error(ErrorCode.X_42562); } } /** * Returns type for concat */ public Type getCombinedType(Session session, Type other, int operation) { if (operation != OpTypes.CONCAT) { return getAggregateType(other); } Type newType; long newPrecision = this.precision + other.precision; switch (other.typeCode) { case Types.SQL_ALL_TYPES : return this; case Types.SQL_BIT : case Types.SQL_BIT_VARYING : newPrecision = this.precision + (other.precision + 7) / 8; newType = this; break; case Types.SQL_GUID : case Types.SQL_BINARY : newType = this; break; case Types.SQL_VARBINARY : newType = (typeCode == Types.SQL_BLOB) ? this : other; break; case Types.SQL_BLOB : newType = other; break; default : throw Error.error(ErrorCode.X_42561); } if (newPrecision > maxBinaryPrecision) { if (typeCode == Types.SQL_BINARY) { // Standard disallows type length reduction throw Error.error(ErrorCode.X_42570); } else if (typeCode == Types.SQL_VARBINARY) { newPrecision = maxBinaryPrecision; } } return getBinaryType(newType.typeCode, newPrecision); } public int compare(Session session, Object a, Object b) { if (a == b) { return 0; } if (a == null) { return -1; } if (b == null) { return 1; } if (a instanceof BinaryData && b instanceof BinaryData) { byte[] data1 = ((BinaryData) a).getBytes(); byte[] data2 = ((BinaryData) b).getBytes(); int length = data1.length > data2.length ? data2.length : data1.length; for (int i = 0; i < length; i++) { if (data1[i] == data2[i]) { continue; } return (((int) data1[i]) & 0xff) > (((int) data2[i]) & 0xff) ? 1 : -1; } if (data1.length == data2.length) { return 0; } if (typeCode == Types.SQL_BINARY) { if (data1.length > data2.length) { for (int i = data2.length; i < data1.length; i++) { if (data1[i] != 0) { return 1; } } return 0; } else { for (int i = data1.length; i < data2.length; i++) { if (data2[i] != 0) { return -1; } } return 0; } } return data1.length > data2.length ? 1 : -1; } throw Error.runtimeError(ErrorCode.U_S0500, "BinaryType"); } public Object convertToTypeLimits(SessionInterface session, Object a) { return castOrConvertToType(session, a, this, false); } public Object castToType(SessionInterface session, Object a, Type otherType) { return castOrConvertToType(session, a, otherType, true); } public Object convertToType(SessionInterface session, Object a, Type otherType) { return castOrConvertToType(session, a, otherType, false); } public Object convertJavaToSQL(SessionInterface session, Object a) { if (a == null) { return null; } if (a instanceof byte[]) { return new BinaryData((byte[]) a, true); } throw Error.error(ErrorCode.X_42561); } public Object convertSQLToJava(SessionInterface session, Object a) { if (a == null) { return null; } return ((BlobData) a).getBytes(); } Object castOrConvertToType(SessionInterface session, Object a, Type otherType, boolean cast) { BlobData b; if (a == null) { return null; } switch (otherType.typeCode) { // non-SQL feature, for compatibility with previous versions // also used by HEXTORAW function case Types.SQL_CLOB : a = Type.SQL_VARCHAR.convertToType(session, a, otherType); // fall through case Types.SQL_VARCHAR : case Types.SQL_CHAR : { b = session.getScanner().convertToBinary((String) a, false); otherType = getBinaryType(Types.SQL_VARBINARY, b.length(session)); break; } case Types.SQL_BIT : { b = (BlobData) a; otherType = getBinaryType(Types.SQL_VARBINARY, b.length(session)); break; } case Types.SQL_GUID : case Types.SQL_BINARY : case Types.SQL_VARBINARY : case Types.SQL_BLOB : b = (BlobData) a; break; default : throw Error.error(ErrorCode.X_22501); } if (precision == 0) { return b; // never a blob } if (otherType.typeCode == Types.SQL_BLOB) { long blobLength = b.length(session); if (blobLength > precision) { throw Error.error(ErrorCode.X_22001); } byte[] bytes = b.getBytes(session, 0, (int) blobLength); b = new BinaryData(bytes, false); } if (b.length(session) > precision && b.nonZeroLength(session) > precision) { if (!cast) { throw Error.error(ErrorCode.X_22001); } session.addWarning(Error.error(ErrorCode.W_01004)); } switch (typeCode) { case Types.SQL_BINARY : { if (b.length(session) > precision) { byte[] data = b.getBytes(session, 0, (int) precision); b = new BinaryData(data, false); } else if (b.length(session) < precision) { byte[] data = (byte[]) ArrayUtil.resizeArray(b.getBytes(), (int) precision); b = new BinaryData(data, false); } return b; } case Types.SQL_VARBINARY : { if (b.length(session) > precision) { byte[] data = b.getBytes(session, 0, (int) precision); b = new BinaryData(data, false); } return b; } default : } throw Error.error(ErrorCode.X_22501); } public Object convertToDefaultType(SessionInterface session, Object a) { if (a == null) { return a; } if (a instanceof byte[]) { return new BinaryData((byte[]) a, false); } else if (a instanceof BinaryData) { return a; } else if (a instanceof String) { return castOrConvertToType(session, a, Type.SQL_VARCHAR, false); } throw Error.error(ErrorCode.X_22501); } public String convertToString(Object a) { if (a == null) { return null; } return StringConverter.byteArrayToHexString(((BlobData) a).getBytes()); } public String convertToSQLString(Object a) { if (a == null) { return Tokens.T_NULL; } return StringConverter.byteArrayToSQLHexString( ((BinaryData) a).getBytes()); } public boolean canConvertFrom(Type otherType) { return otherType.typeCode == Types.SQL_ALL_TYPES || otherType.isBinaryType() || otherType.isCharacterType(); } public int canMoveFrom(Type otherType) { if (otherType == this) { return 0; } if (!otherType.isBinaryType()) { return -1; } switch (typeCode) { case Types.SQL_VARBINARY : { if (otherType.typeCode == typeCode) { return precision >= otherType.precision ? 0 : 1; } if (otherType.typeCode == Types.SQL_BINARY) { return precision >= otherType.precision ? 0 : -1; } if (otherType.typeCode == Types.SQL_GUID) { return precision >= otherType.precision ? 0 : -1; } return -1; } case Types.SQL_BLOB : { if (otherType.typeCode == typeCode) { return precision >= otherType.precision ? 0 : 1; } return -1; } case Types.SQL_BIT : case Types.SQL_BINARY : { if (otherType.typeCode == typeCode || otherType.typeCode == Types.SQL_GUID) { return precision == otherType.precision ? 0 : -1; } return -1; } case Types.SQL_BIT_VARYING : { return otherType.typeCode == typeCode && precision >= otherType.precision ? 0 : -1; } default : return -1; } } public long position(SessionInterface session, BlobData data, BlobData otherData, Type otherType, long offset) { if (data == null || otherData == null) { return -1L; } long otherLength = data.length(session); if (offset + otherLength > data.length(session)) { return -1; } return data.position(session, otherData, offset); } public BlobData substring(SessionInterface session, BlobData data, long offset, long length, boolean hasLength) { long end; long dataLength = data.length(session); if (hasLength) { end = offset + length; } else { end = dataLength > offset ? dataLength : offset; } if (offset > end) { throw Error.error(ErrorCode.X_22011); } if (end < 0) { // return zero length data offset = 0; end = 0; } if (offset < 0) { offset = 0; } if (end > dataLength) { end = dataLength; } length = end - offset; // change method signature to take long byte[] bytes = data.getBytes(session, offset, (int) length); return new BinaryData(bytes, false); } int getRightTrimSize(BlobData data) { byte[] bytes = data.getBytes(); int endindex = bytes.length; for (--endindex; endindex >= 0 && bytes[endindex] == 0; endindex--) {} return ++endindex; } public BlobData trim(Session session, BlobData data, int trim, boolean leading, boolean trailing) { if (data == null) { return null; } long length = data.length(session); if (length > Integer.MAX_VALUE) { throw Error.error(ErrorCode.X_22027); } byte[] bytes = data.getBytes(session, 0, (int) length); int endindex = bytes.length; if (trailing) { for (--endindex; endindex >= 0 && bytes[endindex] == trim; endindex--) {} endindex++; } int startindex = 0; if (leading) { while (startindex < endindex && bytes[startindex] == trim) { startindex++; } } byte[] newBytes = bytes; if (startindex != 0 || endindex != bytes.length) { newBytes = new byte[endindex - startindex]; System.arraycopy(bytes, startindex, newBytes, 0, endindex - startindex); } if (typeCode == Types.SQL_BLOB) { BlobData blob = session.createBlob(newBytes.length); blob.setBytes(session, 0, newBytes); return blob; } else { return new BinaryData(newBytes, newBytes == bytes); } } public BlobData overlay(Session session, BlobData data, BlobData overlay, long offset, long length, boolean hasLength) { if (data == null || overlay == null) { return null; } if (!hasLength) { length = overlay.length(session); } switch (typeCode) { case Types.SQL_BINARY : case Types.SQL_VARBINARY : { BinaryData binary = new BinaryData(session, substring(session, data, 0, offset, true), overlay); binary = new BinaryData(session, binary, substring(session, data, offset + length, 0, false)); return binary; } case Types.SQL_BLOB : { byte[] bytes = substring(session, data, 0, offset, false).getBytes(); long blobLength = data.length(session) + overlay.length(session) - length; BlobData blob = session.createBlob(blobLength); blob.setBytes(session, 0, bytes); blob.setBytes(session, blob.length(session), overlay.getBytes()); bytes = substring(session, data, offset + length, 0, false).getBytes(); blob.setBytes(session, blob.length(session), bytes); return blob; } default : throw Error.runtimeError(ErrorCode.U_S0500, "BinaryType"); } } public Object concat(Session session, Object a, Object b) { if (a == null || b == null) { return null; } long length = ((BlobData) a).length(session) + ((BlobData) b).length(session); if (length > precision) { throw Error.error(ErrorCode.X_22001); } if (typeCode == Types.SQL_BLOB) { BlobData blob = session.createBlob(length); blob.setBytes(session, 0, ((BlobData) a), 0, ((BlobData) a).length(session)); blob.setBytes(session, ((BlobData) a).length(session), ((BlobData) b), 0, ((BlobData) b).length(session)); return blob; } else { return new BinaryData(session, (BlobData) a, (BlobData) b); } } /** @todo check and adjust max precision */ public static BinaryType getBinaryType(int type, long precision) { switch (type) { case Types.SQL_BINARY : case Types.SQL_VARBINARY : return new BinaryType(type, precision); case Types.SQL_BLOB : return new BlobType(precision); default : throw Error.runtimeError(ErrorCode.U_S0500, "BinaryType"); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy