Package org.postgresql.core.v3
Class CopyDualImpl
java.lang.Object
org.postgresql.core.v3.CopyOperationImpl
org.postgresql.core.v3.CopyDualImpl
- All Implemented Interfaces:
CopyDual,CopyIn,CopyOperation,CopyOut
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongendCopy()Finishes copy operation successfully.voidForce any buffered output to be sent over the network to the backend.voidhandleCommandStatus(String status) protected voidhandleCopydata(byte[] data) Consume received copy data.byte @Nullable []Blocks wait for a row of data to be received from server on an active copy operation.byte @Nullable []readFromCopy(boolean block) Wait for a row of data to be received from server on an active copy operation.voidwriteToCopy(byte[] data, int off, int siz) Writes specified part of given byte array to an open and writable copy operation.voidwriteToCopy(ByteStreamWriter from) Writes a ByteStreamWriter to an open and writable copy operation.Methods inherited from class org.postgresql.core.v3.CopyOperationImpl
cancelCopy, getFieldCount, getFieldFormat, getFormat, getHandledRowCount, getQueryExecutor, isActiveMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.postgresql.copy.CopyOperation
cancelCopy, getFieldCount, getFieldFormat, getFormat, getHandledRowCount, isActive
-
Constructor Details
-
CopyDualImpl
public CopyDualImpl()
-
-
Method Details
-
writeToCopy
Description copied from interface:CopyInWrites specified part of given byte array to an open and writable copy operation.- Specified by:
writeToCopyin interfaceCopyIn- Parameters:
data- array of bytes to writeoff- offset of first byte to write (normally zero)siz- number of bytes to write (normally buf.length)- Throws:
SQLException- if the operation fails
-
writeToCopy
Description copied from interface:CopyInWrites a ByteStreamWriter to an open and writable copy operation.- Specified by:
writeToCopyin interfaceCopyIn- Parameters:
from- the source of bytes, e.g. a ByteBufferByteStreamWriter- Throws:
SQLException- if the operation fails
-
flushCopy
Description copied from interface:CopyInForce any buffered output to be sent over the network to the backend. In general this is a useless operation as it will get pushed over in due time or when endCopy is called. Some specific modified server versions (Truviso) want this data sooner. If you are unsure if you need to use this method, don't.- Specified by:
flushCopyin interfaceCopyIn- Throws:
SQLException- if the operation fails.
-
endCopy
Description copied from interface:CopyInFinishes copy operation successfully.- Specified by:
endCopyin interfaceCopyIn- Returns:
- number of updated rows for server 8.2 or newer (see getHandledRowCount())
- Throws:
SQLException- if the operation fails.
-
readFromCopy
Description copied from interface:CopyOutBlocks wait for a row of data to be received from server on an active copy operation.- Specified by:
readFromCopyin interfaceCopyOut- Returns:
- byte array received from server, null if server complete copy operation
- Throws:
SQLException- if something goes wrong for example socket timeout
-
readFromCopy
Description copied from interface:CopyOutWait for a row of data to be received from server on an active copy operation.- Specified by:
readFromCopyin interfaceCopyOut- Parameters:
block-trueif need wait data from server otherwisefalseand will read pending message from server- Returns:
- byte array received from server, if pending message from server absent and use no blocking mode return null
- Throws:
SQLException- if something goes wrong for example socket timeout
-
handleCommandStatus
- Overrides:
handleCommandStatusin classCopyOperationImpl- Throws:
PSQLException
-
handleCopydata
protected void handleCopydata(byte[] data) Description copied from class:CopyOperationImplConsume received copy data.- Specified by:
handleCopydatain classCopyOperationImpl- Parameters:
data- data that was receive by copy protocol
-