This is an automated email from the ASF dual-hosted git repository. lgoldstein pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git.
from 8e59075 [SSHD-1080] Rework the PacketWriter to split according to the various semantics new eb5c510 [SSHD-1086] Added SftpPathDirectoryScanner class new 5ac112d [SSHD-1086] Added SftpClientDirectoryScanner 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: CHANGES.md | 1 + docs/sftp.md | 42 ++ .../org/apache/sshd/common/util/GenericUtils.java | 40 ++ .../org/apache/sshd/common/util/SelectorUtils.java | 75 ++- .../sshd/common/util/io/DirectoryScanner.java | 182 +------ .../sshd/common/util/io/PathScanningMatcher.java | 186 +++++++ .../org/apache/sshd/common/util/io/PathUtils.java | 76 +++ .../sshd/common/util/io/DirectoryScannerTest.java | 2 +- .../org/apache/sshd/scp/common/ScpFileOpener.java | 23 +- .../sshd/scp/client/AbstractScpTestSupport.java | 29 ++ .../client/ScpRemote2RemoteTransferHelperTest.java | 26 +- .../java/org/apache/sshd/scp/client/ScpTest.java | 105 +--- .../org/apache/sshd/sftp/client/SftpClient.java | 65 ++- .../sftp/client/fs/SftpClientDirectoryScanner.java | 226 ++++++++ .../sftp/client/fs/SftpPathDirectoryScanner.java | 94 ++++ .../sftp/client/AbstractSftpClientTestSupport.java | 22 + .../java/org/apache/sshd/sftp/client/SftpTest.java | 567 +++++++++------------ .../apache/sshd/sftp/client/SftpTransferTest.java | 15 +- .../apache/sshd/sftp/client/SftpVersionsTest.java | 247 ++++----- .../extensions/UnsupportedExtensionTest.java | 35 +- .../helpers/AbstractCheckFileExtensionTest.java | 43 +- .../helpers/AbstractMD5HashExtensionTest.java | 57 +-- .../helpers/CopyDataExtensionImplTest.java | 17 +- .../helpers/CopyFileExtensionImplTest.java | 31 +- .../helpers/SpaceAvailableExtensionImplTest.java | 15 +- .../openssh/helpers/OpenSSHExtensionsTest.java | 61 +-- .../client/fs/AbstractSftpFilesSystemSupport.java | 60 +++ .../sftp/client/fs/SftpDirectoryScannersTest.java | 198 +++++++ .../sshd/sftp/client/fs/SftpFileSystemTest.java | 164 ++---- .../client/impl/SftpRemotePathChannelTest.java | 106 ++-- .../ApacheSshdSftpSessionFactoryTest.java | 14 +- 31 files changed, 1665 insertions(+), 1159 deletions(-) create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/util/io/PathScanningMatcher.java create mode 100644 sshd-common/src/main/java/org/apache/sshd/common/util/io/PathUtils.java create mode 100644 sshd-sftp/src/main/java/org/apache/sshd/sftp/client/fs/SftpClientDirectoryScanner.java create mode 100644 sshd-sftp/src/main/java/org/apache/sshd/sftp/client/fs/SftpPathDirectoryScanner.java create mode 100644 sshd-sftp/src/test/java/org/apache/sshd/sftp/client/fs/AbstractSftpFilesSystemSupport.java create mode 100644 sshd-sftp/src/test/java/org/apache/sshd/sftp/client/fs/SftpDirectoryScannersTest.java