blob: 95c56473a633f7531a1a1e6c05581242a667e203 [file] [log] [blame]
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001#! /usr/bin/perl -w
Alexandre Julliard767e6f61998-08-09 12:47:43 +00002#
Alexandre Julliard5bc78081999-06-22 17:26:53 +00003# Build the server/trace.c and server/request.h files
Alexandre Julliard37ec9272001-07-19 00:35:37 +00004# from the contents of include/wine/server.h.
Alexandre Julliard767e6f61998-08-09 12:47:43 +00005#
6# Copyright (C) 1998 Alexandre Julliard
7#
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00008# 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.
12#
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.
17#
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020020# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000021#
Francois Gougetbd007ba2004-10-04 18:54:04 +000022use strict;
Alexandre Julliard767e6f61998-08-09 12:47:43 +000023
Francois Gougetbd007ba2004-10-04 18:54:04 +000024my %formats =
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010025( # 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" ],
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010032 "data_size_t" => [ 4, 4, "%u" ],
33 "obj_handle_t" => [ 4, 4, "%04x" ],
Alexandre Julliard0c914e42008-12-30 23:17:52 +010034 "atom_t" => [ 4, 4, "%04x" ],
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010035 "user_handle_t" => [ 4, 4, "%08x" ],
36 "process_id_t" => [ 4, 4, "%04x" ],
37 "thread_id_t" => [ 4, 4, "%04x" ],
Alexandre Julliard947976f2008-12-29 17:10:11 +010038 "client_ptr_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliardf2c4e092008-12-29 16:47:51 +010039 "mod_handle_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliard3cd817b2008-12-24 12:06:18 +010040 "lparam_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliarda6216ab2008-12-17 19:43:40 +010041 "apc_param_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliard29d97592008-12-17 19:25:49 +010042 "file_pos_t" => [ 8, 8, "&dump_uint64" ],
43 "mem_size_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliard913e7922009-01-19 14:15:51 +010044 "affinity_t" => [ 8, 8, "&dump_uint64" ],
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010045 "timeout_t" => [ 8, 8, "&dump_timeout" ],
46 "rectangle_t" => [ 16, 4, "&dump_rectangle" ],
47 "char_info_t" => [ 4, 2, "&dump_char_info" ],
Alexandre Julliardc86ec642008-12-30 15:22:45 +010048 "apc_call_t" => [ 40, 8, "&dump_apc_call" ],
49 "apc_result_t" => [ 40, 8, "&dump_apc_result" ],
Alexandre Julliard6db20102008-12-30 21:09:41 +010050 "async_data_t" => [ 40, 8, "&dump_async_data" ],
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010051 "luid_t" => [ 8, 4, "&dump_luid" ],
52 "ioctl_code_t" => [ 4, 4, "&dump_ioctl_code" ],
Alexandre Julliard653d2c42009-04-03 14:49:10 +020053 "cpu_type_t" => [ 4, 4, "&dump_cpu_type" ],
Alexandre Julliard767e6f61998-08-09 12:47:43 +000054);
55
56my @requests = ();
57my %replies = ();
Alexandre Julliard7f1dc352009-01-19 14:01:39 +010058my @asserts = ();
Alexandre Julliard767e6f61998-08-09 12:47:43 +000059
Alexandre Julliard5bc78081999-06-22 17:26:53 +000060my @trace_lines = ();
61
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010062my $max_req_size = 64;
Alexandre Julliard37ec9272001-07-19 00:35:37 +000063
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010064my $warnings = scalar(@ARGV) && $ARGV[0] eq "-w";
Alexandre Julliard767e6f61998-08-09 12:47:43 +000065
Francois Gouget11a7b292004-10-21 19:58:39 +000066### Generate a dumping function
67
68sub DO_DUMP_FUNC($$@)
69{
70 my $name = shift;
71 my $req = shift;
72 push @trace_lines, "static void dump_${name}_$req( const struct ${name}_$req *req )\n{\n";
73 while ($#_ >= 0)
74 {
75 my $type = shift;
76 my $var = shift;
Alexandre Julliard8c8c6652008-12-31 15:14:29 +010077 next if $var =~ /^__pad/;
Francois Gouget11a7b292004-10-21 19:58:39 +000078 if (defined($formats{$type}))
79 {
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010080 my $fmt = ${$formats{$type}}[2];
81 if ($fmt =~ /^&(.*)/)
Francois Gouget11a7b292004-10-21 19:58:39 +000082 {
83 my $func = $1;
84 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
85 push @trace_lines, " $func( &req->$var );\n";
86 push @trace_lines, " fprintf( stderr, \",\" );\n" if ($#_ > 0);
87 }
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010088 elsif ($fmt =~ /^(%.*)\s+\((.*)\)/)
Alexandre Julliard58273ea2006-01-23 16:40:57 +010089 {
90 my ($format, $cast) = ($1, $2);
91 push @trace_lines, " fprintf( stderr, \" $var=$format";
92 push @trace_lines, "," if ($#_ > 0);
93 push @trace_lines, "\", ($cast)req->$var );\n";
94 }
Francois Gouget11a7b292004-10-21 19:58:39 +000095 else
96 {
Alexandre Julliardf4ec5832008-12-10 17:15:51 +010097 push @trace_lines, " fprintf( stderr, \" $var=$fmt";
Francois Gouget11a7b292004-10-21 19:58:39 +000098 push @trace_lines, "," if ($#_ > 0);
Alexandre Julliard58273ea2006-01-23 16:40:57 +010099 push @trace_lines, "\", req->$var );\n";
Francois Gouget11a7b292004-10-21 19:58:39 +0000100 }
101 }
102 else # must be some varargs format
103 {
104 my $func = $type;
105 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
106 push @trace_lines, " $func;\n";
107 push @trace_lines, " fputc( ',', stderr );\n" if ($#_ > 0);
108 }
109 }
110 push @trace_lines, "}\n\n";
111}
112
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000113### Parse the request definitions
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000114
Francois Gougetbd007ba2004-10-04 18:54:04 +0000115sub PARSE_REQUESTS()
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000116{
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000117 # states: 0 = header 1 = declarations 2 = inside @REQ 3 = inside @REPLY
118 my $state = 0;
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100119 my $offset = 0;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000120 my $name = "";
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000121 my @in_struct = ();
122 my @out_struct = ();
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000123
124 open(PROTOCOL,"server/protocol.def") or die "Can't open server/protocol.def";
125
126 while (<PROTOCOL>)
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000127 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000128 my ($type, $var);
129 # strip comments
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000130 s!/\*.*\*/!!g;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000131 # strip white space at end of line
132 s/\s+$//;
133
134 if (/^\@HEADER/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000135 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000136 die "Misplaced \@HEADER" unless $state == 0;
137 $state++;
Alexandre Julliard86113532000-08-29 03:54:30 +0000138 next;
139 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000140
141 # ignore everything while in state 0
142 next if $state == 0;
143
144 if (/^\@REQ\(\s*(\w+)\s*\)/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000145 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000146 $name = $1;
147 die "Misplaced \@REQ" unless $state == 1;
148 # start a new request
149 @in_struct = ();
150 @out_struct = ();
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100151 $offset = 12;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000152 print SERVER_PROT "struct ${name}_request\n{\n";
153 print SERVER_PROT " struct request_header __header;\n";
154 $state++;
155 next;
Alexandre Julliard86113532000-08-29 03:54:30 +0000156 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000157
158 if (/^\@REPLY/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000159 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000160 die "Misplaced \@REPLY" unless $state == 2;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000161 print SERVER_PROT "};\n";
162 print SERVER_PROT "struct ${name}_reply\n{\n";
163 print SERVER_PROT " struct reply_header __header;\n";
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100164 die "request $name too large ($offset)" if ($offset > $max_req_size);
165 $offset = 8;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000166 $state++;
167 next;
Alexandre Julliard86113532000-08-29 03:54:30 +0000168 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000169
170 if (/^\@END/)
Alexandre Julliard86113532000-08-29 03:54:30 +0000171 {
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000172 die "Misplaced \@END" unless ($state == 2 || $state == 3);
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000173
Alexandre Julliard7f1dc352009-01-19 14:01:39 +0100174 if ($offset & 7) # all requests should be 8-byte aligned
175 {
176 my $count = 8 - ($offset & 7);
177 print SERVER_PROT " char __pad_$offset\[$count\];\n";
178 $offset += $count;
179 }
180 print SERVER_PROT "};\n";
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000181 if ($state == 2) # build dummy reply struct
182 {
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100183 die "request $name too large ($offset)" if ($offset > $max_req_size);
Alexandre Julliard7f1dc352009-01-19 14:01:39 +0100184 push @asserts, "C_ASSERT( sizeof(struct ${name}_request) == $offset );\n";
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000185 print SERVER_PROT "struct ${name}_reply\n{\n";
186 print SERVER_PROT " struct reply_header __header;\n";
187 print SERVER_PROT "};\n";
188 }
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100189 else
190 {
191 die "reply $name too large ($offset)" if ($offset > $max_req_size);
Alexandre Julliard7f1dc352009-01-19 14:01:39 +0100192 push @asserts, "C_ASSERT( sizeof(struct ${name}_reply) == $offset );\n";
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100193 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000194 # got a complete request
195 push @requests, $name;
Francois Gouget11a7b292004-10-21 19:58:39 +0000196 DO_DUMP_FUNC( $name, "request", @in_struct);
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000197 if ($#out_struct >= 0)
198 {
199 $replies{$name} = 1;
Francois Gouget11a7b292004-10-21 19:58:39 +0000200 DO_DUMP_FUNC( $name, "reply", @out_struct);
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000201 }
202 $state = 1;
203 next;
Alexandre Julliard86113532000-08-29 03:54:30 +0000204 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000205
206 if ($state != 1)
207 {
208 # skip empty lines (but keep them in output file)
209 if (/^$/)
210 {
211 print SERVER_PROT "\n";
212 next;
213 }
214
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000215 if (/^\s*VARARG\((\w+),(\w+),(\w+)\)/)
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000216 {
217 $var = $1;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000218 $type = "dump_varargs_" . $2 . "( min(cur_size,req->" . $3 . ") )";
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000219 s!(VARARG\(.*\)\s*;)!/* $1 */!;
220 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000221 elsif (/^\s*VARARG\((\w+),(\w+)\)/)
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000222 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000223 $var = $1;
224 $type = "dump_varargs_" . $2 . "( cur_size )";
225 s!(VARARG\(.*\)\s*;)!/* $1 */!;
226 }
227 elsif (/^\s*(\w+\**(\s+\w+\**)*)\s+(\w+);/)
228 {
229 $type = $1;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000230 $var = $3;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000231 die "Unrecognized type $type" unless defined($formats{$type});
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100232 my @fmt = @{$formats{$type}};
233 if ($offset & ($fmt[1] - 1))
234 {
Alexandre Julliard7f1dc352009-01-19 14:01:39 +0100235 my $count = $fmt[1] - ($offset & ($fmt[1] - 1));
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100236 print "protocol.def:$.: warning: $name $offset $type $var needs padding\n" if $warnings;
Alexandre Julliard7f1dc352009-01-19 14:01:39 +0100237 print SERVER_PROT " char __pad_$offset\[$count\];\n";
238 $offset += $count;
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100239 }
Alexandre Julliard7f1dc352009-01-19 14:01:39 +0100240 if ($state == 2)
241 {
242 push @asserts, "C_ASSERT( FIELD_OFFSET(struct ${name}_request, $var) == $offset );\n";
243 }
244 else
245 {
246 push @asserts, "C_ASSERT( FIELD_OFFSET(struct ${name}_reply, $var) == $offset );\n";
247 }
Alexandre Julliardf4ec5832008-12-10 17:15:51 +0100248 $offset += $fmt[0];
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000249 }
250 else
251 {
252 die "Unrecognized syntax $_";
253 }
254 if ($state == 2) { push @in_struct, $type, $var; }
255 if ($state == 3) { push @out_struct, $type, $var; }
256 }
257
258 # Pass it through into the output file
259 print SERVER_PROT $_ . "\n";
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000260 }
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000261 close PROTOCOL;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000262}
263
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000264### Retrieve the server protocol version from the existing server_protocol.h file
265
Francois Gougetbd007ba2004-10-04 18:54:04 +0000266sub GET_PROTOCOL_VERSION()
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000267{
268 my $protocol = 0;
269 open SERVER_PROT, "include/wine/server_protocol.h" or return 0;
270 while (<SERVER_PROT>)
271 {
272 if (/^\#define SERVER_PROTOCOL_VERSION (\d+)/) { $protocol = $1; last; }
273 }
274 close SERVER_PROT;
275 return $protocol;
276}
277
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000278### Retrieve the list of status and errors used in the server
279
280sub GET_ERROR_NAMES()
281{
282 my %errors = ();
283 foreach my $f (glob "server/*.c")
284 {
Alexandre Julliard3d39c622007-04-04 18:01:22 +0200285 next if $f eq "server/trace.c";
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000286 open FILE, $f or die "Can't open $f";
287 while (<FILE>)
288 {
Alexandre Julliard3d39c622007-04-04 18:01:22 +0200289 if (/STATUS_(\w+)/)
Alexandre Julliard60d65182007-01-04 13:51:12 +0100290 {
291 $errors{$1} = "STATUS_$1" unless $1 eq "SUCCESS";
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000292 }
293 elsif (/set_win32_error\s*\(\s*(\w+)\s*\)/)
294 {
295 $errors{$1} = "0xc0010000 | $1";
296 }
297 }
298 close FILE;
299 }
300 return %errors;
301}
302
Alexandre Julliard37f36912008-12-10 17:13:30 +0100303# update a file if changed
304sub update_file($)
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000305{
Alexandre Julliard37f36912008-12-10 17:13:30 +0100306 my $file = shift;
307 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
308 if (!$ret)
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000309 {
Alexandre Julliard37f36912008-12-10 17:13:30 +0100310 unlink "$file.new";
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000311 }
Alexandre Julliard37f36912008-12-10 17:13:30 +0100312 else
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000313 {
Alexandre Julliard37f36912008-12-10 17:13:30 +0100314 rename "$file.new", "$file";
315 print "$file updated\n";
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000316 }
Alexandre Julliard37f36912008-12-10 17:13:30 +0100317 return $ret;
318}
319
320# replace some lines in a file between two markers
321sub replace_in_file($$$@)
322{
323 my $file = shift;
324 my $start = shift;
325 my $end = shift;
326
327 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
328
329 if (defined($start))
330 {
331 open OLD_FILE, "$file" or die "cannot open $file";
332 while (<OLD_FILE>)
333 {
334 print NEW_FILE $_;
335 last if /$start/;
336 }
337 }
338
339 print NEW_FILE "\n", @_, "\n";
340
341 if (defined($end))
342 {
343 my $skip=1;
344 while (<OLD_FILE>)
345 {
346 $skip = 0 if /$end/;
347 print NEW_FILE $_ unless $skip;
348 }
349 }
350
351 close OLD_FILE if defined($start);
352 close NEW_FILE;
353 return update_file($file);
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000354}
Francois Gougetbd007ba2004-10-04 18:54:04 +0000355
356### Main
357
358# Get the server protocol version
359my $protocol = GET_PROTOCOL_VERSION();
360
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000361my %errors = GET_ERROR_NAMES();
362
Francois Gougetbd007ba2004-10-04 18:54:04 +0000363### Create server_protocol.h and print header
364
Alexandre Julliard37f36912008-12-10 17:13:30 +0100365open SERVER_PROT, ">include/wine/server_protocol.h.new" or die "Cannot create include/wine/server_protocol.h.new";
Francois Gougetbd007ba2004-10-04 18:54:04 +0000366print SERVER_PROT "/*\n * Wine server protocol definitions\n *\n";
367print SERVER_PROT " * This file is automatically generated; DO NO EDIT!\n";
368print SERVER_PROT " * Edit server/protocol.def instead and re-run tools/make_requests\n";
369print SERVER_PROT " */\n\n";
370print SERVER_PROT "#ifndef __WINE_WINE_SERVER_PROTOCOL_H\n";
371print SERVER_PROT "#define __WINE_WINE_SERVER_PROTOCOL_H\n";
372
373### Parse requests to find request/reply structure definitions
374
375PARSE_REQUESTS();
376
377### Build the request list and structures
378
379print SERVER_PROT "\n\nenum request\n{\n";
380foreach my $req (@requests) { print SERVER_PROT " REQ_$req,\n"; }
381print SERVER_PROT " REQ_NB_REQUESTS\n};\n\n";
382
383print SERVER_PROT "union generic_request\n{\n";
384print SERVER_PROT " struct request_max_size max_size;\n";
385print SERVER_PROT " struct request_header request_header;\n";
386foreach my $req (@requests) { print SERVER_PROT " struct ${req}_request ${req}_request;\n"; }
387print SERVER_PROT "};\n";
388
389print SERVER_PROT "union generic_reply\n{\n";
390print SERVER_PROT " struct request_max_size max_size;\n";
391print SERVER_PROT " struct reply_header reply_header;\n";
392foreach my $req (@requests) { print SERVER_PROT " struct ${req}_reply ${req}_reply;\n"; }
393print SERVER_PROT "};\n\n";
394
395printf SERVER_PROT "#define SERVER_PROTOCOL_VERSION %d\n\n", $protocol + 1;
396print SERVER_PROT "#endif /* __WINE_WINE_SERVER_PROTOCOL_H */\n";
397close SERVER_PROT;
Alexandre Julliard37f36912008-12-10 17:13:30 +0100398update_file( "include/wine/server_protocol.h" );
Francois Gougetbd007ba2004-10-04 18:54:04 +0000399
400### Output the dumping function tables
401
402push @trace_lines, "static const dump_func req_dumpers[REQ_NB_REQUESTS] = {\n";
403foreach my $req (@requests)
404{
405 push @trace_lines, " (dump_func)dump_${req}_request,\n";
406}
407push @trace_lines, "};\n\n";
408
409push @trace_lines, "static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {\n";
410foreach my $req (@requests)
411{
Michael Stefaniucdf17fcd2008-11-05 10:50:38 +0100412 push @trace_lines, " ", $replies{$req} ? "(dump_func)dump_${req}_reply,\n" : "NULL,\n";
Francois Gougetbd007ba2004-10-04 18:54:04 +0000413}
414push @trace_lines, "};\n\n";
415
416push @trace_lines, "static const char * const req_names[REQ_NB_REQUESTS] = {\n";
417foreach my $req (@requests)
418{
419 push @trace_lines, " \"$req\",\n";
420}
Alexandre Julliard830d1ed2005-07-29 14:49:05 +0000421push @trace_lines, "};\n\n";
422
423push @trace_lines, "static const struct\n{\n";
424push @trace_lines, " const char *name;\n";
425push @trace_lines, " unsigned int value;\n";
426push @trace_lines, "} status_names[] =\n{\n";
427
428foreach my $err (sort keys %errors)
429{
430 push @trace_lines, sprintf(" { %-30s %s },\n", "\"$err\",", $errors{$err});
431}
432push @trace_lines, " { NULL, 0 }\n";
Francois Gougetbd007ba2004-10-04 18:54:04 +0000433push @trace_lines, "};\n";
434
Alexandre Julliard37f36912008-12-10 17:13:30 +0100435replace_in_file( "server/trace.c",
436 "### make_requests begin ###",
437 "### make_requests end ###",
438 @trace_lines );
Alexandre Julliard691884b2004-11-02 20:15:53 +0000439
440### Output the request handlers list
441
442my @request_lines = ();
443
444foreach my $req (@requests) { push @request_lines, "DECL_HANDLER($req);\n"; }
445push @request_lines, "\n#ifdef WANT_REQUEST_HANDLERS\n\n";
446push @request_lines, "typedef void (*req_handler)( const void *req, void *reply );\n";
447push @request_lines, "static const req_handler req_handlers[REQ_NB_REQUESTS] =\n{\n";
448foreach my $req (@requests)
449{
450 push @request_lines, " (req_handler)req_$req,\n";
451}
Alexandre Julliard7f1dc352009-01-19 14:01:39 +0100452push @request_lines, "};\n\n";
453
454foreach my $type (sort keys %formats)
455{
456 my $size = ${$formats{$type}}[0];
457 push @request_lines, "C_ASSERT( sizeof($type) == $size );\n";
458}
459push @request_lines, @asserts;
460push @request_lines, "\n#endif /* WANT_REQUEST_HANDLERS */\n";
Alexandre Julliard691884b2004-11-02 20:15:53 +0000461
Alexandre Julliard37f36912008-12-10 17:13:30 +0100462replace_in_file( "server/request.h",
463 "### make_requests begin ###",
464 "### make_requests end ###",
465 @request_lines );