Package org.apache.sshd.scp.common
Interface ScpTargetStreamResolver
-
- All Known Implementing Classes:
LocalFileScpTargetStreamResolver
public interface ScpTargetStreamResolver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidcloseTargetStream(Session session, java.lang.String name, long length, java.util.Set<java.nio.file.attribute.PosixFilePermission> perms, java.io.OutputStream stream)Called when target stream received fromresolveTargetStreamcall is no longer needed since copy is successfully completed.java.nio.file.PathgetEventListenerFilePath()voidpostProcessReceivedData(java.lang.String name, boolean preserve, java.util.Set<java.nio.file.attribute.PosixFilePermission> perms, ScpTimestampCommandDetails time)Called after successful reception of the data (and after closing the stream)java.io.OutputStreamresolveTargetStream(Session session, java.lang.String name, long length, java.util.Set<java.nio.file.attribute.PosixFilePermission> perms, java.nio.file.OpenOption... options)Called when receiving a file in order to obtain an output stream for the incoming data
-
-
-
Method Detail
-
resolveTargetStream
java.io.OutputStream resolveTargetStream(Session session, java.lang.String name, long length, java.util.Set<java.nio.file.attribute.PosixFilePermission> perms, java.nio.file.OpenOption... options) throws java.io.IOException
Called when receiving a file in order to obtain an output stream for the incoming data- Parameters:
session- The associatedSessionname- File name as received from remote sitelength- Number of bytes expected to receiveperms- TheSetofPosixFilePermissionexpectedoptions- TheOpenOptions to use - may benull/empty- Returns:
- The
OutputStreamto write the incoming data - Throws:
java.io.IOException- If failed to create the stream
-
closeTargetStream
default void closeTargetStream(Session session, java.lang.String name, long length, java.util.Set<java.nio.file.attribute.PosixFilePermission> perms, java.io.OutputStream stream) throws java.io.IOException
Called when target stream received fromresolveTargetStreamcall is no longer needed since copy is successfully completed.- Parameters:
session- The associatedSessionname- File name as received from remote sitelength- Number of bytes expected to receiveperms- TheSetofPosixFilePermissionexpectedstream- TheOutputStreamto close- Throws:
java.io.IOException- If failed to close the stream - Note: stream will be closed regardless of whether this method throws an exception or not.
-
getEventListenerFilePath
java.nio.file.Path getEventListenerFilePath()
- Returns:
- The
Pathto use when invoking theScpTransferEventListener
-
postProcessReceivedData
void postProcessReceivedData(java.lang.String name, boolean preserve, java.util.Set<java.nio.file.attribute.PosixFilePermission> perms, ScpTimestampCommandDetails time) throws java.io.IOExceptionCalled after successful reception of the data (and after closing the stream)- Parameters:
name- File name as received from remote sitepreserve- Iftruethen the resolver should attempt to preserve the specified permissions and timestampperms- TheSetofPosixFilePermissionexpectedtime- If notnullthen the required timestamp(s) on the incoming data- Throws:
java.io.IOException- If failed to post-process the incoming data
-
-