org.postgresql.core.v3.CopyDualImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdbc-yugabytedb Show documentation
Show all versions of jdbc-yugabytedb Show documentation
Java JDBC 4.2 (JRE 8+) driver for YugaByte SQL database
/*
* Copyright (c) 2016, PostgreSQL Global Development Group
* See the LICENSE file in the project root for more information.
*/
package org.postgresql.core.v3;
import org.postgresql.copy.CopyDual;
import org.postgresql.util.ByteStreamWriter;
import org.postgresql.util.PSQLException;
import org.checkerframework.checker.nullness.qual.Nullable;
import java.sql.SQLException;
import java.util.ArrayDeque;
import java.util.Queue;
public class CopyDualImpl extends CopyOperationImpl implements CopyDual {
private final Queue received = new ArrayDeque();
public void writeToCopy(byte[] data, int off, int siz) throws SQLException {
getQueryExecutor().writeToCopy(this, data, off, siz);
}
public void writeToCopy(ByteStreamWriter from) throws SQLException {
getQueryExecutor().writeToCopy(this, from);
}
public void flushCopy() throws SQLException {
getQueryExecutor().flushCopy(this);
}
public long endCopy() throws SQLException {
return getQueryExecutor().endCopy(this);
}
public byte @Nullable [] readFromCopy() throws SQLException {
return readFromCopy(true);
}
@Override
public byte @Nullable [] readFromCopy(boolean block) throws SQLException {
if (received.isEmpty()) {
getQueryExecutor().readFromCopy(this, block);
}
return received.poll();
}
@Override
public void handleCommandStatus(String status) throws PSQLException {
}
protected void handleCopydata(byte[] data) {
received.add(data);
}
}