lua bindings: add ctor/dtor.
[apps/madmutt.git] / lib-lua / luapkg2c.pl
1 #!/usr/bin/perl -w
2 #  This program is free software; you can redistribute it and/or modify
3 #  it under the terms of the GNU General Public License as published by
4 #  the Free Software Foundation; either version 2 of the License, or (at
5 #  your option) any later version.
6 #
7 #  This program is distributed in the hope that it will be useful, but
8 #  WITHOUT ANY WARRANTY; without even the implied warranty of
9 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 #  General Public License for more details.
11 #
12 #  You should have received a copy of the GNU General Public License
13 #  along with this program; if not, write to the Free Software
14 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15 #  MA 02110-1301, USA.
16 #
17 #  Copyright © 2007 Pierre Habouzit
18
19 use strict;
20
21 my %types;
22 my %pkgs;
23
24 #{{{ stream functions
25
26 sub stream_open($) {
27     my $name = shift;
28     open FILE, $name;
29     return (file => $name, line => 0, f => \*FILE);
30 }
31
32 sub stream_close($) {
33     my $stream = shift;
34     close $stream->{f};
35 }
36
37 sub stream_getline($) {
38     my $stream = shift;
39     my $file   = $stream->{f};
40     while (<$file>) {
41         ${$stream}{line}++;
42         return $_;
43     }
44     return;
45 }
46
47 #}}}
48
49 #{{{ file:line functions
50
51 sub fatal($$) {
52     my ($stream, $msg) = @_;
53     printf STDERR "%s:%d: %s\n", $stream->{file}, $stream->{line}, $msg;
54     exit 1;
55 }
56
57 sub get_pos($$) {
58     my ($h,$k) = @_;
59     return $h->{$k}{file}.':'.$h->{$k}{line};
60 }
61
62 sub put_line($$) {
63     my ($src,$inc) = @_;
64     printf "#line %d \"%s\"\n", $src->{line} + $inc, $src->{file};
65 }
66
67 #}}}
68
69 #{{{ parsers
70
71 sub parse_type($$) {
72     my ($src, $type) = @_;
73     my %t = (
74         name => $type,
75         file => $src->{file},
76         line => $src->{line},
77     );
78
79     if (defined $types{$type}) {
80         my $pos = get_pos(\%types, $type);
81         fatal($src, "already defined type: `$type' at $pos");
82     }
83
84     while (stream_getline($src)) {
85         last if (/^\s*\}\s*;\s*/);
86         if (/^\s*\.(push|kind|ctype|dtor|ctor|check)\s*=\s*(.*?)\s*;\s*$/) {
87             $t{$1} = $2;
88             if ($1 eq "kind") {
89                 if ($2 =~ /^'([bis])'$/) {
90                     $t{kind} = $1;
91                 } else {
92                     fatal($src, "error: .kind should be [ibs] got $2)");
93                 }
94             }
95         } elsif (!/^\s*$/) {
96             fatal($src, "syntax error: unknown type directive");
97         }
98     }
99
100     for ('kind', 'ctype') {
101         fatal($src, "incomplete type $type: missing .$_") unless defined $t{$_};
102     }
103     if ($t{kind} eq 's') {
104         for ('dtor', 'ctor') {
105             fatal($src, "incomplete type $type: missing .$_") unless defined $t{$_};
106         }
107     }
108     unless (defined $t{check}) {
109         if ($t{kind} eq 'b') {
110             $t{check} = '(luaL_checkint($L, $$) == 0)';
111         }
112
113         if ($t{kind} eq 'i') {
114             $t{check} = 'luaL_checkint($L, $$)';
115         }
116
117         if ($t{kind} eq 's') {
118             $t{check} = 'luaL_checkstring($L, $$)';
119         }
120     }
121
122     $t{ctypefmt} .= ' %s' unless (($t{ctypefmt} = $t{ctype}) =~ s/:/ \%s :/);
123     $t{ctype} =~ s/:.*//;
124
125     return $types{$type} = \%t;
126 }
127
128 sub parse_package($$) {
129     my ($src, $pkg) = @_;
130     my %p = (
131         name => $pkg,
132         file => $src->{file},
133         line => $src->{line},
134     );
135
136     if (defined $pkgs{$pkg}) {
137         my $pos = get_pos(\%pkgs, $pkg);
138         fatal($src, "already defined package: `$pkg' at $pos");
139     }
140
141     while (stream_getline($src)) {
142         if (/^\s*\}\s*(\w+)\s*;\s*$/) {
143             $p{cname} = $1;
144             last;
145         }
146
147         if (/^\s*(.*?)\s*=\s*(.*?)\s*;\s*$/) {
148             my ($lhs, $rhs) = ($1, $2);
149             my %m = ( file => $src->{file}, line => $src->{line} );
150
151             if ($lhs =~ /^((?:const\s+)?\w+?)\s*(\w+)$/) {
152                 $m{type} = $1;
153                 $m{name} = $2;
154                 $m{init} = $rhs;
155                 push @{$p{props}}, $2;
156             } elsif ($lhs =~ /^((?:const\s+)?\w+?)\s*(\w*)\((.*)\)$/) {
157                 $m{type}  = $1;
158                 $m{name}  = $2;
159                 $m{proto} = $3;
160                 $m{cfun}  = $rhs;
161                 push @{$p{meths}}, $2;
162             } else {
163                 fatal($src, "syntax error");
164             }
165
166             if (defined $p{members}{$m{name}}) {
167                 my $pos = get_pos($p{members}{$m{name}}, 0);
168                 fatal($src, "already defined package member: `$m{name}' at $pos");
169             }
170
171             $p{members}{$m{name}} = \%m;
172             next;
173         }
174
175         if (!/^\s*$/) {
176             fatal($src, "syntax error");
177         }
178     }
179
180     return $pkgs{$pkg} = \%p;
181 }
182
183 sub find_type($$) {
184     my ($ref, $typ) = @_;
185
186     if ($typ =~ /^const\s+(\w*)$/) {
187         fatal($ref, "undefined type `$1'") unless defined $types{$1};
188         return (const => 1, type => $types{$1});
189     }
190
191     fatal($ref, "undefined type `$typ'") unless defined $types{$typ};
192     return (const => 0, type => $types{$typ});
193 }
194
195 #}}}
196
197 #{{{ dump_fun
198
199 sub dump_fun($$) {
200     my ($pkg, $f) = @_;
201     my %t    = find_type($f, $f->{type});
202     my $call = $f->{cfun};
203     $call =~ s/\$/var/;
204
205     print "static int luaM_${pkg}_$f->{name}(lua_State *L) {\n";
206
207     if ($f->{proto} ne "void") {
208         my $i = 1;
209         for my $tmp (split /,/,$f->{proto}) {
210             s/^\s+//;
211             s/\s+$//;
212
213             my %pt = find_type($f, $tmp);
214             my $check = $pt{type}->{check};
215             $check =~ s/\$L/L/;
216             $check =~ s/\$\$/\%d/;
217
218             put_line($pt{type}, 0);
219             printf "    $pt{type}->{ctype} var$i = $check\n", $i++;
220         }
221     }
222
223     if (defined $t{type}->{push}) {
224         $call =~ s/\$\$/$t{type}->{push}/;
225     }
226
227     if ($t{type}->{kind} eq 'b') {
228         put_line($f, 0);
229         print "    lua_pushboolean(L, $call);\n";
230     }
231
232     if ($t{type}->{kind} eq 'i') {
233         put_line($f, 0);
234         print "    lua_pushint(L, $call);\n";
235     }
236
237     if ($t{type}->{kind} eq 's') {
238         if ($t{const}) {
239             put_line($f, 0);
240             print "    lua_pushstring(L, $call);\n";
241         } else {
242             print "    {\n";
243             put_line($f, 0);
244             print "        char *s = $call;\n";
245             print "        lua_pushstring(L, s);\n";
246             print "        p_delete(&s);\n";
247             print "    }\n";
248         }
249     }
250
251     printf "    return %d;\n", ($f->{type} ne "void");
252     print "}\n";
253 }
254
255 #}}}
256
257 #{{{ dump_struct
258
259 sub dump_struct_full($) {
260     my ($pkg) = @_;
261
262     put_line($pkg, 0);
263     print "struct luaM_$pkg->{name}_t $pkg->{cname} = {\n";
264
265     foreach (@{$pkg->{props}}) {
266         my $p = $pkg->{members}{$_};
267         my %t = find_type($p, $p->{type});
268
269         if ($t{const}) {
270             put_line($p, 0);
271             print "    $p->{init},\n";
272         } else {
273             print "    0,\n"    if ($t{type}->{kind} eq 'b');
274             print "    0,\n"    if ($t{type}->{kind} eq 'i');
275             print "    NULL,\n" if ($t{type}->{kind} eq 's');
276         }
277     }
278
279     print <<EOF;
280 };
281
282 static void $pkg->{cname}_init(void)
283 {
284 EOF
285
286     foreach (@{$pkg->{props}}) {
287         my $p   = $pkg->{members}{$_};
288         my %t   = find_type($p, $p->{type});
289         my $var = $pkg->{cname}.".".$p->{name};
290
291         next if $t{const};
292
293         put_line($p, 0);
294         if ($t{type}->{dtor}) {
295             my $dtor = $t{type}->{dtor};
296             $dtor =~ s/\$\$/\&$var/;
297             print "    $dtor;\n";
298         }
299         print "    $var = $p->{init};\n"
300     }
301     print "};\n";
302 };
303
304 sub dump_struct_short($) {
305     my ($pkg) = @_;
306
307     print "struct luaM_$pkg->{name}_t {\n";
308     foreach (@{$pkg->{props}}) {
309         my $p = $pkg->{members}{$_};
310         my %t = find_type($p, $p->{type});
311         if ($t{const}) {
312             printf "    const $t{type}->{ctypefmt};\n", $p->{name};
313         } else {
314             printf "    $t{type}->{ctypefmt};\n", $p->{name};
315         }
316     }
317     put_line($pkg, 0);
318     print <<EOF;
319 };
320
321 extern struct luaM_$pkg->{name}_t $pkg->{cname};
322 EOF
323 }
324
325 #}}}
326
327 #{{{ dump package
328
329 sub dump_package_full($) {
330     my $pkg = shift;
331
332     dump_struct_full($pkg);
333     map { print "\n"; dump_fun($pkg->{name}, $pkg->{members}{$_}); } @{$pkg->{meths}};
334     print <<EOF;
335
336 static const luaL_reg luaM_$pkg->{name}_methods[] = {
337 EOF
338     map { print "    { \"$_\", luaM_$pkg->{name}_$_ },\n"; } @{$pkg->{meths}};
339     print <<EOF;
340     { NULL, NULL }
341 };
342
343 static int luaM_$pkg->{name}_index(lua_State *L)
344 {
345     const char *idx = luaL_checkstring(L, 2);
346
347     switch (mlua_which_token(idx, -1)) {
348 EOF
349
350     foreach (@{$pkg->{props}}) {
351         my $p = $pkg->{members}{$_};
352         my %t = find_type($p, $p->{type});
353         my $call = $pkg->{cname}.".".$p->{name};
354
355         my $tok = $p->{name};
356         $tok =~ tr/a-z/A-Z/;
357
358         if ($t{type}->{kind} eq 'b') {
359             $call = "lua_pushboolean(L, $call)";
360         }
361
362         if ($t{type}->{kind} eq 'i') {
363             $call = "lua_pushinteger(L, $call)";
364         }
365
366         if ($t{type}->{kind} eq 's') {
367             $call = "lua_pushstring(L, $call)";
368         }
369
370         if (defined $t{type}->{push}) {
371             $call =~ s/\$\$/$t{type}->{push}/;
372         }
373
374         put_line($p, 0);
375         print  "      case LTK_$tok:\n";
376         printf "        $call;\n";
377         print  "        return 1;\n";
378     }
379
380 print <<EOF;
381       default:
382         lua_rawget(L, lua_upvalueindex(2));       /* try methods       */
383         return 1;
384     }
385 }
386
387 static int luaM_$pkg->{name}_newindex(lua_State *L)
388 {
389     const char *idx = luaL_checkstring(L, 2);
390
391     switch (mlua_which_token(idx, -1)) {
392 EOF
393
394     foreach (@{$pkg->{props}}) {
395         my $p = $pkg->{members}{$_};
396         my %t = find_type($p, $p->{type});
397
398         next if ($t{const});
399
400         my $tok = $p->{name};
401         my $var = $pkg->{cname}.".".$p->{name};
402         my $check = $t{type}->{check};
403         $tok   =~ tr/a-z/A-Z/;
404         $check =~ s/\$L/L/;
405         $check =~ s/\$\$/3/;
406
407         put_line($p, 0);
408         print  "      case LTK_$tok: \n";
409         if ($t{type}->{dtor}) {
410             my $dtor = $t{type}->{dtor};
411             $dtor =~ s/\$\$/\&$var/;
412             print "        $dtor;\n";
413         }
414         if ($t{type}->{ctor}) {
415             my $ctor = $t{type}->{ctor};
416             $ctor =~ s/\$\$/$check/;
417             $check = $ctor;
418         }
419         print "        $var = $check;\n";
420         print "        return 1;\n";
421     }
422
423 print <<EOF;
424       default:
425         return 1;
426     }
427 }
428
429 int luaopen_$pkg->{name}(lua_State *L)
430 {
431     int mt, methods;
432
433     $pkg->{cname}_init();
434
435     /* create methods table, add it the the table of globals */
436     luaL_openlib(L, "$pkg->{name}", luaM_$pkg->{name}_methods, 0);
437     methods = lua_gettop(L);
438
439     /* create metatable for $pkg->{name}, add it to the registry */
440     luaL_newmetatable(L, "$pkg->{name}");
441     mt = lua_gettop(L);
442
443     lua_pushliteral(L, "__index");
444     lua_pushvalue(L, mt);                       /* upvalue 1         */
445     lua_pushvalue(L, methods);                  /* upvalue 2         */
446     lua_pushcclosure(L, &luaM_$pkg->{name}_index, 2);
447     lua_rawset(L, mt);                          /* set mt.__index    */
448
449     lua_pushliteral(L, "__newindex");
450     lua_newtable(L);                            /* for new members   */
451     lua_pushcclosure(L, &luaM_$pkg->{name}_newindex, 1);
452     lua_rawset(L, mt);                          /* set mt.__newindex */
453
454     lua_pushliteral(L, "__metatable");
455     lua_pushvalue(L, methods);                  /* dup methods table */
456     lua_rawset(L, mt);                          /* hide metatable    */
457
458     lua_setmetatable(L, methods);
459
460     lua_pop(L, 1);                              /* drop mt           */
461     return 1;                                   /* return methods    */
462 }
463
464 EOF
465 }
466
467 sub dump_package_short($) {
468     my $pkg = shift;
469     my $upp = $pkg->{name};
470     $upp =~ tr/a-z/A-Z/;
471
472     print <<EOF;
473 #ifndef MUTT_LUA_${upp}_H
474 #define MUTT_LUA_${upp}_H
475
476 EOF
477     dump_struct_short($pkg);
478     print <<EOF
479
480 int luaopen_$pkg->{name}(lua_State *L);
481
482 #endif /* MUTT_LUA_${upp}_H */
483 EOF
484 }
485
486 #}}}
487
488 sub do_c($) {
489     my %src = stream_open(shift);
490     my $resync = 1;
491
492     while (stream_getline(\%src)) {
493         if (/^\s*\@type\s+([a-zA-Z]\w*)\s*=\s*{\s*$/) {
494             parse_type(\%src, $1);
495             $resync = 1;
496         } elsif (/^\s*\@package\s+([a-zA-Z]\w*)\s+{\s*$/) {
497             dump_package_full(parse_package(\%src, $1));
498             $resync = 1;
499         } elsif (/^\s*(\@\w*)/) {
500             fatal(\%src, "syntax error: unknown directive `$1'");
501         } else {
502             next if ($resync && /^\s+$/);
503             if ($resync) {
504                 put_line(\%src, 0);
505                 $resync = 0;
506             }
507             print;
508         }
509     }
510
511     stream_close(\%src);
512 }
513
514 sub do_h($) {
515     my %src = stream_open(shift);
516     my $resync = 1;
517
518     while (stream_getline(\%src)) {
519         if (/^\s*\@type\s+([a-zA-Z]\w*)\s*=\s*{\s*$/) {
520             parse_type(\%src, $1);
521         } elsif (/^\s*\@package\s+([a-zA-Z]\w*)\s+{\s*$/) {
522             dump_package_short(parse_package(\%src, $1));
523         } elsif (/^\s*(\@\w*)/) {
524             fatal(\%src, "syntax error: unknown directive `$1'");
525         }
526     }
527
528     stream_close(\%src);
529 }
530
531 if ($#ARGV < 1 || ($ARGV[0] ne "-h" && $ARGV[0] ne "-c")) {
532     print <<EOF;
533 usage: mluapkg (-h | -c) file.pkg
534 EOF
535     exit 1;
536 }
537
538 print <<EOF;
539 /*****     THIS FILE IS AUTOGENERATED DO NOT MODIFY DIRECTLY !    *****/
540 EOF
541
542 map { do_h($ARGV[$_]); } (1 .. $#ARGV) if ($ARGV[0] eq '-h');
543 map { do_c($ARGV[$_]); } (1 .. $#ARGV) if ($ARGV[0] eq '-c');