org.jbehaviour.plugins.remote.impl.SftpFileSystemResource Maven / Gradle / Ivy
/**
* Copyright 2012 Yannick Roffin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jbehaviour.plugins.remote.impl;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.ArrayList;
import java.util.List;
import com.sshtools.j2ssh.sftp.SftpFile;
import com.sshtools.j2ssh.sftp.SftpSubsystemClient;
public class SftpFileSystemResource extends SslFileSystemResource {
SftpSubsystemClient session = null;
public SftpFileSystemResource(String url) throws MalformedURLException {
super(url);
}
@Override
public void open() throws IOException {
super.open();
}
@Override
public void close() throws IOException {
session.close();
super.close();
}
private boolean openSession() throws IOException {
open();
/**
* open a new channel
*/
session = ssh.openSftpChannel();
return session != null;
}
private void closeSession() throws IOException {
session.close();
}
@Override
public boolean checkIfFileExist(String filename) throws IOException {
if (openSession()) {
SftpFile local = session.openFile(filename, 0);
closeSession();
return local != null;
}
return false;
}
@Override
public List listdir(String directory) throws IOException {
List l = new ArrayList();
if (openSession()) {
SftpFile result = session.openDirectory(directory);
session.listChildren(result, l);
closeSession();
}
List res = new ArrayList();
for(SftpFile item : l) {
res.add(new ResourcesItem(item));
}
return res;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy