midimap: Handle MIDI running status.
[wine.git] / tools / make_requests
blob158b2006ae5f4cdb6982f2b78e1017d9222b19ab
1 #! /usr/bin/perl -w
3 # Build the server/trace.c and server/request.h files
4 # from the contents of server/protocol.def.
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 "affinity_t" => [ 8, 8, "&dump_uint64" ],
45 "timeout_t" => [ 8, 8, "&dump_timeout" ],
46 "abstime_t" => [ 8, 8, "&dump_abstime" ],
47 "rectangle_t" => [ 16, 4, "&dump_rectangle" ],
48 "apc_call_t" => [ 48, 8, "&dump_apc_call" ],
49 "apc_result_t" => [ 40, 8, "&dump_apc_result" ],
50 "async_data_t" => [ 40, 8, "&dump_async_data" ],
51 "irp_params_t" => [ 32, 8, "&dump_irp_params" ],
52 "struct luid" => [ 8, 4, "&dump_luid" ],
53 "generic_map_t" => [ 16, 4, "&dump_generic_map" ],
54 "ioctl_code_t" => [ 4, 4, "&dump_ioctl_code" ],
55 "hw_input_t" => [ 40, 8, "&dump_hw_input" ],
58 my @requests = ();
59 my %replies = ();
60 my @asserts = ();
62 my @trace_lines = ();
64 my $max_req_size = 64;
66 my $warnings = scalar(@ARGV) && $ARGV[0] eq "-w";
68 sub add_padding($$)
70 my ($offset, $padding) = @_;
71 if ($offset % $padding)
73 my $count = $padding - ($offset % $padding);
74 print SERVER_PROT " char __pad_$offset\[$count\];\n";
75 $offset += $count;
77 return $offset;
80 ### Generate a dumping function
82 sub DO_DUMP_FUNC($$@)
84 my $name = shift;
85 my $req = shift;
86 my $prefix = " ";
87 push @trace_lines, "static void dump_${name}_$req( const struct ${name}_$req *req )\n{\n";
88 while ($#_ >= 0)
90 my $type = shift;
91 my $var = shift;
92 next if $var =~ /^__pad/;
93 if (defined($formats{$type}))
95 my $fmt = ${$formats{$type}}[2];
96 if ($fmt =~ /^&(.*)/)
98 my $func = $1;
99 push @trace_lines, " $func( \"$prefix$var=\", &req->$var );\n";
101 elsif ($fmt =~ /^(%.*)\s+\((.*)\)/)
103 my ($format, $cast) = ($1, $2);
104 push @trace_lines, " fprintf( stderr, \"$prefix$var=$format\", ($cast)req->$var );\n";
106 else
108 push @trace_lines, " fprintf( stderr, \"$prefix$var=$fmt\", req->$var );\n";
111 else # must be some varargs format
113 push @trace_lines, " " . sprintf($type, "$prefix$var=") . ";\n";
115 $prefix = ", ";
117 push @trace_lines, "}\n\n";
120 ### Parse the request definitions
122 sub PARSE_REQUESTS()
124 # states: 0 = header 1 = declarations 2 = inside @REQ 3 = inside @REPLY
125 my $state = 0;
126 my $offset = 0;
127 my $name = "";
128 my @in_struct = ();
129 my @out_struct = ();
131 open(PROTOCOL,"server/protocol.def") or die "Can't open server/protocol.def";
133 while (<PROTOCOL>)
135 my ($type, $var);
136 # strip comments
137 s!/\*.*\*/!!g;
138 # strip white space at end of line
139 s/\s+$//;
141 if (/^\@HEADER/)
143 die "Misplaced \@HEADER" unless $state == 0;
144 $state++;
145 next;
148 # ignore everything while in state 0
149 next if $state == 0;
151 if (/^\@REQ\(\s*(\w+)\s*\)/)
153 $name = $1;
154 die "Misplaced \@REQ" unless $state == 1;
155 # start a new request
156 @in_struct = ();
157 @out_struct = ();
158 $offset = 12;
159 print SERVER_PROT "struct ${name}_request\n{\n";
160 print SERVER_PROT " struct request_header __header;\n";
161 $state++;
162 next;
165 if (/^\@REPLY/)
167 die "Misplaced \@REPLY" unless $state == 2;
168 $offset = add_padding( $offset, 8 ); # all requests should be 8-byte aligned
169 die "request $name too large ($offset)" if ($offset > $max_req_size);
170 push @asserts, "C_ASSERT( sizeof(struct ${name}_request) == $offset );\n";
171 print SERVER_PROT "};\n";
172 print SERVER_PROT "struct ${name}_reply\n{\n";
173 print SERVER_PROT " struct reply_header __header;\n";
174 $offset = 8;
175 $state++;
176 next;
179 if (/^\@END/)
181 die "Misplaced \@END" unless ($state == 2 || $state == 3);
183 $offset = add_padding( $offset, 8 ); # all requests should be 8-byte aligned
184 print SERVER_PROT "};\n";
185 if ($state == 2) # build dummy reply struct
187 die "request $name too large ($offset)" if ($offset > $max_req_size);
188 push @asserts, "C_ASSERT( sizeof(struct ${name}_request) == $offset );\n";
189 print SERVER_PROT "struct ${name}_reply\n{\n";
190 print SERVER_PROT " struct reply_header __header;\n";
191 print SERVER_PROT "};\n";
193 else
195 die "reply $name too large ($offset)" if ($offset > $max_req_size);
196 push @asserts, "C_ASSERT( sizeof(struct ${name}_reply) == $offset );\n";
198 # got a complete request
199 push @requests, $name;
200 DO_DUMP_FUNC( $name, "request", @in_struct);
201 if ($#out_struct >= 0)
203 $replies{$name} = 1;
204 DO_DUMP_FUNC( $name, "reply", @out_struct);
206 $state = 1;
207 next;
210 if ($state != 1)
212 # skip empty lines (but keep them in output file)
213 if (/^$/)
215 print SERVER_PROT "\n";
216 next;
219 if (/^\s*VARARG\((\w+),(\w+),(\d+)\)/)
221 $var = $1;
222 $type = "dump_varargs_$2( \"%s\", min(cur_size,$3) )";
223 s!(VARARG\(.*\)\s*;)!/* $1 */!;
225 elsif (/^\s*VARARG\((\w+),(\w+),(\w+)\)/)
227 $var = $1;
228 $type = "dump_varargs_" . $2 . "( \"%s\", min(cur_size,req->" . $3 . ") )";
229 s!(VARARG\(.*\)\s*;)!/* $1 */!;
231 elsif (/^\s*VARARG\((\w+),(\w+)\)/)
233 $var = $1;
234 $type = "dump_varargs_" . $2 . "( \"%s\", cur_size )";
235 s!(VARARG\(.*\)\s*;)!/* $1 */!;
237 elsif (/^\s*(\w+\**(\s+\w+\**)*)\s+(\w+);/)
239 $type = $1;
240 $var = $3;
241 die "Unrecognized type $type" unless defined($formats{$type});
242 my @fmt = @{$formats{$type}};
243 if ($offset & ($fmt[1] - 1))
245 my $count = $fmt[1] - ($offset & ($fmt[1] - 1));
246 print "protocol.def:$.: warning: $name $offset $type $var needs padding\n" if $warnings;
247 print SERVER_PROT " char __pad_$offset\[$count\];\n";
248 $offset += $count;
250 if ($state == 2)
252 push @asserts, "C_ASSERT( FIELD_OFFSET(struct ${name}_request, $var) == $offset );\n";
254 else
256 push @asserts, "C_ASSERT( FIELD_OFFSET(struct ${name}_reply, $var) == $offset );\n";
258 $offset += $fmt[0];
260 else
262 die "Unrecognized syntax $_";
264 if ($state == 2) { push @in_struct, $type, $var; }
265 if ($state == 3) { push @out_struct, $type, $var; }
268 # Pass it through into the output file
269 print SERVER_PROT $_ . "\n";
271 close PROTOCOL;
274 ### Retrieve the server protocol version from the existing server_protocol.h file
276 sub GET_PROTOCOL_VERSION()
278 my $protocol = 0;
279 open SERVER_PROT, "include/wine/server_protocol.h" or return 0;
280 while (<SERVER_PROT>)
282 if (/^\#define SERVER_PROTOCOL_VERSION (\d+)/) { $protocol = $1; last; }
284 close SERVER_PROT;
285 return $protocol;
288 ### Retrieve the list of status and errors used in the server
290 sub GET_ERROR_NAMES()
292 my %errors = ();
293 foreach my $f (glob "server/*.c")
295 next if $f eq "server/trace.c";
296 open FILE, $f or die "Can't open $f";
297 while (<FILE>)
299 while (/\bSTATUS_(\w+)/g)
301 $errors{$1} = "STATUS_$1" unless ($1 eq "SUCCESS" || $1 eq "WAIT_0");
303 while (/\bset_win32_error\s*\(\s*(\w+)\s*\)/g)
305 $errors{$1} = "0xc0010000 | $1";
307 while (/\breturn\s+(WSA\w+)/g)
309 $errors{$1} = "0xc0010000 | $1";
312 close FILE;
314 return %errors;
317 # update a file if changed
318 sub update_file($)
320 my $file = shift;
321 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
322 if (!$ret)
324 unlink "$file.new";
326 else
328 rename "$file.new", "$file";
329 print "$file updated\n";
331 return $ret;
334 # replace some lines in a file between two markers
335 sub replace_in_file($$$@)
337 my $file = shift;
338 my $start = shift;
339 my $end = shift;
341 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
343 if (defined($start))
345 open OLD_FILE, "$file" or die "cannot open $file";
346 while (<OLD_FILE>)
348 print NEW_FILE $_;
349 last if /$start/;
353 print NEW_FILE "\n", @_, "\n";
355 if (defined($end))
357 my $skip=1;
358 while (<OLD_FILE>)
360 $skip = 0 if /$end/;
361 print NEW_FILE $_ unless $skip;
365 close OLD_FILE if defined($start);
366 close NEW_FILE;
367 return update_file($file);
370 ### Main
372 # Get the server protocol version
373 my $protocol = GET_PROTOCOL_VERSION();
375 my %errors = GET_ERROR_NAMES();
377 ### Create server_protocol.h and print header
379 open SERVER_PROT, ">include/wine/server_protocol.h.new" or die "Cannot create include/wine/server_protocol.h.new";
380 print SERVER_PROT "/*\n * Wine server protocol definitions\n *\n";
381 print SERVER_PROT " * This file is automatically generated; DO NO EDIT!\n";
382 print SERVER_PROT " * Edit server/protocol.def instead and re-run tools/make_requests\n";
383 print SERVER_PROT " */\n\n";
384 print SERVER_PROT "#ifndef __WINE_WINE_SERVER_PROTOCOL_H\n";
385 print SERVER_PROT "#define __WINE_WINE_SERVER_PROTOCOL_H\n";
387 ### Parse requests to find request/reply structure definitions
389 PARSE_REQUESTS();
391 ### Build the request list and structures
393 print SERVER_PROT "\n\nenum request\n{\n";
394 foreach my $req (@requests) { print SERVER_PROT " REQ_$req,\n"; }
395 print SERVER_PROT " REQ_NB_REQUESTS\n};\n\n";
397 print SERVER_PROT "union generic_request\n{\n";
398 print SERVER_PROT " struct request_max_size max_size;\n";
399 print SERVER_PROT " struct request_header request_header;\n";
400 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_request ${req}_request;\n"; }
401 print SERVER_PROT "};\n";
403 print SERVER_PROT "union generic_reply\n{\n";
404 print SERVER_PROT " struct request_max_size max_size;\n";
405 print SERVER_PROT " struct reply_header reply_header;\n";
406 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_reply ${req}_reply;\n"; }
407 print SERVER_PROT "};\n\n";
409 print SERVER_PROT "/* ### protocol_version begin ### */\n\n";
410 printf SERVER_PROT "#define SERVER_PROTOCOL_VERSION %d\n\n", $protocol;
411 print SERVER_PROT "/* ### protocol_version end ### */\n\n";
412 print SERVER_PROT "#endif /* __WINE_WINE_SERVER_PROTOCOL_H */\n";
413 close SERVER_PROT;
415 if (update_file( "include/wine/server_protocol.h" ))
417 my @version_lines = ();
419 push @version_lines, sprintf( "#define SERVER_PROTOCOL_VERSION %d\n", $protocol + 1 );
421 replace_in_file( "include/wine/server_protocol.h",
422 "### protocol_version begin ###",
423 "### protocol_version end ###",
424 @version_lines );
427 ### Output the dumping function tables
429 push @trace_lines, "static const dump_func req_dumpers[REQ_NB_REQUESTS] = {\n";
430 foreach my $req (@requests)
432 push @trace_lines, " (dump_func)dump_${req}_request,\n";
434 push @trace_lines, "};\n\n";
436 push @trace_lines, "static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {\n";
437 foreach my $req (@requests)
439 push @trace_lines, " ", $replies{$req} ? "(dump_func)dump_${req}_reply,\n" : "NULL,\n";
441 push @trace_lines, "};\n\n";
443 push @trace_lines, "static const char * const req_names[REQ_NB_REQUESTS] = {\n";
444 foreach my $req (@requests)
446 push @trace_lines, " \"$req\",\n";
448 push @trace_lines, "};\n\n";
450 push @trace_lines, "static const struct\n{\n";
451 push @trace_lines, " const char *name;\n";
452 push @trace_lines, " unsigned int value;\n";
453 push @trace_lines, "} status_names[] =\n{\n";
455 foreach my $err (sort keys %errors)
457 push @trace_lines, sprintf(" { %-30s %s },\n", "\"$err\",", $errors{$err});
459 push @trace_lines, " { NULL, 0 }\n";
460 push @trace_lines, "};\n";
462 replace_in_file( "server/trace.c",
463 "### make_requests begin ###",
464 "### make_requests end ###",
465 @trace_lines );
467 ### Output the request handlers list
469 my @request_lines = ();
471 foreach my $req (@requests) { push @request_lines, "DECL_HANDLER($req);\n"; }
472 push @request_lines, "\n#ifdef WANT_REQUEST_HANDLERS\n\n";
473 push @request_lines, "typedef void (*req_handler)( const void *req, void *reply );\n";
474 push @request_lines, "static const req_handler req_handlers[REQ_NB_REQUESTS] =\n{\n";
475 foreach my $req (@requests)
477 push @request_lines, " (req_handler)req_$req,\n";
479 push @request_lines, "};\n\n";
481 foreach my $type (sort keys %formats)
483 my $size = ${$formats{$type}}[0];
484 push @request_lines, "C_ASSERT( sizeof($type) == $size );\n";
486 push @request_lines, @asserts;
487 push @request_lines, "\n#endif /* WANT_REQUEST_HANDLERS */\n";
489 replace_in_file( "server/request.h",
490 "### make_requests begin ###",
491 "### make_requests end ###",
492 @request_lines );