How to automatically free classes/objects? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T16:29:02Z http://stackoverflow.com/feeds/question/415958 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects 5 How to automatically free classes/objects? Shannon 2009-01-06T09:52:34Z 2009-01-09T02:23:51Z <p>What techniques exist to automatically free objects in delphi applications?</p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/415965#415965 10 Answer by Glenner003 for How to automatically free classes/objects? Glenner003 2009-01-06T09:55:03Z 2009-01-06T09:55:03Z <p>Use interfaces instead of objects. They are reference counted and freed automatically when the reference count reaches 0.</p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/415990#415990 4 Answer by mghie for How to automatically free classes/objects? mghie 2009-01-06T10:04:37Z 2009-01-06T10:04:37Z <p>Use the object ownership of components that the VCL provides. As long as you create objects with a non-nil owner you don't need to free them explicitely. See also my answer to <a href="http://stackoverflow.com/questions/398137/what-is-the-best-way-to-do-nested-try-and-finally-statement-in-delphi">this</a> question.</p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/416045#416045 -1 Answer by Lars Truijens for How to automatically free classes/objects? Lars Truijens 2009-01-06T10:33:18Z 2009-01-06T10:33:18Z <p>If you use Delphi for .Net / Delphi Prism you get Garbage Collection which takes care of all the freeing.</p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/416244#416244 1 Answer by Jim McKeeth for How to automatically free classes/objects? Jim McKeeth 2009-01-06T11:56:08Z 2009-01-06T11:56:08Z <p><a href="http://barrkel.blogspot.com/2008/11/somewhat-more-efficient-smart-pointers.html" rel="nofollow">Smart Pointers</a> work really well if you have Delphi 2009. </p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/416418#416418 4 Answer by mj2008 for How to automatically free classes/objects? mj2008 2009-01-06T12:59:08Z 2009-01-06T12:59:08Z <p>I have to say, I don't like "hiding" the Free of an object. Far better to have the traditional code:</p> <pre><code>MyObject := TObject.Create; try // do stuff finally FreeAndNil(MyObject); end; </code></pre> <p>No way it can go wrong, works as expected, and people recognise the pattern. </p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/417602#417602 2 Answer by Rob Kennedy for How to automatically free classes/objects? Rob Kennedy 2009-01-06T18:19:43Z 2009-01-06T18:19:43Z <p>Along the lines of interfaces, you can try the <code>Guard</code> function in the <code>JclSysUtils</code> unit, part of the free <a href="http://jcl.sf.net/" rel="nofollow">Jedi Code Library</a>. It allows you to associate an object with a <em>separate</em> interface reference, so when that interface reference is destroyed, the object is destroyed along with it. This can be useful when you don't have the option of modifying the classes you're using to make them support interfaces of their own.</p> <pre><code>var G: ISafeGuard; foo: TStrings; begin // Guard returns TObject, so a type-cast is necessary foo := Guard(TStringList.Create, G) as TStrings; // Use the object as normal foo.Add('bar'); end; // foo gets freed automatically as G goes out of scope </code></pre> <p>There are overloads for objects and <code>GetMem</code>-allocated pointers. There is also <code>IMultiSafeGuard</code>, which can ensure that multiple objects get freed.</p> <p>If you have a factory function, you might be creating an object, setting some of its properties, and then returning it. If an exception occurs while setting the properties, you'll want to make sure you free the object since you can't return it. One way to do that is like this:</p> <pre><code>function Slurp(const source: TFileName): TStrings; begin Result := TStringList.Create; try Result.LoadFromFile(source); except Result.Free; raise; end; end; </code></pre> <p>With <code>Guard</code>, it would become this:</p> <pre><code>function Slurp(const source: TFileName): TStrings; var G: ISafeGuard; begin Result := Guard(TStringList.Create, G) as TStrings; Result.LoadFromFile(source); G.ReleaseItem; end; </code></pre> <p>The <code>ReleaseItem</code> method revokes the <code>ISafeGuard</code>'s ownership of the object. If an exception occurs before that happens, then as the stack unwinds and the interface is released, the guard will free the object.</p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/418206#418206 2 Answer by Ben Daniel for How to automatically free classes/objects? Ben Daniel 2009-01-06T21:17:44Z 2009-01-06T21:17:44Z <p>I have written a function GC(obj: TObject) (for Garbage Collect) which takes an object and frees it when the execution leaves the current method. It's kind of like a one-line shorthand function for a Try Finally Free block.</p> <p>Instead of:</p> <pre><code>procedure Test; var AQuery: TQuery; begin AQuery := TQuery.Create(nil); try ... finally FreeAndNil(AQuery); end; end; </code></pre> <p>I just have:</p> <pre><code>procedure Test; var AQuery: TQuery; begin AQuery := TQuery.Create(nil); GC(AQuery); ... end; </code></pre> <p>The GC function simply returns an object in the form of an interface.</p> <pre><code>function GC(obj: TObject): IGarbo; begin Result := TGarbo.Create(obj); end; </code></pre> <p>Because the TGarbo class descends from TInterfacedObject, when the TGarbo object goes out of scope it will automatically get freed. In the destructor of the TGarbo object, it also frees the object you passed to it in it's constructor (the object you passed in the GC function).</p> <pre><code>type IGarbo = interface ['{A6E17957-C233-4433-BCBD-3B53C0C2C596}'] function Obj: TObject; end; TGarbo = class(TInterfacedObject, IGarbo) private FObj: TObject; public constructor Create(AObjectToGC: TObject); destructor Destroy; override; function Obj: TObject; end; { TGarbo } constructor TGarbo.Create(AObjectToGC: TObject); begin inherited Create; FObj := AObjectToGC; end; destructor TGarbo.Destroy; begin if Assigned(FObj) then FreeAndNil(FObj); inherited; end; function TGarbo.Obj: TObject; begin Result := FObj; end; </code></pre> <p>Being stuck in the world of Delphi 7 with no sight of upgrading to a version of Delphi with built-in garbage collection in the near future, I'm addicted to using this short-hand method of easily freeing local temporary objects! :)</p> http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/426850#426850 1 Answer by Jim McKeeth for How to automatically free classes/objects? Jim McKeeth 2009-01-09T02:23:51Z 2009-01-09T02:23:51Z <p>Here is the <a href="http://cc.codegear.com/Item/21646" rel="nofollow">API for Boehm Garbage Collector DLL</a> for Delphi. The Delphi API is written by <a href="http://barrkel.blogspot.com/" rel="nofollow">Barry Kelly</a>, who works for CodeGear writing the compiler now.</p>