vote up 3 vote down star
2

As perhaps you know already, most probably the next version of Delphi will be cross-platform. Also, here are some polls on the matter.

While writing a cross-compiler isn't a thing which interests us very much now, porting a library which was/is Windows-tied to multiple platforms, certainly does.

You can think, for example at VCL (Delphi's standard library). While it was designed for Windows only, it has value in it, and, of course, there are huge codebases which depend on it.

The question is: Which would be the best approach to made an application / library cross-platform aware ensuring a smooth conversion / upgrade path (as much as possible of course)?

I stress it again, we are not interested which is the best way to do cross-platform development only (there were questions on this theme). We are interested also in yet another requirement: The old code base / installations management.

PS: Experiences and/or methodologies from similar situations with other languages (eg. C/C++) which are regarded as standard practices are welcomed.

Thanks in advance.

flag

67% accept rate
1  
Compatible with the old code is a huge price to pay! – Leo Sep 14 at 8:14
"Compatible with the old code is a huge price to pay!" - oh, yes. This is the gist of the problem. – plainth Sep 14 at 8:55
These days, we have many XProject argument, but nobody can submit some good ideas or feasible solutions. I worry that this situation is the same in Embarcadero(I hope that my worry is unnecessary). Perhaps Embarcadero should disclose more information about cross-platform. – Leo Sep 14 at 9:52
1  
"most probably the next version of Delphi will be cross-platform" We have been getting told that once a year since 2005. – Ertugrul Tamer Kara Sep 14 at 13:13

7 Answers

vote up 1 vote down

Experience so far has shown that the best way to get a Delphi app compatible with future versions is to stick to pure Delphi components, and use nothing third party. Such an app will probably suck, but that's how it seems to me. I use lots of third party components, and the apps are great and successful. But the chances of them moving to this future too are not certain, and that may cause problems with such changes, but I'd rather have a great app now and have the problem than have a poor app now and not need to worry about it.

link|flag
But who want's their app to suck?! Some of the third-party products, e.g. DevEx Grid can add a lot of value to an application so replacing it in this example with plain TDBGrid would simply make the application worse and less attractive to customers which is the bottom line. I'd rather wait and see what DevEx do with DelphiX. I could see replacing third-party components that have an analogue VCL component of similar capability being a good step though. – Alan Clark Oct 25 at 19:50
As I said, I use additional components too - I don't want my apps to suck. But that's probably where you are with vanilla Delphi apps. (Though the more recent Delphi's have made big improvements.) – mj2008 Oct 26 at 15:45
vote up 2 vote down

Visual component developer's perspective:

Add levels of functionality to your code, so as to be able to add another platform without changing the "Core" of the component. The compiler hopefully will have a platform switch. (Preferable more than one, working in conjunction with each other. ex. Windows/ARM, Windows/386, OSX/Cacao/386, Linux/Gnome/386).

The Layout structure might look something like this.

  • ComponentJ.pas
  • Linux\ComponentJ.pas
  • Linux\Gnome\ComponentJ.pas
  • Linux\KDE\ComponentJ.pas
  • OSX\ComponentJ.pas
  • 386\ComponentJ.pas
  • ARM\ComponentJ.pas

As an Application Developer:

I'll start by moving all WIN API calls in my code into a group of libraries in a Windows directory as to be able to IFDEF it at library level and translate it into another platform I'd like to support as soon as the compiler becomes available, but only as I come across them.) This will also add the possibility to add adapters easier for the new platforms. It in any case is good practice to remove possible dependencies into a central place.

link|flag
vote up 4 vote down

IMHO you can't build a xplatform Delphi and ensure a smooth transition for current VCL applications. It won't work. VCL was (luckily, because it allowed for great applications) designed with Windows in mind, and trying to design a compatible library working on a different platform would just mean longer development cycles and lots of compromises. The outcome will be a library noone would wish to use. Look at what happened to VCL.NET: it was the wrong choice. And it was working on the same OS!

We know that targeting non-Windows platform with native applications needs a native GUI library. We don't care about creating a GUI from scratch, for our application it's the way to go, we don't need Windows GUIs with all their standards under a different OS using different standards - we need to be able to code a fully native GUI for the target OS. Other applications may survive a GUI porting, but in the long run you don't get a real xplatform tool - you get a tool that may compile for other platforms but brings one platform paradigms to others - and it will also be not welcome by "native" developers on other platforms. If you're a Linux or Mac developer, why should you learn how to work with a library that carries its Windows inheritance to your platform? You'd find it a pain in the ass. If Embarcadero wants to sell XDelphi outside actual developers base, it has to offer much more than a new CLX.

link|flag
+1, very good answer. From my experience with wxWidgets I would even go as far as saying that for optimum platform-native GUIs it would be best to split applications into a non-visual part, realized with a cross-platform solution, and a single-platform GUI on top of it. Using GTK, Cocoa and for example Delphi it would be easiest to create platform-conforming GUI with newest controls - cross-platform solutions take time to support new stuff, and often force to use the lowest common denominator only. – mghie Sep 14 at 12:17
I agree that an xplatform solution should do the best it can to separate UI logic from non-visual application logic. It could be a little more complex to code that actual "event driven" paradigm - I already use UI events with caution, avoiding to code there what don't belong to the UI-, but it will allow to "plug" different, native UIs to the underlying logic, having to rewrite only the former. – ldsandon Sep 14 at 12:37
No, I'm not thinking at 2nd VCL in the way in which VCL.NET was. But this doesn't mean that it cannot be a smooth, incremental transition. I think that this VCL 2.0 should allow mainly appropriate tooling to do this conversion and in the future building from scratch x-platform solutions. – plainth Sep 14 at 17:44
1  
Guess any "conversion tool" won't work but with simpler applications - and probably if you didn't use any third party control (and our application nowadays uses almost exclusively Developer Express controls to deliver a more modern interface than Delphi allows). IMHO it's better Embarcadero invests its resource to deliver good libraries to develop good native applications on the target platforms than trying to port existing ones in a barely working way IMHO it would be wasted time. "Incremental transition" IMHO will doom the library future, being forced to support a WinVCL compatibility. – ldsandon Sep 15 at 8:09
Good answer! IMHO the only "complete" compatibility should be in the RTL and in the "non visual" components not directly tied to Windows. For example "Windows Service" application could not be ported "as is" into the new XDelphi, but the same "Way to do things" could be nice. The LinuxVCL/MacOSVCL should be NATIVE for that OS. Complete GUI compatibility is not the right way. Hi performance compiler, RTL and hi performance Native-VCL is the right way. – Daniele Teti Sep 15 at 9:35
vote up 3 vote down

I will pull from some ancient experience in making a code base cross compilable between windows and dos (Delphi 1/Turbo Pascal 7). The rule of thumb was to separate code into multiple units. Try to code WITHOUT using windows, messages or any visual components. If you find you need to make a call to one of these, then place that call in another unit and write a proxy (abstract class that you descend from works well) to dispatch the calls through. When a cross compatible version is released, all that you should have to do is to code the other side of the proxy for the new target.

If your designing a form based system, then try to stick with as many of the standard components as possible. NEVER implement any "business" rules directly in an event, instead place them in another unit and call into the other unit to perform the logic.

Now, there will definitely be changes required to get your final project cross compatible, but by following these simple patterns you should be able to greatly reduce the amount of work it will take.

link|flag
Yes, good one. But perhaps it would be better if for this you would have support from IDE? (Wizards, tooling etc.) – plainth Sep 14 at 17:45
vote up 0 vote down

Well, aside the things said - thanks all - I do think that there we need some additional things:

  • we need tooling to do the necessary conversions
  • we need tooling to help us in programming against a (some form of) MVC pattern
link|flag
Some form of MVC pattern in Delphi should be GREAT!!! – Daniele Teti Sep 16 at 9:47
vote up 0 vote down

Simply pick the latest 4.6 QT and add good integration betwen the Pascal and the QT library. They have done it before (in the Kylix times). The QT is such powerfull these days.

I believe that QT is even better then VCL and at least 10 times more frequently updated and fixed.

So the plan is simple:

  1. make a cross-platform Pascal compiler
  2. make a cross-platform RTL
  3. put the QT on top

and you will have a first-class natively looking applications on all platforms.

link|flag
vote up 0 vote down

Compromises should not be done too much to make VCL compatible with Linux and Mac. Windows is VCL's root. I'll prefer a new and very clean GUI framework, even though without any backward compatibility. Make VCL fatter and fatter isn't a good idea!

link|flag

Your Answer

Get an OpenID
or

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