Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vala: Gotchas, Tips and Tricks

Tags:

vala

As a programmer who is new to Vala, what is your number one piece of advice to someone who is new to the language?

like image 234
Ande Turner Avatar asked Jan 30 '10 09:01

Ande Turner


3 Answers

It largely depends on what background you are coming from. If you're coming from C/C++/Java, the best bit of advice is to learn functional programming. Vala supports true closures, and so you should learn (deeply) how to use lambda expressions. The best resource for this is Structure and Interpretation of Computer Programs by Abelson and Sussman. It was the introductory textbook for CS at MIT for many years. It is available free on-line at http://mitpress.mit.edu/sicp/full-text/book/book.html, but the paper version is more readable. Video lectures are available at http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/. Problem sets are available free at http://icampustutor.csail.mit.edu/6.001-public/.

Aside from that, I'd generally just try to learn the C# programming style well. It is similar to Vala, but there are many books on that topic.

Catches:

  • Be aware Vala doesn't have garbage collection. It does reference counting.
  • Be aware that Vala is still being developed. It is a rather new language, and it has not reached 1.0. Code you write now may break in the future.
  • If choosing to learn Vala, be aware that it is slightly obsolete, as far as programming language concepts go. It does not do anything to help with multicore programming. It does not do anything to help with memory management (code performance is based largely on cache coherency -- good garbage collected languages can reorganize memory to help here). It is a wrapper around C, and comes with many of C's limitations (although it does add closures).

Also, one of the posters recommended tinycc. This is a reasonable choice for development, but you should use an optimized compiler like gcc (or if supported, Intel's compiler) for deployment.

like image 70
user274045 Avatar answered Sep 21 '22 13:09

user274045


My #1 piece of advice is to learn about GObjects. They are the backbone of Vala's power and flexibility, and learning how to wrap various libraries with GObject gives your Vala programs access to everything c can link against (which is a lot!).

Here are a few links that might be of interest:
* http://library.gnome.org/devel/gobject/stable/
* http://fosswire.com/post/2009/7/gobject-vala/
* http://developer.gnome.org/doc/tutorials/#gobject
* http://en.wikipedia.org/wiki/GObject

like image 40
Ryan Prior Avatar answered Sep 21 '22 13:09

Ryan Prior


  1. For multiple resources, this will be a general resource for a bit: Vala - GNOME Live!.
  2. To get up close and personal with GObject: GObject Reference Manual.
  3. I don't know what background you're coming from, but you will find this helpful: Vala Quick Intro for C# Programmers

In any event, knowledge of C will be of great use. Our team is actually considering a progressive revamp and porting to Vala. We have members with strong backgrounds in C#/C++ and this change in direction (over time) will be beneficial to the performance and flexibility of our products.

like image 26
IAbstract Avatar answered Sep 19 '22 13:09

IAbstract