修复多线程下Sftp中Channel关闭的问题

This commit is contained in:
Looly 2023-07-29 12:15:40 +08:00
parent 68daef704e
commit e8c1f7ad7b
2 changed files with 17 additions and 11 deletions

View File

@ -33,6 +33,7 @@
* 【json 】 修复JSONBeanParser在遇到List时没有被正确递归问题issue#I7M2GZ@Gitee
* 【core 】 修复VersionComparator对1.0.3及1.0.2a比较有误的问题pr#1043@Gitee
* 【core 】 修复IOS系统下chrome 浏览器的解析规则有误pr#1044@Gitee
* 【extra 】 修复多线程下Sftp中Channel关闭的问题issue#I7OHIB@Gitee
-------------------------------------------------------------------------------------------------------------
# 5.8.20(2023-06-16)

View File

@ -233,6 +233,9 @@ public class Sftp extends AbstractFtp {
* @since 4.1.14
*/
public ChannelSftp getClient() {
if(false == this.channel.isConnected()){
init();
}
return this.channel;
}
@ -244,7 +247,7 @@ public class Sftp extends AbstractFtp {
@Override
public String pwd() {
try {
return channel.pwd();
return getClient().pwd();
} catch (SftpException e) {
throw new JschRuntimeException(e);
}
@ -258,7 +261,7 @@ public class Sftp extends AbstractFtp {
*/
public String home() {
try {
return channel.getHome();
return getClient().getHome();
} catch (SftpException e) {
throw new JschRuntimeException(e);
}
@ -339,7 +342,7 @@ public class Sftp extends AbstractFtp {
public List<LsEntry> lsEntries(String path, Filter<LsEntry> filter) {
final List<LsEntry> entryList = new ArrayList<>();
try {
channel.ls(path, entry -> {
getClient().ls(path, entry -> {
final String fileName = entry.getFilename();
if (false == StrUtil.equals(".", fileName) && false == StrUtil.equals("..", fileName)) {
if (null == filter || filter.accept(entry)) {
@ -364,7 +367,7 @@ public class Sftp extends AbstractFtp {
return true;
}
try {
this.channel.mkdir(dir);
getClient().mkdir(dir);
return true;
} catch (SftpException e) {
throw new JschRuntimeException(e);
@ -375,7 +378,7 @@ public class Sftp extends AbstractFtp {
public boolean isDir(String dir) {
final SftpATTRS sftpATTRS;
try {
sftpATTRS = this.channel.stat(dir);
sftpATTRS = getClient().stat(dir);
} catch (SftpException e) {
final String msg = e.getMessage();
// issue#I4P9ED@Gitee
@ -403,7 +406,7 @@ public class Sftp extends AbstractFtp {
return true;
}
try {
channel.cd(directory.replace('\\', '/'));
getClient().cd(directory.replace('\\', '/'));
return true;
} catch (SftpException e) {
throw new FtpException(e);
@ -418,7 +421,7 @@ public class Sftp extends AbstractFtp {
@Override
public boolean delFile(String filePath) {
try {
channel.rm(filePath);
getClient().rm(filePath);
} catch (SftpException e) {
throw new JschRuntimeException(e);
}
@ -438,6 +441,8 @@ public class Sftp extends AbstractFtp {
return false;
}
final ChannelSftp channel = getClient();
Vector<LsEntry> list;
try {
list = channel.ls(channel.pwd());
@ -562,7 +567,7 @@ public class Sftp extends AbstractFtp {
*/
public Sftp put(String srcFilePath, String destPath, SftpProgressMonitor monitor, Mode mode) {
try {
channel.put(srcFilePath, destPath, monitor, mode.ordinal());
getClient().put(srcFilePath, destPath, monitor, mode.ordinal());
} catch (SftpException e) {
throw new JschRuntimeException(e);
}
@ -581,7 +586,7 @@ public class Sftp extends AbstractFtp {
*/
public Sftp put(InputStream srcStream, String destPath, SftpProgressMonitor monitor, Mode mode) {
try {
channel.put(srcStream, destPath, monitor, mode.ordinal());
getClient().put(srcStream, destPath, monitor, mode.ordinal());
} catch (SftpException e) {
throw new JschRuntimeException(e);
}
@ -644,7 +649,7 @@ public class Sftp extends AbstractFtp {
*/
public Sftp get(String src, String dest) {
try {
channel.get(src, dest);
getClient().get(src, dest);
} catch (SftpException e) {
throw new JschRuntimeException(e);
}
@ -661,7 +666,7 @@ public class Sftp extends AbstractFtp {
*/
public Sftp get(String src, OutputStream out) {
try {
channel.get(src, out);
getClient().get(src, out);
} catch (SftpException e) {
throw new JschRuntimeException(e);
}