vote up 2 vote down star
2

I'm converting my applications to Delphi 2009 and faced an intriguing issue with some calls that need to convert a string (wide) to AnsiString.

Here's an example to demonstrate the issue I'm having:

var
  s: PAnsiChar;

...

s := PAnsiChar(Application.ExeName);

With Delphi 2007 and previous versions, s := PChar(Application.ExeName) would return the application exe path.

with Delphi 2009, s := PAnsiChar(Application.ExeName) returns only 'E'.

My guess is that's because I'm converting a unicode string to an ansi string but how can I convert it so that a PAnsiChar gets the full string?

flag

5 Answers

vote up 5 vote down check

I have no Delphi 2009 here so I can't check it. But maybe you have to try:

s := PAnsiChar(AnsiString(Application.ExeName));

As gabr already pointed, this is not a very good practice and you will only use it if you are 100% sure, the string only contains characters that have a direct mapping to the ansi range.

That's why you should get a warning because you are converting Unicode to Ansi.

link|flag
You shouldn't because it is an explicit conversion. And, yes, it should work. – gabr Nov 12 '08 at 12:40
I know, but the conversion to PAnsiChar is also a bit questionable. – Gamecat Nov 12 '08 at 12:49
It does work at the cost of the explicit conversion. Is there any other alternative? The conversion to PAnsiChar is explained on my reply below. – smartins Nov 12 '08 at 13:04
The problem is that you always have the chance of information loss. It is possibly better to change the PAnsiChar for a string. – Gamecat Nov 12 '08 at 13:11
vote up 0 vote down

Does this help you WideCharToMultiByte ?

link|flag
WideCharToMultiByte is used internally in some casts of Delphi – DR Dec 30 at 21:19
vote up 1 vote down

Gamecat explicit conversion works. I'm explaining the problem in more detail below so that perhaps someone can point to a better solution.

I'm using the following function to retrieve the application compilation date:

function LinkerTimeStamp(const FileName: string): TDateTime;
var
  LI: TLoadedImage;
begin
  {$IFDEF UNICODE}
  Win32Check(MapAndLoad(PAnsiChar(AnsiString(FileName)), nil, @LI, False, True));
  {$ELSE}
  Win32Check(MapAndLoad(PChar(FileName), nil, @LI, False, True));
  {$ENDIF}
  Result := LI.FileHeader.FileHeader.TimeDateStamp / SecsPerDay + UnixDateDelta;
  UnMapAndLoad(@LI);
end;

MapAndLoad requires a PAnsiChar for the ImageName Parameter so I need to convert the unicode string. Is there any other alternative as to explicitly convert to AnsiString first?

link|flag
Is there no Unicode version of MapAndLoad? – Gamecat Nov 12 '08 at 13:24
No, I don't think there is a Unicode version. CodeGear Imagehlp unit declares MapAndLoad as a LPSTR which maps to PAnsiChar. And no mention on msdn about an Unicode version. – smartins Nov 12 '08 at 13:29
You should probably add a comment what you changed for Unicode compatibility, and remove the IFDEF altogether - PAnsiChar and AnsiString are available at least in Delphi 4 already, and the typecasts do not hurt in Ansi programs. The simpler the code the better IMHO. – mghie Nov 13 '08 at 16:14
vote up 0 vote down

I had the exact same problem. The PAnsiChar only points to the first character. I wrote the following function to handle the old functionality.

// This function converts a string to a PAnsiChar
// If the output is not the same, an exception is raised
// Author: nogabel@hotmail.com

function StringToPAnsiChar(stringVar : string) : PAnsiChar;
Var
  AnsString : AnsiString;
  InternalError : Boolean;
begin
  InternalError := false;
  Result := '';
  try
    if stringVar <> '' Then
    begin
       AnsString := AnsiString(StringVar);
       Result := PAnsiChar(PAnsiString(AnsString));
    end;
  Except
    InternalError := true;
  end;
  if InternalError or (String(Result) <> stringVar) then
  begin
    Raise Exception.Create('Conversion from string to PAnsiChar failed!');
  end;
end;

I hope this can help you...

Regards,

Nogabel

link|flag
vote up 0 vote down

I think You are a bit off. Every Win32 API function has a unicode counterpart, if it is expecting a string. Try MapAndLoadW instead of MapAndLoad...

link|flag

Your Answer

Get an OpenID
or

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