This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git.
from 9099a2d Tune down the output when downloading sources / javadocs for
dependencies
new e85b67e [SSHD-979] Improve SFTP streaming
new 3d28d18 [SSHD-980] Make the SFTP Api cleaner by moving the
implementation classes into the non public package
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../common/channel/ChannelAsyncOutputStream.java | 143 ++++++----
.../common/session/helpers/AbstractSession.java | 4 +-
sshd-sftp/pom.xml | 22 ++
.../sshd/client/subsystem/sftp/RawSftpClient.java | 9 +
.../sshd/client/subsystem/sftp/SftpClient.java | 90 ++----
.../helpers/AbstractSftpClientExtension.java | 5 +
.../client/subsystem/sftp/fs/SftpFileSystem.java | 15 +
.../subsystem/sftp/fs/SftpFileSystemChannel.java | 41 ---
.../subsystem/sftp/fs/SftpFileSystemProvider.java | 46 ++-
.../subsystem/sftp/impl/AbstractSftpClient.java | 95 ++++++-
.../subsystem/sftp/impl/DefaultSftpClient.java | 187 +++++++-----
.../sftp/{ => impl}/SftpDirEntryIterator.java | 3 +-
.../subsystem/sftp/impl/SftpInputStreamAsync.java | 312 +++++++++++++++++++++
.../sftp/{ => impl}/SftpIterableDirEntry.java | 3 +-
.../subsystem/sftp/impl/SftpOutputStreamAsync.java | 201 +++++++++++++
.../sftp/{ => impl}/SftpRemotePathChannel.java | 71 ++---
.../sftp/{ => impl}/StfpIterableDirHandle.java | 3 +-
.../subsystem/sftp/SftpInputStreamWithChannel.java | 0
.../sftp/SftpOutputStreamWithChannel.java | 0
.../client/subsystem/sftp/SftpPerformanceTest.java | 243 ++++++++++++++++
.../sshd/client/subsystem/sftp/SftpTest.java | 21 +-
.../client/subsystem/sftp/SftpTransferTest.java | 134 +++++++++
.../sftp/{ => impl}/SftpRemotePathChannelTest.java | 4 +-
23 files changed, 1355 insertions(+), 297 deletions(-)
delete mode 100644
sshd-sftp/src/main/java/org/apache/sshd/client/subsystem/sftp/fs/SftpFileSystemChannel.java
rename sshd-sftp/src/main/java/org/apache/sshd/client/subsystem/sftp/{ =>
impl}/SftpDirEntryIterator.java (98%)
create mode 100644
sshd-sftp/src/main/java/org/apache/sshd/client/subsystem/sftp/impl/SftpInputStreamAsync.java
rename sshd-sftp/src/main/java/org/apache/sshd/client/subsystem/sftp/{ =>
impl}/SftpIterableDirEntry.java (95%)
create mode 100644
sshd-sftp/src/main/java/org/apache/sshd/client/subsystem/sftp/impl/SftpOutputStreamAsync.java
rename sshd-sftp/src/main/java/org/apache/sshd/client/subsystem/sftp/{ =>
impl}/SftpRemotePathChannel.java (90%)
rename sshd-sftp/src/main/java/org/apache/sshd/client/subsystem/sftp/{ =>
impl}/StfpIterableDirHandle.java (94%)
rename sshd-sftp/src/{main =>
test}/java/org/apache/sshd/client/subsystem/sftp/SftpInputStreamWithChannel.java
(100%)
rename sshd-sftp/src/{main =>
test}/java/org/apache/sshd/client/subsystem/sftp/SftpOutputStreamWithChannel.java
(100%)
create mode 100644
sshd-sftp/src/test/java/org/apache/sshd/client/subsystem/sftp/SftpPerformanceTest.java
create mode 100644
sshd-sftp/src/test/java/org/apache/sshd/client/subsystem/sftp/SftpTransferTest.java
rename sshd-sftp/src/test/java/org/apache/sshd/client/subsystem/sftp/{ =>
impl}/SftpRemotePathChannelTest.java (98%)