2 # Copyright 1999, 2000, 2001 Patrik Stridvall
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
30 use options qw($options);
31 use output qw($output);
36 # Defined a couple common regexp tidbits
37 my $CALL_CONVENTION="__cdecl|__stdcall|" .
38 "__RPC_API|__RPC_STUB|__RPC_USER|" .
39 "CALLBACK|CDECL|NTAPI|PASCAL|RPC_ENTRY|RPC_VAR_ENTRY|" .
40 "VFWAPI|VFWAPIV|WINAPI|WINAPIV|APIENTRY|";
43 sub parse_c_function($$$$$);
44 sub parse_c_function_call($$$$$$$$);
45 sub parse_c_preprocessor($$$$);
46 sub parse_c_statements($$$$);
47 sub parse_c_tuple($$$$$$$);
48 sub parse_c_type($$$$$);
49 sub parse_c_typedef($$$$);
50 sub parse_c_variable($$$$$$$);
55 my ($proto, $filename) = @_;
56 my $class = ref($proto) || $proto;
57 my $self = {FILE => $filename,
58 CREATE_FUNCTION => sub { return new c_function; },
59 CREATE_TYPE => sub { return new c_type; },
60 FOUND_COMMENT => sub { return 1; },
61 FOUND_DECLARATION => sub { return 1; },
62 FOUND_FUNCTION => sub { return 1; },
63 FOUND_FUNCTION_CALL => sub { return 1; },
64 FOUND_LINE => sub { return 1; },
65 FOUND_PREPROCESSOR => sub { return 1; },
66 FOUND_STATEMENT => sub { return 1; },
67 FOUND_TYPE => sub { return 1; },
68 FOUND_VARIABLE => sub { return 1; }
70 bless ($self, $class);
79 sub set_found_comment_callback($$)
81 my ($self, $found_comment) = @_;
82 $self->{FOUND_COMMENT} = $found_comment;
85 sub set_found_declaration_callback($$)
87 my ($self, $found_declaration) = @_;
88 $self->{FOUND_DEClARATION} = $found_declaration;
91 sub set_found_function_callback($$)
93 my ($self, $found_function) = @_;
94 $self->{FOUND_FUNCTION} = $found_function;
97 sub set_found_function_call_callback($$)
99 my ($self, $found_function_call) = @_;
100 $self->{FOUND_FUNCTION_CALL} = $found_function_call;
103 sub set_found_line_callback($$)
105 my ($self, $found_line) = @_;
106 $self->{FOUND_LINE} = $found_line;
109 sub set_found_preprocessor_callback($$)
111 my ($self, $found_preprocessor) = @_;
112 $self->{FOUND_PREPROCESSOR} = $found_preprocessor;
115 sub set_found_statement_callback($$)
117 my ($self, $found_statement) = @_;
118 $self->{FOUND_STATEMENT} = $found_statement;
121 sub set_found_type_callback($$)
123 my ($self, $found_type) = @_;
124 $self->{FOUND_TYPE} = $found_type;
127 sub set_found_variable_callback($$)
129 my ($self, $found_variable) = @_;
130 $self->{FOUND_VARIABLE} = $found_variable;
134 ########################################################################
136 sub _format_c_type($$)
138 my ($self, $type) = @_;
140 $type =~ s/^\s*(.*?)\s*$/$1/;
142 if ($type =~ /^(\w+(?:\s*\*)*)\s*\(\s*\*\s*\)\s*\(\s*(.*?)\s*\)$/s) {
143 my $return_type = $1;
144 my @arguments = split(/\s*,\s*/, $2);
145 foreach my $argument (@arguments) {
146 if ($argument =~ s/^(\w+(?:\s*\*)*)\s*\w+$/$1/) {
147 $argument =~ s/\s+/ /g;
148 $argument =~ s/\s*\*\s*/*/g;
149 $argument =~ s/(\*+)$/ $1/;
153 $type = "$return_type (*)(" . join(", ", @arguments) . ")";
160 ########################################################################
163 # FIXME: Use caller (See man perlfunc)
164 sub _parse_c_warning($$$$$$)
166 my ($self, $curlines, $line, $column, $context, $message) = @_;
168 $message = "warning" if !$message;
172 my @lines = split(/\n/, $curlines);
174 $current .= $lines[0] . "\n" if $lines[0];
175 $current .= $lines[1] . "\n" if $lines[1];
179 $output->write("$self->{FILE}:$line." . ($column + 1) . ": $context: $message: \\\n$current");
181 $output->write("$self->{FILE}:$line." . ($column + 1) . ": $context: $message\n");
185 ########################################################################
188 sub _parse_c_error($$$$$$)
190 my ($self, $curlines, $line, $column, $context, $message) = @_;
192 $message = "parse error" if !$message;
195 if($output->prefix) {
196 # $output->write("\n");
200 $self->_parse_c_warning($curlines, $line, $column, $context, $message);
205 ########################################################################
208 sub _update_c_position($$$$)
210 my ($self, $source, $refline, $refcolumn) = @_;
211 my $line = $$refline;
212 my $column = $$refcolumn;
216 if ($source =~ s/^[^\n\t\'\"]*//s)
218 $column += length($&);
221 if ($source =~ s/^\'//)
224 while ($source =~ /^./ && $source !~ s/^\'//)
226 $source =~ s/^([^\'\\]*)//s;
227 $column += length($1);
228 if ($source =~ s/^\\//)
231 if ($source =~ s/^(.)//s)
233 $column += length($1);
236 $source =~ s/^(\d{0,3})//s;
237 $column += length($1);
244 elsif ($source =~ s/^\"//)
247 while ($source =~ /^./ && $source !~ s/^\"//)
249 $source =~ s/^([^\"\\]*)//s;
250 $column += length($1);
251 if ($source =~ s/^\\//)
254 if ($source =~ s/^(.)//s)
256 $column += length($1);
259 $source =~ s/^(\d{0,3})//s;
260 $column += length($1);
267 elsif ($source =~ s/^\n//)
272 elsif ($source =~ s/^\t//)
274 $column = $column + 8 - $column % 8;
279 $$refcolumn = $column;
282 ########################################################################
283 # __parse_c_until_one_of
285 sub __parse_c_until_one_of($$$$$$$) {
288 my $characters = shift;
289 my $on_same_level = shift;
290 my $refcurrent = shift;
292 my $refcolumn = shift;
295 local $_ = $$refcurrent;
296 my $line = $$refline;
297 my $column = $$refcolumn;
300 if(!defined($match)) {
302 $match = \$blackhole;
307 while(/^[^$characters]/s || $level > 0) {
311 if(s/^[^\(\)\[\]\{\}\n\t\'\"]*//s) {
314 } elsif ($on_same_level) {
315 if(s/^[^$characters\(\)\[\]\{\}\n\t\'\"]*//s) {
319 if(s/^[^$characters\n\t\'\"]*//s) {
326 while(/^./ && !s/^\'//) {
342 $$match .= $submatch;
343 $column += length($submatch);
346 while(/^./ && !s/^\"//) {
362 $$match .= $submatch;
363 $column += length($submatch);
364 } elsif($on_same_level && s/^[\(\[\{]//) {
368 $$match .= $submatch;
370 } elsif($on_same_level && s/^[\)\]\}]//) {
375 $$match .= $submatch;
379 $$match .= $submatch;
385 $$match .= $submatch;
391 $$match .= $submatch;
392 $column = $column + 8 - $column % 8;
394 $$match .= $submatch;
395 $column += length($submatch);
401 $$refcolumn = $column;
405 sub _parse_c_until_one_of($$$$$$)
407 my ($self, $characters, $refcurrent, $refline, $refcolumn, $match) = @_;
408 return $self->__parse_c_until_one_of($characters, 0, $refcurrent, $refline, $refcolumn, $match);
411 sub _parse_c_on_same_level_until_one_of($$$$$$)
413 my ($self, $characters, $refcurrent, $refline, $refcolumn, $match) = @_;
414 return $self->__parse_c_until_one_of($characters, 1, $refcurrent, $refline, $refcolumn, $match);
417 ########################################################################
420 sub parse_c_block($$$$$$$) {
423 my $refcurrent = shift;
425 my $refcolumn = shift;
427 my $refstatements = shift;
428 my $refstatements_line = shift;
429 my $refstatements_column = shift;
431 local $_ = $$refcurrent;
432 my $line = $$refline;
433 my $column = $$refcolumn;
435 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
445 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
447 my $statements_line = $line;
448 my $statements_column = $column;
453 $self->_parse_c_until_one_of("\\{\\}", \$_, \$line, \$column, \$match);
457 $statements .= $match;
473 $$refcolumn = $column;
474 $$refstatements = $statements;
475 $$refstatements_line = $statements_line;
476 $$refstatements_column = $statements_column;
481 sub parse_c_declaration($$$$)
483 my ($self, $refcurrent, $refline, $refcolumn) = @_;
485 local $_ = $$refcurrent;
486 my $line = $$refline;
487 my $column = $$refcolumn;
489 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
491 my $begin_line = $line;
492 my $begin_column = $column + 1;
494 my $end_line = $begin_line;
495 my $end_column = $begin_column;
496 $self->_update_c_position($_, \$end_line, \$end_column);
498 if(!$self->{FOUND_DECLARATION}($begin_line, $begin_column, $end_line, $end_column, $_)) {
506 my ($linkage, $type, $name);
508 if(s/^WINE_(?:DEFAULT|DECLARE)_DEBUG_CHANNEL\s*\(\s*(\w+)\s*\)\s*//s) { # FIXME: Wine specific kludge
509 $self->_update_c_position($&, \$line, \$column);
510 } elsif(s/^__ASM_GLOBAL_FUNC\(\s*(\w+)\s*,\s*//s) { # FIXME: Wine specific kludge
511 $self->_update_c_position($&, \$line, \$column);
512 $self->_parse_c_until_one_of("\)", \$_, \$line, \$column);
516 } elsif(s/^(?:DEFINE_AVIGUID|DEFINE_OLEGUID)\s*(?=\()//s) { # FIXME: Wine specific kludge
517 $self->_update_c_position($&, \$line, \$column);
521 my @argument_columns;
523 if(!$self->parse_c_tuple(\$_, \$line, \$column, \@arguments, \@argument_lines, \@argument_columns)) {
526 } elsif(s/^DEFINE_COMMON_NOTIFICATIONS\(\s*(\w+)\s*,\s*(\w+)\s*\)//s) { # FIXME: Wine specific kludge
527 $self->_update_c_position($&, \$line, \$column);
528 } elsif(s/^MAKE_FUNCPTR\(\s*(\w+)\s*\)//s) { # FIXME: Wine specific kludge
529 $self->_update_c_position($&, \$line, \$column);
530 } elsif(s/^START_TEST\(\s*(\w+)\s*\)\s*{//s) { # FIXME: Wine specific kludge
531 $self->_update_c_position($&, \$line, \$column);
532 } elsif(s/^int\s*_FUNCTION_\s*{//s) { # FIXME: Wine specific kludge
533 $self->_update_c_position($&, \$line, \$column);
534 } elsif(s/^(?:jump|strong)_alias//s) { # FIXME: GNU C library specific kludge
535 $self->_update_c_position($&, \$line, \$column);
536 } elsif(s/^(?:__asm__|asm)\s*\(//) {
537 $self->_update_c_position($&, \$line, \$column);
538 } elsif($self->parse_c_typedef(\$_, \$line, \$column)) {
540 } elsif($self->parse_c_variable(\$_, \$line, \$column, \$linkage, \$type, \$name)) {
542 } elsif($self->parse_c_function(\$_, \$line, \$column, \$function)) {
543 if($self->{FOUND_FUNCTION}($function))
545 my $statements = $function->statements;
546 my $statements_line = $function->statements_line;
547 my $statements_column = $function->statements_column;
549 if(defined($statements)) {
550 if(!$self->parse_c_statements(\$statements, \$statements_line, \$statements_column)) {
556 $self->_parse_c_error($_, $line, $column, "declaration");
561 $$refcolumn = $column;
568 my ($self, $pattern, $refcurrent, $refline, $refcolumn, $refmatch) = @_;
570 local $_ = $$refcurrent;
571 my $line = $$refline;
572 my $column = $$refcolumn;
575 if(s/^(?:$pattern)//s) {
576 $self->_update_c_position($&, \$line, \$column);
582 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
586 $$refcolumn = $column;
593 sub parse_c_enum($$$$)
595 my ($self, $refcurrent, $refline, $refcolumn) = @_;
597 local $_ = $$refcurrent;
598 my $line = $$refline;
599 my $column = $$refcolumn;
601 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
603 if (!s/^enum\s+((?:MSVCRT|WS)\(\s*\w+\s*\)|\w+)?\s*\{\s*//s) {
606 my $_name = $1 || "";
608 $self->_update_c_position($&, \$line, \$column);
613 while ($self->_parse_c_on_same_level_until_one_of(',', \$_, \$line, \$column, \$match)) {
615 if ($match !~ /^(\w+)\s*(?:=\s*(.*?)\s*)?$/) {
616 $self->_parse_c_error($_, $line, $column, "enum");
619 my $enum_value = $2 || "";
621 # $output->write("enum:$_name:$enum_name:$enum_value\n");
624 if ($self->_parse_c(',', \$_, \$line, \$column)) {
626 } elsif ($self->_parse_c('}', \$_, \$line, \$column)) {
629 my $tuple_line = $line;
630 my $tuple_column = $column - 1;
634 my @argument_columns;
636 if(!$self->parse_c_tuple(\$tuple, \$tuple_line, \$tuple_column,
637 \@arguments, \@argument_lines, \@argument_columns))
639 $self->_parse_c_error($_, $line, $column, "enum");
643 if ($#arguments >= 0) {
644 $name = $arguments[0];
649 $self->_parse_c_error($_, $line, $column, "enum");
653 $self->_update_c_position($_, \$line, \$column);
657 $$refcolumn = $column;
660 sub parse_c_expression($$$$)
662 my ($self, $refcurrent, $refline, $refcolumn) = @_;
664 local $_ = $$refcurrent;
665 my $line = $$refline;
666 my $column = $$refcolumn;
668 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
671 if(s/^(.*?)(\w+\s*\()/$2/s) {
672 $self->_update_c_position($1, \$line, \$column);
674 my $begin_line = $line;
675 my $begin_column = $column + 1;
680 my @argument_columns;
681 if(!$self->parse_c_function_call(\$_, \$line, \$column, \$name, \@arguments, \@argument_lines, \@argument_columns)) {
685 if($self->{FOUND_FUNCTION_CALL}($begin_line, $begin_column, $line, $column, $name, \@arguments))
687 while(defined(my $argument = shift @arguments) &&
688 defined(my $argument_line = shift @argument_lines) &&
689 defined(my $argument_column = shift @argument_columns))
691 $self->parse_c_expression(\$argument, \$argument_line, \$argument_column);
699 $self->_update_c_position($_, \$line, \$column);
703 $$refcolumn = $column;
708 sub parse_c_file($$$$)
710 my ($self, $refcurrent, $refline, $refcolumn) = @_;
712 local $_ = $$refcurrent;
713 my $line = $$refline;
714 my $column = $$refcolumn;
716 my $declaration = "";
717 my $declaration_line = $line;
718 my $declaration_column = $column;
720 my $previous_line = 0;
721 my $previous_column = -1;
723 my $preprocessor_condition;
730 while($plevel > 0 || $blevel > 0) {
732 $self->_parse_c_until_one_of("#/\\(\\)\\[\\]\\{\\};", \$_, \$line, \$column, \$match);
734 if($line != $previous_line) {
735 $self->{FOUND_LINE}($line);
737 # $self->{FOUND_LINE}("$line.$column");
739 $previous_line = $line;
740 $previous_column = $column;
742 if($match !~ /^\s+$/s && $options->debug) {
743 $self->_parse_c_warning($_, $line, $column, "file", "$plevel $blevel: '$declaration' '$match'");
746 if(!$declaration && $match =~ s/^\s+//s) {
747 $self->_update_c_position($&, \$declaration_line, \$declaration_column);
751 $declaration .= $match;
754 if ($declaration =~ s/^extern\s*\"C\"//s) {
756 $self->_update_c_position($&, \$line, \$column);
758 $declaration_line = $line;
759 $declaration_column = $column;
764 } elsif ($extern_c && $blevel == 1 && $plevel == 1 && !$declaration) {
766 $self->_update_c_position($&, \$line, \$column);
768 $declaration_line = $line;
769 $declaration_column = $column;
774 } elsif($declaration =~ s/^(?:__DEFINE_(?:GET|SET)_SEG|OUR_GUID_ENTRY)\s*(?=\()//sx) { # FIXME: Wine specific kludge
776 if ($plevel > 2 || !s/^\)//) {
777 $declaration = "$prefix$declaration";
780 $self->_update_c_position($&, \$line, \$column);
785 my @argument_columns;
787 if(!$self->parse_c_tuple(\$declaration, \$declaration_line, \$declaration_column,
788 \@arguments, \@argument_lines, \@argument_columns))
790 $self->_parse_c_error($declaration, $declaration_line, $declaration_column, "file", "tuple expected");
794 $declaration_line = $line;
795 $declaration_column = $column;
799 } elsif ($declaration =~ s/^(?:DEFINE_SHLGUID)\s*\(.*?\)//s) {
800 $self->_update_c_position($&, \$declaration_line, \$declaration_column);
801 } elsif ($declaration =~ s/^(?:DECL_WINELIB_TYPE_AW|DECLARE_HANDLE(?:16)?|TYPE_MARSHAL)\(\s*(\w+)\s*\)\s*//s) {
802 $self->_update_c_position($&, \$declaration_line, \$declaration_column);
803 } elsif ($declaration =~ s/^ICOM_DEFINE\(\s*(\w+)\s*,\s*(\w+)\s*\)\s*//s) {
804 $self->_update_c_position($&, \$declaration_line, \$declaration_column);
810 while(s/^.*?\n//) { $blank_lines++; }
813 $declaration_line = $line;
814 $declaration_column = $column;
816 $declaration .= "\n" x $blank_lines;
824 my $preprocessor_line = $line;
825 my $preprocessor_column = $column;
827 my $preprocessor = $&;
828 while(s/^(.*?)\\\s*\n//) {
830 $preprocessor .= "$1\n";
832 if(s/^(.*?)(\/\*.*?\*\/)(.*?)\n//) {
835 $preprocessor .= "$1$3";
839 } elsif(s/^(.*?)(\/[\*\/].*?)?\n//) {
849 if($preprocessor =~ /^\#\s*if/) {
850 if($preprocessor =~ /^\#\s*if\s*0/) {
855 if($preprocessor =~ /^\#\s*ifdef\s+WORDS_BIGENDIAN$/) {
856 $preprocessor_condition = "defined(WORD_BIGENDIAN)";
857 # $output->write("'$preprocessor_condition':'$declaration'\n")
859 $preprocessor_condition = "";
862 } elsif($preprocessor =~ /^\#\s*else/) {
863 if ($preprocessor_condition ne "") {
864 $preprocessor_condition =~ "!$preprocessor_condition";
865 $preprocessor_condition =~ s/^!!/!/;
866 # $output->write("'$preprocessor_condition':'$declaration'\n")
868 } elsif($preprocessor =~ /^\#\s*endif/) {
876 if ($preprocessor_condition ne "") {
877 # $output->write("'$preprocessor_condition':'$declaration'\n");
878 $preprocessor_condition = "";
883 if(!$self->parse_c_preprocessor(\$preprocessor, \$preprocessor_line, \$preprocessor_column)) {
888 if(s/^\/\*.*?\*\///s) {
889 $self->{FOUND_COMMENT}($line, $column + 1, $&);
895 $column += length($_);
897 } elsif(s/^\/\/(.*?)\n//) {
898 $self->{FOUND_COMMENT}($line, $column + 1, $&);
907 $line += $blank_lines;
908 if($blank_lines > 0) {
913 $declaration_line = $line;
914 $declaration_column = $column;
915 } elsif($blank_lines > 0) {
916 $declaration .= "\n" x $blank_lines;
938 $self->_parse_c_error($_, $line, $column, "file", ") without (");
941 if($plevel == 1 && $declaration =~ /^__ASM_GLOBAL_FUNC/) {
942 if(!$self->parse_c_declaration(\$declaration, \$declaration_line, \$declaration_column)) {
945 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
947 $declaration_line = $line;
948 $declaration_column = $column;
956 $self->_parse_c_error($_, $line, $column, "file", "} without {");
961 if($declaration =~ /^typedef/s ||
962 $declaration =~ /^(?:const\s+|extern\s+|static\s+|volatile\s+)*(?:interface|struct|union)(?:\s+\w+)?\s*\{/s)
965 } elsif($plevel == 1 && $blevel == 1) {
966 if(!$self->parse_c_declaration(\$declaration, \$declaration_line, \$declaration_column)) {
969 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
971 $declaration_line = $line;
972 $declaration_column = $column;
973 } elsif($column == 1 && !$extern_c) {
974 $self->_parse_c_error("", $line, $column, "file", "inner } ends on column 1");
978 if($plevel == 1 && $blevel == 1) {
979 $declaration =~ s/\s*;$//;
980 if($declaration && !$self->parse_c_declaration(\$declaration, \$declaration_line, \$declaration_column)) {
983 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
985 $declaration_line = $line;
986 $declaration_column = $column;
988 } elsif(/^\s*$/ && $declaration =~ /^\s*$/ && $match =~ /^\s*$/) {
992 $self->_parse_c_error($_, $line, $column, "file", "parse error: '$declaration' '$match'");
998 $$refcolumn = $column;
1003 sub parse_c_function($$$$$)
1005 my ($self, $refcurrent, $refline, $refcolumn, $reffunction) = @_;
1007 local $_ = $$refcurrent;
1008 my $line = $$refline;
1009 my $column = $$refcolumn;
1012 my $calling_convention = "";
1017 my @argument_columns;
1019 my $statements_line;
1020 my $statements_column;
1022 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1024 my $begin_line = $line;
1025 my $begin_column = $column + 1;
1027 if($self->_parse_c('__declspec\((?:dllexport|dllimport|naked)\)|INTERNETAPI|RPCRTAPI', \$_, \$line, \$column)) {
1031 # $self->_parse_c_warning($_, $line, $column, "function", "");
1034 while($self->_parse_c('(?:const|inline|extern(?:\s+\"C\")?|EXTERN_C|static|volatile|' .
1035 'signed(?=\s+__int(?:8|16|32|64)\b|\s+char\b|\s+int\b|\s+long(?:\s+long)?\b|\s+short\b)|' .
1036 'unsigned(?=\s+__int(?:8|16|32|64)\b|\s+char\b|\s+int\b|\s+long(?:\s+long)?\b|\s+short\b)|' .
1037 'long(?=\s+double\b|\s+int\b|\s+long\b))(?=\b)',
1038 \$_, \$line, \$column, \$match))
1040 if($match =~ /^(?:extern|static)$/) {
1047 if($self->_parse_c('DECL_GLOBAL_CONSTRUCTOR', \$_, \$line, \$column, \$name)) { # FIXME: Wine specific kludge
1049 } elsif($self->_parse_c('WINE_EXCEPTION_FILTER\(\w+\)', \$_, \$line, \$column, \$name)) { # FIXME: Wine specific kludge
1052 if(!$self->parse_c_type(\$_, \$line, \$column, \$return_type)) {
1056 $self->_parse_c('inline|FAR', \$_, \$line, \$column);
1058 $self->_parse_c($CALL_CONVENTION,
1059 \$_, \$line, \$column, \$calling_convention);
1062 # FIXME: ???: Old variant of __attribute((const))
1063 $self->_parse_c('(?:const|volatile)', \$_, \$line, \$column);
1065 if(!$self->_parse_c('(?:operator\s*!=|(?:MSVCRT|WS)\(\s*\w+\s*\)|\w+)', \$_, \$line, \$column, \$name)) {
1071 $self->_update_c_position($&, \$line, \$column);
1075 if(!$self->parse_c_tuple(\$_, \$line, \$column, \@arguments, \@argument_lines, \@argument_columns)) {
1081 $self->_update_c_position($&, \$line, \$column);
1083 $self->_parse_c_error($_, $line, $column, "function");
1089 if($self->_parse_c('__attribute__\s*\(\s*\(\s*(?:constructor|destructor)\s*\)\s*\)', \$_, \$line, \$column)) {
1094 # FIXME: Implement proper handling of K&R C functions
1095 $self->_parse_c_until_one_of("{", \$_, \$line, \$column, $kar);
1098 $output->write("K&R: $kar\n");
1101 if($_ && !$self->parse_c_block(\$_, \$line, \$column, \$statements, \$statements_line, \$statements_column)) {
1105 my $end_line = $line;
1106 my $end_column = $column;
1110 $$refcolumn = $column;
1112 my $function = $self->{CREATE_FUNCTION}();
1114 $function->file($self->{FILE});
1115 $function->begin_line($begin_line);
1116 $function->begin_column($begin_column);
1117 $function->end_line($end_line);
1118 $function->end_column($end_column);
1119 $function->linkage($linkage);
1120 $function->return_type($return_type);
1121 $function->calling_convention($calling_convention);
1122 $function->name($name);
1123 # if(defined($argument_types)) {
1124 # $function->argument_types([@$argument_types]);
1126 # if(defined($argument_names)) {
1127 # $function->argument_names([@$argument_names]);
1129 $function->statements_line($statements_line);
1130 $function->statements_column($statements_column);
1131 $function->statements($statements);
1133 $$reffunction = $function;
1138 sub parse_c_function_call($$$$$$$$)
1140 my ($self, $refcurrent, $refline, $refcolumn, $refname, $refarguments, $refargument_lines, $refargument_columns) = @_;
1142 local $_ = $$refcurrent;
1143 my $line = $$refline;
1144 my $column = $$refcolumn;
1149 my @argument_columns;
1151 if(s/^(\w+)(\s*)(?=\()//s) {
1152 $self->_update_c_position($&, \$line, \$column);
1156 if(!$self->parse_c_tuple(\$_, \$line, \$column, \@arguments, \@argument_lines, \@argument_columns)) {
1165 $$refcolumn = $column;
1168 @$refarguments = @arguments;
1169 @$refargument_lines = @argument_lines;
1170 @$refargument_columns = @argument_columns;
1176 sub parse_c_preprocessor($$$$)
1178 my ($self, $refcurrent, $refline, $refcolumn) = @_;
1180 local $_ = $$refcurrent;
1181 my $line = $$refline;
1182 my $column = $$refcolumn;
1184 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1186 my $begin_line = $line;
1187 my $begin_column = $column + 1;
1189 if(!$self->{FOUND_PREPROCESSOR}($begin_line, $begin_column, "$_")) {
1193 if(/^\#\s*define\s*(.*?)$/s) {
1194 $self->_update_c_position($_, \$line, \$column);
1195 } elsif(/^\#\s*else/s) {
1196 $self->_update_c_position($_, \$line, \$column);
1197 } elsif(/^\#\s*endif/s) {
1198 $self->_update_c_position($_, \$line, \$column);
1199 } elsif(/^\#\s*(?:if|ifdef|ifndef)?\s*(.*?)$/s) {
1200 $self->_update_c_position($_, \$line, \$column);
1201 } elsif(/^\#\s*include\s+(.*?)$/s) {
1202 $self->_update_c_position($_, \$line, \$column);
1203 } elsif(/^\#\s*undef\s+(.*?)$/s) {
1204 $self->_update_c_position($_, \$line, \$column);
1206 $self->_parse_c_error($_, $line, $column, "preprocessor");
1211 $$refcolumn = $column;
1216 sub parse_c_statement($$$$)
1218 my ($self, $refcurrent, $refline, $refcolumn) = @_;
1220 local $_ = $$refcurrent;
1221 my $line = $$refline;
1222 my $column = $$refcolumn;
1224 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1226 $self->_parse_c('(?:case\s+)?(\w+)\s*:\s*', \$_, \$line, \$column);
1228 # $output->write("$line.$column: statement: '$_'\n");
1234 my $statements_line;
1235 my $statements_column;
1236 if(!$self->parse_c_block(\$_, \$line, \$column, \$statements, \$statements_line, \$statements_column)) {
1239 if(!$self->parse_c_statements(\$statements, \$statements_line, \$statements_column)) {
1242 } elsif(s/^(for|if|switch|while)\s*(?=\()//) {
1243 $self->_update_c_position($&, \$line, \$column);
1249 my @argument_columns;
1250 if(!$self->parse_c_tuple(\$_, \$line, \$column, \@arguments, \@argument_lines, \@argument_columns)) {
1254 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1255 if(!$self->parse_c_statement(\$_, \$line, \$column)) {
1258 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1260 while(defined(my $argument = shift @arguments) &&
1261 defined(my $argument_line = shift @argument_lines) &&
1262 defined(my $argument_column = shift @argument_columns))
1264 $self->parse_c_expression(\$argument, \$argument_line, \$argument_column);
1266 } elsif(s/^else//) {
1267 $self->_update_c_position($&, \$line, \$column);
1268 if(!$self->parse_c_statement(\$_, \$line, \$column)) {
1271 } elsif(s/^return//) {
1272 $self->_update_c_position($&, \$line, \$column);
1273 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1274 if(!$self->parse_c_expression(\$_, \$line, \$column)) {
1277 } elsif($self->parse_c_expression(\$_, \$line, \$column)) {
1280 # $self->_parse_c_error($_, $line, $column, "statement");
1283 $self->_update_c_position($_, \$line, \$column);
1287 $$refcolumn = $column;
1292 sub parse_c_statements($$$$)
1294 my ($self, $refcurrent, $refline, $refcolumn) = @_;
1296 local $_ = $$refcurrent;
1297 my $line = $$refline;
1298 my $column = $$refcolumn;
1300 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1302 # $output->write("$line.$column: statements: '$_'\n");
1305 my $statement_line = $line;
1306 my $statement_column = $column;
1308 my $previous_line = -1;
1309 my $previous_column = -1;
1313 while($plevel > 0 || $blevel > 0) {
1315 $self->_parse_c_until_one_of("\\(\\)\\[\\]\\{\\};", \$_, \$line, \$column, \$match);
1317 if($previous_line == $line && $previous_column == $column) {
1318 $self->_parse_c_error($_, $line, $column, "statements", "no progress");
1320 $previous_line = $line;
1321 $previous_column = $column;
1323 # $output->write("'$match' '$_'\n");
1325 $statement .= $match;
1330 } elsif(s/^[\)\]]//) {
1333 $self->_parse_c_error($_, $line, $column, "statements");
1343 if(!$self->parse_c_statement(\$statement, \$statement_line, \$statement_column)) {
1346 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1348 $statement_line = $line;
1349 $statement_column = $column;
1352 if($plevel == 1 && $blevel == 1) {
1353 if(!$self->parse_c_statement(\$statement, \$statement_line, \$statement_column)) {
1357 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1359 $statement_line = $line;
1360 $statement_column = $column;
1364 } elsif(/^\s*$/ && $statement =~ /^\s*$/ && $match =~ /^\s*$/) {
1368 $self->_parse_c_error($_, $line, $column, "statements");
1372 $self->_update_c_position($_, \$line, \$column);
1376 $$refcolumn = $column;
1381 sub parse_c_struct_union($$$$$$$$$)
1383 my ($self, $refcurrent, $refline, $refcolumn, $refkind, $ref_name, $reffield_type_names, $reffield_names, $refnames) = @_;
1385 local $_ = $$refcurrent;
1386 my $line = $$refline;
1387 my $column = $$refcolumn;
1391 my @field_type_names = ();
1392 my @field_names = ();
1395 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1397 if (!s/^(interface|struct|union)\s+((?:MSVCRT|WS)\(\s*\w+\s*\)|\w+)?\s*\{\s*//s) {
1403 $self->_update_c_position($&, \$line, \$column);
1406 while ($_ && $self->_parse_c_on_same_level_until_one_of(';', \$_, \$line, \$column, \$match))
1409 my $field_type_name;
1412 if ($self->parse_c_variable(\$match, \$line, \$column, \$field_linkage, \$field_type_name, \$field_name)) {
1413 $field_type_name =~ s/\s+/ /g;
1415 push @field_type_names, $field_type_name;
1416 push @field_names, $field_name;
1417 # $output->write("$kind:$_name:$field_type_name:$field_name\n");
1419 $self->_parse_c_error($_, $line, $column, "typedef $kind: '$match'");
1422 if ($self->_parse_c(';', \$_, \$line, \$column)) {
1424 } elsif ($self->_parse_c('}', \$_, \$line, \$column)) {
1427 my $tuple_line = $line;
1428 my $tuple_column = $column - 1;
1432 my @argument_columns;
1434 if(!$self->parse_c_tuple(\$tuple, \$tuple_line, \$tuple_column,
1435 \@arguments, \@argument_lines, \@argument_columns))
1437 $self->_parse_c_error($_, $line, $column, "$kind");
1440 foreach my $argument (@arguments) {
1441 my $name = $argument;
1448 $self->_parse_c_error($_, $line, $column, "$kind");
1454 $$refcolumn = $column;
1457 $$ref_name = $_name;
1458 @$reffield_type_names = @field_type_names;
1459 @$reffield_names = @field_names;
1460 @$refnames = @names;
1465 sub parse_c_tuple($$$$$$$)
1467 my ($self, $refcurrent, $refline, $refcolumn,
1468 # FIXME: Should not write directly
1469 $items, $item_lines, $item_columns) = @_;
1471 local $_ = $$refcurrent;
1473 my $line = $$refline;
1474 my $column = $$refcolumn;
1484 my $item_line = $line;
1485 my $item_column = $column + 1;
1488 while($plevel > 0) {
1490 $self->_parse_c_until_one_of("\\(,\\)", \$_, \$line, \$column, \$match);
1498 push @$item_lines, $item_line;
1499 push @$item_columns, $item_column;
1500 push @$items, $item;
1510 push @$item_lines, $item_line;
1511 push @$item_columns, $item_column;
1512 push @$items, $item;
1513 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1515 $item_column = $column + 1;
1527 $$refcolumn = $column;
1532 sub parse_c_type($$$$$)
1534 my ($self, $refcurrent, $refline, $refcolumn, $reftype) = @_;
1536 local $_ = $$refcurrent;
1537 my $line = $$refline;
1538 my $column = $$refcolumn;
1542 $self->_parse_c("(?:const|volatile)", \$_, \$line, \$column);
1544 if($self->_parse_c('ICOM_VTABLE\(.*?\)', \$_, \$line, \$column, \$type)) {
1546 } elsif($self->_parse_c('(?:enum\s+|interface\s+|struct\s+|union\s+)?(?:(?:MSVCRT|WS)\(\s*\w+\s*\)|\w+)\s*(\*\s*)*',
1547 \$_, \$line, \$column, \$type))
1557 $$refcolumn = $column;
1564 sub parse_c_typedef($$$$)
1566 my ($self, $refcurrent, $refline, $refcolumn) = @_;
1568 local $_ = $$refcurrent;
1569 my $line = $$refline;
1570 my $column = $$refcolumn;
1574 if (!$self->_parse_c("typedef", \$_, \$line, \$column)) {
1582 } elsif ($self->parse_c_enum(\$_, \$line, \$column)) {
1588 my @field_type_names;
1593 } elsif ($self->parse_c_struct_union(\$_, \$line, \$column,
1594 \$kind, \$_name, \@field_type_names, \@field_names, \@names))
1597 foreach my $name (@names)
1599 if ($name =~ /^\w+$/)
1605 $base_name="$kind $_name" if (!defined $base_name and defined $_name);
1606 $base_name=$kind if (!defined $base_name);
1607 foreach my $name (@names) {
1608 if ($name =~ /^\w+$/) {
1609 my $type = $self->{CREATE_TYPE}();
1612 $type->_name($_name);
1614 $type->field_type_names([@field_type_names]);
1615 $type->field_names([@field_names]);
1617 $self->{FOUND_TYPE}($type);
1618 } elsif ($name =~ /^(\*+)\s*(?:RESTRICTED_POINTER\s+)?(\w+)$/) {
1619 my $type_name = "$base_name $1";
1622 my $type = $self->{CREATE_TYPE}();
1626 $type->field_type_names([$type_name]);
1627 $type->field_names([""]);
1629 $self->{FOUND_TYPE}($type);
1631 $self->_parse_c_error($_, $line, $column, "typedef 2");
1643 } elsif ($self->parse_c_variable(\$_, \$line, \$column, \$linkage, \$type_name, \$name)) {
1644 $type_name =~ s/\s+/ /g;
1646 if(defined($type_name) && defined($name)) {
1647 my $type = $self->{CREATE_TYPE}();
1649 if (length($name) == 0) {
1650 $self->_parse_c_error($_, $line, $column, "typedef");
1655 $type->field_type_names([$type_name]);
1656 $type->field_names([""]);
1658 $self->{FOUND_TYPE}($type);
1661 $self->_parse_c_error($_, $line, $column, "typedef");
1666 $$refcolumn = $column;
1671 sub parse_c_variable($$$$$$$)
1673 my ($self, $refcurrent, $refline, $refcolumn, $reflinkage, $reftype, $refname) = @_;
1675 local $_ = $$refcurrent;
1676 my $line = $$refline;
1677 my $column = $$refcolumn;
1679 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1681 my $begin_line = $line;
1682 my $begin_column = $column + 1;
1689 # $self->_parse_c_warning($_, $line, $column, "variable");
1692 while($self->_parse_c('(?:const|inline|extern(?:\s+\"C\")?|EXTERN_C|static|volatile|' .
1693 'signed(?=\s+__int(?:8|16|32|64)\b|\s+char\b|\s+int\b|\s+long(?:\s+long)?\b|\s+short\b)|' .
1694 'unsigned(?=\s+__int(?:8|16|32|64)\b|\s+char\b|\s+int\b|\s+long(?:\s+long)?\b|\s+short\b)|' .
1695 'long(?=\s+double\b|\s+int\b|\s+long\b))(?=\b)',
1696 \$_, \$line, \$column, \$match))
1698 if ($match =~ /^(?:extern|static)$/) {
1702 $self->_parse_c_warning($_, $line, $column, "repeated linkage (ignored): $match");
1704 } elsif ($match =~ /^(?:signed|unsigned)$/) {
1708 $self->_parse_c_warning($_, $line, $column, "repeated sign (ignored): $match");
1719 } elsif (s/^(enum\s+|interface\s+|struct\s+|union\s+)((?:MSVCRT|WS)\(\s*\w+\s*\)|\w+)?\s*\{\s*//s) {
1722 $self->_update_c_position($&, \$line, \$column);
1724 if(defined($_name)) {
1725 $type = "$kind $_name { }";
1727 $type = "$kind { }";
1731 } elsif(s/^((?:enum\s+|interface\s+|struct\s+|union\s+)?\w+\b(?:\s+DECLSPEC_ALIGN\(.*?\)|\s*(?:const\s*|volatile\s*)?\*)*)\s*(\w+)\s*(\[.*?\]$|:\s*(\d+)$|\{)?//s) {
1747 $type = $self->_format_c_type($type);
1750 } elsif(s/^((?:enum\s+|interface\s+|struct\s+|union\s+)?\w+\b(?:\s*\*)*)\s*:\s*(\d+)$//s) {
1751 $type = "$sign$1:$2";
1753 $type = $self->_format_c_type($type);
1756 } elsif(s/^((?:enum\s+|interface\s+|struct\s+|union\s+)?\w+\b(?:\s*\*)*\s*\(\s*(?:$CALL_CONVENTION)?(?:\s*\*)*)\s*(\w+)\s*(\)\s*\(.*?\))$//s) {
1757 $type = $self->_format_c_type("$sign$1$3");
1761 } elsif($self->_parse_c('DEFINE_GUID', \$_, \$line, \$column, \$match)) { # Windows specific
1765 $self->_parse_c_warning($_, $line, $column, "variable", "'$_'");
1771 } elsif($self->_parse_c('SEQ_DEFINEBUF', \$_, \$line, \$column, \$match)) { # Linux specific
1774 } elsif($self->_parse_c('DEFINE_REGS_ENTRYPOINT_\w+|DPQ_DECL_\w+|HANDLER_DEF|IX86_ONLY', # Wine specific
1775 \$_, \$line, \$column, \$match))
1779 } elsif($self->_parse_c('(?:struct\s+)?ICOM_VTABLE\s*\(\w+\)', \$_, \$line, \$column, \$match)) {
1782 } elsif(s/^(enum|interface|struct|union)(?:\s+(\w+))?\s*\{.*?\}\s*//s) {
1785 $self->_update_c_position($&, \$line, \$column);
1787 if(defined($_name)) {
1788 $type = "struct $_name { }";
1790 $type = "struct { }";
1792 } elsif(s/^((?:enum\s+|interface\s+|struct\s+|union\s+)?\w+)\s*(?:\*\s*)*//s) {
1799 # $output->write("*** $type: '$_'\n");
1801 # $self->_parse_c_warning($_, $line, $column, "variable2", "");
1805 } elsif(s/^WINAPI\s*//) {
1806 $self->_update_c_position($&, \$line, \$column);
1811 } elsif(s/^(\((?:$CALL_CONVENTION)?\s*\*?\s*(?:$CALL_CONVENTION)?\w+\s*(?:\[[^\]]*\]\s*)*\))\s*\(//) {
1812 $self->_update_c_position($&, \$line, \$column);
1817 $self->_parse_c_until_one_of("\\)", \$_, \$line, \$column);
1818 if(s/^\)//) { $column++; }
1819 $self->_parse_c_until_one_of("\\S", \$_, \$line, \$column);
1821 if(!s/^(?:=\s*|,\s*|$)//) {
1824 } elsif(s/^(?:\*\s*)*(?:const\s+|volatile\s+)?(\w+)\s*(?:\[[^\]]*\]\s*)*\s*(?:=\s*|,\s*|$)//) {
1825 $self->_update_c_position($&, \$line, \$column);
1835 # $output->write("$type: $name: '$_'\n");
1839 $$refcolumn = $column;
1841 $$reflinkage = $linkage;
1845 $self->{FOUND_VARIABLE}($begin_line, $begin_column, $linkage, $type, $name);