push 212f1dad91f15aefd8e676124180e0b86d7c9ee6
[wine/hacks.git] / tools / make_requests
blob00a3420506489a74ea375d013adc8ced17845a92
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 "data_size_t" => [ 4, 4, "%u" ],
33 "obj_handle_t" => [ 4, 4, "%04x" ],
34 "atom_t" => [ 4, 4, "%04x" ],
35 "user_handle_t" => [ 4, 4, "%08x" ],
36 "process_id_t" => [ 4, 4, "%04x" ],
37 "thread_id_t" => [ 4, 4, "%04x" ],
38 "client_ptr_t" => [ 8, 8, "&dump_uint64" ],
39 "mod_handle_t" => [ 8, 8, "&dump_uint64" ],
40 "lparam_t" => [ 8, 8, "&dump_uint64" ],
41 "apc_param_t" => [ 8, 8, "&dump_uint64" ],
42 "file_pos_t" => [ 8, 8, "&dump_uint64" ],
43 "mem_size_t" => [ 8, 8, "&dump_uint64" ],
44 "timeout_t" => [ 8, 8, "&dump_timeout" ],
45 "rectangle_t" => [ 16, 4, "&dump_rectangle" ],
46 "char_info_t" => [ 4, 2, "&dump_char_info" ],
47 "apc_call_t" => [ 40, 8, "&dump_apc_call" ],
48 "apc_result_t" => [ 40, 8, "&dump_apc_result" ],
49 "async_data_t" => [ 40, 8, "&dump_async_data" ],
50 "luid_t" => [ 8, 4, "&dump_luid" ],
51 "ioctl_code_t" => [ 4, 4, "&dump_ioctl_code" ],
54 my @requests = ();
55 my %replies = ();
57 my @trace_lines = ();
59 my $max_req_size = 64;
61 my $warnings = scalar(@ARGV) && $ARGV[0] eq "-w";
63 ### Generate a dumping function
65 sub DO_DUMP_FUNC($$@)
67 my $name = shift;
68 my $req = shift;
69 push @trace_lines, "static void dump_${name}_$req( const struct ${name}_$req *req )\n{\n";
70 while ($#_ >= 0)
72 my $type = shift;
73 my $var = shift;
74 next if $var =~ /^__pad/;
75 if (defined($formats{$type}))
77 my $fmt = ${$formats{$type}}[2];
78 if ($fmt =~ /^&(.*)/)
80 my $func = $1;
81 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
82 push @trace_lines, " $func( &req->$var );\n";
83 push @trace_lines, " fprintf( stderr, \",\" );\n" if ($#_ > 0);
85 elsif ($fmt =~ /^(%.*)\s+\((.*)\)/)
87 my ($format, $cast) = ($1, $2);
88 push @trace_lines, " fprintf( stderr, \" $var=$format";
89 push @trace_lines, "," if ($#_ > 0);
90 push @trace_lines, "\", ($cast)req->$var );\n";
92 else
94 push @trace_lines, " fprintf( stderr, \" $var=$fmt";
95 push @trace_lines, "," if ($#_ > 0);
96 push @trace_lines, "\", req->$var );\n";
99 else # must be some varargs format
101 my $func = $type;
102 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
103 push @trace_lines, " $func;\n";
104 push @trace_lines, " fputc( ',', stderr );\n" if ($#_ > 0);
107 push @trace_lines, "}\n\n";
110 ### Parse the request definitions
112 sub PARSE_REQUESTS()
114 # states: 0 = header 1 = declarations 2 = inside @REQ 3 = inside @REPLY
115 my $state = 0;
116 my $offset = 0;
117 my $name = "";
118 my @in_struct = ();
119 my @out_struct = ();
121 open(PROTOCOL,"server/protocol.def") or die "Can't open server/protocol.def";
123 while (<PROTOCOL>)
125 my ($type, $var);
126 # strip comments
127 s!/\*.*\*/!!g;
128 # strip white space at end of line
129 s/\s+$//;
131 if (/^\@HEADER/)
133 die "Misplaced \@HEADER" unless $state == 0;
134 $state++;
135 next;
138 # ignore everything while in state 0
139 next if $state == 0;
141 if (/^\@REQ\(\s*(\w+)\s*\)/)
143 $name = $1;
144 die "Misplaced \@REQ" unless $state == 1;
145 # start a new request
146 @in_struct = ();
147 @out_struct = ();
148 $offset = 12;
149 print SERVER_PROT "struct ${name}_request\n{\n";
150 print SERVER_PROT " struct request_header __header;\n";
151 $state++;
152 next;
155 if (/^\@REPLY/)
157 die "Misplaced \@REPLY" unless $state == 2;
158 print SERVER_PROT "};\n";
159 print SERVER_PROT "struct ${name}_reply\n{\n";
160 print SERVER_PROT " struct reply_header __header;\n";
161 die "request $name too large ($offset)" if ($offset > $max_req_size);
162 $offset = 8;
163 $state++;
164 next;
167 if (/^\@END/)
169 die "Misplaced \@END" unless ($state == 2 || $state == 3);
170 print SERVER_PROT "};\n";
172 if ($state == 2) # build dummy reply struct
174 die "request $name too large ($offset)" if ($offset > $max_req_size);
175 print SERVER_PROT "struct ${name}_reply\n{\n";
176 print SERVER_PROT " struct reply_header __header;\n";
177 print SERVER_PROT "};\n";
179 else
181 die "reply $name too large ($offset)" if ($offset > $max_req_size);
183 # got a complete request
184 push @requests, $name;
185 DO_DUMP_FUNC( $name, "request", @in_struct);
186 if ($#out_struct >= 0)
188 $replies{$name} = 1;
189 DO_DUMP_FUNC( $name, "reply", @out_struct);
191 $state = 1;
192 next;
195 if ($state != 1)
197 # skip empty lines (but keep them in output file)
198 if (/^$/)
200 print SERVER_PROT "\n";
201 next;
204 if (/^\s*VARARG\((\w+),(\w+),(\w+)\)/)
206 $var = $1;
207 $type = "dump_varargs_" . $2 . "( min(cur_size,req->" . $3 . ") )";
208 s!(VARARG\(.*\)\s*;)!/* $1 */!;
210 elsif (/^\s*VARARG\((\w+),(\w+)\)/)
212 $var = $1;
213 $type = "dump_varargs_" . $2 . "( cur_size )";
214 s!(VARARG\(.*\)\s*;)!/* $1 */!;
216 elsif (/^\s*(\w+\**(\s+\w+\**)*)\s+(\w+);/)
218 $type = $1;
219 $var = $3;
220 die "Unrecognized type $type" unless defined($formats{$type});
221 my @fmt = @{$formats{$type}};
222 if ($offset & ($fmt[1] - 1))
224 print "protocol.def:$.: warning: $name $offset $type $var needs padding\n" if $warnings;
226 $offset = ($offset + $fmt[1] - 1) & ~($fmt[1] - 1);
227 $offset += $fmt[0];
229 else
231 die "Unrecognized syntax $_";
233 if ($state == 2) { push @in_struct, $type, $var; }
234 if ($state == 3) { push @out_struct, $type, $var; }
237 # Pass it through into the output file
238 print SERVER_PROT $_ . "\n";
240 close PROTOCOL;
243 ### Retrieve the server protocol version from the existing server_protocol.h file
245 sub GET_PROTOCOL_VERSION()
247 my $protocol = 0;
248 open SERVER_PROT, "include/wine/server_protocol.h" or return 0;
249 while (<SERVER_PROT>)
251 if (/^\#define SERVER_PROTOCOL_VERSION (\d+)/) { $protocol = $1; last; }
253 close SERVER_PROT;
254 return $protocol;
257 ### Retrieve the list of status and errors used in the server
259 sub GET_ERROR_NAMES()
261 my %errors = ();
262 foreach my $f (glob "server/*.c")
264 next if $f eq "server/trace.c";
265 open FILE, $f or die "Can't open $f";
266 while (<FILE>)
268 if (/STATUS_(\w+)/)
270 $errors{$1} = "STATUS_$1" unless $1 eq "SUCCESS";
272 elsif (/set_win32_error\s*\(\s*(\w+)\s*\)/)
274 $errors{$1} = "0xc0010000 | $1";
277 close FILE;
279 return %errors;
282 # update a file if changed
283 sub update_file($)
285 my $file = shift;
286 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
287 if (!$ret)
289 unlink "$file.new";
291 else
293 rename "$file.new", "$file";
294 print "$file updated\n";
296 return $ret;
299 # replace some lines in a file between two markers
300 sub replace_in_file($$$@)
302 my $file = shift;
303 my $start = shift;
304 my $end = shift;
306 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
308 if (defined($start))
310 open OLD_FILE, "$file" or die "cannot open $file";
311 while (<OLD_FILE>)
313 print NEW_FILE $_;
314 last if /$start/;
318 print NEW_FILE "\n", @_, "\n";
320 if (defined($end))
322 my $skip=1;
323 while (<OLD_FILE>)
325 $skip = 0 if /$end/;
326 print NEW_FILE $_ unless $skip;
330 close OLD_FILE if defined($start);
331 close NEW_FILE;
332 return update_file($file);
335 ### Main
337 # Get the server protocol version
338 my $protocol = GET_PROTOCOL_VERSION();
340 my %errors = GET_ERROR_NAMES();
342 ### Create server_protocol.h and print header
344 open SERVER_PROT, ">include/wine/server_protocol.h.new" or die "Cannot create include/wine/server_protocol.h.new";
345 print SERVER_PROT "/*\n * Wine server protocol definitions\n *\n";
346 print SERVER_PROT " * This file is automatically generated; DO NO EDIT!\n";
347 print SERVER_PROT " * Edit server/protocol.def instead and re-run tools/make_requests\n";
348 print SERVER_PROT " */\n\n";
349 print SERVER_PROT "#ifndef __WINE_WINE_SERVER_PROTOCOL_H\n";
350 print SERVER_PROT "#define __WINE_WINE_SERVER_PROTOCOL_H\n";
352 ### Parse requests to find request/reply structure definitions
354 PARSE_REQUESTS();
356 ### Build the request list and structures
358 print SERVER_PROT "\n\nenum request\n{\n";
359 foreach my $req (@requests) { print SERVER_PROT " REQ_$req,\n"; }
360 print SERVER_PROT " REQ_NB_REQUESTS\n};\n\n";
362 print SERVER_PROT "union generic_request\n{\n";
363 print SERVER_PROT " struct request_max_size max_size;\n";
364 print SERVER_PROT " struct request_header request_header;\n";
365 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_request ${req}_request;\n"; }
366 print SERVER_PROT "};\n";
368 print SERVER_PROT "union generic_reply\n{\n";
369 print SERVER_PROT " struct request_max_size max_size;\n";
370 print SERVER_PROT " struct reply_header reply_header;\n";
371 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_reply ${req}_reply;\n"; }
372 print SERVER_PROT "};\n\n";
374 printf SERVER_PROT "#define SERVER_PROTOCOL_VERSION %d\n\n", $protocol + 1;
375 print SERVER_PROT "#endif /* __WINE_WINE_SERVER_PROTOCOL_H */\n";
376 close SERVER_PROT;
377 update_file( "include/wine/server_protocol.h" );
379 ### Output the dumping function tables
381 push @trace_lines, "static const dump_func req_dumpers[REQ_NB_REQUESTS] = {\n";
382 foreach my $req (@requests)
384 push @trace_lines, " (dump_func)dump_${req}_request,\n";
386 push @trace_lines, "};\n\n";
388 push @trace_lines, "static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {\n";
389 foreach my $req (@requests)
391 push @trace_lines, " ", $replies{$req} ? "(dump_func)dump_${req}_reply,\n" : "NULL,\n";
393 push @trace_lines, "};\n\n";
395 push @trace_lines, "static const char * const req_names[REQ_NB_REQUESTS] = {\n";
396 foreach my $req (@requests)
398 push @trace_lines, " \"$req\",\n";
400 push @trace_lines, "};\n\n";
402 push @trace_lines, "static const struct\n{\n";
403 push @trace_lines, " const char *name;\n";
404 push @trace_lines, " unsigned int value;\n";
405 push @trace_lines, "} status_names[] =\n{\n";
407 foreach my $err (sort keys %errors)
409 push @trace_lines, sprintf(" { %-30s %s },\n", "\"$err\",", $errors{$err});
411 push @trace_lines, " { NULL, 0 }\n";
412 push @trace_lines, "};\n";
414 replace_in_file( "server/trace.c",
415 "### make_requests begin ###",
416 "### make_requests end ###",
417 @trace_lines );
419 ### Output the request handlers list
421 my @request_lines = ();
423 foreach my $req (@requests) { push @request_lines, "DECL_HANDLER($req);\n"; }
424 push @request_lines, "\n#ifdef WANT_REQUEST_HANDLERS\n\n";
425 push @request_lines, "typedef void (*req_handler)( const void *req, void *reply );\n";
426 push @request_lines, "static const req_handler req_handlers[REQ_NB_REQUESTS] =\n{\n";
427 foreach my $req (@requests)
429 push @request_lines, " (req_handler)req_$req,\n";
431 push @request_lines, "};\n#endif /* WANT_REQUEST_HANDLERS */\n";
433 replace_in_file( "server/request.h",
434 "### make_requests begin ###",
435 "### make_requests end ###",
436 @request_lines );