ArrowFlightJdbcVectorSchemaRootResultSet.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.arrow.driver.jdbc;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.TimeZone;
import org.apache.arrow.driver.jdbc.utils.ConvertUtils;
import org.apache.arrow.util.AutoCloseables;
import org.apache.arrow.vector.VectorSchemaRoot;
import org.apache.arrow.vector.types.pojo.Schema;
import org.apache.calcite.avatica.AvaticaResultSet;
import org.apache.calcite.avatica.AvaticaResultSetMetaData;
import org.apache.calcite.avatica.AvaticaStatement;
import org.apache.calcite.avatica.ColumnMetaData;
import org.apache.calcite.avatica.Meta;
import org.apache.calcite.avatica.Meta.Frame;
import org.apache.calcite.avatica.Meta.Signature;
import org.apache.calcite.avatica.QueryState;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** {@link ResultSet} implementation used to access a {@link VectorSchemaRoot}. */
public class ArrowFlightJdbcVectorSchemaRootResultSet extends AvaticaResultSet {
private static final Logger LOGGER =
LoggerFactory.getLogger(ArrowFlightJdbcVectorSchemaRootResultSet.class);
VectorSchemaRoot vectorSchemaRoot;
ArrowFlightJdbcVectorSchemaRootResultSet(
final AvaticaStatement statement,
final QueryState state,
final Signature signature,
final ResultSetMetaData resultSetMetaData,
final TimeZone timeZone,
final Frame firstFrame)
throws SQLException {
super(statement, state, signature, resultSetMetaData, timeZone, firstFrame);
}
/**
* Instantiate a ResultSet backed up by given VectorSchemaRoot.
*
* @param vectorSchemaRoot root from which the ResultSet will access.
* @return a ResultSet which accesses the given VectorSchemaRoot
*/
public static ArrowFlightJdbcVectorSchemaRootResultSet fromVectorSchemaRoot(
final VectorSchemaRoot vectorSchemaRoot) throws SQLException {
// Similar to how org.apache.calcite.avatica.util.ArrayFactoryImpl does
final TimeZone timeZone = TimeZone.getDefault();
final QueryState state = new QueryState();
final Meta.Signature signature = ArrowFlightMetaImpl.newSignature(null, null, null);
final AvaticaResultSetMetaData resultSetMetaData =
new AvaticaResultSetMetaData(null, null, signature);
final ArrowFlightJdbcVectorSchemaRootResultSet resultSet =
new ArrowFlightJdbcVectorSchemaRootResultSet(
null, state, signature, resultSetMetaData, timeZone, null);
resultSet.populateData(vectorSchemaRoot);
return resultSet;
}
@Override
protected AvaticaResultSet execute() throws SQLException {
throw new RuntimeException("Can only execute with execute(VectorSchemaRoot)");
}
void populateData(final VectorSchemaRoot vectorSchemaRoot) {
populateData(vectorSchemaRoot, null);
}
void populateData(final VectorSchemaRoot vectorSchemaRoot, final Schema schema) {
Schema currentSchema = schema == null ? vectorSchemaRoot.getSchema() : schema;
final List<ColumnMetaData> columns =
ConvertUtils.convertArrowFieldsToColumnMetaDataList(currentSchema.getFields());
signature.columns.clear();
signature.columns.addAll(columns);
this.vectorSchemaRoot = vectorSchemaRoot;
execute2(new ArrowFlightJdbcCursor(vectorSchemaRoot), this.signature.columns);
}
@Override
protected void cancel() {
signature.columns.clear();
super.cancel();
try {
AutoCloseables.close(vectorSchemaRoot);
} catch (final Exception e) {
throw new RuntimeException(e);
}
}
@Override
public void close() {
final Set<Exception> exceptions = new HashSet<>();
try {
if (isClosed()) {
return;
}
} catch (final SQLException e) {
exceptions.add(e);
}
try {
AutoCloseables.close(vectorSchemaRoot);
} catch (final Exception e) {
exceptions.add(e);
}
if (!Objects.isNull(statement)) {
try {
super.close();
} catch (final Exception e) {
exceptions.add(e);
}
}
exceptions.parallelStream().forEach(e -> LOGGER.error(e.getMessage(), e));
exceptions.stream()
.findAny()
.ifPresent(
e -> {
throw new RuntimeException(e);
});
}
}