Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are Vala and Genie production ready? [closed]

I am working with some legacy C code which I need to refactor and generally clean up, to remove spaghetti type programming, adhere to the DRY principle etc.

I was thinking of rewriting using C++, but I don't want to go that far, and would like to remain as close to C as possible (whilst using some OOP concepts [without having to hand code them]).

I recently came across GObject, Vala and Genie. The latter two are fairly recent. Is anyone out there aware of either Vala or Genie being used in production code ?

Last but not the least - is there a list of Pros and cons comparisons between the two languages. I am leaning a bit towards Genie because I love Python and am not too keen on C#, but Genie's (apparent?) insistance on tabs could be a tad annoying in practise - I'd be interested in a list of pros and cons for the two languages (assuming one or both of them are ready for production use).

As an aside, I am developing on Linux, so any windows related issues are not relevant as far as I'm concerned.

like image 770
Homunculus Reticulli Avatar asked May 01 '12 08:05

Homunculus Reticulli


1 Answers

Unity, the user interface used by all recent version of Ubuntu, uses Vala.

Here is a list of applications developed using Vala. Some of these are part of the default GUI install of some major GNU/Linux distributions.

And as to Genie: It is another language (with Python like syntax) understood by the Vala compiler. So it really is just a matter of which syntax you prefer (In my opinion). Here is a quote from the Genie language guide, that seems to say the same thing:

Genie is very similar to Vala in functionality but differs in syntax allowing the developer to use cleaner and less code to accomplish the same task.

Like Vala, Genie has the same advantages:

  • Programs written in Genie should have have similar performance and resource usage to those written directly in Vala and C
  • Genie has none of the bloat and overhead that comes with many other high level languages which utilize a VM (e.g. Python, Mono, Java)
  • Classes in Genie are actually GObjects so Genie can be used for creating platform code like widgets and libraries where GObjects are required for binding to other languages

If you don't like TAB characters, you can use spaces instead:

[indent=2] //two space indent instead of TAB
init
  print "Hello World"
like image 125
ArjunShankar Avatar answered Sep 18 '22 17:09

ArjunShankar