Hi 2025 visitors :) The current version of this library is available as a Nuget package and is also on GitHub. If you have any issues with this code please open an issue on GitHub.
Would it be nice if we can do something like this in our applications?
// Wrap a file copy and a database insert in the same transaction TxFileManager fileMgr = new TxFileManager(); using (TransactionScope scope1 = new TransactionScope()) { // Copy a file fileMgr.CopyFile(srcFileName, destFileName); // Insert a database record dbMgr.ExecuteNonQuery(insertSql); scope1.Complete(); }
With the rich support currently available for transactional programming, one may find it rather surprising that the most basic type of program operation, file manipulation (copy file, move file, delete file, write to file, etc.), are typically not transactional in today’s applications.
I am sure the main reason for this situation is lack of support for transactions in the underlying file systems. While Microsoft is bringing us Transactional NTFS (TxF) in Vista and Windows Server 2008, most corporate IT applications are still deployed to Windows 2003 or earlier. While I can’t wait to be able to use TxF, I have applications that have to be completed today!
While searching for a solution, I came across several articles describing the use of IEnlistmentNotification to implement your own resource manager and participate in a System.Transactions.Transaction. However, a complete working code example was nowhere to be found. Well, I guess it’s my turn to contribute. I hereby present to you: Chinh Do’s Transactional File Manager.
Here are my basic requirements for a Transactional File Manager:
Implementing IEnlistmentNotification is harder that it looks… at least for me it was. It’s not enough to just store a list of file operations. Because transactions can be nested and started from different threads; when rolling back, we have to make sure to only include the correct operations for the current Transaction. At first glance, it looks like we should be able to use the LocalIdentifier property (Transaction.TransactionInformation.LocalIdentifier) to identify the current transaction. However, further investigation reveals that Transaction.Current is not available in our various IEnlistmentNotification methods.
As it turned out, the little known but very cool ThreadStatic attribute fits the bill very well. Since the scope of a TransactionScope spans all operations on the same thread inside the TransactionScope block (excluding nested, new Transactions), ThreadStatic gives us an easy way to track that data.
/// <summary>Dictionary of transaction participants for the current thread.</summary> [ThreadStatic] private static Dictionary<string, TxParticipant> _participants;
In the initial version of my Transactional File Manager class (TxFileManager), I made the mistake of trying to implement IEnlistmentNotification in the main TxFileManager class. I had all kinds of difficulty trying to sort out different transactions/threads. Once I started to split to IEnlistmentNotification implementation into its own nested class (TxParticipant), everything became much cleaner. In the main class, all I have to do is to maintain a Dictionary<T, T> of TxEnlistment objects, which implement IEnlistmentNotification. Each TxEnlistment object would be responsible for handling a separate Transaction. Once that is in place, everything else was like pretty much a walk through the park.
Since my Resource Manager always performs operations immediately, there is really nothing to commit, except to clean up temporary files:
public void Commit(Enlistment enlistment) { for (int i = 0; i < _journal.Count; i++) { _journal[i].CleanUp(); } _enlisted = false; _journal.Clear(); }
Rolling back is a little bit more complicated. To ensure consistency, we must roll back operations in reverse order.
Another gotcha I ran into is that Rollback is often (if not all the time) called from a different thread from the Transaction thread. Any unhandled exception that occurs in Rollback will cause an AppDomain.CurrentDomain.UnhandledException. To “handle” an UnhandledException, you can either set IgnoreExceptionsInRollback = True or implement an UnhandledExceptionEventHandler.
public void Rollback(Enlistment enlistment) { try { // Roll back journal items in reverse order for (int i = _journal.Count - 1; i >= 0; i--) { _journal[i].Rollback(); _journal[i].CleanUp(); } _enlisted = false; _journal.Clear(); } catch (Exception e) { if (IgnoreExceptionsInRollback) { EventLog.WriteEntry(GetType().FullName, "Failed to rollback." + Environment.NewLine + e.ToString(), EventLogEntryType.Warning); } else { throw new TransactionException("Failed to roll back.", e); } } finally { _enlisted = false; if (_journal != null) { _journal.Clear(); } } enlistment.Done(); }
What does TDD have to do with this? It just happens that if you do Test Driven Development, Transactional File Manager can make testing classes that perform file operations much more convenient. In conjunction with a mocking framework such as Rhino Mocks, you can easily test the class functionality without having to read/write to actual files.
MockRepository mocks = new MockRepository(); MyClass1 target = new MyClass1(); Target.FileManager = new TxFileManager(); using (mocks.Record()) { Expect.Call(target.FileManager.ReadAllText()).Return("abc"); } using (mocks.Playback()) { target.DoWork(); }
Here are the known shortcomings of my Transactional File Manager:
// Complete unrealistic example showing how various file operations, including operations done // by library/3rd party code, can participate in transactions. IFileManager fileManager = new TxFileManager(); using (TransactionScope scope1 = new TransactionScope()) { fileManager.WriteAllText(inFileName, xml); // Snapshot allows any file operation to be part of our transaction. // All we need to know is the file name. XslCompiledTransform xsl = new XslCompiledTransform(true); xsl.Load(uri); //The statement below tells the TxFileManager to remember the state of this file. // So even though XslCompiledTransform has no knowledge of our TxFileManager, the file it creates (outFileName) // will still be restored to this state in the event of a rollback. fileManager.Snapshot(outFileName); xsl.Transform(inFileName, outFileName); // write to database 1 myDb1.ExecuteNonQuery(sql1); // write to database 2. The transaction is promoted to a distributed transaction here. myDb2.ExecuteNonQuery(sql2); // let's delete some files for (string fileName in filesToDelete) { fileManager.Delete(fileName); } // Just for kicks, let's start a new transaction. // Note that we can still use the same fileManager instance. It knows how to sort things out correctly. using (TransactionScope scope2 = new TransactionScope(TransactionScopeOptions.RequiresNew)) { fileManager.MoveFile(anotherFile, anotherFileDest); } // move some files for (string fileName in filesToMove) { fileManager.Move(fileName, GetNewFileName(fileName)); } // Finally, let's create a few temporary files... // disk space has to be used for something. // The nice thing about FileManager.GetTempFileName is that // The temp file will be cleaned up automatically for you when the TransactionScope completes. // No more worries about temp files that get left behind. for (int i=0; i<10; i++) { fileManager.WriteAllText(fileManager.GetTempFileName(), "testing 1 2"); } scope1.Complete(); // In the event an exception occurs, everything done here will be rolled back including the output xsl file. }
To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…
kubectl exec -it <podname> -- sh To get a list of running pods in the…
# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…
git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…
TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…
I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…
View Comments
Hey, it appears that the download is coughing up a 404.
antlinks:
Thanks for the note. I've fixed the broken link.
Very nice! Thanks for sharing. It would be nice to add the ability to take a snapshot of a whole directory as well.
Codaholic: Thanks for the note. Good idea re directory snapshot.
Hi ;)
The link to the source code is still broken.
brgds
Frederic
Frederic: Please try again. I was using a relative link and I guess it worked only sometimes, depending on whether you were on the main page or were looking at the blog post itself. It should work all the time now. Thanks!
would it be possible to include a method for setting ACLs on the files in the transaction ?
Marouane:
Restoring ACLs (Access Control Lists) when rolling back transactions is not currently supported. In other words, if you make changes to the ACLs as part of your transaction, and then roll it back, the rolled back files may not retain the original ALCs.
I'll see if I can add support for it. Seems like a nice feature to have. Do you happen to have code to retrieve and set ALCs?
Chinh
Hi,
Thanks for a really useful library. I've made a few changes to it
1. If the file operation itself fails then the operation has already been added to the journal so a roll-back is attempted. I've change it to add the operation to the journal after it succeeds
eg
public void Copy(string sourceFileName, string destFileName, bool overwrite)
{
var rollbackFile = new RollbackFile(destFileName);
File.Copy(sourceFileName, destFileName, overwrite);
if (_tx != null)
{
_journal.Add(rollbackFile);
Enlist();
}
}
2. Added support to delete directories
public void Delete(string path)
{
if (File.Exists(path))
{
var rollbackFile = new RollbackFile(path);
File.Delete(path);
if (_tx != null)
{
_journal.Add(rollbackFile);
Enlist();
}
}
else if(Directory.Exists(path))
{
var rollbackDirectory = new RollbackDirectory(path);
Directory.Delete(path);
if(_tx!=null)
{
_journal.Add(rollbackDirectory);
Enlist();
}
}
}
3. Changed RollbackDirectory so deleted directories are recreated
private class RollbackDirectory : RollbackOperation
{
public RollbackDirectory(string path)
{
_path = path;
_existed = Directory.Exists(path);
}
public override void Rollback()
{
if (_existed)
{
Directory.CreateDirectory(_path);
}
else
{
if (Directory.GetFiles(_path).Length == 0 && Directory.GetDirectories(_path).Length == 0)
{
// Delete the dir only if it's empty
Directory.Delete(_path);
}
else
{
EventLog.WriteEntry(GetType().FullName, "Failed to delete directory " + _path + ". Directory was not empty.", EventLogEntryType.Warning);
}
}
}
Mark
Hi Mark: Thanks for your comment and code. I will incorporate it into my library soon. Chinh