gdi32: Don't truncate the added pixels with FT_LCD_FILTER_DEFAULT.
[wine/wine64.git] / tools / make_requests
blobd21d79df837577b6292f79edbca4ff41bbe2a7a1
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 "void*" => [ 4, 4, "%p" ],
33 "data_size_t" => [ 4, 4, "%u" ],
34 "obj_handle_t" => [ 4, 4, "%04x" ],
35 "atom_t" => [ 2, 2, "%04x" ],
36 "user_handle_t" => [ 4, 4, "%08x" ],
37 "process_id_t" => [ 4, 4, "%04x" ],
38 "thread_id_t" => [ 4, 4, "%04x" ],
39 "lparam_t" => [ 4, 4, "%lx" ],
40 "apc_param_t" => [ 8, 8, "&dump_uint64" ],
41 "file_pos_t" => [ 8, 8, "&dump_uint64" ],
42 "mem_size_t" => [ 8, 8, "&dump_uint64" ],
43 "timeout_t" => [ 8, 8, "&dump_timeout" ],
44 "rectangle_t" => [ 16, 4, "&dump_rectangle" ],
45 "char_info_t" => [ 4, 2, "&dump_char_info" ],
46 "apc_call_t" => [ 40, 8, "&dump_apc_call" ],
47 "apc_result_t" => [ 40, 8, "&dump_apc_result" ],
48 "async_data_t" => [ 28, 8, "&dump_async_data" ],
49 "luid_t" => [ 8, 4, "&dump_luid" ],
50 "ioctl_code_t" => [ 4, 4, "&dump_ioctl_code" ],
53 my @requests = ();
54 my %replies = ();
56 my @trace_lines = ();
58 my $max_req_size = 64;
60 my $warnings = scalar(@ARGV) && $ARGV[0] eq "-w";
62 ### Generate a dumping function
64 sub DO_DUMP_FUNC($$@)
66 my $name = shift;
67 my $req = shift;
68 push @trace_lines, "static void dump_${name}_$req( const struct ${name}_$req *req )\n{\n";
69 while ($#_ >= 0)
71 my $type = shift;
72 my $var = shift;
73 if (defined($formats{$type}))
75 my $fmt = ${$formats{$type}}[2];
76 if ($fmt =~ /^&(.*)/)
78 my $func = $1;
79 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
80 push @trace_lines, " $func( &req->$var );\n";
81 push @trace_lines, " fprintf( stderr, \",\" );\n" if ($#_ > 0);
83 elsif ($fmt =~ /^(%.*)\s+\((.*)\)/)
85 my ($format, $cast) = ($1, $2);
86 push @trace_lines, " fprintf( stderr, \" $var=$format";
87 push @trace_lines, "," if ($#_ > 0);
88 push @trace_lines, "\", ($cast)req->$var );\n";
90 else
92 push @trace_lines, " fprintf( stderr, \" $var=$fmt";
93 push @trace_lines, "," if ($#_ > 0);
94 push @trace_lines, "\", req->$var );\n";
97 else # must be some varargs format
99 my $func = $type;
100 push @trace_lines, " fprintf( stderr, \" $var=\" );\n";
101 push @trace_lines, " $func;\n";
102 push @trace_lines, " fputc( ',', stderr );\n" if ($#_ > 0);
105 push @trace_lines, "}\n\n";
108 ### Parse the request definitions
110 sub PARSE_REQUESTS()
112 # states: 0 = header 1 = declarations 2 = inside @REQ 3 = inside @REPLY
113 my $state = 0;
114 my $offset = 0;
115 my $name = "";
116 my @in_struct = ();
117 my @out_struct = ();
119 open(PROTOCOL,"server/protocol.def") or die "Can't open server/protocol.def";
121 while (<PROTOCOL>)
123 my ($type, $var);
124 # strip comments
125 s!/\*.*\*/!!g;
126 # strip white space at end of line
127 s/\s+$//;
129 if (/^\@HEADER/)
131 die "Misplaced \@HEADER" unless $state == 0;
132 $state++;
133 next;
136 # ignore everything while in state 0
137 next if $state == 0;
139 if (/^\@REQ\(\s*(\w+)\s*\)/)
141 $name = $1;
142 die "Misplaced \@REQ" unless $state == 1;
143 # start a new request
144 @in_struct = ();
145 @out_struct = ();
146 $offset = 12;
147 print SERVER_PROT "struct ${name}_request\n{\n";
148 print SERVER_PROT " struct request_header __header;\n";
149 $state++;
150 next;
153 if (/^\@REPLY/)
155 die "Misplaced \@REPLY" unless $state == 2;
156 print SERVER_PROT "};\n";
157 print SERVER_PROT "struct ${name}_reply\n{\n";
158 print SERVER_PROT " struct reply_header __header;\n";
159 die "request $name too large ($offset)" if ($offset > $max_req_size);
160 $offset = 8;
161 $state++;
162 next;
165 if (/^\@END/)
167 die "Misplaced \@END" unless ($state == 2 || $state == 3);
168 print SERVER_PROT "};\n";
170 if ($state == 2) # build dummy reply struct
172 die "request $name too large ($offset)" if ($offset > $max_req_size);
173 print SERVER_PROT "struct ${name}_reply\n{\n";
174 print SERVER_PROT " struct reply_header __header;\n";
175 print SERVER_PROT "};\n";
177 else
179 die "reply $name too large ($offset)" if ($offset > $max_req_size);
181 # got a complete request
182 push @requests, $name;
183 DO_DUMP_FUNC( $name, "request", @in_struct);
184 if ($#out_struct >= 0)
186 $replies{$name} = 1;
187 DO_DUMP_FUNC( $name, "reply", @out_struct);
189 $state = 1;
190 next;
193 if ($state != 1)
195 # skip empty lines (but keep them in output file)
196 if (/^$/)
198 print SERVER_PROT "\n";
199 next;
202 if (/^\s*VARARG\((\w+),(\w+),(\w+)\)/)
204 $var = $1;
205 $type = "dump_varargs_" . $2 . "( min(cur_size,req->" . $3 . ") )";
206 s!(VARARG\(.*\)\s*;)!/* $1 */!;
208 elsif (/^\s*VARARG\((\w+),(\w+)\)/)
210 $var = $1;
211 $type = "dump_varargs_" . $2 . "( cur_size )";
212 s!(VARARG\(.*\)\s*;)!/* $1 */!;
214 elsif (/^\s*(\w+\**(\s+\w+\**)*)\s+(\w+);/)
216 $type = $1;
217 $var = $3;
218 die "Unrecognized type $type" unless defined($formats{$type});
219 my @fmt = @{$formats{$type}};
220 if ($offset & ($fmt[1] - 1))
222 print "protocol.def:$.: warning: $name $offset $type $var needs padding\n" if $warnings;
224 $offset = ($offset + $fmt[1] - 1) & ~($fmt[1] - 1);
225 $offset += $fmt[0];
227 else
229 die "Unrecognized syntax $_";
231 if ($state == 2) { push @in_struct, $type, $var; }
232 if ($state == 3) { push @out_struct, $type, $var; }
235 # Pass it through into the output file
236 print SERVER_PROT $_ . "\n";
238 close PROTOCOL;
241 ### Retrieve the server protocol version from the existing server_protocol.h file
243 sub GET_PROTOCOL_VERSION()
245 my $protocol = 0;
246 open SERVER_PROT, "include/wine/server_protocol.h" or return 0;
247 while (<SERVER_PROT>)
249 if (/^\#define SERVER_PROTOCOL_VERSION (\d+)/) { $protocol = $1; last; }
251 close SERVER_PROT;
252 return $protocol;
255 ### Retrieve the list of status and errors used in the server
257 sub GET_ERROR_NAMES()
259 my %errors = ();
260 foreach my $f (glob "server/*.c")
262 next if $f eq "server/trace.c";
263 open FILE, $f or die "Can't open $f";
264 while (<FILE>)
266 if (/STATUS_(\w+)/)
268 $errors{$1} = "STATUS_$1" unless $1 eq "SUCCESS";
270 elsif (/set_win32_error\s*\(\s*(\w+)\s*\)/)
272 $errors{$1} = "0xc0010000 | $1";
275 close FILE;
277 return %errors;
280 # update a file if changed
281 sub update_file($)
283 my $file = shift;
284 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
285 if (!$ret)
287 unlink "$file.new";
289 else
291 rename "$file.new", "$file";
292 print "$file updated\n";
294 return $ret;
297 # replace some lines in a file between two markers
298 sub replace_in_file($$$@)
300 my $file = shift;
301 my $start = shift;
302 my $end = shift;
304 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
306 if (defined($start))
308 open OLD_FILE, "$file" or die "cannot open $file";
309 while (<OLD_FILE>)
311 print NEW_FILE $_;
312 last if /$start/;
316 print NEW_FILE "\n", @_, "\n";
318 if (defined($end))
320 my $skip=1;
321 while (<OLD_FILE>)
323 $skip = 0 if /$end/;
324 print NEW_FILE $_ unless $skip;
328 close OLD_FILE if defined($start);
329 close NEW_FILE;
330 return update_file($file);
333 ### Main
335 # Get the server protocol version
336 my $protocol = GET_PROTOCOL_VERSION();
338 my %errors = GET_ERROR_NAMES();
340 ### Create server_protocol.h and print header
342 open SERVER_PROT, ">include/wine/server_protocol.h.new" or die "Cannot create include/wine/server_protocol.h.new";
343 print SERVER_PROT "/*\n * Wine server protocol definitions\n *\n";
344 print SERVER_PROT " * This file is automatically generated; DO NO EDIT!\n";
345 print SERVER_PROT " * Edit server/protocol.def instead and re-run tools/make_requests\n";
346 print SERVER_PROT " */\n\n";
347 print SERVER_PROT "#ifndef __WINE_WINE_SERVER_PROTOCOL_H\n";
348 print SERVER_PROT "#define __WINE_WINE_SERVER_PROTOCOL_H\n";
350 ### Parse requests to find request/reply structure definitions
352 PARSE_REQUESTS();
354 ### Build the request list and structures
356 print SERVER_PROT "\n\nenum request\n{\n";
357 foreach my $req (@requests) { print SERVER_PROT " REQ_$req,\n"; }
358 print SERVER_PROT " REQ_NB_REQUESTS\n};\n\n";
360 print SERVER_PROT "union generic_request\n{\n";
361 print SERVER_PROT " struct request_max_size max_size;\n";
362 print SERVER_PROT " struct request_header request_header;\n";
363 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_request ${req}_request;\n"; }
364 print SERVER_PROT "};\n";
366 print SERVER_PROT "union generic_reply\n{\n";
367 print SERVER_PROT " struct request_max_size max_size;\n";
368 print SERVER_PROT " struct reply_header reply_header;\n";
369 foreach my $req (@requests) { print SERVER_PROT " struct ${req}_reply ${req}_reply;\n"; }
370 print SERVER_PROT "};\n\n";
372 printf SERVER_PROT "#define SERVER_PROTOCOL_VERSION %d\n\n", $protocol + 1;
373 print SERVER_PROT "#endif /* __WINE_WINE_SERVER_PROTOCOL_H */\n";
374 close SERVER_PROT;
375 update_file( "include/wine/server_protocol.h" );
377 ### Output the dumping function tables
379 push @trace_lines, "static const dump_func req_dumpers[REQ_NB_REQUESTS] = {\n";
380 foreach my $req (@requests)
382 push @trace_lines, " (dump_func)dump_${req}_request,\n";
384 push @trace_lines, "};\n\n";
386 push @trace_lines, "static const dump_func reply_dumpers[REQ_NB_REQUESTS] = {\n";
387 foreach my $req (@requests)
389 push @trace_lines, " ", $replies{$req} ? "(dump_func)dump_${req}_reply,\n" : "NULL,\n";
391 push @trace_lines, "};\n\n";
393 push @trace_lines, "static const char * const req_names[REQ_NB_REQUESTS] = {\n";
394 foreach my $req (@requests)
396 push @trace_lines, " \"$req\",\n";
398 push @trace_lines, "};\n\n";
400 push @trace_lines, "static const struct\n{\n";
401 push @trace_lines, " const char *name;\n";
402 push @trace_lines, " unsigned int value;\n";
403 push @trace_lines, "} status_names[] =\n{\n";
405 foreach my $err (sort keys %errors)
407 push @trace_lines, sprintf(" { %-30s %s },\n", "\"$err\",", $errors{$err});
409 push @trace_lines, " { NULL, 0 }\n";
410 push @trace_lines, "};\n";
412 replace_in_file( "server/trace.c",
413 "### make_requests begin ###",
414 "### make_requests end ###",
415 @trace_lines );
417 ### Output the request handlers list
419 my @request_lines = ();
421 foreach my $req (@requests) { push @request_lines, "DECL_HANDLER($req);\n"; }
422 push @request_lines, "\n#ifdef WANT_REQUEST_HANDLERS\n\n";
423 push @request_lines, "typedef void (*req_handler)( const void *req, void *reply );\n";
424 push @request_lines, "static const req_handler req_handlers[REQ_NB_REQUESTS] =\n{\n";
425 foreach my $req (@requests)
427 push @request_lines, " (req_handler)req_$req,\n";
429 push @request_lines, "};\n#endif /* WANT_REQUEST_HANDLERS */\n";
431 replace_in_file( "server/request.h",
432 "### make_requests begin ###",
433 "### make_requests end ###",
434 @request_lines );