There is no reason you should have had to change line 121 of ZLibEx.pas; it is correct for all versions of Delphi, including Delphi 2009. The UNICODE symbol should only be defined for Delphi 2009, and when it is, the type definitions for RawByteString, UnicodeString, and UnicodeChar should all be skipped because they're already intrinsic types in the language.
ZCompressStr will generate a string that may contain non-printable characters, including null bytes. It stores its result in a RawByteString, which Delphi treats specially.
TStringList, like just about everything else in Delphi 2009, uses Unicode. Its Text property is of type UnicodeString. When you assign any non-UnicodeString value to UnicodeString, you get a conversion, as from the MultiByteToWideStr API function. Even RawByteString is included in that rule. If you haven't assigned a code-page-specific string value to a RawByteString, then it will have code page 0, which is CP_ACP, the default code page for your system.
If the string doesn't really contain characters encoded according to the system code page, then any conversion is asking for trouble: garbage in, garbage out. In particular, there's no guarantee that you'll get the same number of characters.
As Smok1 mentioned, TStringList.Text is a property. It has a setter method that splits the given string into separate lines. When you read the property, it re-joins all those lines into a single string again. While setting the property, TStrings.SetTextStr (in Classes.pas, if you're curious) will split the line at any occurrence of #0, #10, or #13. That is, null characters, line feeds, and carriage returns. When re-joining all the lines, it will use its LineBreak property, which is initialized with the global sLineBreak variable. A line break is also put after the last string, so every line ends with LineBreak. Therefore, the conversion won't necessarily round-trip.
So, there are two things to learn from this:
- Don't treat compressed data as text.
- Don't use
TStrings descendants to hold things that you don't want to treat a multiple strings.
Another good piece of advice: Don't use string as a generic data-storage type. Only use it for actual text. For storage of arbitrary binary data, prefer TBytes, or a TMemoryStream. Using your example, you could compress a string like this:
var
ss: TStream;
ms: TMemoryStream;
begin
ss := TStringStream.Create('text');
try
ms := TMemoryStream.Create;
try
ShowMessage(IntToStr(ss.Size));
ZCompressStream(ss, ms);
ShowMessage(IntToStr(ms.Size));
finally
ms.Free;
end;
finally
ss.Free;
end;
end;