vote up 1 vote down star

Hi! I'm using Delphi 2009 and get some strange errors using the following code segment:

var
  Str     : AnsiString;
  CharPtr : PAnsiChar;
...
CharPtr := PAnsiChar (Str);
ExecuteInBackgroundThread (
  procedure
  begin
  DoSomething (CharPtr);
  end);

I'm guessing that the string is destructed when falling out of scope and under some timing conditions DoSomething will yield the strangest results. So the first question is: am I right?

Second question is: How can I circumvent the string being destructed? What's the proper way to do this?

Thanks in advance.

flag

73% accept rate

4 Answers

vote up 0 vote down

Why not pass the string by value, rather than pointer/reference?

link|flag
not really possible in Delphi. – Smasher Oct 6 at 12:41
Smasher, see wcoenen's answer. – Rob Kennedy Oct 6 at 15:52
@Rob Kennedy: That's not really by value isn't it? The important difference is that Str is used inside the anonymous method and therefore gets captured. String and "by value" in Delphi sounds contradictory to me. – Smasher Oct 6 at 18:10
vote up 2 vote down

Okay, I think I might have figured it out.

I'm using an anonymous method, so the compiler should capture my local variables. Apparently, it does only capture the variables that I actually use in the anonymous method. That means that CharPtr is captured but not SendStr. So, when SendStr falls out of scope it is destructed and CharPtr is now in danger of pointing to some random garbage.

With the following modification

ExecuteInBackgroundThread (
  procedure
  begin
  Log (Str);
  DoSomething (CharPtr);
  end);

everything seems to work fine.

link|flag
The Str reference count might be decremented right after the Log statement rather than at the end of the procedure. Or maybe not, but the point is you don't want to depend on such compiler details. – wcoenen Oct 6 at 11:04
I don't really know but I don't think that captured variables are released before the end of the anonymous method. – Smasher Oct 6 at 11:22
wcoenen - yes you can depend on such details, otherwise Delphi code would break quite severely - there's a lot of code that typecasts strings to PChar for API calls, relying on the string not going away, even though it isn't used subsequently. – Barry Kelly Oct 6 at 11:44
2  
smasher - you have the right idea. Capturing variables extends their lifetime. If you don't capture the string, but do capture a pointer to the contents of the string, the string will get freed from out underneath you. So you either capture the string with a do-nothing procedure - such as "procedure Use(const X); begin end;" - or you leave the typecast up to the last minute, or do it in the body of the anonymous method. – Barry Kelly Oct 6 at 11:46
vote up 6 vote down

So the first question is: am I right?

Most likely, yes. Delphi's AnsiString is reference counted. When Str goes out of scope, the reference count is decremented. If the reference count reaches zero then the memory it occupied may be reused.

Second question is: How can I circumvent the string being destructed? What's the proper way to to this?

By not using pointers, like this:

var
  Str     : AnsiString;
...
ExecuteInBackgroundThread (
  procedure
  begin
  DoSomething (Str);
  end);
link|flag
vote up 3 vote down

Just use:

DoSomething(PAnsiChar(Str));

General rule is simple: do not use PChar until at the very last moment. This way you don't need to think too much about memory management issues (well, mostly).

See also this great article.

link|flag
And how is this going to do any good against the real problem--the string going out of scope? – Loren Pechtel Oct 6 at 21:50
That's because you use Str inside anonymous method, so now string variable will be captured and not go out of scope ;) – Alexander Oct 7 at 13:36

Your Answer

Get an OpenID
or

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