Package de.uplanet.util.transaction
Class DirectFileCopyTransaction
- java.lang.Object
-
- de.uplanet.util.transaction.DirectFileCopyTransaction
-
- All Implemented Interfaces:
ITwoPhaseIOTransaction,ITwoPhaseTransaction
public final class DirectFileCopyTransaction extends Object
The IO operation may be done before requestCommit is called, on a call of the process method. Without a process() call the IO Operation is done by the requestCommit call.
-
-
Constructor Summary
Constructors Constructor Description DirectFileCopyTransaction(File p_fileDst, File p_fileSrc, boolean p_bOverwriteExisting)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcommit()Commit the transaction.FilegetBackup()FilegetDestinationFile()Get the destination file.ThrowablegetLastError()FilegetSourceFile()Get the source file.booleanhasBackup()booleanprocess()booleanrequestCommit()Request a file system transaction.booleanrollback()Try to rollback the file transaction.StringtoString()
-
-
-
Constructor Detail
-
DirectFileCopyTransaction
public DirectFileCopyTransaction(File p_fileDst, File p_fileSrc, boolean p_bOverwriteExisting) throws IOException
- Throws:
IOException
-
-
Method Detail
-
process
public boolean process()
-
requestCommit
public boolean requestCommit()
Description copied from interface:ITwoPhaseTransactionRequest a file system transaction.When this method returns
trueit has sucessfully moved the source file to it's new location, and has successfully created a backup copy of the destination file, if it existed before.- Specified by:
requestCommitin interfaceITwoPhaseTransaction
-
getDestinationFile
public final File getDestinationFile()
Get the destination file.- Returns:
- The value
p_fileDstthat was passed to the contructor.
-
getSourceFile
public final File getSourceFile()
Get the source file.- Returns:
- The value
p_fileSrcthat was passed to the contructor.
-
hasBackup
public final boolean hasBackup()
- Specified by:
hasBackupin interfaceITwoPhaseIOTransaction- Returns:
trueif the transaction has left a backup file, orfalseotherwise (e.g. if the destination file did not exist before the transaction).
-
getBackup
public final File getBackup()
- Specified by:
getBackupin interfaceITwoPhaseIOTransaction- Returns:
- The backup file that was left by the transaction, or
nullif none was created (e.g. if the destination file did not exist before the transaction).
-
commit
public void commit()
Description copied from interface:ITwoPhaseTransactionCommit the transaction.- Specified by:
commitin interfaceITwoPhaseTransaction
-
rollback
public boolean rollback()
Try to rollback the file transaction.- Specified by:
rollbackin interfaceITwoPhaseTransaction- Returns:
trueif the rollback was successful, orfalseotherwise. In the latter caseITwoPhaseTransaction.getLastError()may give additional information about why the rollback failed, and a backup file may exist then.
-
getLastError
public final Throwable getLastError()
- Specified by:
getLastErrorin interfaceITwoPhaseTransaction- Returns:
- The last exception that was caugth during the transaction,
or
nullif no error occurred;
-
-