What is the best way to do nested TRY AND FINALLY statement in Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T20:00:19Z http://stackoverflow.com/feeds/question/398137 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi 11 What is the best way to do nested TRY AND FINALLY statement in Delphi Charles Faiga 2008-12-29T17:16:36Z 2009-03-23T09:59:09Z <p>Hi What is the best way to do nested try &amp; finally statements in delphi?</p> <pre><code>var cds1 : TClientDataSet; cds2 : TClientDataSet; cds3 : TClientDataSet; cds4 : TClientDataSet; begin cds1 := TClientDataSet.Create(application ); try cds2 := TClientDataSet.Create(application ); try cds3 := TClientDataSet.Create(application ); try cds4 := TClientDataSet.Create(application ); try /////////////////////////////////////////////////////////////////////// /// DO WHAT NEEDS TO BE DONE /////////////////////////////////////////////////////////////////////// finally cds4.free; end; finally cds3.free; end; finally cds2.free; end; finally cds1.free; end; end; </code></pre> <p>Can you Suggest a better way of doing this?</p> http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/398161#398161 21 Answer by skamradt for What is the best way to do nested TRY AND FINALLY statement in Delphi skamradt 2008-12-29T17:25:20Z 2008-12-31T14:18:22Z <p>how about the following:</p> <pre><code>var cds1 : TClientDataSet; cds2 : TClientDataSet; cds3 : TClientDataSet; cds4 : TClientDataSet; begin cds1 := Nil; cds2 := Nil; cds3 := Nil; cds4 := Nil; try cds1 := TClientDataSet.Create(nil); cds2 := TClientDataSet.Create(nil); cds3 := TClientDataSet.Create(nil); cds4 := TClientDataSet.Create(nil); /////////////////////////////////////////////////////////////////////// /// DO WHAT NEEDS TO BE DONE /////////////////////////////////////////////////////////////////////// finally freeandnil(cds4); freeandnil(cds3); freeandnil(cds2); freeandnil(Cds1); end; end; </code></pre> <p>This keeps it compact, and only attempts to free the instances which were created. There really is no need to perform the nesting since ANY failure will result in dropping to the finally and performing all of the cleanup in the example you provided.</p> <p>Personally I try not to nest within the same method... with the exception being a try/try/except/finally scenario. If I find myself needing to nest, then to me that is a great time to think refactoring into another method call.</p> <p><strong>EDIT</strong> Cleaned up a bit thanks to the comments by <a href="http://stackoverflow.com/users/30568/mghie">mghie</a> and <a href="http://stackoverflow.com/users/14716/utku-karatas">utku</a>.</p> <p><strong>EDIT</strong> changed the object creation to not reference application, as its not necessary in this example.</p> http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/398189#398189 11 Answer by mghie for What is the best way to do nested TRY AND FINALLY statement in Delphi mghie 2008-12-29T17:38:47Z 2009-01-06T21:07:05Z <p>I'd use something like this:</p> <pre><code>var Safe: IObjectSafe; cds1 : TClientDataSet; cds2 : TClientDataSet; cds3 : TClientDataSet; cds4 : TClientDataSet; begin Safe := ObjectSafe; cds1 := Safe.Guard(TClientDataSet.Create(nil)) as TClientDataSet; cds2 := Safe.Guard(TClientDataSet.Create(nil)) as TClientDataSet; cds3 := Safe.Guard(TClientDataSet.Create(nil)) as TClientDataSet; cds4 := Safe.Guard(TClientDataSet.Create(nil)) as TClientDataSet; /////////////////////////////////////////////////////////////////////// /// DO WHAT NEEDS TO BE DONE /////////////////////////////////////////////////////////////////////// // if Safe goes out of scope it will be freed and in turn free all guarded objects end; </code></pre> <p>For the implementation of the interface see <a href="http://dn.codegear.com/article/28217" rel="nofollow">this</a> article, but you can easily create something similar yourself.</p> <p><strong>EDIT:</strong></p> <p>I just noticed that in the linked article Guard() is a procedure. In my own code I have overloaded Guard() functions that return TObject, above sample code assumes something similar. Of course with generics much better code is now possible...</p> <p><strong>EDIT 2:</strong></p> <p>If you wonder why try ... finally is completely removed in my code: It's impossible to remove the nested blocks without introducing the possibility of memory leaks (when destructors raise exceptions) or access violations. Therefore it's best to use a helper class, and let the reference counting of interfaces take over completely. The helper class can free all objects it guards, even if some of the destructors raise exceptions.</p> http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/398330#398330 0 Answer by dummzeuch for What is the best way to do nested TRY AND FINALLY statement in Delphi dummzeuch 2008-12-29T18:54:00Z 2008-12-29T18:54:00Z <p>@mghie: Delphi has got stack allocated objects:</p> <pre><code>type TMyObject = object private FSomeField: PInteger; public constructor Init; destructor Done; override; end; constructor TMyObject.Init; begin inherited Init; New(FSomeField); end; destructor TMyObject.Done; begin Dispose(FSomeField); inherited Done; end; var MyObject: TMyObject; begin MyObject.Init; /// ... end; </code></pre> <p>Unfortunately, as the above example shows: Stack allocated objects do not prevent memory leaks.</p> <p>So this would still require a call to the destructor like this:</p> <pre><code>var MyObject: TMyObject; begin MyObject.Init; try /// ... finally MyObject.Done; end; end; </code></pre> <p>OK, I admit it, this is very nearly off topic, but I thought it might be interesting in this context since stack allocated objects were mentioned as a solution (which they are not if there is no automatic destructor call).</p> http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/399860#399860 2 Answer by mghie for What is the best way to do nested TRY AND FINALLY statement in Delphi mghie 2008-12-30T09:29:59Z 2009-01-06T21:05:55Z <p>There's another variation of the code without nested try ... finally that just occurred to me. If you don't create the components with the AOwner parameter of the constructor set to nil, then you can simply make use of the lifetime management that the VCL gives you for free:</p> <pre><code>var cds1: TClientDataSet; cds2: TClientDataSet; cds3: TClientDataSet; cds4: TClientDataSet; begin cds1 := TClientDataSet.Create(nil); try // let cds1 own the other components so they need not be freed manually cds2 := TClientDataSet.Create(cds1); cds3 := TClientDataSet.Create(cds1); cds4 := TClientDataSet.Create(cds1); /////////////////////////////////////////////////////////////////////// /// DO WHAT NEEDS TO BE DONE /////////////////////////////////////////////////////////////////////// finally cds1.Free; end; end; </code></pre> <p>I'm a big believer in small code (if it's not too obfuscated).</p> http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/430820#430820 0 Answer by Charles Faiga for What is the best way to do nested TRY AND FINALLY statement in Delphi Charles Faiga 2009-01-10T10:05:33Z 2009-01-10T17:46:12Z <p>There is a good video on <a href="http://codegearguru.com/video/030/TSuicide.html" rel="nofollow">exceptions in constructors &amp; destructors</a> </p> <p>It shows some nice examples such as:</p> <pre><code>var cds1 : TClientDataSet; cds2 : TClientDataSet; begin cds1 := Nil; cds2 := Nil; try cds1 := TClientDataSet.Create(nil); cds2 := TClientDataSet.Create(nil); /////////////////////////////////////////////////////////////////////// /// DO WHAT NEEDS TO BE DONE /////////////////////////////////////////////////////////////////////// finally freeandnil(cds2); //// what has if there in an error in the destructor of cds2 freeandnil(Cds1); end; end; </code></pre> <p>What has if there in an error in the destructor of cds2 </p> <p><strong>Cds1 will not be Destroyed</strong> </p> <p>EDIT </p> <p>Another good resource is :</p> <p>Jim McKeeth excellent video on <a href="http://cc.codegear.com/item/26436" rel="nofollow">Delayed Exception Handling</a> in code range III were he talks about problems in handling exceptions in the finally block.</p> http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi/672777#672777 1 Answer by unknown (yahoo) for What is the best way to do nested TRY AND FINALLY statement in Delphi unknown (yahoo) 2009-03-23T09:59:09Z 2009-03-23T09:59:09Z <p>If you want to go this (IMO) ugly route (group handling with initialization to nil to know if freeing is needed), you at least MUST guarantee that you won't let an exception in one of the destructor prevent from freeing the rest of your objects.<br /> Something like: </p> <pre><code>function SafeFreeAndNil(AnObject: TObject): Boolean; begin try FreeAndNil(AnObject); Result := True; except Result := False; end; end; var cds1 : TClientDataSet; cds2 : TClientDataSet; IsOK1 : Boolean; IsOK2 : Boolean; begin cds1 := Nil; cds2 := Nil; try cds1 := TClientDataSet.Create(nil); cds2 := TClientDataSet.Create(nil); /////////////////////////////////////////////////////////////////////// /// DO WHAT NEEDS TO BE DONE /////////////////////////////////////////////////////////////////////// finally IsOk2 := SafeFreeAndNil(cds2); // an error in freeing cds2 won't stop execution IsOK1 := SafeFreeAndNil(Cds1); if not(IsOk1 and IsOk2) then raise EWhatever.... end; end; </code></pre>