I have a question concerning exception handling and resource management and I was wondering if anybody could share their opinion. I need to perform a sequence of actions: read app settings, setup the environment, do the stuff and then eventually clean up. Cleaning up involves tearing down the environment, but this should only happen if it was successfully setup in the first place.
Here's my first (and lame) approach:
try {
readSettings();
setupEnvironment();
} catch (Exception ex) {
logStackTrace(ex);
displayError(ex);
closeCommThreads();
return;
}
try {
// do stuff
} catch (Exception ex) {
logStackTrace(ex);
displayError(ex);
} finally {
teardownEnvironment();
closeCommThreads();
}
That seemed a bit ugly, so I decided to look for a better solution. I did some background reading and quite many articles vote for bigger try/catch blocks and using (a pun?) finally for cleanup. So here's my second attempt:
try {
readSettings();
setupEnvironment();
// do stuff
} catch (Exception ex) {
logStackTrace(ex);
displayError(ex);
} finally {
teardownEnvironment();
closeCommThreads();
}
To make this work I had to remove sequential coupling from teardownEnvironment() so that it can be invoked anytime - before or after setupEnvironment() (for editors: any way of putting it better?). Is this the right approach? I does feel slightly weird to tear down before setting up.
Edit:
Just to make it a bit more explicit: I removed sequential coupling by including an extra check inside teardownEnvironment - something like if (!isSetup()) return;.
editlink at the bottom ;) – Mike Caron Nov 26 '10 at 11:36