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

change: ensure remotePathMover for incoming mover is only created once when...

change: ensure remotePathMover for incoming mover is only created once when the IncomingProcessor is created (thus making sure it participates in the self test)

SVN: 7470
parent 2353984d
No related branches found
No related tags found
No related merge requests found
...@@ -71,8 +71,6 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory ...@@ -71,8 +71,6 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory
private final Parameters parameters; private final Parameters parameters;
private final IFileSysOperationsFactory factory;
private final IPathMover pathMover; private final IPathMover pathMover;
private final LocalBufferDirs bufferDirs; private final LocalBufferDirs bufferDirs;
...@@ -89,6 +87,8 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory ...@@ -89,6 +87,8 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory
private final String successorMarkerFileName; private final String successorMarkerFileName;
private final IStoreHandler remotePathMover;
public static final DataMoverProcess createMovingProcess(final Parameters parameters, public static final DataMoverProcess createMovingProcess(final Parameters parameters,
final String markerFile, final String errorMarkerFile, final String markerFile, final String errorMarkerFile,
final String successorMarkerFile, final IFileSysOperationsFactory factory, final String successorMarkerFile, final IFileSysOperationsFactory factory,
...@@ -121,9 +121,12 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory ...@@ -121,9 +121,12 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory
this.prefixForIncoming = parameters.getPrefixForIncoming(); this.prefixForIncoming = parameters.getPrefixForIncoming();
this.incomingStore = parameters.getIncomingStore(factory); this.incomingStore = parameters.getIncomingStore(factory);
this.pathMover = factory.getMover(); this.pathMover = factory.getMover();
this.factory = factory;
this.bufferDirs = bufferDirs; this.bufferDirs = bufferDirs;
this.storeItemFilter = createFilter(timeProvider); this.storeItemFilter = createFilter(timeProvider);
this.remotePathMover =
createRemotePathMover(incomingStore, FileStoreFactory.createLocal(bufferDirs
.getCopyInProgressDir(), "local", factory));
} }
private final IStoreItemFilter createFilter(final ITimeProvider timeProvider) private final IStoreItemFilter createFilter(final ITimeProvider timeProvider)
...@@ -139,6 +142,13 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory ...@@ -139,6 +142,13 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory
return filterBank; return filterBank;
} }
private IStoreHandler createRemotePathMover(final IFileStore sourceDirectory,
final IFileStore destinationDirectory)
{
return RemoteMonitoredMoverFactory
.create(sourceDirectory, destinationDirectory, parameters);
}
public TimerTask createRecoverableTimerTask() public TimerTask createRecoverableTimerTask()
{ {
return new IncomingProcessorRecoveryTask(); return new IncomingProcessorRecoveryTask();
...@@ -209,9 +219,8 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory ...@@ -209,9 +219,8 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory
private void moveFromRemoteIncoming(final StoreItem sourceItem) private void moveFromRemoteIncoming(final StoreItem sourceItem)
{ {
// 1. move from incoming: copy, delete, create copy-finished-marker // 1. move from incoming: copy, delete, create copy-finished-marker
final File copyInProgressDir = bufferDirs.getCopyInProgressDir(); moveFromRemoteToLocal(sourceItem);
moveFromRemoteToLocal(sourceItem, incomingStore, copyInProgressDir); final File copiedFile = new File(bufferDirs.getCopyInProgressDir(), sourceItem.getName());
final File copiedFile = new File(copyInProgressDir, sourceItem.getName());
if (copiedFile.exists() == false) if (copiedFile.exists() == false)
{ {
return; return;
...@@ -246,18 +255,9 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory ...@@ -246,18 +255,9 @@ public class IncomingProcessor implements IRecoverableTimerTaskFactory
} }
} }
private void moveFromRemoteToLocal(final StoreItem sourceItem, final IFileStore sourceStore, private void moveFromRemoteToLocal(final StoreItem sourceItem)
final File localDestDir)
{ {
createRemotePathMover(sourceStore, remotePathMover.handle(sourceItem);
FileStoreFactory.createLocal(localDestDir, "local", factory)).handle(sourceItem);
}
private IStoreHandler createRemotePathMover(final IFileStore sourceDirectory,
final IFileStore destinationDirectory)
{
return RemoteMonitoredMoverFactory
.create(sourceDirectory, destinationDirectory, parameters);
} }
private File tryMoveLocal(final File sourceFile, final File destinationDir, private File tryMoveLocal(final File sourceFile, final File destinationDir,
......
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