9 my $function_found_callback = shift;
10 my $preprocessor_found_callback = shift;
15 my $calling_convention;
19 my $argument_documentations;
22 my $function_begin = sub {
23 $documentation = shift;
26 $calling_convention = shift;
28 $argument_types = shift;
29 $argument_names = shift;
30 $argument_documentations = shift;
32 if($#$argument_names == -1) {
33 foreach my $n (0..$#$argument_types) {
34 push @$argument_names, "";
38 if($#$argument_documentations == -1) {
39 foreach my $n (0..$#$argument_documentations) {
40 push @$argument_documentations, "";
46 my $function_end = sub {
47 &$function_found_callback($documentation,$linkage,$return_type,
48 $calling_convention,$function,$argument_types,
49 $argument_names,$argument_documentations,$statements);
59 my $lookahead_count = 0;
61 print STDERR "Processing file '$file' ... " if $options->verbose;
62 open(IN, "< $file") || die "<internal>: $file: $!\n";
64 while($again || defined(my $line = <IN>)) {
76 print " $level($lookahead_count): $line\n" if $options->debug >= 2;
77 print "*** $_\n" if $options->debug >= 3;
83 # Merge conflicts in file?
84 if(/^(<<<<<<<|=======|>>>>>>>)/) {
85 $output->write("$file: merge conflicts in file\n");
90 if(s/^(.*?)(\/\*.*?\*\/)(.*)$/$1 $3/s) { push @comments, $2; $again = 1; next }
97 while(s/^(.*?)\/\/.*?$/$1\n/s) { $again = 1 }
101 if(/^\s*$/) { next; }
103 # remove preprocessor directives
108 } elsif(s/^\#\s*(.*?)(\s+(.*?))?\s*$//m) {
110 &$preprocessor_found_callback($1, $3);
112 &$preprocessor_found_callback($1, "");
119 if(s/^\s*extern\s+"C"\s+\{//m) {
126 my @argument_documentations;
129 while($n >= 0 && ($comments[$n] !~ /^\/\*\*/ ||
130 $comments[$n] =~ /^\/\*\*+\//))
135 if(defined($comments[$n]) && $n >= 0) {
136 $documentation = $comments[$n];
137 for(my $m=$n+1; $m <= $#comments; $m++) {
138 push @argument_documentations, $comments[$m];
149 s/^([^\{\}\'\"]*)//s;
153 while(/^./ && !s/^\'//) {
170 while(/^./ && !s/^\"//) {
191 print "+1: \{$_\n" if $options->debug >= 2;
195 $line .= "}" if $level > 1;
196 print "-1: \}$_\n" if $options->debug >= 2;
198 if($level == -1 && $extern_c) {
204 if($line !~ /^\s*$/) {
205 $statements .= "$line\n";
208 if($function && $level == 0) {
212 } elsif(/(extern\s+|static\s+)?((struct\s+|union\s+|enum\s+)?\w+((\s*\*)+\s*|\s+))
213 ((__cdecl|__stdcall|CDECL|VFWAPIV|VFWAPI|WINAPIV|WINAPI|CALLBACK)\s+)?
214 (\w+(\(\w+\))?)\s*\(([^\)]*)\)\s*(\{|\;)/sx)
223 my $return_type = $2;
224 my $calling_convention = $7;
228 if(!defined($linkage)) {
232 if(!defined($calling_convention)) {
233 $calling_convention = "";
236 $linkage =~ s/\s*$//;
238 $return_type =~ s/\s*$//;
239 $return_type =~ s/\s*\*\s*/*/g;
240 $return_type =~ s/(\*+)/ $1/g;
242 if($regs_entrypoints{$name}) {
243 $name = $regs_entrypoints{$name};
246 $arguments =~ y/\t\n/ /;
247 $arguments =~ s/^\s*(.*?)\s*$/$1/;
248 if($arguments eq "") { $arguments = "void" }
252 my @arguments = split(/,/, $arguments);
253 foreach my $n (0..$#arguments) {
254 my $argument_type = "";
255 my $argument_name = "";
256 my $argument = $arguments[$n];
257 $argument =~ s/^\s*(.*?)\s*$/$1/;
258 # print " " . ($n + 1) . ": '$argument'\n";
259 $argument =~ s/^(IN OUT(?=\s)|IN(?=\s)|OUT(?=\s)|\s*)\s*//;
260 $argument =~ s/^(const(?=\s)|CONST(?=\s)|\s*)\s*//;
261 if($argument =~ /^\.\.\.$/) {
262 $argument_type = "...";
263 $argument_name = "...";
264 } elsif($argument =~ /^
265 ((?:struct\s+|union\s+|enum\s+|(?:signed\s+|unsigned\s+)
266 (?:short\s+(?=int)|long\s+(?=int))?)?\w+)\s*
267 ((?:const)?\s*(?:\*\s*?)*)\s*
268 (?:WINE_UNUSED\s+)?(\w*)\s*(?:\[\]|\s+OPTIONAL)?/x)
270 $argument_type = "$1";
272 $argument_type .= " $2";
276 $argument_type =~ s/\s*const\s*/ /;
277 $argument_type =~ s/^\s*(.*?)\s*$/$1/;
279 $argument_name =~ s/^\s*(.*?)\s*$/$1/;
281 die "$file: $.: syntax error: '$argument'\n";
283 $argument_types[$n] = $argument_type;
284 $argument_names[$n] = $argument_name;
285 # print " " . ($n + 1) . ": '" . $argument_types[$n] . "', '" . $argument_names[$n] . "'\n";
287 if($#argument_types == 0 && $argument_types[0] =~ /^void$/i) {
288 $#argument_types = -1;
289 $#argument_names = -1;
292 if($options->debug) {
293 print "$file: $return_type $calling_convention $name(" . join(",", @arguments) . ")\n";
296 &$function_begin($documentation,$linkage,$return_type,$calling_convention,$name,\@argument_types,\@argument_names,\@argument_documentations);
300 } elsif(/DC_(GET_X_Y|GET_VAL_16)\s*\(\s*(.*?)\s*,\s*(.*?)\s*,\s*(.*?)\s*\)/s) {
302 my @arguments = ("HDC16");
303 &$function_begin($documentation, "", $2, "WINAPI", $3, \@arguments);
305 } elsif(/DC_(GET_VAL)\s*\(\s*(.*?)\s*,\s*(.*?)\s*,.*?\)/s) {
307 my $return16 = $3 . "16";
309 my $name16 = $2 . "16";
311 my @arguments16 = ("HDC16");
312 my @arguments32 = ("HDC");
314 if($name16 eq "COLORREF16") { $name16 = "COLORREF"; }
316 &$function_begin($documentation, "", $name16, "WINAPI", $return16, \@arguments16);
318 &$function_begin($documentation, "", $name32, "WINAPI", $return32, \@arguments32);
320 } elsif(/DC_(GET_VAL_EX)\s*\(\s*(.*?)\s*,\s*(.*?)\s*,\s*(.*?)\s*,\s*(.*?)\s*\)/s) {
322 my @arguments16 = ("HDC16", "LP" . $5 . "16");
323 my @arguments32 = ("HDC", "LP" . $5);
324 &$function_begin($documentation, "", "BOOL16", "WINAPI", $2 . "16", \@arguments16);
326 &$function_begin($documentation, "", "BOOL", "WINAPI", $2, \@arguments32);
328 } elsif(/DC_(SET_MODE)\s*\(\s*(.*?)\s*,\s*(.*?)\s*,\s*(.*?)\s*,\s*(.*?)\s*\)/s) {
330 my @arguments16 = ("HDC16", "INT16");
331 my @arguments32 = ("HDC", "INT");
332 &$function_begin($documentation, "", "INT16", "WINAPI", $2 . "16", \@arguments16);
334 &$function_begin($documentation, "", "INT", "WINAPI", $2, \@arguments32);
336 } elsif(/WAVEIN_SHORTCUT_0\s*\(\s*(.*?)\s*,\s*(.*?)\s*\)/s) {
338 my @arguments16 = ("HWAVEIN16");
339 my @arguments32 = ("HWAVEIN");
340 &$function_begin($documentation, "", "UINT16", "WINAPI", "waveIn" . $1 . "16", \@arguments16);
342 &$function_begin($documentation, "", "UINT", "WINAPI", "waveIn" . $1, \@arguments32);
344 } elsif(/WAVEOUT_SHORTCUT_0\s*\(\s*(.*?)\s*,\s*(.*?)\s*\)/s) {
346 my @arguments16 = ("HWAVEOUT16");
347 my @arguments32 = ("HWAVEOUT");
348 &$function_begin($documentation, "", "UINT16", "WINAPI", "waveOut" . $1 . "16", \@arguments16);
350 &$function_begin($documentation, "", "UINT", "WINAPI", "waveOut" . $1, \@arguments32);
352 } elsif(/WAVEOUT_SHORTCUT_(1|2)\s*\(\s*(.*?)\s*,\s*(.*?)\s*,\s*(.*?)\s*\)/s) {
355 my @arguments16 = ("HWAVEOUT16", $4);
356 my @arguments32 = ("HWAVEOUT", $4);
357 &$function_begin($documentation, "", "UINT16", "WINAPI", "waveOut" . $2 . "16", \@arguments16);
359 &$function_begin($documentation, "", "UINT", "WINAPI", "waveOut" . $2, \@arguments32);
362 my @arguments16 = ("UINT16", $4);
363 my @arguments32 = ("UINT", $4);
364 &$function_begin($documentation, "", "UINT16", "WINAPI", "waveOut". $2 . "16", \@arguments16);
366 &$function_begin($documentation, "", "UINT", "WINAPI", "waveOut" . $2, \@arguments32);
369 } elsif(/DEFINE_REGS_ENTRYPOINT_\d+\(\s*(\S*)\s*,\s*([^\s,\)]*).*?\)/s) {
371 $regs_entrypoints{$2} = $1;
372 } elsif(/\'[^\']*\'/s) {
374 } elsif(/\"[^\"]*\"/s) {
378 } elsif(/extern\s+"C"\s+{/s) {
382 print "+1: $_\n" if $options->debug >= 2;
389 print STDERR "done\n" if $options->verbose;
390 $output->write("$file: not at toplevel at end of file\n") unless $level == 0;