Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modern Ada to C/C++ translator [closed]

Is there any source-to-source converter (translator) from Ada (95, 2005) to C? How full they are (can they convert every feature of Ada into gnu c99 + pthreads + POSIX)?

Is it possible to use such ada-to-c translator in critical applications?

PS: Translators to C++ (up to 2003 with gnu extensions) are welcome too.

PPS: when said "gnu c99", it means only that C99 + most gnu extensions are supported, but don't mean the GCC.

like image 661
osgx Avatar asked May 30 '12 13:05

osgx


2 Answers

I don't know of any open source Ada-to-C translator. The only one I knew of at all was SofCheck's, which was reportedly pretty good.

SofCheck has since been bought by AdaCore, and I did a very brief search of the AdaCore website for the translator, and nothing jumped out. You could ask them at [email protected], if pursuing a commercial solution is a viable option for you. (At least get a price.)

like image 102
Marc C Avatar answered Nov 12 '22 03:11

Marc C


Unless there is an incredibly strong reason to use Ada for this application (e.g., customer demands it, or you already have a big application coded in Ada that you want to use), it will likely be a lot less painful if you just bite the bullet and code your solution in well-crafted C99 or C++ as you see fit.

If you insist, Sofcheck's translator might be best; they've been working on it a long time.

Failing that, you might(?) build a translator starting with the ASIS output of an Ada compiler. That's likely rather a lot of persnickety work since Ada has pretty precise semantics that you'd better preserve if you want to just carelessly code in Ada, translate and run. It will be even more work if you want the output to be "pretty" for the final customer. (Long term maintenance should be a consideration). I suspect implementing code to simulate Ada's rendezvous might be rather tricky, being both semantically complicated and asynchronous at the same time. The real flaw with this approach is that it is a lot of work; maybe just getting on with your life and coding the application itself in something non-Ada would be less effort.

See my caveats on language translation done poorly and alternative methods.

like image 33
Ira Baxter Avatar answered Nov 12 '22 04:11

Ira Baxter