Merged all API files into two files (Win16/Win32).
[wine] / tools / winapi_check / winapi_documentation.pm
1 #
2 # Copyright 1999, 2000, 2001 Patrik Stridvall
3 #
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.
8 #
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.
13 #
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17 #
18
19 package winapi_documentation;
20
21 use strict;
22
23 use config qw($current_dir $wine_dir);
24 use modules qw($modules);
25 use nativeapi qw($nativeapi);
26 use options qw($options);
27 use output qw($output);
28 use winapi qw($win16api $win32api @winapis);
29
30 my %comment_width;
31 my %comment_indent;
32 my %comment_spacing;
33
34 sub check_documentation {
35     local $_;
36
37     my $function = shift;
38
39     my $file = $function->file;
40     my $external_name16 = $function->external_name16;
41     my $external_name32 = $function->external_name32;
42     my $internal_name = $function->internal_name;
43     my $module16 = $function->module16;
44     my $module32 = $function->module32;
45     my $ordinal16 = $function->ordinal16;
46     my $ordinal32 = $function->ordinal32;
47     my $documentation = $function->documentation;
48     my $documentation_line = $function->documentation_line;
49
50     my $documentation_error = 0;
51     my $documentation_warning = 0;
52     if($options->documentation_name ||
53        $options->documentation_ordinal ||
54        $options->documentation_pedantic)
55     {
56         my @winapis = ($win16api, $win32api);
57         my @modules = ($module16, $module32);
58         my @external_names = ($external_name16, $external_name32);
59         my @ordinals = ($ordinal16, $ordinal32);
60         while(
61               defined(my $winapi = shift @winapis) &&
62               defined(my $external_name = shift @external_names) &&
63               defined(my $module = shift @modules) &&
64               defined(my $ordinal = shift @ordinals))
65         {
66             if($winapi->is_function_stub_in_module($module, $internal_name)) { next; }
67
68             my @external_name = split(/\s*\&\s*/, $external_name);
69             my @modules = split(/\s*\&\s*/, $module);
70             my @ordinals = split(/\s*\&\s*/, $ordinal);
71
72             my $pedantic_failed = 0;
73             while(defined(my $external_name = shift @external_name) &&
74                   defined(my $module = shift @modules) &&
75                   defined(my $ordinal = shift @ordinals))
76             {
77                 my $found_name = 0;
78                 my $found_ordinal = 0;
79
80                 $module =~ s/\.(acm|dll|drv|exe|ocx)$//; # FIXME: Kludge
81                 foreach (split(/\n/, $documentation)) {
82                     if(/^(\s*)\*(\s*)(\@|\S+)(\s*)([\(\[])(\w+)\.(\@|\d+)([\)\]])/) {
83                         my $external_name2 = $3;
84                         my $module2 = $6;
85                         my $ordinal2 = $7;
86
87                         if(length($1) != 1 || length($2) < 1 ||
88                            length($4) < 1 || $5 ne "(" || $8 ne ")")
89                         {
90                             $pedantic_failed = 1;
91                         }
92
93                         if($external_name eq $external_name2) {
94                             $found_name = 1;
95                             if("\U$module\E" eq $module2 &&
96                                $ordinal eq $ordinal2)
97                             {
98                                 $found_ordinal = 1;
99                             }
100                         }
101                     }
102                 }
103                 if(($options->documentation_name && !$found_name) ||
104                    ($options->documentation_ordinal && !$found_ordinal))
105                 {
106                     $documentation_error = 1;
107                     $output->write("documentation: expected $external_name (\U$module\E.$ordinal): \\\n$documentation\n");
108                 }
109
110             }
111             if($options->documentation_pedantic && $pedantic_failed) {
112                 $documentation_warning = 1;
113                 $output->write("documentation: pedantic failed: \\\n$documentation\n");
114             }
115         }
116     }
117
118     if(!$documentation_error && $options->documentation_wrong) {
119         foreach (split(/\n/, $documentation)) {
120             if(/^\s*\*\s*(\S+)\s*[\(\[]\s*(\w+)\s*\.\s*([^\s\)\]]*)\s*[\)\]].*?$/) {
121                 my $external_name = $1;
122                 my $module = $2;
123                 my $ordinal = $3;
124
125                 if(!$options->documentation_pedantic && $ordinal ne "@") {
126                     $ordinal = int($ordinal);
127                 }
128
129                 my $found = 0;
130                 foreach my $entry2 (winapi::get_all_module_internal_ordinal($internal_name)) {
131                     (my $external_name2, my $module2, my $ordinal2) = @$entry2;
132
133                     my $_module2 = $module2;
134                     $_module2 =~ s/\.(acm|dll|drv|exe|ocx)$//; # FIXME: Kludge
135
136                     if($external_name eq $external_name2 &&
137                        lc($module) eq $_module2 &&
138                        $ordinal eq $ordinal2 &&
139                        ($external_name2 eq "@" ||
140                         ($win16api->is_module($module2) && !$win16api->is_function_stub_in_module($module2, $external_name2)) ||
141                         ($win32api->is_module($module2) && !$win32api->is_function_stub_in_module($module2, $external_name2))) &&
142                         $modules->is_allowed_module_in_file($module2, "$current_dir/$file"))
143                     {
144                         $found = 1;
145                         last;
146                     }
147                 }
148                 if(!$found) {
149                     $output->write("documentation: $external_name (\U$module\E.$ordinal) wrong\n");
150                 }
151             }
152         }
153     }
154
155     if($options->documentation_comment_indent) {
156         foreach (split(/\n/, $documentation)) {
157             if(/^\s*\*(\s*)\S+(\s*)[\(\[]\s*\w+\s*\.\s*[^\s\)\]]*\s*[\)\]].*?$/) {
158                 my $indent = $1;
159                 my $spacing = $2;
160
161                 $indent =~ s/\t/        /g;
162                 $indent = length($indent);
163
164                 $spacing =~ s/\t/        /g;
165                 $spacing = length($spacing);
166
167                 $comment_indent{$indent}++;
168                 if($indent >= 20) {
169                     $output->write("documentation: comment indent is $indent\n");
170                 }
171                 $comment_spacing{$spacing}++;
172             }
173         }
174     }
175
176     if($options->documentation_comment_width) {
177         if($documentation =~ /(^\/\*\*+)/) {
178             my $width = length($1);
179
180             $comment_width{$width}++;
181             if($width <= 65 || $width >= 81) {
182                 $output->write("comment is $width columns wide\n");
183             }
184         }
185     }
186
187     if($options->documentation_arguments) {
188         my $refargument_documentations = $function->argument_documentations;
189
190         if(defined($refargument_documentations)) {
191             my $n = 0;
192             for my $argument_documentation (@$refargument_documentations) {
193                 $n++;
194                 if($argument_documentation ne "") {
195                     if($argument_documentation !~ /^\/\*\s+\[(?:in|out|in\/out|\?\?\?)\].*?\*\/$/s) {
196                         $output->write("argument $n documentation: \\\n$argument_documentation\n");
197                     }
198                 }
199             }
200         }
201     }
202 }
203
204 sub report_documentation {
205     if($options->documentation_comment_indent) {
206         foreach my $indent (sort(keys(%comment_indent))) {
207             my $count = $comment_indent{$indent};
208             $output->write("*.c: $count functions have comment that is indented $indent\n");
209         }
210     }
211
212     if($options->documentation_comment_width) {
213         foreach my $width (sort(keys(%comment_width))) {
214             my $count = $comment_width{$width};
215             $output->write("*.c: $count functions have comments of width $width\n");
216         }
217     }
218 }
219
220 1;