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

org.apache.arrow.adbc.driver.jdbc.JdbcBindReader Maven / Gradle / Ivy

/*
 * 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.adbc.driver.jdbc;

import java.io.IOException;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.apache.arrow.adapter.jdbc.ArrowVectorIterator;
import org.apache.arrow.adapter.jdbc.JdbcParameterBinder;
import org.apache.arrow.adapter.jdbc.JdbcToArrow;
import org.apache.arrow.adapter.jdbc.JdbcToArrowUtils;
import org.apache.arrow.memory.BufferAllocator;
import org.apache.arrow.vector.VectorSchemaRoot;
import org.apache.arrow.vector.VectorUnloader;
import org.apache.arrow.vector.ipc.ArrowReader;
import org.apache.arrow.vector.ipc.message.ArrowRecordBatch;
import org.apache.arrow.vector.types.pojo.Schema;
import org.checkerframework.checker.nullness.qual.Nullable;

/** An Arrow reader that binds parameters. */
final class JdbcBindReader extends ArrowReader {
  private final PreparedStatement statement;
  private final JdbcParameterBinder binder;
  private @Nullable ResultSet currentResultSet;
  private @Nullable ArrowVectorIterator currentSource;

  JdbcBindReader(
      BufferAllocator allocator, PreparedStatement statement, VectorSchemaRoot bindParameters) {
    super(allocator);
    this.statement = statement;
    this.binder = JdbcParameterBinder.builder(statement, bindParameters).bindAll().build();
  }

  @Override
  public boolean loadNextBatch() throws IOException {
    if (currentSource == null || !currentSource.hasNext()) {
      if (!advance()) {
        return false;
      }
    }
    if (currentSource == null) {
      throw new IllegalStateException("Source was null after advancing reader");
    }

    try (final VectorSchemaRoot root = currentSource.next()) {
      try (final ArrowRecordBatch batch = new VectorUnloader(root).getRecordBatch()) {
        loadRecordBatch(batch);
      }
    }
    return true;
  }

  @Override
  public long bytesRead() {
    return 0;
  }

  @Override
  protected void closeReadSource() throws IOException {
    if (currentResultSet != null) {
      try {
        // Do not close PreparedStatement so we can reuse it
        currentResultSet.close();
      } catch (SQLException e) {
        throw new IOException(e);
      }
    }
  }

  @Override
  protected Schema readSchema() throws IOException {
    try {
      if (!advance()) {
        throw new IOException("Parameter set is empty!");
      }
      if (currentResultSet == null) {
        throw new IllegalStateException("Driver returned null result set");
      }
      return JdbcToArrowUtils.jdbcToArrowSchema(
          currentResultSet.getMetaData(), JdbcToArrowUtils.getUtcCalendar());
    } catch (SQLException e) {
      throw new IOException(e);
    }
  }

  private boolean advance() throws IOException {
    try {
      if (binder.next()) {
        if (currentSource != null) {
          currentSource.close();
        }
        if (currentResultSet != null) {
          currentResultSet.close();
        }
        currentResultSet = statement.executeQuery();
        currentSource = JdbcToArrow.sqlToArrowVectorIterator(currentResultSet, allocator);
        return true;
      }
    } catch (SQLException e) {
      throw new IOException(e);
    }
    return false;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy