oleaut32/tests: Make the Widget_*() and KindaEnum_*() functions static.
[wine/testsucceed.git] / tools / make_requests
blob214ade471ca152ca6c1a013d2162111ac7dbd8a9
1 #! /usr/bin/perl -w
3 # Build the server/trace.c and server/request.h files
4 # from the contents of include/wine/server.h.
6 # Copyright (C) 1998 Alexandre Julliard
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Lesser General Public License for more details.
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 use strict;
24 my %formats =
25 ( # size align format
26 "int" => [ 4, 4, "%d" ],
27 "short int" => [ 2, 2, "%d" ],
28 "char" => [ 1, 1, "%c" ],
29 "unsigned char" => [ 1, 1, "%02x" ],
30 "unsigned short"=> [ 2, 2, "%04x" ],
31 "unsigned int" => [ 4, 4, "%08x" ],
32 "unsigned long" => [ 4, 4, "%lx" ],
33 "void*" => [ 4, 4, "%p" ],
34 "data_size_t" => [ 4, 4, "%u" ],
35 "obj_handle_t" => [ 4, 4, "%04x" ],
36 "atom_t" => [ 2, 2, "%04x" ],
37 "user_handle_t" => [ 4, 4, "%08x" ],
38 "process_id_t" => [ 4, 4, "%04x" ],
39 "thread_id_t" => [ 4, 4, "%04x" ],
40 "lparam_t" => [ 4, 4, "%lx" ],
41 "timeout_t" => [ 8, 8, "&dump_timeout" ],
42 "rectangle_t" => [ 16, 4, "&dump_rectangle" ],
43 "char_info_t" => [ 4, 2, "&dump_char_info" ],
44 "apc_call_t" => [ 32, 4, "&dump_apc_call" ],
45 "apc_result_t" => [ 28, 4, "&dump_apc_result" ],
46 "async_data_t" => [ 28, 4, "&dump_async_data" ],
47 "luid_t" => [ 8, 4, "&dump_luid" ],
48 "ioctl_code_t" => [ 4, 4, "&dump_ioctl_code" ],
49 "file_pos_t" => [ 8, 8, "&dump_file_pos" ],
52 my @requests = ();
53 my %replies = ();
55 my @trace_lines = ();
57 my $max_req_size = 64;
59 my $warnings = scalar(@ARGV) && $ARGV[0] eq "-w";
61 ### Generate a dumping function
63 sub DO_DUMP_FUNC($$@)
65 my $name = shift;
66 my $req = shift;
67 push @trace_lines, "static void dump_${name}_$req( const struct ${name}_$req *req )\n{\n";
68 while ($#_ >= 0)
70 my $type = shift;
71 my $var = shift;
72 if (defined($formats{$type}))
74 my $fmt = ${$formats{$type}}[2];
75 if ($fmt =~ /^&(.*)/)
77 my $func = $1;
78 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
79 push @trace_lines, " $func( &req->$var );\n";
80 push @trace_lines, " fprintf( stderr, \",\" );\n" if ($#_ > 0);
82 elsif ($fmt =~ /^(%.*)\s+\((.*)\)/)
84 my ($format, $cast) = ($1, $2);
85 push @trace_lines, " fprintf( stderr, \" $var=$format";
86 push @trace_lines, "," if ($#_ > 0);
87 push @trace_lines, "\", ($cast)req->$var );\n";
89 else
91 push @trace_lines, " fprintf( stderr, \" $var=$fmt";
92 push @trace_lines, "," if ($#_ > 0);
93 push @trace_lines, "\", req->$var );\n";
96 else # must be some varargs format
98 my $func = $type;
99 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
100 push @trace_lines, " $func;\n";
101 push @trace_lines, " fputc( ',', stderr );\n" if ($#_ > 0);
104 push @trace_lines, "}\n\n";
107 ### Parse the request definitions
109 sub PARSE_REQUESTS()
111 # states: 0 = header 1 = declarations 2 = inside @REQ 3 = inside @REPLY
112 my $state = 0;
113 my $offset = 0;
114 my $name = "";
115 my @in_struct = ();
116 my @out_struct = ();
118 open(PROTOCOL,"server/protocol.def") or die "Can't open server/protocol.def";
120 while (<PROTOCOL>)
122 my ($type, $var);
123 # strip comments
124 s!/\*.*\*/!!g;
125 # strip white space at end of line
126 s/\s+$//;
128 if (/^\@HEADER/)
130 die "Misplaced \@HEADER" unless $state == 0;
131 $state++;
132 next;
135 # ignore everything while in state 0
136 next if $state == 0;
138 if (/^\@REQ\(\s*(\w+)\s*\)/)
140 $name = $1;
141 die "Misplaced \@REQ" unless $state == 1;
142 # start a new request
143 @in_struct = ();
144 @out_struct = ();
145 $offset = 12;
146 print SERVER_PROT "struct ${name}_request\n{\n";
147 print SERVER_PROT " struct request_header __header;\n";
148 $state++;
149 next;
152 if (/^\@REPLY/)
154 die "Misplaced \@REPLY" unless $state == 2;
155 print SERVER_PROT "};\n";
156 print SERVER_PROT "struct ${name}_reply\n{\n";
157 print SERVER_PROT " struct reply_header __header;\n";
158 die "request $name too large ($offset)" if ($offset > $max_req_size);
159 $offset = 8;
160 $state++;
161 next;
164 if (/^\@END/)
166 die "Misplaced \@END" unless ($state == 2 || $state == 3);
167 print SERVER_PROT "};\n";
169 if ($state == 2) # build dummy reply struct
171 die "request $name too large ($offset)" if ($offset > $max_req_size);
172 print SERVER_PROT "struct ${name}_reply\n{\n";
173 print SERVER_PROT " struct reply_header __header;\n";
174 print SERVER_PROT "};\n";
176 else
178 die "reply $name too large ($offset)" if ($offset > $max_req_size);
180 # got a complete request
181 push @requests, $name;
182 DO_DUMP_FUNC( $name, "request", @in_struct);
183 if ($#out_struct >= 0)
185 $replies{$name} = 1;
186 DO_DUMP_FUNC( $name, "reply", @out_struct);
188 $state = 1;
189 next;
192 if ($state != 1)
194 # skip empty lines (but keep them in output file)
195 if (/^$/)
197 print SERVER_PROT "\n";
198 next;
201 if (/^\s*VARARG\((\w+),(\w+),(\w+)\)/)
203 $var = $1;
204 $type = "dump_varargs_" . $2 . "( min(cur_size,req->" . $3 . ") )";
205 s!(VARARG\(.*\)\s*;)!/* $1 */!;
207 elsif (/^\s*VARARG\((\w+),(\w+)\)/)
209 $var = $1;
210 $type = "dump_varargs_" . $2 . "( cur_size )";
211 s!(VARARG\(.*\)\s*;)!/* $1 */!;
213 elsif (/^\s*(\w+\**(\s+\w+\**)*)\s+(\w+);/)
215 $type = $1;
216 $var = $3;
217 die "Unrecognized type $type" unless defined($formats{$type});
218 my @fmt = @{$formats{$type}};
219 if ($offset & ($fmt[1] - 1))
221 print "protocol.def:$.: warning: $name $offset $type $var needs padding\n" if $warnings;
223 $offset = ($offset + $fmt[1] - 1) & ~($fmt[1] - 1);
224 $offset += $fmt[0];
226 else
228 die "Unrecognized syntax $_";
230 if ($state == 2) { push @in_struct, $type, $var; }
231 if ($state == 3) { push @out_struct, $type, $var; }
234 # Pass it through into the output file
235 print SERVER_PROT $_ . "\n";
237 close PROTOCOL;
240 ### Retrieve the server protocol version from the existing server_protocol.h file
242 sub GET_PROTOCOL_VERSION()
244 my $protocol = 0;
245 open SERVER_PROT, "include/wine/server_protocol.h" or return 0;
246 while (<SERVER_PROT>)
248 if (/^\#define SERVER_PROTOCOL_VERSION (\d+)/) { $protocol = $1; last; }
250 close SERVER_PROT;
251 return $protocol;
254 ### Retrieve the list of status and errors used in the server
256 sub GET_ERROR_NAMES()
258 my %errors = ();
259 foreach my $f (glob "server/*.c")
261 next if $f eq "server/trace.c";
262 open FILE, $f or die "Can't open $f";
263 while (<FILE>)
265 if (/STATUS_(\w+)/)
267 $errors{$1} = "STATUS_$1" unless $1 eq "SUCCESS";
269 elsif (/set_win32_error\s*\(\s*(\w+)\s*\)/)
271 $errors{$1} = "0xc0010000 | $1";
274 close FILE;
276 return %errors;
279 # update a file if changed
280 sub update_file($)
282 my $file = shift;
283 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
284 if (!$ret)
286 unlink "$file.new";
288 else
290 rename "$file.new", "$file";
291 print "$file updated\n";
293 return $ret;
296 # replace some lines in a file between two markers
297 sub replace_in_file($$$@)
299 my $file = shift;
300 my $start = shift;
301 my $end = shift;
303 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
305 if (defined($start))
307 open OLD_FILE, "$file" or die "cannot open $file";
308 while (<OLD_FILE>)
310 print NEW_FILE $_;
311 last if /$start/;
315 print NEW_FILE "\n", @_, "\n";
317 if (defined($end))
319 my $skip=1;
320 while (<OLD_FILE>)
322 $skip = 0 if /$end/;
323 print NEW_FILE $_ unless $skip;
327 close OLD_FILE if defined($start);
328 close NEW_FILE;
329 return update_file($file);
332 ### Main
334 # Get the server protocol version
335 my $protocol = GET_PROTOCOL_VERSION();
337 my %errors = GET_ERROR_NAMES();
339 ### Create server_protocol.h and print header
341 open SERVER_PROT, ">include/wine/server_protocol.h.new" or die "Cannot create include/wine/server_protocol.h.new";
342 print SERVER_PROT "/*\n * Wine server protocol definitions\n *\n";
343 print SERVER_PROT " * This file is automatically generated; DO NO EDIT!\n";
344 print SERVER_PROT " * Edit server/protocol.def instead and re-run tools/make_requests\n";
345 print SERVER_PROT " */\n\n";
346 print SERVER_PROT "#ifndef __WINE_WINE_SERVER_PROTOCOL_H\n";
347 print SERVER_PROT "#define __WINE_WINE_SERVER_PROTOCOL_H\n";
349 ### Parse requests to find request/reply structure definitions
351 PARSE_REQUESTS();
353 ### Build the request list and structures
355 print SERVER_PROT "\n\nenum request\n{\n";
356 foreach my $req (@requests) { print SERVER_PROT " REQ_$req,\n"; }
357 print SERVER_PROT " REQ_NB_REQUESTS\n};\n\n";
359 print SERVER_PROT "union generic_request\n{\n";
360 print SERVER_PROT " struct request_max_size max_size;\n";
361 print SERVER_PROT " struct request_header request_header;\n";
362 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_request ${req}_request;\n"; }
363 print SERVER_PROT "};\n";
365 print SERVER_PROT "union generic_reply\n{\n";
366 print SERVER_PROT " struct request_max_size max_size;\n";
367 print SERVER_PROT " struct reply_header reply_header;\n";
368 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_reply ${req}_reply;\n"; }
369 print SERVER_PROT "};\n\n";
371 printf SERVER_PROT "#define SERVER_PROTOCOL_VERSION %d\n\n", $protocol + 1;
372 print SERVER_PROT "#endif /* __WINE_WINE_SERVER_PROTOCOL_H */\n";
373 close SERVER_PROT;
374 update_file( "include/wine/server_protocol.h" );
376 ### Output the dumping function tables
378 push @trace_lines, "static const dump_func req_dumpers[REQ_NB_REQUESTS] = {\n";
379 foreach my $req (@requests)
381 push @trace_lines, " (dump_func)dump_${req}_request,\n";
383 push @trace_lines, "};\n\n";
385 push @trace_lines, "static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {\n";
386 foreach my $req (@requests)
388 push @trace_lines, " ", $replies{$req} ? "(dump_func)dump_${req}_reply,\n" : "NULL,\n";
390 push @trace_lines, "};\n\n";
392 push @trace_lines, "static const char * const req_names[REQ_NB_REQUESTS] = {\n";
393 foreach my $req (@requests)
395 push @trace_lines, " \"$req\",\n";
397 push @trace_lines, "};\n\n";
399 push @trace_lines, "static const struct\n{\n";
400 push @trace_lines, " const char *name;\n";
401 push @trace_lines, " unsigned int value;\n";
402 push @trace_lines, "} status_names[] =\n{\n";
404 foreach my $err (sort keys %errors)
406 push @trace_lines, sprintf(" { %-30s %s },\n", "\"$err\",", $errors{$err});
408 push @trace_lines, " { NULL, 0 }\n";
409 push @trace_lines, "};\n";
411 replace_in_file( "server/trace.c",
412 "### make_requests begin ###",
413 "### make_requests end ###",
414 @trace_lines );
416 ### Output the request handlers list
418 my @request_lines = ();
420 foreach my $req (@requests) { push @request_lines, "DECL_HANDLER($req);\n"; }
421 push @request_lines, "\n#ifdef WANT_REQUEST_HANDLERS\n\n";
422 push @request_lines, "typedef void (*req_handler)( const void *req, void *reply );\n";
423 push @request_lines, "static const req_handler req_handlers[REQ_NB_REQUESTS] =\n{\n";
424 foreach my $req (@requests)
426 push @request_lines, " (req_handler)req_$req,\n";
428 push @request_lines, "};\n#endif /* WANT_REQUEST_HANDLERS */\n";
430 replace_in_file( "server/request.h",
431 "### make_requests begin ###",
432 "### make_requests end ###",
433 @request_lines );