Delphi 2009 - Can an Interface Property Cause a Memory Leak? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T22:22:05Zhttp://stackoverflow.com/feeds/question/1035915http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1035915/delphi-2009-can-an-interface-property-cause-a-memory-leak3Delphi 2009 - Can an Interface Property Cause a Memory Leak?price2009-06-24T00:13:28Z2009-06-24T12:48:35Z
<p>I inherited an Intraweb app that had a 2MB text file of memory leaks as reported by FastMM4. I've got it down to 115 instances of one class leaking 52 bytes.</p>
<p>A brief description of the bad actor is: </p>
<pre><code>TCwcBasicAdapter = class(TCwcCustomAdapter)
protected
FNavTitleField: TField;
function GetAdapterNav(aDataSet: TDataSet): ICwcCDSAdapterNav; override;
public
constructor Create(aDataSource: TDataSource; aKeyField, aNavTitleField: TField; aMultiple: boolean);
end;
</code></pre>
<p>and the interface is: </p>
<pre><code> ICwcCDSAdapterNav = interface(IInterface)
</code></pre>
<p>Am I barking up the wrong tree, since the property is reference counted? Are there any circumstances where the interface property could keep the class from being destroyed?</p>
<p>Here is the implementation of the method above:</p>
<pre><code>function TCwcBasicAdapter.GetAdapterNav(aDataSet: TDataSet): ICwcCDSAdapterNav;
var
AdapterNav: TCwcCDSAdapterNavBase;
begin
result := nil;
if Assigned(aDataSet) then begin
AdapterNav := TCwcCDSAdapterNavBasic.Create(aDataSet, FKeyField.Index, FNavTitleField.Index);
try
AdapterNav.GetInterface(ICwcCDSAdapterNav, result);
except
FreeAndNil(AdapterNav);
raise;
end;
end;
end;
</code></pre>
<p>with the class declared as:</p>
<pre><code>TCwcCDSAdapterNavBase = class(TInterfacedObject, ICwcCDSAdapterNav)
</code></pre>
http://stackoverflow.com/questions/1035915/delphi-2009-can-an-interface-property-cause-a-memory-leak/1035991#10359913Answer by François for Delphi 2009 - Can an Interface Property Cause a Memory Leak?François2009-06-24T00:57:01Z2009-06-24T02:35:16Z<p>FastMM should give you what is leaked and where it was created.<br />
That would help narrowing it down to the real culprit: who is leaking what?</p>
<p>I'm not sure what really your question is?<br />
Your code is incomplete or not the one in question: your class does not have an Interface property nor an Interface private Field, just a method that returns an Interface, which is harmless.</p>
<p><strong>Edit</strong>: Without seeing the code of your Object implementing ICwcCDSAdapterNav, we can't tell if it is indeed reference counted.<br />
<strong>If you don't descend from TInterfacedObject</strong>, <strong>chances are</strong> that it's not reference counted and <strong>that you cannot rely on this automagically freeing</strong>...</p>
<p>You may want to give a look at this <strong>CodeRage 2 session</strong>: <a href="http://video.codegear.com/CodeRageIIArchives/Day4/FrancoisGaillard%5FMemoryLeaks%5FEnglish.zip" rel="nofollow">Fighting Memory Leaks for Dummies</a>. It mainly shows how to use FastMM to prevent/detect memory leaks in Delphi. Was for D2007 but still relevant for other versions.</p>
http://stackoverflow.com/questions/1035915/delphi-2009-can-an-interface-property-cause-a-memory-leak/1036006#10360062Answer by Rob Kennedy for Delphi 2009 - Can an Interface Property Cause a Memory Leak?Rob Kennedy2009-06-24T01:05:25Z2009-06-24T12:48:35Z<p>If you are leaking 115 instances of that class, then it is <em>that class</em> that is being leaked. The memory occupied by that class, not the memory occupied by the things it refers to, is being leaked. Somewhere, you have 115 instances of <code>TCwcBasicAdapter</code> that you're not freeing.</p>
<p>Furthermore, <em>properties</em> don't store data, no matter they're interfaces or some other type. Only fields occupy memory (along with some hidden space the compiler allocates on the class's behalf).</p>
<p>So, yes, you are barking up the wrong tree. Your memory leak is somewhere else. When FastMM tells you that you have a memory leak, doesn't it also tell you where each leaked instance was allocated. It has that capability; you might need to adjust some conditional-compilation symbols to enable that feature.</p>
<p>Surely it's not <em>only</em> instances of that class that are leaking, though. FastMM should also report some other things leaking, such as instances of the class or classes that implement the interface.</p>
<p><hr /></p>
<p>Based on the function you added, I've begun to suspect that it's really <code>TCwcCDSAdapterNavBase</code> that's leaking, and that could be because of the atypical way you use for creating it. Does the exception handler in <code>GetAdapterNav</code> ever run? I doubt it; <code>TObject.GetInterface</code> never explicitly raises an exception. If the object doesn't support the interface, it returns <code>False</code>. All that exception handler could catch are things like access violation and illegal operations, which you really shouldn't be catching there anyway.</p>
<p>You can implement that function more directly like this:</p>
<pre><code>if Assigned(FDataSet) then
Result := TCwcCDSAdapterNavBase.Create(...);
</code></pre>
http://stackoverflow.com/questions/1035915/delphi-2009-can-an-interface-property-cause-a-memory-leak/1036034#10360344Answer by Mason Wheeler for Delphi 2009 - Can an Interface Property Cause a Memory Leak?Mason Wheeler2009-06-24T01:20:26Z2009-06-24T01:20:26Z<p>You've got some good answers so far about how FastMM works. But as for your actual question, yes, interfaced objects can leak in two different ways.</p>
<ol>
<li>Interfaces are only reference-counted if the objects they belong to have implemented reference counting in their _AddRef and _Release methods. Some objects don't.</li>
<li>If you have circular interface references, (Interface 1 references interface 2, which references interface 1,) then the reference count will never fall to 0 without some special tricks on your part. If this is your problem, I'll refer you to Andreas Hausladen's <a href="http://andy.jgknet.de/blog/?p=576" rel="nofollow">recent blog post on the subject.</a></li>
</ol>