No man who didn't tried to implement .vapi interface to C-library could fully understand me. I've gone a pretty short path through this hell and already hit so many issues...
Static field construction doesn't even happen for [Compact] classes (bye-bye RAII for library init/cleanup).
[CCode (lower_case_csuffix = "xxx")] - just makes nothing (btw, you can specify any properties and they just would be ignored).
struct don't allow other types declaration inside of it (have no idea what is the reason for that).
string get_driver(); and string dirver { get; } - is totally different things even that C-names for generated code are the same (be careful when uses them in .vapi). First one causes returned string to be freed, but second does nothing (you can try with any type). Nothing special mentioned in documentation.
After narrowing sample and putting it into .vala file you notice that get_dirver() { return "XXX"; } returns g_strdup() of returned value, but dirver { get { /* ... */ } } returns value directly.
To sort that out - you have to use all your charm to squize out of Google several letters in mail-list. 3 years and Google can't find documentation, small wiki page or blog post...
So now we are aware of the fact that default meaning owned/unowned might change depending on context. That makes sense when you want spend minimum effort (not only lines of code, but thinking) to bring another external library to Vala. But that small thing might make harm to your mind. We know that we should write string driver { owned get; } if you want caller to be responsible for removing object.
[CCode (cname = "char", free_function = "cpufreq_put_driver")]
public class Driver : string {
}
[SimpleType]
[Immutable]
[CCode (cname = "unsigned int", cprefix = "cpufreq_")]
public struct Cpu : uint {
public Driver driver { owned get; }
}
Simple class similar to one in tutorial:
[Immutable]
[CCode (has_type_id = false)]
public struct Cpu : uint {
public void greet() { stdout.printf("Hi. I'm a 0x%08x\n", this); }
public double freq {
get { greet(); return 3.19; }
set { greet(); }
}
}
public static void main() {
Cpu x = 3;
stdout.printf("freq: %f\n", x.freq);
x.freq = 4.5;
}
Hi. I'm a 0x00000003 freq: 3.190000 Hi. I'm a 0xb603a924If you don't belive me go on and try it at your machine. Maybe you have more luck than I.
Lets see result of vala-0.14 -C property_setter.vala...
gdouble cpu_get_freq (int32_t self);
void cpu_set_freq (int32_t self, gdouble value);
void _vala_main (void);
FILE* _tmp0_;
_tmp0_ = stdout;
fprintf (_tmp0_, "Hi. I'm a 0x%08x\n", (guint) self);
}
gdouble cpu_get_freq (int32_t self) {
gdouble result;
cpu_greet (self);
result = 3.19;
return result;
}
void cpu_set_freq (int32_t self, gdouble value) {
cpu_greet (self);
}
int32_t x;
FILE* _tmp0_;
gdouble _tmp1_;
gdouble _tmp2_;
x = (int32_t) 3;
_tmp0_ = stdout;
_tmp1_ = cpu_get_freq (x);
_tmp2_ = _tmp1_;
fprintf (_tmp0_, "freq: %f\n", _tmp2_);
cpu_set_freq (&x, 4.5);
}
I'm giving up on vala...
Update: Found and tickled bug 657346. Hope they will fix.
No comments:
Post a Comment