After asking this question about interface fields in records I assumed that the following would work (notice the assertion):

type
  TRec <T> = record
    Intf : IInterface;
  end;

  TTestClass = class
  public
    function ReturnRec : TRec <Integer>;
  end;

  // Implementation 
  function TTestClass.ReturnRec : TRec <Integer>;
  begin
    Assert (Result.Intf = nil);    // Interface field in record should be initialized!
    Result.Intf := TInterfacedObject.Create;
  end;

I tested this with the following code:

  for I := 1 to 1000 do
    Rec := Test.ReturnRec;

and the assertion fails!

Where's my mistake here? What assumption is wrong?

link|improve this question

Does the assertion fail on the first or second run of the loop? – Johan Dec 15 '11 at 11:52
@Smasher FWIW, this is what I was thinking of when I wrote my incorrect answer: stackoverflow.com/questions/5102843/… – David Heffernan Dec 15 '11 at 13:14
feedback

1 Answer

up vote 12 down vote accepted

Function

function ReturnRec: TRec<Integer>;

Is semantically equal to procedure

procedure ReturnRec(var Result: TRec<Integer>);

[I'm pretty sure that somebody from Embarcadero, probably Barry Kelly or Alan Bauer stated this somewhere but I can't find the reference at the moment.]

In the second case, the compiler assumes that the record will be initialized (if necessary) before it is passed to the ReturnRec and doesn't create any initialization code for rec inside ReturnRec. I'm assuming that the same code path inside compiler is taken for the first example and that's why the Result is not initialized.

Anyway, the solution is simple:

function TTestClass.ReturnRec : TRec <Integer>;
begin
  Result.Intf := TInterfacedObject.Create;
end;

Just assume that compiler knows what it's doing and assign the interface and everything will work just fine.

EDIT

The problem you have occurs from the 'for' loop. Your code

for I := 1 to 1000 do
  Rec := Test.ReturnRec;

is compiled into something like this:

var
  result: TRec<Integer>;

Initialize(result);
for I := 1 to 1000 do begin
  Test.ReturnRec(result);
  rec := result;
end;

That is why you are reusing same record all over and that is why Result.Intf is uninitialized only the first time.

EDIT2

You can trick the compiler by moving t.ReturnRec call out from the loop into a separate method.

procedure GetRec(t: TTest; var rec: TRec);
begin
  rec := t.ReturnRec;
end;

for i := 1 to 1000 do
  GetRec(t, rec);

Now the hidden result variable lives in the GetRec procedure and is initialized every time GetRec is called.

link|improve this answer
Thanks gabr! I know the workaround but I dont like it, because I'm using this for a utility list record (like TList<T> but as record) and calling Initialize in all places is not very nice (kind of eliminates part of the advantage of having a record) :( especially since forgetting it can lead to some nasty bugs. – Smasher Dec 15 '11 at 11:26
2  
@Smasher You should always assign return values. Don't return unininitialzed values. – David Heffernan Dec 15 '11 at 11:30
1  
@Smasher You could certainly view it as a bug. I bet you there are many QC reports already. No matter, my guess is that the compiler won't ever change and so you just have to accept it. – David Heffernan Dec 15 '11 at 11:45
1  
@Smasher I mis-remembered. The point I made about the for loop is only valid if you ignore the return value and the compiler has to make an implicit local variable. – David Heffernan Dec 15 '11 at 11:53
4  
Calling Initialize is not correct. It assumes that the value it receives is invalid and simply overwrites the record with valid values. Upon entry to the function, the value held in Result.Intf is a valid interface reference. Calling Initialize on it leaks that reference. You can call Finialize on it first, if you want, but I think it's more direct to simply assign nil to the fields that need it. – Rob Kennedy Dec 15 '11 at 13:16
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.