From 97aef9356918f156ca89d1270c68ed99d5caed5a Mon Sep 17 00:00:00 2001 From: cramakri <cramakri> Date: Thu, 19 Jan 2012 14:35:44 +0000 Subject: [PATCH] LMS-2739 Add a switch to turn on/off the pre-staging folder. It is now off by default SVN: 24238 --- ...tOmniscientTopLevelDataSetRegistrator.java | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/AbstractOmniscientTopLevelDataSetRegistrator.java b/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/AbstractOmniscientTopLevelDataSetRegistrator.java index 71970e67d59..d3bf4678ee6 100644 --- a/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/AbstractOmniscientTopLevelDataSetRegistrator.java +++ b/datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/AbstractOmniscientTopLevelDataSetRegistrator.java @@ -244,6 +244,11 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat } + /** + * Should registration take advantage of the prestaging area? + */ + private final static boolean USE_PRE_STAGING = false; + public static class NoOpDelegate implements ITopLevelDataSetRegistratorDelegate { @@ -340,11 +345,18 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat markerFileCleanupAction = new DoNothingDelegatedAction(); } - // Make a hardlink copy of the file - File copyOfIncoming = copyIncomingFileToPreStaging(incomingDataSetFile); - PostRegistrationCleanUpAction cleanupAction = new PostRegistrationCleanUpAction(incomingDataSetFile, copyOfIncoming, markerFileCleanupAction); + if (USE_PRE_STAGING) + { + + // Make a hardlink copy of the file + File copyOfIncoming = copyIncomingFileToPreStaging(incomingDataSetFile); + PostRegistrationCleanUpAction cleanupAction = new PostRegistrationCleanUpAction(incomingDataSetFile, copyOfIncoming, markerFileCleanupAction); - handle(copyOfIncoming, null, new NoOpDelegate(), cleanupAction); + handle(copyOfIncoming, null, new NoOpDelegate(), cleanupAction); + } else + { + handle(incomingDataSetFile, null, new NoOpDelegate(), markerFileCleanupAction); + } } private File copyIncomingFileToPreStaging(File incomingDataSetFile) -- GitLab