Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.clickhouse.jdbc.ClickHouseResultSet Maven / Gradle / Ivy
package com.clickhouse.jdbc;
import java.io.InputStream;
import java.io.Reader;
import java.io.UncheckedIOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.net.MalformedURLException;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.NClob;
import java.sql.Ref;
import java.sql.ResultSetMetaData;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.util.Calendar;
import java.util.Collections;
import java.util.GregorianCalendar;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.TimeZone;
import com.clickhouse.client.ClickHouseColumn;
import com.clickhouse.client.ClickHouseConfig;
import com.clickhouse.client.ClickHouseRecord;
import com.clickhouse.client.ClickHouseResponse;
import com.clickhouse.client.ClickHouseUtils;
import com.clickhouse.client.ClickHouseValue;
public class ClickHouseResultSet extends AbstractResultSet {
private ClickHouseRecord currentRow;
private Iterator rowCursor;
private int rowNumber;
private int lastReadColumn; // 1-based
private int fetchSize;
protected final String database;
protected final String table;
protected final ClickHouseStatement statement;
protected final ClickHouseResponse response;
protected final ClickHouseConfig config;
protected final boolean wrapObject;
protected final List columns;
protected final Calendar defaultCalendar;
protected final int maxRows;
protected final ClickHouseResultSetMetaData metaData;
protected final Map> defaultTypeMap;
// only for testing purpose
ClickHouseResultSet(String database, String table, ClickHouseResponse response) {
this.database = database;
this.table = table;
this.statement = null;
this.response = response;
this.config = null;
this.wrapObject = false;
this.defaultCalendar = new GregorianCalendar(TimeZone.getTimeZone("UTC"));
this.defaultTypeMap = Collections.emptyMap();
this.currentRow = null;
try {
this.columns = response.getColumns();
this.metaData = new ClickHouseResultSetMetaData(database, table, columns, defaultTypeMap);
this.rowCursor = response.records().iterator();
} catch (Exception e) {
throw new IllegalStateException(e);
}
this.rowNumber = 0; // before the first row
this.lastReadColumn = 0;
this.maxRows = 0;
this.fetchSize = 0;
}
public ClickHouseResultSet(String database, String table, ClickHouseStatement statement,
ClickHouseResponse response) throws SQLException {
if (database == null || table == null || statement == null || response == null) {
throw new IllegalArgumentException("Non-null database, table, statement, and response are required");
}
this.database = database;
this.table = table;
this.statement = statement;
this.response = response;
ClickHouseConnection conn = statement.getConnection();
this.config = statement.getConfig();
this.wrapObject = statement.getConnection().getJdbcConfig().useWrapperObject();
this.defaultCalendar = conn.getDefaultCalendar();
Map> typeMap = conn.getTypeMap();
this.defaultTypeMap = typeMap != null && !typeMap.isEmpty() ? Collections.unmodifiableMap(typeMap)
: Collections.emptyMap();
this.currentRow = null;
try {
this.columns = response.getColumns();
this.metaData = new ClickHouseResultSetMetaData(database, table, columns, defaultTypeMap);
this.rowCursor = response.records().iterator();
} catch (Exception e) {
throw SqlExceptionUtils.handle(e);
}
this.rowNumber = 0; // before the first row
this.lastReadColumn = 0;
this.maxRows = statement.getMaxRows();
this.fetchSize = statement.getFetchSize();
}
protected void ensureRead(int columnIndex) throws SQLException {
ensureOpen();
if (currentRow == null) {
throw new SQLException("No data available for reading", SqlExceptionUtils.SQL_STATE_NO_DATA);
} else if (columnIndex < 1 || columnIndex > columns.size()) {
throw SqlExceptionUtils.clientError(ClickHouseUtils
.format("Column index must between 1 and %d but we got %d", columns.size(), columnIndex));
}
}
// this method is mocked in a test, do not make it final :-)
protected List getColumns() {
return metaData.getColumns();
}
protected ClickHouseValue getValue(int columnIndex) throws SQLException {
ensureRead(columnIndex);
ClickHouseValue v = currentRow.getValue(columnIndex - 1);
lastReadColumn = columnIndex;
return v;
}
/**
* Check if there is another row.
*
* @return {@code true} if this result set has another row after the current
* cursor position, {@code false} else
* @throws SQLException if something goes wrong
*/
protected boolean hasNext() throws SQLException {
try {
return (maxRows == 0 || rowNumber < maxRows) && rowCursor.hasNext();
} catch (Exception e) {
throw SqlExceptionUtils.handle(e);
}
}
public BigInteger getBigInteger(int columnIndex) throws SQLException {
return getValue(columnIndex).asBigInteger();
}
public BigInteger getBigInteger(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asBigInteger();
}
public String[] getColumnNames() {
String[] columnNames = new String[columns.size()];
int index = 0;
for (ClickHouseColumn c : getColumns()) {
columnNames[index++] = c.getColumnName();
}
return columnNames;
}
@Override
public void close() throws SQLException {
this.response.close();
}
@Override
public int findColumn(String columnLabel) throws SQLException {
ensureOpen();
if (columnLabel == null || columnLabel.isEmpty()) {
throw SqlExceptionUtils.clientError("Non-empty column label is required");
}
int index = 0;
for (ClickHouseColumn c : columns) {
index++;
if (columnLabel.equalsIgnoreCase(c.getColumnName())) {
return index;
}
}
throw SqlExceptionUtils.clientError(
ClickHouseUtils.format("Column [%s] does not exist in %d columns", columnLabel, columns.size()));
}
@Override
public Array getArray(int columnIndex) throws SQLException {
return new ClickHouseArray(this, columnIndex);
}
@Override
public Array getArray(String columnLabel) throws SQLException {
return new ClickHouseArray(this, findColumn(columnLabel));
}
@Override
public InputStream getAsciiStream(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public InputStream getAsciiStream(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
return getValue(columnIndex).asBigDecimal();
}
@Override
public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asBigDecimal();
}
@Override
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
return getValue(columnIndex).asBigDecimal(scale);
}
@Override
public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
return getValue(findColumn(columnLabel)).asBigDecimal(scale);
}
@Override
public InputStream getBinaryStream(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public InputStream getBinaryStream(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Blob getBlob(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Blob getBlob(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean getBoolean(int columnIndex) throws SQLException {
return getValue(columnIndex).asBoolean();
}
@Override
public boolean getBoolean(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asBoolean();
}
@Override
public byte getByte(int columnIndex) throws SQLException {
return getValue(columnIndex).asByte();
}
@Override
public byte getByte(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asByte();
}
@Override
public byte[] getBytes(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public byte[] getBytes(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Reader getCharacterStream(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Reader getCharacterStream(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Clob getClob(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Clob getClob(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public String getCursorName() throws SQLException {
ensureOpen();
// TODO Auto-generated method stub
return null;
}
@Override
public Date getDate(int columnIndex) throws SQLException {
return getDate(columnIndex, null);
}
@Override
public Date getDate(String columnLabel) throws SQLException {
return getDate(findColumn(columnLabel), null);
}
@Override
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
ClickHouseValue value = getValue(columnIndex);
if (value == null) {
return null;
}
LocalDate d = value.asDate();
Calendar c = (Calendar) (cal != null ? cal : defaultCalendar).clone();
c.clear();
c.set(d.getYear(), d.getMonthValue() - 1, d.getDayOfMonth(), 0, 0, 0);
return new Date(c.getTimeInMillis());
}
@Override
public Date getDate(String columnLabel, Calendar cal) throws SQLException {
return getDate(findColumn(columnLabel), cal);
}
@Override
public double getDouble(int columnIndex) throws SQLException {
return getValue(columnIndex).asDouble();
}
@Override
public double getDouble(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asDouble();
}
@Override
public int getFetchSize() throws SQLException {
ensureOpen();
return fetchSize;
}
@Override
public float getFloat(int columnIndex) throws SQLException {
return getValue(columnIndex).asFloat();
}
@Override
public float getFloat(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asFloat();
}
@Override
public int getInt(int columnIndex) throws SQLException {
return getValue(columnIndex).asInteger();
}
@Override
public int getInt(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asInteger();
}
@Override
public long getLong(int columnIndex) throws SQLException {
return getValue(columnIndex).asLong();
}
@Override
public long getLong(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asLong();
}
@Override
public ResultSetMetaData getMetaData() throws SQLException {
ensureOpen();
return metaData;
}
@Override
public Reader getNCharacterStream(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Reader getNCharacterStream(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public NClob getNClob(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public NClob getNClob(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public String getNString(int columnIndex) throws SQLException {
return getValue(columnIndex).asString();
}
@Override
public String getNString(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asString();
}
@Override
public Object getObject(int columnIndex) throws SQLException {
return getObject(columnIndex, defaultTypeMap);
}
@Override
public Object getObject(String columnLabel) throws SQLException {
return getObject(findColumn(columnLabel), defaultTypeMap);
}
@Override
public Object getObject(int columnIndex, Map> map) throws SQLException {
if (map == null) {
map = defaultTypeMap;
}
ClickHouseValue v = getValue(columnIndex);
ClickHouseColumn c = columns.get(columnIndex - 1);
Class> javaType = null;
if (!map.isEmpty() && (javaType = map.get(c.getOriginalTypeName())) == null) {
javaType = map.get(c.getDataType().name());
}
Object value;
if (!wrapObject) {
value = javaType != null ? v.asObject(javaType) : v.asObject();
} else if (c.isArray()) {
value = new ClickHouseArray(this, columnIndex);
} else if (c.isTuple() || c.isNested()) {
value = new ClickHouseStruct(c.getDataType().name(), v.asArray());
} else {
value = javaType != null ? v.asObject(javaType) : v.asObject();
}
return value;
}
@Override
public Object getObject(String columnLabel, Map> map) throws SQLException {
return getObject(findColumn(columnLabel), map);
}
@Override
public T getObject(int columnIndex, Class type) throws SQLException {
return getValue(columnIndex).asObject(type);
}
@Override
public T getObject(String columnLabel, Class type) throws SQLException {
return getValue(findColumn(columnLabel)).asObject(type);
}
@Override
public Ref getRef(int columnIndex) throws SQLException {
ensureOpen();
throw SqlExceptionUtils.unsupportedError("getRef not implemented");
}
@Override
public Ref getRef(String columnLabel) throws SQLException {
return getRef(findColumn(columnLabel));
}
@Override
public int getRow() throws SQLException {
ensureOpen();
return rowNumber;
}
@Override
public RowId getRowId(int columnIndex) throws SQLException {
ensureOpen();
throw SqlExceptionUtils.unsupportedError("getRowId not implemented");
}
@Override
public RowId getRowId(String columnLabel) throws SQLException {
return getRowId(findColumn(columnLabel));
}
@Override
public SQLXML getSQLXML(int columnIndex) throws SQLException {
ensureOpen();
throw SqlExceptionUtils.unsupportedError("getSQLXML not implemented");
}
@Override
public SQLXML getSQLXML(String columnLabel) throws SQLException {
return getSQLXML(findColumn(columnLabel));
}
@Override
public short getShort(int columnIndex) throws SQLException {
return getValue(columnIndex).asShort();
}
@Override
public short getShort(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asShort();
}
@Override
public Statement getStatement() throws SQLException {
ensureOpen();
return statement;
}
@Override
public String getString(int columnIndex) throws SQLException {
return getValue(columnIndex).asString();
}
@Override
public String getString(String columnLabel) throws SQLException {
return getValue(findColumn(columnLabel)).asString();
}
@Override
public Time getTime(int columnIndex) throws SQLException {
return getTime(columnIndex, null);
}
@Override
public Time getTime(String columnLabel) throws SQLException {
return getTime(findColumn(columnLabel), null);
}
@Override
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
ClickHouseValue value = getValue(columnIndex);
if (value == null) {
return null;
}
// unfortunately java.sql.Time does not support fractional seconds
LocalTime lt = value.asTime();
Calendar c = (Calendar) (cal != null ? cal : defaultCalendar).clone();
c.clear();
c.set(1970, 0, 1, lt.getHour(), lt.getMinute(), lt.getSecond());
return new Time(c.getTimeInMillis());
}
@Override
public Time getTime(String columnLabel, Calendar cal) throws SQLException {
return getTime(findColumn(columnLabel), cal);
}
@Override
public Timestamp getTimestamp(int columnIndex) throws SQLException {
return getTimestamp(columnIndex, null);
}
@Override
public Timestamp getTimestamp(String columnLabel) throws SQLException {
return getTimestamp(findColumn(columnLabel), null);
}
@Override
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
ClickHouseValue value = getValue(columnIndex);
if (value == null) {
return null;
}
ClickHouseColumn column = columns.get(columnIndex - 1);
TimeZone tz = column.getTimeZone();
LocalDateTime dt = tz == null ? value.asDateTime(column.getScale())
: value.asOffsetDateTime(column.getScale()).toLocalDateTime();
Calendar c = (Calendar) (cal != null ? cal : defaultCalendar).clone();
c.set(dt.getYear(), dt.getMonthValue() - 1, dt.getDayOfMonth(), dt.getHour(), dt.getMinute(),
dt.getSecond());
Timestamp timestamp = new Timestamp(c.getTimeInMillis());
timestamp.setNanos(dt.getNano());
return timestamp;
}
@Override
public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
return getTimestamp(findColumn(columnLabel), cal);
}
@Override
public URL getURL(int columnIndex) throws SQLException {
try {
return new URL(getString(columnIndex));
} catch (MalformedURLException e) {
throw SqlExceptionUtils.clientError(e);
}
}
@Override
public URL getURL(String columnLabel) throws SQLException {
try {
return new URL(getString(columnLabel));
} catch (MalformedURLException e) {
throw SqlExceptionUtils.clientError(e);
}
}
@Override
public InputStream getUnicodeStream(int columnIndex) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public InputStream getUnicodeStream(String columnLabel) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean isAfterLast() throws SQLException {
ensureOpen();
return currentRow == null && !hasNext();
}
@Override
public boolean isBeforeFirst() throws SQLException {
ensureOpen();
return getRow() == 0;
}
@Override
public boolean isClosed() throws SQLException {
return response.isClosed();
}
@Override
public boolean isFirst() throws SQLException {
ensureOpen();
return getRow() == 1;
}
@Override
public boolean isLast() throws SQLException {
ensureOpen();
return currentRow != null && !hasNext();
}
@Override
public boolean next() throws SQLException {
ensureOpen();
lastReadColumn = 0;
boolean hasNext = true;
if (hasNext()) {
try {
currentRow = rowCursor.next();
} catch (UncheckedIOException e) {
throw SqlExceptionUtils.handle(e);
}
rowNumber++;
} else {
currentRow = null;
hasNext = false;
}
return hasNext;
}
@Override
public void setFetchSize(int rows) throws SQLException {
ensureOpen();
this.fetchSize = rows;
}
@Override
public boolean wasNull() throws SQLException {
ensureOpen();
try {
return currentRow != null && lastReadColumn > 0 && getColumns().get(lastReadColumn - 1).isNullable()
&& currentRow.getValue(lastReadColumn - 1).isNullOrEmpty();
} catch (Exception e) {
throw SqlExceptionUtils.handle(e);
}
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException {
return iface == ClickHouseResponse.class || super.isWrapperFor(iface);
}
@Override
public T unwrap(Class iface) throws SQLException {
return iface == ClickHouseResponse.class ? iface.cast(response) : super.unwrap(iface);
}
}