Skip to content
Snippets Groups Projects
Commit 07c2bca0 authored by brinn's avatar brinn
Browse files

change: ISshCommandExecutor.exists() should get a path string, rather than a...

change: ISshCommandExecutor.exists() should get a path string, rather than a file (the path is on the remote system)
fix: ensure that the FileStoreRemote uses Unix convention as we assume that the remote host is always a Unix host

SVN: 18708
parent b510f596
No related branches found
No related tags found
No related merge requests found
...@@ -16,8 +16,6 @@ ...@@ -16,8 +16,6 @@
package ch.systemsx.cisd.common.filesystem.ssh; package ch.systemsx.cisd.common.filesystem.ssh;
import java.io.File;
import ch.systemsx.cisd.common.filesystem.BooleanStatus; import ch.systemsx.cisd.common.filesystem.BooleanStatus;
import ch.systemsx.cisd.common.process.ProcessResult; import ch.systemsx.cisd.common.process.ProcessResult;
...@@ -27,7 +25,7 @@ import ch.systemsx.cisd.common.process.ProcessResult; ...@@ -27,7 +25,7 @@ import ch.systemsx.cisd.common.process.ProcessResult;
public interface ISshCommandExecutor public interface ISshCommandExecutor
{ {
public abstract BooleanStatus exists(File file, final long timeOutMillis); public abstract BooleanStatus exists(final String pathString, final long timeOutMillis);
public abstract BooleanStatus checkDirectoryAccessible(final String pathString, public abstract BooleanStatus checkDirectoryAccessible(final String pathString,
final long timeOutMillis); final long timeOutMillis);
......
...@@ -91,9 +91,9 @@ public class SshCommandExecutor implements ISshCommandExecutor, Serializable ...@@ -91,9 +91,9 @@ public class SshCommandExecutor implements ISshCommandExecutor, Serializable
return result.getOutput().size() == 0; return result.getOutput().size() == 0;
} }
public final BooleanStatus exists(File file, final long timeOutMillis) public final BooleanStatus exists(final String pathString, final long timeOutMillis)
{ {
final String cmd = mkCheckFileExistsCommand(file.getPath()); final String cmd = mkCheckFileExistsCommand(pathString);
final ProcessResult result = tryExecuteCommandRemotely(cmd, timeOutMillis); final ProcessResult result = tryExecuteCommandRemotely(cmd, timeOutMillis);
if (result.isOK()) if (result.isOK())
{ {
......
...@@ -199,7 +199,7 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -199,7 +199,7 @@ public class FileStoreRemote extends AbstractFileStore
public final Status delete(final StoreItem item) public final Status delete(final StoreItem item)
{ {
final String pathString = StoreItem.asFile(getPath(), item).getPath(); final String pathString = toUnixPathString(item);
final String cmd = mkDeleteFileCommand(pathString); final String cmd = mkDeleteFileCommand(pathString);
final ProcessResult result = final ProcessResult result =
sshCommandExecutor.tryExecuteCommandRemotely(cmd, QUICK_SSH_TIMEOUT_MILLIS); sshCommandExecutor.tryExecuteCommandRemotely(cmd, QUICK_SSH_TIMEOUT_MILLIS);
...@@ -215,8 +215,8 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -215,8 +215,8 @@ public class FileStoreRemote extends AbstractFileStore
public final BooleanStatus exists(final StoreItem item) public final BooleanStatus exists(final StoreItem item)
{ {
final File itemFile = StoreItem.asFile(getPath(), item); final String pathString = toUnixPathString(item);
return sshCommandExecutor.exists(itemFile, QUICK_SSH_TIMEOUT_MILLIS); return sshCommandExecutor.exists(pathString, QUICK_SSH_TIMEOUT_MILLIS);
} }
public final IStoreCopier getCopier(final IFileStore destinationDirectory) public final IStoreCopier getCopier(final IFileStore destinationDirectory)
...@@ -240,7 +240,7 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -240,7 +240,7 @@ public class FileStoreRemote extends AbstractFileStore
private final StatusWithResult<Long> lastChangedExec(final StoreItem item, private final StatusWithResult<Long> lastChangedExec(final StoreItem item,
final long stopWhenFindYoungerMillis, boolean isRelative) final long stopWhenFindYoungerMillis, boolean isRelative)
{ {
final String itemPath = StoreItem.asFile(getPath(), item).getPath(); final String itemPath = toUnixPathString(item);
final String cmd = final String cmd =
mkLastchangedCommand(itemPath, stopWhenFindYoungerMillis, isRelative, mkLastchangedCommand(itemPath, stopWhenFindYoungerMillis, isRelative,
...@@ -261,7 +261,7 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -261,7 +261,7 @@ public class FileStoreRemote extends AbstractFileStore
private final StatusWithResult<Long> lastChangedEmulatedGNUFindExec(final StoreItem item) private final StatusWithResult<Long> lastChangedEmulatedGNUFindExec(final StoreItem item)
{ {
final String itemPath = StoreItem.asFile(getPath(), item).getPath(); final String itemPath = toUnixPathString(item);
final String findExec = getRemoteFindExecutableOrDie(); final String findExec = getRemoteFindExecutableOrDie();
final String cmd = mkFindYoungestModificationTimestampSecCommand(itemPath, findExec); final String cmd = mkFindYoungestModificationTimestampSecCommand(itemPath, findExec);
...@@ -279,6 +279,17 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -279,6 +279,17 @@ public class FileStoreRemote extends AbstractFileStore
} }
} }
private String toUnixPathString(final StoreItem itemOrNull)
{
if (itemOrNull == null)
{
return getPath().getPath().replace('\\', '/');
} else
{
return StoreItem.asFile(getPath(), itemOrNull).getPath().replace('\\', '/');
}
}
private static StatusWithResult<Long> createLastChangeError(StoreItem item, String errorMsg) private static StatusWithResult<Long> createLastChangeError(StoreItem item, String errorMsg)
{ {
return StatusWithResult.<Long> createError("Cannot obtain last change time of the item " return StatusWithResult.<Long> createError("Cannot obtain last change time of the item "
...@@ -317,7 +328,7 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -317,7 +328,7 @@ public class FileStoreRemote extends AbstractFileStore
{ {
final BooleanStatus status = final BooleanStatus status =
skipAccessibilityTest ? BooleanStatus.createTrue() : sshCommandExecutor skipAccessibilityTest ? BooleanStatus.createTrue() : sshCommandExecutor
.checkDirectoryAccessible(getPathString(), timeOutMillis); .checkDirectoryAccessible(toUnixPathString(null), timeOutMillis);
if (status.isSuccess()) if (status.isSuccess())
{ {
if (this.remoteLastchangedExecutableOrNull != null if (this.remoteLastchangedExecutableOrNull != null
...@@ -347,11 +358,6 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -347,11 +358,6 @@ public class FileStoreRemote extends AbstractFileStore
return "No GNU find utility is present on the remote machine '" + getHost() + "'"; return "No GNU find utility is present on the remote machine '" + getHost() + "'";
} }
private String getPathString()
{
return getPath().getPath();
}
// tries to execute different find versions with appropriate options on the remote host. If // tries to execute different find versions with appropriate options on the remote host. If
// successful sets the executable script name and returns null. Otherwise returns error message. // successful sets the executable script name and returns null. Otherwise returns error message.
private boolean checkAvailableAndSetFindUtil() private boolean checkAvailableAndSetFindUtil()
...@@ -472,7 +478,7 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -472,7 +478,7 @@ public class FileStoreRemote extends AbstractFileStore
public final StoreItem[] tryListSortByLastModified(final ISimpleLogger loggerOrNull) public final StoreItem[] tryListSortByLastModified(final ISimpleLogger loggerOrNull)
{ {
final String simpleCmd = mkListByOldestModifiedCommand(getPathString()); final String simpleCmd = mkListByOldestModifiedCommand(toUnixPathString(null));
final ProcessResult result = final ProcessResult result =
sshCommandExecutor.tryExecuteCommandRemotely(simpleCmd, sshCommandExecutor.tryExecuteCommandRemotely(simpleCmd,
LONG_SSH_TIMEOUT_MILLIS); LONG_SSH_TIMEOUT_MILLIS);
...@@ -580,7 +586,7 @@ public class FileStoreRemote extends AbstractFileStore ...@@ -580,7 +586,7 @@ public class FileStoreRemote extends AbstractFileStore
@Override @Override
public final String toString() public final String toString()
{ {
final String pathStr = getPathString(); final String pathStr = toUnixPathString(null);
if (tryGetRsyncModuleName() != null) if (tryGetRsyncModuleName() != null)
{ {
return "[remote fs] " + getHost() + ":" + tryGetRsyncModuleName() + ":" + pathStr; return "[remote fs] " + getHost() + ":" + tryGetRsyncModuleName() + ":" + pathStr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment