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 71970e67d5970c8658cbdeacd24a6e1bd88662a8..d3bf4678ee6c552e2aa0f47283dec2c102514e96 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)