show/hide this revision's text 4 added 256 characters in body

I use cUtils, cDateTime and cStrings in a project.

After a 30 minute session of searching and replacing like a madman I got them to compile in Delphi 2009, with just a couple of warnings left to fix.

  • Char>>>>AnsiChar
  • String>>>>AnsiString
  • PChar>>>>PAnsiChar
  • PString>>>>PAnsiString

It passes all of its selftests, and so far things seem to work fine. I've shared it here: http://www.xs4all.nl/~niff/Fundamentals_UtilsD2009.zip

Update I've added a ported cDataStructs.pas to the zipfile, which contains the dictionary classes. This one still has a lot of compiler warnings that you might want to fix, but the self-tests pass, so you could try and see if it works for you..

show/hide this revision's text 3 removed rant

Rant below..

I don't really know what people are talking about when they say that unicodifying Delphi code is a breeze.

So far it's been a total cluster fuck with any reasonably sized project. You either have to invest a lot of time in regression testing, or you'll risk introducing lots of silent bugs. Yeah, I know that with proper unit tests it should be easy, but the reality is that there is a lot of code around that does not have unit tests at all.

In several cases I've decided to not port applications to Delphi 2009, and stick to the old code because there simply was no business case for porting it. That by itself is leading to problems when a part of the codebase is shared between projects for D2009 and older compilers.

Delphi 2009 is the best Delphi so far, if only the Unicode stuff would've been left out or if it was done in such a way that it didn't break old code. Code that has been working flawlessly for over a decade suddenly cannot be trusted any longer. That's a big price to pay for something shitty like natively supported Taiwanese characters.

show/hide this revision's text 2 added 118 characters in body; deleted 80 characters in body

I use cUtils, cDateTime and cStrings in a project.

After a 30 minute session of searching and replacing like a madman I got them to "compile" compile in Delphi 2009, with just a couple of warnings left to fix.

  • Char>>>>AnsiChar
  • String>>>>AnsiString
  • PChar>>>>PAnsiChar
  • PString>>>>PAnsiString

It passes all of its selftests, and so far things seem to work fine. I've put shared it online here: http://www.xs4all.nl/~niff/Fundamentals_UtilsD2009.zip

Rant below..

I don't really know what people are talking about when they say that unicodifying Delphi code is a breeze.

So far it's been a total cluster fuck with any reasonably sized project. You either have to invest a lot of time in regression testing, or you'll risk introducing lots of silent bugs. Yeah, I know that with proper unit tests it should be easy, but the reality is that there is a lot of code around that does not have unit tests at all.

In several cases I've decided to not port applications to Delphi 2009, and stick to the old code because there simply was no business case for porting it. That by itself is leading to problems when a part of the codebase is shared between projects for D2009 and older compilers.

Delphi 2009 is the best Delphi so far, if only the Unicode stuff would've been left out or if it was done in such a way that it didn't break old code. Code that has been working flawlessly for over a decade suddenly cannot be trusted any longer. That's a big price to pay for something shitty like natively supported Taiwanese characters.

show/hide this revision's text 1