Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With all the talk about the Delphi team working on cross-platform development, one sentiment that keeps coming up is, "I hope they do it right this time, not like Kylix." I didn't really notice Kylix when it was around, because Linux wasn't nearly as mature back then as it is now and it just wasn't an OS I had any interest in. So now that it's starting to become an issue again, I find myself wondering, what did Kylix do wrong and how could CodeGear do it better this time around?

share|improve this question
2  
All I hope is that CodeGear is not going to was resources on creating another Linux IDE... There are just a few Linux users. Only a few of them program, but most of them dislike pascal because they think it's an ancient "teaching-language". Now add a ridiculous pricetag to the IDE, and there will be only one person left who'd be willing to buy it: you. :-) – Wouter van Nifterick May 3 '09 at 6:25
1  
Part of that is Linus Torvalds' fault. He's a very smart programmer, and the Linux crowd tends to consider him as some sort of god-figure, but I lost a whole lot of respect when I read some horribly ignorant and inaccurate things he wrote on the subject of Pascal being unsuitable as a modern language. It felt like he hadn't looked at it since the days of "Why Pascal Is Not My Favorite Programming Language." – Mason Wheeler May 3 '09 at 13:04
2  
@Mason: Read the distilled version at kerneltrap.org/node/553/2131 and you will see that Torvalds' POV is actually valid as he's talking about Pascal as designed by Wirth, not about any of the "real life" dialects that actually added the missing stuff. In general this discussion looks like the Linux devs trying to reason with one guy who is on a code purity crusade. Such crusades are seldom useful, whether they aim at "goto" or any other language construct with potential for abuse. – mghie May 3 '09 at 16:42
1  
Aha. OK, that looks a lot less stupid in context. Thanks! – Mason Wheeler May 3 '09 at 19:55

8 Answers

As for what could CodeGear do better this time around:

  • There needs to be a more abstract way of laying out controls in dialogs, not the pixel-based stuff the VCL uses now. This breaks down on Windows already with high DPI settings or non-standard fonts, it will be much worse for multi-platform programs. Take for example the sizer classes in wxWidgets, or the layout classes / managers in GTK, Java or QT - they all do much better with changing fonts or control sizes. As another advantage this works transparently with translated texts in controls being shorter or longer.

  • Make the libraries Unicode only. Ideally there would be a special string class, using UCS-16 internally on Windows, but UTF-8 for Linux and Mac OS X. A program should be able to work with the platform-native Unicode encoding, not be forced to have conversions for every file system access or screen output. But maybe they already dropped the ball on that one with the Unicode string changes for Delphi 2009.

  • The GUI should use native controls on all platforms, for proper look and feel. That would be the standard controls on Windows, Cocoa on the Mac, and on Linux it should ideally use either GTK or QT, depending on the desktop being GNOME or KDE.

  • The remote debugger needs to become a first-class tool, not the bug-ridden and half-hidden thing it is now. Development for different platforms happens often in VMs, sometimes there is only remote access to machines.

share|improve this answer
for wxWidgets there is now a plugin for Delphi twinforms.com/products/wxformsdelphi/index.php – Hugues Van Landeghem May 1 '09 at 16:09
I know. AFAICT it doesn't make use of sizers. Look at the linked screenshot for Mac OS X, that's exactly the way it's not supposed to look like. Wrong button order, wrong control spacing, "OK" and "Cancel" button labels, static texts aligned on the left, ... I could go on and on. – mghie May 1 '09 at 16:30

Kylix had two things working against it: widespread acceptance of Linux on the desktop just wasn't there yet, and Kylix itself was very expensive. Throw in Kylix's questionable quality (especially the first version) and you have your answer.

If CodeGear wants to do another version of Delphi on Linux, they should just look at Lazarus.

share|improve this answer
What sort of quality problems did it have? – Mason Wheeler May 1 '09 at 14:39
1  
It didn't behave well with the window managers of the time, for starters. It also had stability problems and inconsistent behaviors between Linux distros. – Robert S. May 1 '09 at 14:41
1  
I don't think so, because Lazarus is of questionable quality itself. – mghie May 1 '09 at 14:44
Lazarus is free. Kylix was $3000 (initially). – Robert S. May 1 '09 at 14:45
Free as in beer isn't everything. I wouldn't use Lazarus for day-to-day work if I was paid for it. – mghie May 1 '09 at 14:47
show 9 more comments

I worked on the Free Pascal Unix RTL at the time (and still), which did Pascal on *nix before Kylix, and we watched it closely from the fist beta's on. So one could say I had a good and unique perspective on the rise and fall of Kylix.

A main problem is that it wasn't geared towards server apps use, the main thing people were doing on Linux at the time, but IMHO that doesn't explain the failure.

While there were various other problems (Wine, deployment, being very Linux/x86-centric so harder to port to the "next" *nix, Borland not pushing it enough), I still think the fact that Kylix failed is more a testament to Linux' woes at the time than a direct result from Kylix problems. Some of which (like long term binary API stability) haven't been fixed still.

Still, it should have worked IMHO, since it was clearly ahead of the rest, and workable, and if the demand had really been there, people would have stepped up (and some have, we still get monthly people on the FPC lists that are converting large Kylix codebases).

A server oriented version might have been a bigger hit, and they marketed a bit too strongly on the single source thing (which raised expectations wrongly), but still the GUI principle as it is should have worked IMHO, and I blame Linux and the Linux market. Too soon, market too hyped, and not ready for commercialization after a Windows model yet.

share|improve this answer
I disagree re the whole server thing - there's no market for yet another dev environment for server apps, least of all a commercial one, and there hasn't been then. Maybe there would be a market for a Pascal cross-platform GUI development done right. Maybe dual-licensed, see QT, they did well with that approach. However Kylix failed spectacularly on the promised "take your Delphi VCL app and make it a nice cross-platform CLX app in a few easy steps" front. Part of that is that it's just not that easy. They overpromised and underdelivered. – mghie May 2 '09 at 9:52
1  
mghie: I agree with the second part. I don't agree with the first part, since we are talking a different time here (2000, not 2009). There was a window then. – Marco van de Voort May 2 '09 at 11:21

In my opinion to go cross-platform native & hosted (VM) would be good for Delphi; however there is the catch that it needs to be well thought-out before implementation. (Generally the Turbo Pascal versions were, IMO... though some of the additions to the Delphi language were not; case-in-point you cannot declare properties in interfaces to be read and/or write only w/o declaring also WHAT the property's source was, either a field or method that had to be declared in the interface. IE it was/is a good idea... but they forgot to fully separate interface/implementation.)

So, IMO, what is needed is:

1 - A VCL-/TurboVision-/GeneralPurpose-like library, designed to be platform independent. ( The VCL really is a good example for object-oriented hierarchies; as was turbo-vision [for its time]... also TV introduced and used streams rather interestingly. ) So, to reiterate:

a) A good object-oriented hierarchy of visible components... perhaps also embracing a more "percent"/relative/vector-graphic scheme than the current pixel one. (Thereby compensating for screen-resolution disparities.)

b) Objects that "know" how to initialize and free their contained objects (though pointers to objects would be exempted, as we would like to have the ability to "share" objects), so the setting up of constructors to initialize and destructors to free the contained objects are not needed. {IE, Optimize the common case.}

c) The non-visual components like TList, TStringList and so forth should be implemented... though with the addition of ADTs such as Stack, Queue, PriorityQueue, Heap, Tree & BTree. As a personal request though, can we make them 1-based rather than 0-based? I ask this because when searching through them it would be nicer to have 0 be "not found" and a positive number be the index all while using unsigned numbers, much the style of ShortStrings. This also has the advantage of not chopping in half the maximum allowable size-constraint as using signed numbers would.

d) Objects should be able, at the lowest possible level, to send and send/delete themselves into a stream for reconstruction on the other end. {Difficult to implement, perhaps; but the TurboVision API did it with its registration scheme... with RTTI involved it should be a bit easier.}

e) The aforementioned ADTs should also have a mirroring generic interface heirchy, such that something like TStringList gives you a list of strings whose matching objects property are objects of the TIntergerObject type.

f) Container types, like the stack or StringList should also know their contained type; and whether they are homogeneous or not.

g) A parser-object subtree on the non-visual object-tree that is inheritable and generalized (perhaps one that "eats" BNF and parses input accordingly... a HUGE project in itself.

I know that this is a tall order, and a LOT of work. However the payoff would be immense as well. A JVM could be a Stack object and a parser object that translates the source-code to the appropriate objects to be pushed onto the stack... A Forth compiler/interpreter could be implemented in the same way with several stacks and a Forth parser object. You obviously see where this is leading: having a versatile and generalized ADT library at the base and working building the framework on that the next iteration of RAD studio could in one fell swoop become not only a competitor with .NET for its "any language" idea, but also for multiple archetectures on the backend. (Yes, there is the sizing and endian issue, but the idea of high-level languages is to remove the programmer from those issues, unless he is particularly focusing on them; those issues could be well resolved by keeping the Delphi's Byte, Integer, LongInt sizes stable, as it currently is [perhaps using NativeInteger, NativeLongInteger and so forth when the machine-dependent type/sizes are needed] and by letting the TStream-descendant objects for files handle storing and retrieving Delphi-/RAD-native app data and deriving from those when particular endian is needed for the format.)

share|improve this answer

I bought Kylix when it first came out - it ran very slowly, looked clunky and actually only supported a few specific versions of Linux. Frankly, there were and are better Linux tools out there. But I think it is getting increasingly hard for anyone to make money selling development tools, whatever the platform - the free alternatives are just so good.

share|improve this answer
One notable exception is Microsoft, which still charges for its tools, and I keep buying. :/ – Robert S. May 1 '09 at 14:47
Yes, but how much money do they make from them? Most of their income derives from the Office and OS sales, IIRC. – anon May 1 '09 at 14:50
The hearsay I've always heard is that the fees for development tools cover the costs of pressing DVDs and hosting the downloads, plus the conferences and such. I doubt they're profiting much, if at all. – Robert S. May 1 '09 at 15:04
1  
Yeah. Microsoft can get away with dumping free tools on the market because they've got Office and Windows revenues to subsidize it. – Mason Wheeler May 1 '09 at 15:07
I don't think that is true - I think they do make a profit from their tools, just not as much as they make from their other products. And of course the avialability of the tools contributers to the success of the the OS. – anon May 1 '09 at 15:16
show 3 more comments

Trying to charge 600 bucks for people used to getting tools and software for free might not have been a wise decision!

share|improve this answer
that's not fair... developers will pay, if the product is up to hype. in this case, it was clearly not – sardaukar Oct 2 '09 at 13:23

They also had a lot of trouble creating reliable deploy on so many different distro varieties.

share|improve this answer
That seems more like a Linux problem than a tool problem. You see similar compatibility issues on Windows; it's just less widespread because there aren't nearly as many Windows versions as there are Linux distros. How do other Linux programming languages solve this problem? – Mason Wheeler May 1 '09 at 14:43
2  
They provide the full source so you can compile them on your specific Linux platform. – anon May 1 '09 at 14:44
2  
Neil: that is naieve. You often can't compile an old source under a new system without mods, and even for current distro's there sometimes is work needed to compile current source. There is simply effectively no way on Linux to have an application that doesn't need continous maintaining to keep running. And if you can't force that off on the community (because you are commercial, the audience is not big or knowledable enough), then you are out of luck. And non trivially sized apps need quite a lot of maintaining. Also on Linux. – Marco van de Voort May 11 '09 at 9:23

What I hated about Kylix and VCL for Web (Intraweb) is that they have components that look like the standard components....

The VCL is itself quite generic (Except for the handles)... So I would want to have the same source code, same pas, dfm, dpr .... and by selecting a compiler option choose which platform to build for, or even have different dprs for each platform with the same source files.

share|improve this answer
I agree that the same code for all platforms would be nice, unfortunately the VCL simply isn't generic at all. It is impossible to write a framework for a single platform and make it generic later on. For cross-platform applications one needs to code against the least common denominator, not against a thinly veiled single-platform API, which is all the VCL is really. – mghie May 22 '09 at 22:07
If I were to use another API, another source code, It's not really cross-platform. It would only be another platform to build for, I don't see a lot of code-reuse unless we share all the non-visual components, and try to make our code more Object-Oriented in the full sense. – Osama ALASSIRY May 23 '09 at 9:11
Transitioning to an MVC-like architecture could help, with different views for different platforms. – Osama ALASSIRY May 23 '09 at 9:26
I agree with you, but all source code should be shared, not only the non-visual components. Kind of what Borland tried with the CLX, only with native controls as the underlying platform instead of QT. Something that replaces the VCL, not an alternative for another platform, because I think that the VCL isn't fit to be the base of such a cross-platform effort. And I agree with your second comment too. – mghie May 23 '09 at 12:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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