use of org.h2.value.ValueClob in project h2database by h2database.
the class ValueClob method createTempClob.
/**
* Create a temporary CLOB value from a stream.
*
* @param in
* the reader
* @param length
* the number of characters to read, or -1 for no limit
* @param handler
* the data handler
* @return the lob value
*/
public static ValueClob createTempClob(Reader in, long length, DataHandler handler) {
if (length >= 0) {
// blocks the network level
try {
in = new RangeReader(in, 0, length);
} catch (IOException e) {
throw DbException.convert(e);
}
}
BufferedReader reader;
if (in instanceof BufferedReader) {
reader = (BufferedReader) in;
} else {
reader = new BufferedReader(in, Constants.IO_BUFFER_SIZE);
}
try {
long remaining = Long.MAX_VALUE;
if (length >= 0 && length < remaining) {
remaining = length;
}
int len = ValueLob.getBufferSize(handler, remaining);
char[] buff;
if (len >= Integer.MAX_VALUE) {
String data = IOUtils.readStringAndClose(reader, -1);
buff = data.toCharArray();
len = buff.length;
} else {
buff = new char[len];
reader.mark(len);
len = IOUtils.readFully(reader, buff, len);
}
if (len <= handler.getMaxLengthInplaceLob()) {
return ValueClob.createSmall(new String(buff, 0, len));
}
reader.reset();
return createTemporary(handler, reader, remaining);
} catch (IOException e) {
throw DbException.convertIOException(e, null);
}
}
use of org.h2.value.ValueClob in project h2database by h2database.
the class ValueDataType method write.
@Override
public void write(WriteBuffer buff, Value v) {
if (v == ValueNull.INSTANCE) {
buff.put((byte) 0);
return;
}
int type = v.getValueType();
switch(type) {
case Value.BOOLEAN:
buff.put(v.getBoolean() ? BOOLEAN_TRUE : BOOLEAN_FALSE);
break;
case Value.TINYINT:
buff.put(TINYINT).put(v.getByte());
break;
case Value.SMALLINT:
buff.put(SMALLINT).putShort(v.getShort());
break;
case Value.ENUM:
case Value.INTEGER:
{
int x = v.getInt();
if (x < 0) {
buff.put(INT_NEG).putVarInt(-x);
} else if (x < 16) {
buff.put((byte) (INT_0_15 + x));
} else {
buff.put(type == Value.INTEGER ? INTEGER : ENUM).putVarInt(x);
}
break;
}
case Value.BIGINT:
writeLong(buff, v.getLong());
break;
case Value.NUMERIC:
{
BigDecimal x = v.getBigDecimal();
if (BigDecimal.ZERO.equals(x)) {
buff.put(NUMERIC_0_1);
} else if (BigDecimal.ONE.equals(x)) {
buff.put((byte) (NUMERIC_0_1 + 1));
} else {
int scale = x.scale();
BigInteger b = x.unscaledValue();
int bits = b.bitLength();
if (bits <= 63) {
if (scale == 0) {
buff.put(NUMERIC_SMALL_0).putVarLong(b.longValue());
} else {
buff.put(NUMERIC_SMALL).putVarInt(scale).putVarLong(b.longValue());
}
} else {
byte[] bytes = b.toByteArray();
buff.put(NUMERIC).putVarInt(scale).putVarInt(bytes.length).put(bytes);
}
}
break;
}
case Value.DECFLOAT:
{
ValueDecfloat d = (ValueDecfloat) v;
buff.put((byte) DECFLOAT);
if (d.isFinite()) {
BigDecimal x = d.getBigDecimal();
byte[] bytes = x.unscaledValue().toByteArray();
buff.putVarInt(x.scale()).putVarInt(bytes.length).put(bytes);
} else {
int c;
if (d == ValueDecfloat.NEGATIVE_INFINITY) {
c = -3;
} else if (d == ValueDecfloat.POSITIVE_INFINITY) {
c = -2;
} else {
c = -1;
}
buff.putVarInt(0).putVarInt(c);
}
break;
}
case Value.TIME:
writeTimestampTime(buff.put(TIME), ((ValueTime) v).getNanos());
break;
case Value.TIME_TZ:
{
ValueTimeTimeZone t = (ValueTimeTimeZone) v;
long nanosOfDay = t.getNanos();
buff.put((byte) TIME_TZ).putVarInt((int) (nanosOfDay / DateTimeUtils.NANOS_PER_SECOND)).putVarInt((int) (nanosOfDay % DateTimeUtils.NANOS_PER_SECOND));
writeTimeZone(buff, t.getTimeZoneOffsetSeconds());
break;
}
case Value.DATE:
buff.put(DATE).putVarLong(((ValueDate) v).getDateValue());
break;
case Value.TIMESTAMP:
{
ValueTimestamp ts = (ValueTimestamp) v;
buff.put(TIMESTAMP).putVarLong(ts.getDateValue());
writeTimestampTime(buff, ts.getTimeNanos());
break;
}
case Value.TIMESTAMP_TZ:
{
ValueTimestampTimeZone ts = (ValueTimestampTimeZone) v;
buff.put((byte) TIMESTAMP_TZ).putVarLong(ts.getDateValue());
writeTimestampTime(buff, ts.getTimeNanos());
writeTimeZone(buff, ts.getTimeZoneOffsetSeconds());
break;
}
case Value.JAVA_OBJECT:
writeBinary(JAVA_OBJECT, buff, v);
break;
case Value.VARBINARY:
{
byte[] b = v.getBytesNoCopy();
int len = b.length;
if (len < 32) {
buff.put((byte) (VARBINARY_0_31 + len)).put(b);
} else {
buff.put(VARBINARY).putVarInt(len).put(b);
}
break;
}
case Value.BINARY:
writeBinary((byte) BINARY, buff, v);
break;
case Value.UUID:
{
ValueUuid uuid = (ValueUuid) v;
buff.put(UUID).putLong(uuid.getHigh()).putLong(uuid.getLow());
break;
}
case Value.VARCHAR:
{
String s = v.getString();
int len = s.length();
if (len < 32) {
buff.put((byte) (VARCHAR_0_31 + len)).putStringData(s, len);
} else {
writeString(buff.put(VARCHAR), s);
}
break;
}
case Value.VARCHAR_IGNORECASE:
writeString(buff.put(VARCHAR_IGNORECASE), v.getString());
break;
case Value.CHAR:
writeString(buff.put(CHAR), v.getString());
break;
case Value.DOUBLE:
{
double x = v.getDouble();
if (x == 1.0d) {
buff.put((byte) (DOUBLE_0_1 + 1));
} else {
long d = Double.doubleToLongBits(x);
if (d == ValueDouble.ZERO_BITS) {
buff.put(DOUBLE_0_1);
} else {
buff.put(DOUBLE).putVarLong(Long.reverse(d));
}
}
break;
}
case Value.REAL:
{
float x = v.getFloat();
if (x == 1.0f) {
buff.put((byte) (REAL_0_1 + 1));
} else {
int f = Float.floatToIntBits(x);
if (f == ValueReal.ZERO_BITS) {
buff.put(REAL_0_1);
} else {
buff.put(REAL).putVarInt(Integer.reverse(f));
}
}
break;
}
case Value.BLOB:
{
buff.put(BLOB);
ValueBlob lob = (ValueBlob) v;
LobData lobData = lob.getLobData();
if (lobData instanceof LobDataDatabase) {
LobDataDatabase lobDataDatabase = (LobDataDatabase) lobData;
buff.putVarInt(-3).putVarInt(lobDataDatabase.getTableId()).putVarLong(lobDataDatabase.getLobId()).putVarLong(lob.octetLength());
} else {
byte[] small = ((LobDataInMemory) lobData).getSmall();
buff.putVarInt(small.length).put(small);
}
break;
}
case Value.CLOB:
{
buff.put(CLOB);
ValueClob lob = (ValueClob) v;
LobData lobData = lob.getLobData();
if (lobData instanceof LobDataDatabase) {
LobDataDatabase lobDataDatabase = (LobDataDatabase) lobData;
buff.putVarInt(-3).putVarInt(lobDataDatabase.getTableId()).putVarLong(lobDataDatabase.getLobId()).putVarLong(lob.octetLength()).putVarLong(lob.charLength());
} else {
byte[] small = ((LobDataInMemory) lobData).getSmall();
buff.putVarInt(small.length).put(small).putVarLong(lob.charLength());
}
break;
}
case Value.ARRAY:
case Value.ROW:
{
Value[] list = ((ValueCollectionBase) v).getList();
buff.put(type == Value.ARRAY ? ARRAY : ROW).putVarInt(list.length);
for (Value x : list) {
write(buff, x);
}
break;
}
case Value.GEOMETRY:
writeBinary(GEOMETRY, buff, v);
break;
case Value.INTERVAL_YEAR:
case Value.INTERVAL_MONTH:
case Value.INTERVAL_DAY:
case Value.INTERVAL_HOUR:
case Value.INTERVAL_MINUTE:
{
ValueInterval interval = (ValueInterval) v;
int ordinal = type - Value.INTERVAL_YEAR;
if (interval.isNegative()) {
ordinal = ~ordinal;
}
buff.put(INTERVAL).put((byte) ordinal).putVarLong(interval.getLeading());
break;
}
case Value.INTERVAL_SECOND:
case Value.INTERVAL_YEAR_TO_MONTH:
case Value.INTERVAL_DAY_TO_HOUR:
case Value.INTERVAL_DAY_TO_MINUTE:
case Value.INTERVAL_DAY_TO_SECOND:
case Value.INTERVAL_HOUR_TO_MINUTE:
case Value.INTERVAL_HOUR_TO_SECOND:
case Value.INTERVAL_MINUTE_TO_SECOND:
{
ValueInterval interval = (ValueInterval) v;
int ordinal = type - Value.INTERVAL_YEAR;
if (interval.isNegative()) {
ordinal = ~ordinal;
}
buff.put(INTERVAL).put((byte) ordinal).putVarLong(interval.getLeading()).putVarLong(interval.getRemaining());
break;
}
case Value.JSON:
writeBinary((byte) JSON, buff, v);
break;
default:
throw DbException.getInternalError("type=" + v.getValueType());
}
}
use of org.h2.value.ValueClob in project SpringStudy by myounghaklee.
the class ValueClob method createTemporary.
/**
* Create a CLOB in a temporary file.
*/
private static ValueClob createTemporary(DataHandler handler, Reader in, long remaining) throws IOException {
String fileName = ValueLob.createTempLobFileName(handler);
FileStore tempFile = handler.openFile(fileName, "rw", false);
tempFile.autoDelete();
long octetLength = 0L, charLength = 0L;
try (FileStoreOutputStream out = new FileStoreOutputStream(tempFile, null)) {
char[] buff = new char[Constants.IO_BUFFER_SIZE];
while (true) {
int len = ValueLob.getBufferSize(handler, remaining);
len = IOUtils.readFully(in, buff, len);
if (len == 0) {
break;
}
// TODO reduce memory allocation
byte[] data = new String(buff, 0, len).getBytes(StandardCharsets.UTF_8);
out.write(data);
octetLength += data.length;
charLength += len;
}
}
return new ValueClob(new LobDataFile(handler, fileName, tempFile), octetLength, charLength);
}
use of org.h2.value.ValueClob in project SpringStudy by myounghaklee.
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;
}
use of org.h2.value.ValueClob in project SpringStudy by myounghaklee.
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);
}
Aggregations