use of org.h2.value.ValueClob in project 468H2Project by lukeunderwood42.
the class ValueClob method compareTypeSafe.
@Override
public int compareTypeSafe(Value v, CompareMode mode, CastDataProvider provider) {
if (v == this) {
return 0;
}
ValueClob v2 = (ValueClob) v;
LobData lobData = this.lobData, lobData2 = v2.lobData;
if (lobData.getClass() == lobData2.getClass()) {
if (lobData instanceof LobDataInMemory) {
return Integer.signum(getString().compareTo(v2.getString()));
} else if (lobData instanceof LobDataDatabase) {
if (((LobDataDatabase) lobData).getLobId() == ((LobDataDatabase) lobData2).getLobId()) {
return 0;
}
} else if (lobData instanceof LobDataFetchOnDemand) {
if (((LobDataFetchOnDemand) lobData).getLobId() == ((LobDataFetchOnDemand) lobData2).getLobId()) {
return 0;
}
}
}
return compare(this, v2);
}
use of org.h2.value.ValueClob in project 468H2Project by lukeunderwood42.
the class ValueDataType method readValue.
/**
* Read a value.
*
* @param buff the source buffer
* @param columnType the data type of value, or {@code null}
* @return the value
*/
Value readValue(ByteBuffer buff, TypeInfo columnType) {
int type = buff.get() & 255;
switch(type) {
case NULL:
return ValueNull.INSTANCE;
case BOOLEAN_TRUE:
return ValueBoolean.TRUE;
case BOOLEAN_FALSE:
return ValueBoolean.FALSE;
case INT_NEG:
return ValueInteger.get(-readVarInt(buff));
case INTEGER:
return ValueInteger.get(readVarInt(buff));
case BIGINT_NEG:
return ValueBigint.get(-readVarLong(buff));
case BIGINT:
return ValueBigint.get(readVarLong(buff));
case TINYINT:
return ValueTinyint.get(buff.get());
case SMALLINT:
return ValueSmallint.get(buff.getShort());
case NUMERIC_0_1:
return ValueNumeric.ZERO;
case NUMERIC_0_1 + 1:
return ValueNumeric.ONE;
case NUMERIC_SMALL_0:
return ValueNumeric.get(BigDecimal.valueOf(readVarLong(buff)));
case NUMERIC_SMALL:
{
int scale = readVarInt(buff);
return ValueNumeric.get(BigDecimal.valueOf(readVarLong(buff), scale));
}
case NUMERIC:
{
int scale = readVarInt(buff);
return ValueNumeric.get(new BigDecimal(new BigInteger(readVarBytes(buff)), scale));
}
case DECFLOAT:
{
int scale = readVarInt(buff), len = readVarInt(buff);
switch(len) {
case -3:
return ValueDecfloat.NEGATIVE_INFINITY;
case -2:
return ValueDecfloat.POSITIVE_INFINITY;
case -1:
return ValueDecfloat.NAN;
default:
byte[] b = Utils.newBytes(len);
buff.get(b, 0, len);
return ValueDecfloat.get(new BigDecimal(new BigInteger(b), scale));
}
}
case DATE:
return ValueDate.fromDateValue(readVarLong(buff));
case TIME:
return ValueTime.fromNanos(readTimestampTime(buff));
case TIME_TZ:
return ValueTimeTimeZone.fromNanos(readVarInt(buff) * DateTimeUtils.NANOS_PER_SECOND + readVarInt(buff), readTimeZone(buff));
case TIMESTAMP:
return ValueTimestamp.fromDateValueAndNanos(readVarLong(buff), readTimestampTime(buff));
case TIMESTAMP_TZ_OLD:
return ValueTimestampTimeZone.fromDateValueAndNanos(readVarLong(buff), readTimestampTime(buff), readVarInt(buff) * 60);
case TIMESTAMP_TZ:
return ValueTimestampTimeZone.fromDateValueAndNanos(readVarLong(buff), readTimestampTime(buff), readTimeZone(buff));
case VARBINARY:
return ValueVarbinary.getNoCopy(readVarBytes(buff));
case BINARY:
return ValueBinary.getNoCopy(readVarBytes(buff));
case JAVA_OBJECT:
return ValueJavaObject.getNoCopy(readVarBytes(buff));
case UUID:
return ValueUuid.get(buff.getLong(), buff.getLong());
case VARCHAR:
return ValueVarchar.get(readString(buff));
case VARCHAR_IGNORECASE:
return ValueVarcharIgnoreCase.get(readString(buff));
case CHAR:
return ValueChar.get(readString(buff));
case ENUM:
{
int ordinal = readVarInt(buff);
if (columnType != null) {
return ((ExtTypeInfoEnum) columnType.getExtTypeInfo()).getValue(ordinal, provider);
}
return ValueInteger.get(ordinal);
}
case INTERVAL:
{
int ordinal = buff.get();
boolean negative = ordinal < 0;
if (negative) {
ordinal = ~ordinal;
}
return ValueInterval.from(IntervalQualifier.valueOf(ordinal), negative, readVarLong(buff), ordinal < 5 ? 0 : readVarLong(buff));
}
case REAL_0_1:
return ValueReal.ZERO;
case REAL_0_1 + 1:
return ValueReal.ONE;
case DOUBLE_0_1:
return ValueDouble.ZERO;
case DOUBLE_0_1 + 1:
return ValueDouble.ONE;
case DOUBLE:
return ValueDouble.get(Double.longBitsToDouble(Long.reverse(readVarLong(buff))));
case REAL:
return ValueReal.get(Float.intBitsToFloat(Integer.reverse(readVarInt(buff))));
case BLOB:
{
int smallLen = readVarInt(buff);
if (smallLen >= 0) {
byte[] small = Utils.newBytes(smallLen);
buff.get(small, 0, smallLen);
return ValueBlob.createSmall(small);
} else if (smallLen == -3) {
return new ValueBlob(readLobDataDatabase(buff), readVarLong(buff));
} else {
throw DbException.get(ErrorCode.FILE_CORRUPTED_1, "lob type: " + smallLen);
}
}
case CLOB:
{
int smallLen = readVarInt(buff);
if (smallLen >= 0) {
byte[] small = Utils.newBytes(smallLen);
buff.get(small, 0, smallLen);
return ValueClob.createSmall(small, readVarLong(buff));
} else if (smallLen == -3) {
return new ValueClob(readLobDataDatabase(buff), readVarLong(buff), readVarLong(buff));
} else {
throw DbException.get(ErrorCode.FILE_CORRUPTED_1, "lob type: " + smallLen);
}
}
case ARRAY:
{
if (columnType != null) {
TypeInfo elementType = (TypeInfo) columnType.getExtTypeInfo();
return ValueArray.get(elementType, readArrayElements(buff, elementType), provider);
}
return ValueArray.get(readArrayElements(buff, null), provider);
}
case ROW:
{
int len = readVarInt(buff);
Value[] list = new Value[len];
if (columnType != null) {
ExtTypeInfoRow extTypeInfoRow = (ExtTypeInfoRow) columnType.getExtTypeInfo();
Iterator<Entry<String, TypeInfo>> fields = extTypeInfoRow.getFields().iterator();
for (int i = 0; i < len; i++) {
list[i] = readValue(buff, fields.next().getValue());
}
return ValueRow.get(columnType, list);
}
TypeInfo[] columnTypes = rowFactory.getColumnTypes();
for (int i = 0; i < len; i++) {
list[i] = readValue(buff, columnTypes[i]);
}
return ValueRow.get(list);
}
case GEOMETRY:
return ValueGeometry.get(readVarBytes(buff));
case JSON:
return ValueJson.getInternal(readVarBytes(buff));
default:
if (type >= INT_0_15 && type < INT_0_15 + 16) {
int i = type - INT_0_15;
if (columnType != null && columnType.getValueType() == Value.ENUM) {
return ((ExtTypeInfoEnum) columnType.getExtTypeInfo()).getValue(i, provider);
}
return ValueInteger.get(i);
} else if (type >= BIGINT_0_7 && type < BIGINT_0_7 + 8) {
return ValueBigint.get(type - BIGINT_0_7);
} else if (type >= VARBINARY_0_31 && type < VARBINARY_0_31 + 32) {
int len = type - VARBINARY_0_31;
byte[] b = Utils.newBytes(len);
buff.get(b, 0, len);
return ValueVarbinary.getNoCopy(b);
} else if (type >= VARCHAR_0_31 && type < VARCHAR_0_31 + 32) {
return ValueVarchar.get(readString(buff, type - VARCHAR_0_31));
}
throw DbException.get(ErrorCode.FILE_CORRUPTED_1, "type: " + type);
}
}
use of org.h2.value.ValueClob in project 468H2Project by lukeunderwood42.
the class LobStorageMap method createClob.
@Override
public ValueClob createClob(Reader reader, long maxLength) {
MVStore.TxCounter txCounter = mvStore.registerVersionUsage();
try {
// we multiple by 3 here to get the worst-case size in bytes
if (maxLength != -1 && maxLength * 3 <= database.getMaxLengthInplaceLob()) {
char[] small = new char[(int) maxLength];
int len = IOUtils.readFully(reader, small, (int) maxLength);
if (len > maxLength) {
throw new IllegalStateException("len > blobLength, " + len + " > " + maxLength);
}
byte[] utf8 = new String(small, 0, len).getBytes(StandardCharsets.UTF_8);
if (utf8.length > database.getMaxLengthInplaceLob()) {
throw new IllegalStateException("len > maxinplace, " + utf8.length + " > " + database.getMaxLengthInplaceLob());
}
return ValueClob.createSmall(utf8, len);
}
if (maxLength < 0) {
maxLength = Long.MAX_VALUE;
}
CountingReaderInputStream in = new CountingReaderInputStream(reader, maxLength);
ValueBlob blob = createBlob(in);
LobData lobData = blob.getLobData();
return new ValueClob(lobData, blob.octetLength(), in.getLength());
} catch (IllegalStateException e) {
throw DbException.get(ErrorCode.OBJECT_CLOSED, e);
} catch (IOException e) {
throw DbException.convertIOException(e, null);
} finally {
mvStore.deregisterVersionUsage(txCounter);
}
}
use of org.h2.value.ValueClob in project h2database by h2database.
the class ValueClob method compare.
/**
* Compares two CLOB values directly.
*
* @param v1
* first CLOB value
* @param v2
* second CLOB value
* @return result of comparison
*/
private static int compare(ValueClob v1, ValueClob v2) {
long minPrec = Math.min(v1.charLength, v2.charLength);
try (Reader reader1 = v1.getReader();
Reader reader2 = v2.getReader()) {
char[] buf1 = new char[BLOCK_COMPARISON_SIZE];
char[] buf2 = new char[BLOCK_COMPARISON_SIZE];
for (; minPrec >= BLOCK_COMPARISON_SIZE; minPrec -= BLOCK_COMPARISON_SIZE) {
if (IOUtils.readFully(reader1, buf1, BLOCK_COMPARISON_SIZE) != BLOCK_COMPARISON_SIZE || IOUtils.readFully(reader2, buf2, BLOCK_COMPARISON_SIZE) != BLOCK_COMPARISON_SIZE) {
throw DbException.getUnsupportedException("Invalid LOB");
}
int cmp = Bits.compareNotNull(buf1, buf2);
if (cmp != 0) {
return cmp;
}
}
for (; ; ) {
int c1 = reader1.read(), c2 = reader2.read();
if (c1 < 0) {
return c2 < 0 ? 0 : -1;
}
if (c2 < 0) {
return 1;
}
if (c1 != c2) {
return c1 < c2 ? -1 : 1;
}
}
} catch (IOException ex) {
throw DbException.convert(ex);
}
}
use of org.h2.value.ValueClob in project h2database by h2database.
the class ValueClob method convertPrecision.
/**
* Convert the precision to the requested value.
*
* @param precision
* the new precision
* @return the truncated or this value
*/
ValueClob convertPrecision(long precision) {
if (this.charLength <= precision) {
return this;
}
ValueClob lob;
DataHandler handler = lobData.getDataHandler();
if (handler != null) {
lob = createTempClob(getReader(), precision, handler);
} else {
try {
lob = createSmall(IOUtils.readStringAndClose(getReader(), MathUtils.convertLongToInt(precision)));
} catch (IOException e) {
throw DbException.convertIOException(e, null);
}
}
return lob;
}
Aggregations