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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 "unsigned char" => "%02x",
30 "unsigned short"=> "%04x",
31 "unsigned int" => "%08x",
33 "time_t" => "%ld (long)",
34 "size_t" => "%lu (unsigned long)",
35 "obj_handle_t" => "%p",
37 "user_handle_t" => "%p",
38 "process_id_t" => "%04x",
39 "thread_id_t" => "%04x",
40 "abs_time_t" => "&dump_abs_time",
41 "rectangle_t" => "&dump_rectangle",
42 "char_info_t" => "&dump_char_info",
52 ### Generate a dumping function
58 push @trace_lines, "static void dump_${name}_$req( const struct ${name}_$req *req )\n{\n";
63 if (defined($formats{$type}))
65 if ($formats{$type} =~ /^&(.*)/)
68 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
69 push @trace_lines, " $func( &req->$var );\n";
70 push @trace_lines, " fprintf( stderr, \",\" );\n" if ($#_ > 0);
72 elsif ($formats{$type} =~ /^(%.*)\s+\((.*)\)/)
74 my ($format, $cast) = ($1, $2);
75 push @trace_lines, " fprintf( stderr, \" $var=$format";
76 push @trace_lines, "," if ($#_ > 0);
77 push @trace_lines, "\", ($cast)req->$var );\n";
81 push @trace_lines, " fprintf( stderr, \" $var=$formats{$type}";
82 push @trace_lines, "," if ($#_ > 0);
83 push @trace_lines, "\", req->$var );\n";
86 else # must be some varargs format
89 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
90 push @trace_lines, " $func;\n";
91 push @trace_lines, " fputc( ',', stderr );\n" if ($#_ > 0);
94 push @trace_lines, "}\n\n";
97 ### Parse the request definitions
101 # states: 0 = header 1 = declarations 2 = inside @REQ 3 = inside @REPLY
107 open(PROTOCOL,"server/protocol.def") or die "Can't open server/protocol.def";
114 # strip white space at end of line
119 die "Misplaced \@HEADER" unless $state == 0;
124 # ignore everything while in state 0
127 if (/^\@REQ\(\s*(\w+)\s*\)/)
130 die "Misplaced \@REQ" unless $state == 1;
131 # start a new request
134 print SERVER_PROT "struct ${name}_request\n{\n";
135 print SERVER_PROT " struct request_header __header;\n";
142 die "Misplaced \@REPLY" unless $state == 2;
143 print SERVER_PROT "};\n";
144 print SERVER_PROT "struct ${name}_reply\n{\n";
145 print SERVER_PROT " struct reply_header __header;\n";
152 die "Misplaced \@END" unless ($state == 2 || $state == 3);
153 print SERVER_PROT "};\n";
155 if ($state == 2) # build dummy reply struct
157 print SERVER_PROT "struct ${name}_reply\n{\n";
158 print SERVER_PROT " struct reply_header __header;\n";
159 print SERVER_PROT "};\n";
162 # got a complete request
163 push @requests, $name;
164 DO_DUMP_FUNC( $name, "request", @in_struct);
165 if ($#out_struct >= 0)
168 DO_DUMP_FUNC( $name, "reply", @out_struct);
176 # skip empty lines (but keep them in output file)
179 print SERVER_PROT "\n";
183 if (/^\s*VARARG\((\w+),(\w+),(\w+)\)/)
186 $type = "dump_varargs_" . $2 . "( min(cur_size,req->" . $3 . ") )";
187 s!(VARARG\(.*\)\s*;)!/* $1 */!;
189 elsif (/^\s*VARARG\((\w+),(\w+)\)/)
192 $type = "dump_varargs_" . $2 . "( cur_size )";
193 s!(VARARG\(.*\)\s*;)!/* $1 */!;
195 elsif (/^\s*(\w+\**(\s+\w+\**)*)\s+(\w+);/)
199 die "Unrecognized type $type" unless defined($formats{$type});
203 die "Unrecognized syntax $_";
205 if ($state == 2) { push @in_struct, $type, $var; }
206 if ($state == 3) { push @out_struct, $type, $var; }
209 # Pass it through into the output file
210 print SERVER_PROT $_ . "\n";
215 ### Retrieve the server protocol version from the existing server_protocol.h file
217 sub GET_PROTOCOL_VERSION()
220 open SERVER_PROT, "include/wine/server_protocol.h" or return 0;
221 while (<SERVER_PROT>)
223 if (/^\#define SERVER_PROTOCOL_VERSION (\d+)/) { $protocol = $1; last; }
229 ### Retrieve the list of status and errors used in the server
231 sub GET_ERROR_NAMES()
234 foreach my $f (glob "server/*.c")
236 open FILE, $f or die "Can't open $f";
239 if (/set_error\s*\(\s*STATUS_(\w+)\s*\)/)
241 $errors{$1} = "STATUS_$1";
243 elsif (/set_win32_error\s*\(\s*(\w+)\s*\)/)
245 $errors{$1} = "0xc0010000 | $1";
253 ### Replace the contents of a file between ### make_requests ### marks
255 sub REPLACE_IN_FILE($@)
260 open(FILE,$name) or die "Can't open $name";
264 last if /\#\#\# make_requests begin \#\#\#/;
266 push @lines, "\n", @data;
269 if (/\#\#\# make_requests end \#\#\#/) { push @lines, "\n", $_; last; }
272 open(FILE,">$name") or die "Can't modify $name";
279 # Get the server protocol version
280 my $protocol = GET_PROTOCOL_VERSION();
282 my %errors = GET_ERROR_NAMES();
284 ### Create server_protocol.h and print header
286 open SERVER_PROT, ">include/wine/server_protocol.h" or die "Cannot create include/wine/server_protocol.h";
287 print SERVER_PROT "/*\n * Wine server protocol definitions\n *\n";
288 print SERVER_PROT " * This file is automatically generated; DO NO EDIT!\n";
289 print SERVER_PROT " * Edit server/protocol.def instead and re-run tools/make_requests\n";
290 print SERVER_PROT " */\n\n";
291 print SERVER_PROT "#ifndef __WINE_WINE_SERVER_PROTOCOL_H\n";
292 print SERVER_PROT "#define __WINE_WINE_SERVER_PROTOCOL_H\n";
294 ### Parse requests to find request/reply structure definitions
298 ### Build the request list and structures
300 print SERVER_PROT "\n\nenum request\n{\n";
301 foreach my $req (@requests) { print SERVER_PROT " REQ_$req,\n"; }
302 print SERVER_PROT " REQ_NB_REQUESTS\n};\n\n";
304 print SERVER_PROT "union generic_request\n{\n";
305 print SERVER_PROT " struct request_max_size max_size;\n";
306 print SERVER_PROT " struct request_header request_header;\n";
307 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_request ${req}_request;\n"; }
308 print SERVER_PROT "};\n";
310 print SERVER_PROT "union generic_reply\n{\n";
311 print SERVER_PROT " struct request_max_size max_size;\n";
312 print SERVER_PROT " struct reply_header reply_header;\n";
313 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_reply ${req}_reply;\n"; }
314 print SERVER_PROT "};\n\n";
316 printf SERVER_PROT "#define SERVER_PROTOCOL_VERSION %d\n\n", $protocol + 1;
317 print SERVER_PROT "#endif /* __WINE_WINE_SERVER_PROTOCOL_H */\n";
320 ### Output the dumping function tables
322 push @trace_lines, "static const dump_func req_dumpers[REQ_NB_REQUESTS] = {\n";
323 foreach my $req (@requests)
325 push @trace_lines, " (dump_func)dump_${req}_request,\n";
327 push @trace_lines, "};\n\n";
329 push @trace_lines, "static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {\n";
330 foreach my $req (@requests)
332 push @trace_lines, " (dump_func)", $replies{$req} ? "dump_${req}_reply,\n" : "0,\n";
334 push @trace_lines, "};\n\n";
336 push @trace_lines, "static const char * const req_names[REQ_NB_REQUESTS] = {\n";
337 foreach my $req (@requests)
339 push @trace_lines, " \"$req\",\n";
341 push @trace_lines, "};\n\n";
343 push @trace_lines, "static const struct\n{\n";
344 push @trace_lines, " const char *name;\n";
345 push @trace_lines, " unsigned int value;\n";
346 push @trace_lines, "} status_names[] =\n{\n";
348 foreach my $err (sort keys %errors)
350 push @trace_lines, sprintf(" { %-30s %s },\n", "\"$err\",", $errors{$err});
352 push @trace_lines, " { NULL, 0 }\n";
353 push @trace_lines, "};\n";
355 REPLACE_IN_FILE( "server/trace.c", @trace_lines );
357 ### Output the request handlers list
359 my @request_lines = ();
361 foreach my $req (@requests) { push @request_lines, "DECL_HANDLER($req);\n"; }
362 push @request_lines, "\n#ifdef WANT_REQUEST_HANDLERS\n\n";
363 push @request_lines, "typedef void (*req_handler)( const void *req, void *reply );\n";
364 push @request_lines, "static const req_handler req_handlers[REQ_NB_REQUESTS] =\n{\n";
365 foreach my $req (@requests)
367 push @request_lines, " (req_handler)req_$req,\n";
369 push @request_lines, "};\n#endif /* WANT_REQUEST_HANDLERS */\n";
371 REPLACE_IN_FILE( "server/request.h", @request_lines );