mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:45:32 +00:00
e6ea0015b5
[ Patch from Ricardo Fernandez Pascual <rfp1@ono.com> for libglade support (slightly modified) ] * configure.in: Conditionally compile glade support. * makefile: Add glade directory. * glade/: Added. * sample/makefile.in: Add (conditional) glade example. * sample/GladeViewer.cs: Added. * glue/gladexml.c: Added. * glue/Makefile.am: Updated. * parser/build.pl: Parse libglade-2.0.0. * parser/README: Update requirements. 2002-08-12 Rachel Hestilow <hestilow@ximian.com> * parser/gapi_pp.pl: Handle "typedef struct {...}" construct. * glue/canvaspoints.c: Added. * glue/Makefile.am: Updated. * gnome/CanvasPoints.custom: Added. (Doesn't seem to work right yet, looking into this.) svn path=/trunk/gtk-sharp/; revision=6601
140 lines
3.4 KiB
Perl
Executable file
140 lines
3.4 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# gapi_pp.pl : A source preprocessor for the extraction of API info from a
|
|
# C library source directory.
|
|
#
|
|
# Author: Mike Kestner <mkestner@speakeasy.net>
|
|
#
|
|
# <c> 2001 Mike Kestner
|
|
|
|
$eatit_regex = "^#if.*(__cplusplus|DEBUG|DISABLE_(DEPRECATED|COMPAT)|ENABLE_BROKEN|COMPILATION)";
|
|
$ignoreit_regex = '^\s+\*|#\s*include|#\s*else|#\s*endif|#\s*undef|G_(BEGIN|END)_DECLS|extern|GDKVAR|GTKVAR|GTKMAIN_C_VAR|GTKTYPEUTILS_VAR|VARIABLE|GTKTYPEBUILTIN';
|
|
|
|
foreach $dir (@ARGV) {
|
|
@hdrs = (@hdrs, `ls $dir/*.h`);
|
|
}
|
|
|
|
foreach $fname (@hdrs) {
|
|
|
|
if ($fname =~ /test|private|internals|gtktextlayout|gtkmarshalers/) {
|
|
@privhdrs = (@privhdrs, $fname);
|
|
next;
|
|
}
|
|
|
|
open(INFILE, $fname) || die "Could open $fname\n";
|
|
|
|
$braces = 0;
|
|
$prepend = "";
|
|
while ($line = <INFILE>) {
|
|
$braces++ if ($line =~ /{/ and $line !~ /}/);
|
|
$braces-- if ($line =~ /}/ and $line !~ /{/);
|
|
|
|
next if ($line =~ /$ignoreit_regex/);
|
|
next if ($line !~ /\S/);
|
|
|
|
$line = $prepend . $line;
|
|
$prepend = "";
|
|
|
|
if ($line =~ /#\s*define\s+\w+\s+\"/) {
|
|
$def = $line;
|
|
while ($def !~ /\".*\"/) {$def .= ($line = <INFILE>);}
|
|
print $def;
|
|
} elsif ($line =~ /#\s*define\s+\w+\s*\D+/) {
|
|
$def = $line;
|
|
while ($line =~ /\\\n/) {$def .= ($line = <INFILE>);}
|
|
if ($def =~ /_CHECK_\w*CAST|INSTANCE_GET_INTERFACE/) {
|
|
$def =~ s/\\\n//g;
|
|
print $def;
|
|
}
|
|
} elsif ($line =~ /^\s*\/\*/) {
|
|
while ($line !~ /\*\//) {$line = <INFILE>;}
|
|
} elsif ($line =~ /^#ifndef\s+\w+_H_*\b/) {
|
|
while ($line !~ /#define/) {$line = <INFILE>;}
|
|
} elsif ($line =~ /$eatit_regex/) {
|
|
$nested = 0;
|
|
while ($line = <INFILE>) {
|
|
last if (!$nested && ($line =~ /#else|#endif/));
|
|
if ($line =~ /#if/) {
|
|
$nested++;
|
|
} elsif ($line =~ /#endif/) {
|
|
$nested--
|
|
}
|
|
}
|
|
} elsif ($line =~ /^#\s*ifn?\s*\!?def/) {
|
|
#warn "Ignored #if:\n$line";
|
|
} elsif ($line =~ /typedef struct\s*\{/) {
|
|
my $first_line = $line;
|
|
my @lines = ();
|
|
$line = <INFILE>;
|
|
while ($line !~ /^}\s*(\w+);/) {
|
|
push @lines, $line;
|
|
$line = <INFILE>;
|
|
}
|
|
$line =~ /^}\s*(\w+);/;
|
|
my $name = $1;
|
|
print "typedef struct _$name $name;\n";
|
|
print "struct _$name {\n";
|
|
foreach $line (@lines) {
|
|
if ($line =~ /(\s*.+\;)/) {
|
|
$field = $1;
|
|
$field =~ s/(\w+) const/const $1/;
|
|
print "$field\n";
|
|
}
|
|
}
|
|
print "};\n";
|
|
} elsif ($line =~ /^enum\s+\{/) {
|
|
while ($line !~ /^};/) {$line = <INFILE>;}
|
|
} elsif ($line =~ /(\s+)union\s*{/) {
|
|
# this is a hack for now, but I need it for the fields to work
|
|
$indent = $1;
|
|
$do_print = 1;
|
|
while ($line !~ /^$indent}\s*\w+;/) {
|
|
$line = <INFILE>;
|
|
next if ($line !~ /;/);
|
|
print $line if $do_print;
|
|
$do_print = 0;
|
|
}
|
|
} else {
|
|
if ($braces or $line =~ /;/) {
|
|
print $line;
|
|
} else {
|
|
$prepend = $line;
|
|
$prepend =~ s/\n/ /g;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach $fname (`ls $ARGV[0]/*.c`, @privhdrs) {
|
|
|
|
open(INFILE, $fname) || die "Could open $fname\n";
|
|
|
|
if ($fname =~ /builtins_ids/) {
|
|
while ($line = <INFILE>) {
|
|
next if ($line !~ /\{/);
|
|
|
|
chomp($line);
|
|
$builtin = "BUILTIN" . $line;
|
|
$builtin .= <INFILE>;
|
|
print $builtin;
|
|
}
|
|
next;
|
|
}
|
|
|
|
while ($line = <INFILE>) {
|
|
#next if ($line !~ /^(struct|\w+_class_init)|g_boxed_type_register_static/);
|
|
next if ($line !~ /^(struct|\w+_class_init|\w+_base_init|\w+_get_type)/);
|
|
|
|
if ($line =~ /^struct/) {
|
|
# need some of these to parse out parent types
|
|
print "private";
|
|
}
|
|
|
|
do {
|
|
print $line;
|
|
} until (($line = <INFILE>) =~ /^}/);
|
|
print $line;
|
|
}
|
|
}
|
|
|