Mercurial > hg > xemacs-beta
annotate lib-src/make-mswin-unicode.pl @ 5930:a0d9bfe304de cygwin
more 64-bit patches for VS, not sure of many of them
| author | Henry Thompson <ht@markup.co.uk> |
|---|---|
| date | Wed, 09 Dec 2015 10:35:23 +0000 |
| parents | 2f34b59f451a |
| children |
| rev | line source |
|---|---|
| 771 | 1 : #-*- Perl -*- |
| 2 | |
| 3 ### make-mswin-unicode --- generate Unicode-encapsulation code for MS Windows | |
| 4 | |
|
4875
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
5 ## Copyright (C) 2001, 2002, 2004, 2010 Ben Wing. |
| 771 | 6 |
| 7 ## Author: Ben Wing <ben@xemacs.org> | |
| 8 ## Maintainer: Ben Wing <ben@xemacs.org> | |
| 9 ## Current Version: 1.0, August 24, 2001 | |
| 10 | |
| 11 ## This file is part of XEmacs. | |
| 12 | |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
13 ## XEmacs is free software: you can redistribute it and/or modify it |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
14 ## under the terms of the GNU General Public License as published by the |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
15 ## Free Software Foundation, either version 3 of the License, or (at your |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
16 ## option) any later version. |
| 771 | 17 |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
18 ## XEmacs is distributed in the hope that it will be useful, but WITHOUT |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
19 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
20 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
21 ## for more details. |
| 771 | 22 |
| 23 ## You should have received a copy of the GNU General Public License | |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4911
diff
changeset
|
24 ## along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
| 771 | 25 |
| 26 eval 'exec perl -w -S $0 ${1+"$@"}' | |
| 27 if 0; | |
| 28 | |
| 29 use strict; | |
| 30 use File::Basename; | |
| 31 use Getopt::Long; | |
| 32 | |
| 33 my ($myName, $myPath) = fileparse ($0); | |
| 34 | |
| 35 my $usage=" | |
| 36 Usage: $myName [--c-output FILE] [--h-output FILE] [--help] [FILES ...] | |
| 37 | |
| 38 The purpose of this script is to auto-generate Unicode-encapsulation | |
| 39 code for MS Windows library functions that come in two versions (ANSI | |
| 40 and Unicode). The MS Windows header files provide a way of | |
| 41 automatically calling the right version, but only at compile-time, | |
| 42 which is *NOT* sufficient for any real-world program. The solution is | |
| 43 run-time Unicode encapsulation, which is not conceptually difficult | |
| 44 but is time-consuming, and is not supported standardly only due to | |
| 45 evil marketing decisions made by Microsoft. See src/intl-win32.c | |
| 46 for more information. | |
| 47 | |
| 800 | 48 In XEmacs, this file is normally run using `nmake -f xemacs.mak |
| 49 unicode-encapsulate'. | |
| 50 | |
| 771 | 51 This script processes the specified files, looking for commands |
| 52 indicating library routines to Unicode-encapsulate, as follows: | |
| 53 | |
| 54 Portions of the files that should be processed are enclosed in lines | |
| 55 consisting only of the words \"begin-unicode-encapsulation-script\" | |
| 56 and \"end-unicode-encapsulation-script\". More than one section can | |
| 57 occur in a single file. Processed lines begin with a command word, | |
| 58 followed by one or more args (no quotes are necessary for spaces): | |
| 59 | |
| 60 file specifies a file to start reading from. | |
| 61 yes indicates a function to be automatically Unicode-encapsulated. | |
| 62 (All parameters either need no special processing or are LPTSTR or | |
| 63 LPCTSTR.) | |
| 4911 | 64 override indidates a function where the prototype can be overridden |
| 65 due to errors in Cygwin or Visual Studio. | |
| 771 | 66 soon indicates a function that should be automatically Unicode-encapsulated, |
| 67 but we're not ready to process it yet. | |
| 68 no indicates a function we don't support (it will be #defined to cause | |
| 69 a compile error, with the text after the function included in the | |
| 70 erroneous definition to indicate why we don't support it). | |
|
4875
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
71 review indicates a function that we still need to review to determine whether |
|
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
72 or how to support it. This has the same effect as `no', with a comment |
|
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
73 indicating that the function needs review. |
| 771 | 74 skip indicates a function we support manually; only a comment about this |
| 75 will be generated. | |
| 76 split indicates a function with a split structure (different versions | |
| 77 for Unicode and ANSI), but where the only difference is in pointer | |
| 78 types, and the actual size does not differ. The structure name | |
| 79 should follow the function name, and it will be automatically | |
| 80 Unicode-encapsulated with appropriate casts. | |
| 81 begin-bracket indicates a #if statement to be inserted here. | |
| 82 end-bracket indicates the corresponding #endif statement. | |
| 83 blank lines and lines beginning with // are ignored. | |
| 84 "; | |
| 85 | |
| 86 # ------------------ process command-line options ------------------ | |
| 87 | |
| 88 my %options; | |
| 89 my @SAVE_ARGV = @ARGV; | |
| 90 | |
| 91 $Getopt::Long::ignorecase = 0; | |
| 92 &GetOptions ( | |
| 93 \%options, | |
| 94 'c-output=s', | |
| 95 'h-output=s', | |
| 778 | 96 'includedir=s', |
| 771 | 97 'help', |
| 98 ); | |
| 99 | |
| 100 die $usage if $options{"help"}; | |
| 101 | |
| 102 my $in_script; | |
| 103 my $slurp; | |
| 104 | |
| 778 | 105 my ($cout, $hout, $dir) = ($options{"c-output"}, |
| 106 $options{"h-output"}, | |
| 107 $options{"includedir"}); | |
|
4873
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
108 |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
109 $dir = '/usr/include/w32api' if !$dir && -f '/usr/include/w32api/windows.h'; |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
110 |
| 778 | 111 if (!$dir) |
| 112 { | |
|
4467
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
113 for my $sdkroot (("WindowsSdkDir", "MSSdk", "MSVCDIR")) |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
114 { |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
115 if (defined $ENV{$sdkroot}) { |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
116 $dir = $ENV{$sdkroot}; |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
117 last; |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
118 } |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
119 } |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
120 unless (defined $dir) |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
121 { |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
122 die "Can't find the Windows SDK headers; run vcvars32.bat from your MSVC installation, or setenv.cmd from the Platform SDK installation"; |
|
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3728
diff
changeset
|
123 } |
| 778 | 124 } |
|
4873
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
125 $dir.='/include' if ((-f $dir.'/include/WINDOWS.H') || |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
126 (-f $dir.'/include/windows.h')); |
| 3728 | 127 die "Can't find MSVC include files in \"$dir\"" unless ((-f $dir.'/WINDOWS.H') || (-f $dir.'/windows.h')); |
| 771 | 128 |
| 129 open (COUT, ">$cout") or die "Can't open C output file $cout: $!"; | |
| 130 open (HOUT, ">$hout") or die "Can't open C output file $hout: $!"; | |
| 131 | |
| 132 select (STDOUT); $| = 1; | |
| 133 | |
| 134 print COUT "/* Automatically-generated Unicode-encapsulation file, | |
| 135 using the command | |
| 136 | |
| 137 $myPath$myName @SAVE_ARGV | |
| 138 | |
| 139 Do not edit. See `$myName'. | |
| 140 */ | |
| 141 | |
| 142 #include <config.h> | |
| 143 #include \"lisp.h\" | |
| 144 | |
| 145 #include \"syswindows.h\" | |
| 146 | |
| 147 "; | |
| 148 print HOUT "/* Automatically-generated Unicode-encapsulation header file. | |
| 149 Do not edit. See `$myName'. | |
| 150 */\n\n"; | |
| 151 | |
| 152 my %files; | |
| 153 my %processed; | |
| 154 my %bracket; | |
| 155 | |
| 156 my $current_file; | |
| 157 my @current_bracket; | |
| 158 | |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
159 my ($ws_re, $must_ws_re, $tok_ch) = |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
160 ("\\s*", "\\s+", "\\w"); |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
161 # unfortunately there is no surefire way short of |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
162 # parsing all include files for typedefs to |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
163 # distinguish types from parameters, and prototypes |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
164 # appear in the include files both with and without |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
165 # parameters -- the latter kinds appear in a very |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
166 # different style and were obviously added later. so |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
167 # we rely on the fact that defined types are all |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
168 # upper-case, and parameters generally are not, and |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
169 # special-case the exceptions. |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
170 my $typeword_re = |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
171 # note the negative lookahead assertions: the first |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
172 # one excludes the words "X" and "Y" from type |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
173 # words, since they appear as parameter names in |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
174 # CreateWindowEx; the second prevents "void |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
175 # *Argument" from being parsed as a type "void *A" |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
176 # followed by a parameter "rgument". |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
177 "(?:(?!(?:X\\b|Y\\b))(?:unsigned|int|long|const|short|va_list|[A-Z_0-9]+)(?!${tok_ch}))"; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
178 my $typetoken_re = "(?:$typeword_re$ws_re\\**$ws_re)"; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
179 # Regexp matching a particular argument |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
180 my $arg_re = "(?:(?:$typetoken_re+)(?:${tok_ch}+)?(?: OPTIONAL)?)"; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
181 # Same, but with groups to match the type and name |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
182 my $argmatch_re = "(?:($typetoken_re+)(${tok_ch}+)?(?: OPTIONAL)?)"; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
183 # regexp matching a parenthesized argument list in a prototype |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
184 my $args_re = "\\(((?:${ws_re}${arg_re}${ws_re},)*${ws_re}${arg_re}${ws_re})\\)"; |
| 5928 | 185 # regexp matching a return type in a protype -- this one from Vin |
| 186 my $rettype_re = "(SHSTDAPI_\\(${tok_ch}+${ws_re}\\*?\\)|${tok_ch}" . | |
| 187 "[A-Za-z_0-9 \t\n\r\f]*?${tok_ch})"; | |
| 188 # HST "(SHSTDAPI_\\([${tok_ch} *]+\\)|${tok_ch}" . "[A-Za-z_0-9 \t\n\r\f]*?${tok_ch})"; | |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
189 # regexp matching a function name |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
190 my $funname_re = "(${tok_ch}+)"; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
191 # Regexp matching a function prototype, $1 = rettype, $2 = name, $3 = args |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
192 my $fun_re = "${rettype_re}${ws_re}${funname_re}${ws_re}${args_re};"; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
193 # Regexp matching a particular Unicode function (ending in ...W) |
|
5920
0f2338afbabf
Minimum necessary to get started:
Henry Thompson <ht@markup.co.uk>
parents:
5402
diff
changeset
|
194 my $wfun_re = "(?:#endif|#ifndef ${tok_ch}+)?${ws_re}${rettype_re}${ws_re}${funname_re}W${ws_re}${args_re};"; |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
195 |
|
5920
0f2338afbabf
Minimum necessary to get started:
Henry Thompson <ht@markup.co.uk>
parents:
5402
diff
changeset
|
196 #print "regexp: $wfun_re\n"; |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
197 |
| 771 | 198 while (<>) |
| 199 { | |
| 200 chomp; | |
| 800 | 201 # remove trailing CR. #### Should not be necessary! Perl should be |
| 202 # opening these in text mode by default, as the docs claim, and | |
| 203 # automatically remove the CR's. | |
| 204 tr/\r//d; | |
| 771 | 205 |
| 206 if (/^begin-unicode-encapsulation-script$/) | |
| 207 { | |
| 208 $in_script = 1; | |
| 209 } | |
| 210 elsif (/^end-unicode-encapsulation-script$/) | |
| 211 { | |
| 212 $in_script = 0; | |
| 213 } | |
| 214 elsif ($in_script) | |
| 215 { | |
| 216 next if (m!^//!); | |
| 217 next if (/^[ \t]*$/); | |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
218 if (/(file|yes|soon|no|review|skip|split|begin-bracket|end-bracket|override)(?: (.*))?/) |
| 771 | 219 { |
| 220 my ($command, $parms) = ($1, $2); | |
| 778 | 221 if ($command eq "file") |
| 771 | 222 { |
| 223 $current_file = $parms; | |
| 224 } | |
| 225 elsif ($command eq "begin-bracket") | |
| 226 { | |
| 227 my $current_bracket = $current_bracket[$#current_bracket]; | |
| 228 if (defined ($current_bracket)) | |
| 229 { | |
| 230 $current_bracket .= "&& $parms"; | |
| 231 } | |
| 232 else | |
| 233 { | |
| 234 $current_bracket = "$parms"; | |
| 235 } | |
| 236 push @current_bracket, $current_bracket; | |
| 237 } | |
| 238 elsif ($command eq "end-bracket") | |
| 239 { | |
| 240 pop @current_bracket; | |
| 241 } | |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
242 elsif ($command eq "override") |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
243 { |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
244 die "Cannot parse prototype $parms" unless $parms =~ /$wfun_re(?: ?(.*))?/; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
245 my ($rettype, $fun, $args, $reason) = ($1, $2, $3, $4); |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
246 $files{$current_file}{$fun} = |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
247 [$command, $reason, $rettype, $fun, $args]; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
248 $bracket{$current_file}{$fun} = |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
249 $current_bracket[$#current_bracket]; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
250 } |
| 771 | 251 else |
| 252 { | |
| 253 my ($fun, $reason) = split /\s+/, $parms, 2; | |
| 254 $files{$current_file}{$fun} = [$command, $reason]; | |
|
5920
0f2338afbabf
Minimum necessary to get started:
Henry Thompson <ht@markup.co.uk>
parents:
5402
diff
changeset
|
255 #print "$current_file : $fun = $command, $reason\n"; |
| 771 | 256 $bracket{$current_file}{$fun} = |
| 257 $current_bracket[$#current_bracket]; | |
| 258 } | |
| 259 } | |
| 260 else | |
| 261 { | |
| 262 print "WARNING: Unknown line $_\n"; | |
| 263 } | |
| 264 } | |
| 265 } | |
| 266 | |
| 267 | |
| 268 foreach my $file (keys %files) | |
| 269 { | |
| 270 $slurp = &FileContents ($file); | |
| 271 print "Processing file $file\n"; | |
| 272 print HOUT "\n/* Processing file $file */\n\n"; | |
| 273 my $totalspace = 70 - length ("Processing file $file"); | |
| 274 $totalspace = 0 if $totalspace < 0; | |
| 275 my $alignspaceleft = $totalspace / 2; | |
| 276 my $alignspaceright = ($totalspace + 1) / 2; | |
| 277 print COUT " | |
| 278 /*----------------------------------------------------------------------*/ | |
| 279 /*" . (" " x $alignspaceleft) . "Processing file $file" . | |
| 280 (" " x $alignspaceright) . "*/ | |
| 281 /*----------------------------------------------------------------------*/ | |
| 282 | |
| 283 "; | |
| 284 | |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
285 while ($slurp =~ /$wfun_re/g) |
| 771 | 286 { |
| 287 my ($rettype, $fun, $args) = ($1, $2, $3); | |
|
5920
0f2338afbabf
Minimum necessary to get started:
Henry Thompson <ht@markup.co.uk>
parents:
5402
diff
changeset
|
288 #print "slurped: $1 $2 $3\n"; |
|
4873
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
289 |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
290 if ($processed{$fun}) |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
291 { |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
292 print "Warning: Function $fun already seen\n"; |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
293 next; |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
294 } |
|
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
295 |
| 771 | 296 $processed{$fun} = 1; |
|
4873
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
297 |
| 771 | 298 print "Processing: $fun"; |
| 299 | |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
300 #my ($command, $reason) = ($files{$file}{$fun}[0], $files{$file}{$fun}[1]); |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
301 # Fuck perl! There seems to be no way to write something like |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
302 # my ($command, $reason) = @$files{$file}{$fun}; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
303 # You have to use a temporary var. |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
304 my $filesarr = $files{$file}{$fun}; |
|
5920
0f2338afbabf
Minimum necessary to get started:
Henry Thompson <ht@markup.co.uk>
parents:
5402
diff
changeset
|
305 if (!defined ($filesarr)) {print "\nlosing: |$file|$fun|\n"; next} |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
306 my ($command, $reason) = @$filesarr; |
| 771 | 307 if (!defined ($command)) |
| 308 { | |
| 309 print " (no command found)\n"; | |
| 310 } | |
| 311 else | |
| 312 { | |
| 313 print "\n"; | |
| 314 my $bracket = $bracket{$file}{$fun}; | |
| 315 if (defined ($bracket)) | |
| 316 { | |
| 317 print HOUT "#if $bracket\n"; | |
| 318 print COUT "#if $bracket\n\n"; | |
| 319 } | |
|
4875
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
320 if ($command eq "no" || $command eq "review") |
| 771 | 321 { |
|
4875
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
322 $reason = "Function needs review to determine how to handle it" |
|
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
323 if !defined ($reason) && $command eq "review"; |
|
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4873
diff
changeset
|
324 |
| 771 | 325 if (!defined ($reason)) |
| 326 { | |
| 327 print "WARNING: No reason given for `no' with function $fun\n"; | |
| 328 $reason = ""; | |
| 329 } | |
| 330 | |
| 331 print HOUT "#undef $fun\n"; | |
| 2367 | 332 (my $munged_reason = $reason) =~ s/[^A-Za-z0-9]/_/g; |
| 333 print HOUT "#define $fun error_$munged_reason\n"; | |
| 771 | 334 print COUT "/* Error if $fun used: $reason */\n\n"; |
| 335 } | |
| 336 elsif ($command eq "skip") | |
| 337 { | |
| 338 if (!defined ($reason)) | |
| 339 { | |
| 340 print "WARNING: No reason given for `skip' with function $fun\n"; | |
| 341 $reason = ""; | |
| 342 } | |
| 343 | |
| 344 print HOUT "/* Skipping $fun because $reason */\n"; | |
| 345 print COUT "/* Skipping $fun because $reason */\n\n"; | |
| 346 } | |
| 347 elsif ($command eq "soon") | |
| 348 { | |
| 349 $reason = "" if !defined ($reason); | |
| 350 | |
| 351 print HOUT "/* Not yet: $fun $reason */\n"; | |
| 352 print COUT "/* Not yet: $fun $reason */\n\n"; | |
| 353 } | |
| 354 else | |
| 355 { | |
| 356 my (@args, %argtype, %ansiarg, %xarg, $split_struct, | |
| 357 $split_rettype); | |
| 358 if ($command eq "split") | |
| 359 { | |
| 360 ($split_struct, $reason) = split /\s+/, $reason, 2; | |
| 361 } | |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
362 elsif ($command eq "override") |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
363 { |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
364 my ($nrettype, $nfun, $nargs) = @$filesarr[2 .. 4]; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
365 $reason = "$reason.\n NOTE: " if $reason; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
366 $reason = "${reason}Prototype manually overridden. |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
367 Header file claims: |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
368 $rettype $fun($args) |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
369 Overridden with: |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
370 $nrettype $nfun($nargs) |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
371 Differences in return-type qualifiers, e.g. WINAPI, are not important. |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
372 "; |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
373 ($rettype, $fun, $args) = ($nrettype, $nfun, $nargs); |
|
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
374 } |
| 771 | 375 my $argno = 0; |
|
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4875
diff
changeset
|
376 while ($args =~ /$argmatch_re/g) |
| 771 | 377 { |
| 378 $argno++; | |
| 379 my ($argtype, $argname) = ($1, $2); | |
| 380 $argtype =~ s/\s*$//; | |
| 381 next if $argtype eq "void" || $argtype eq "VOID"; | |
| 382 $argname = "arg$argno" if !defined ($argname); | |
| 383 $argtype{$argname} = $argtype; | |
| 384 $ansiarg{$argname} = $argtype; | |
| 385 $ansiarg{$argname} =~ s/\bLPWSTR\b/LPSTR/; | |
| 386 $ansiarg{$argname} =~ s/\bLPCWSTR\b/LPCSTR/; | |
| 387 $xarg{$argname} = $argtype; | |
| 388 $xarg{$argname} =~ s/\bLPWSTR\b/Extbyte */; | |
| 389 $xarg{$argname} =~ s/\bLPCWSTR\b/const Extbyte */; | |
| 390 if (defined ($split_struct)) | |
| 391 { | |
| 392 my $fuck_cperl1 = "\\b${split_struct}W\\b"; | |
| 393 my $fuck_cperl2 = "${split_struct}A"; | |
| 394 $ansiarg{$argname} =~ s/$fuck_cperl1/$fuck_cperl2/; | |
| 395 } | |
| 396 push @args, $argname; | |
| 397 } | |
| 398 $rettype =~ s/\bSHSTDAPI_\((.*)\)/$1/; | |
| 399 $rettype =~ s/\s*WIN\w*?API\s*//g; | |
|
4873
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
400 $rettype =~ s/\bAPIENTRY\b\s*//; |
| 771 | 401 $rettype =~ s/\bSHSTDAPI\b/HRESULT/; |
|
4873
50861fea97f6
regenerate intl-auto-encap-win32.c, now possible from Cygwin /usr/include/w32api headers
Ben Wing <ben@xemacs.org>
parents:
4467
diff
changeset
|
402 $rettype =~ s/\bextern\b\s*//; |
| 771 | 403 if ($rettype =~ /LPC?WSTR/) |
| 404 { | |
| 405 $split_rettype = 1; | |
| 406 $rettype =~ s/\bLPWSTR\b/Extbyte */; | |
| 407 $rettype =~ s/\bLPCWSTR\b/const Extbyte */; | |
| 408 } | |
| 800 | 409 print HOUT "#ifdef ERROR_WHEN_NONINTERCEPTED_FUNS_USED\n"; |
| 410 print HOUT "#undef $fun\n"; | |
| 2367 | 411 print HOUT "#define $fun error_use_qxe${fun}_or_${fun}A_and_${fun}W\n"; |
| 800 | 412 print HOUT "#endif\n"; |
| 771 | 413 if (defined ($reason)) |
| 414 { | |
| 415 print COUT "/* NOTE: $reason */\n"; | |
| 416 } | |
| 417 print COUT "$rettype\nqxe$fun ("; | |
| 418 print HOUT "$rettype qxe$fun ("; | |
| 419 my $first = 1; | |
| 420 if (!@args) | |
| 421 { | |
| 422 print COUT "void"; | |
| 423 print HOUT "void"; | |
| 424 } | |
| 425 else | |
| 426 { | |
| 427 foreach my $x (@args) | |
| 428 { | |
| 429 print COUT ", " if !$first; | |
| 430 print HOUT ", " if !$first; | |
| 431 $first = 0; | |
| 432 print COUT "$xarg{$x} $x"; | |
| 433 print HOUT "$xarg{$x} $x"; | |
| 434 } | |
| 435 } | |
| 436 print HOUT ");\n"; | |
| 437 print COUT ")\n{\n if (XEUNICODE_P)\n "; | |
| 438 if ($rettype ne "void" && $rettype ne "VOID") | |
| 439 { | |
| 440 print COUT "return "; | |
| 441 print COUT "($rettype) " if $split_rettype; | |
| 442 } | |
| 443 print COUT "${fun}W ("; | |
| 444 $first = 1; | |
| 445 foreach my $x (@args) | |
| 446 { | |
| 447 print COUT ", " if !$first; | |
| 448 $first = 0; | |
| 449 print COUT ($argtype{$x} eq $xarg{$x} ? $x : | |
| 450 "($argtype{$x}) $x"); | |
| 451 } | |
| 452 print COUT ");\n else\n "; | |
| 453 if ($rettype ne "void" && $rettype ne "VOID") | |
| 454 { | |
| 455 print COUT "return "; | |
| 456 print COUT "($rettype) " if $split_rettype; | |
| 457 } | |
| 458 print COUT "${fun}A ("; | |
| 459 $first = 1; | |
| 460 foreach my $x (@args) | |
| 461 { | |
| 462 print COUT ", " if !$first; | |
| 463 $first = 0; | |
| 464 print COUT ($argtype{$x} eq $ansiarg{$x} ? $x : | |
| 465 "($ansiarg{$x}) $x"); | |
| 466 } | |
| 467 print COUT ");\n}\n\n"; | |
| 468 } | |
| 469 if (defined ($bracket)) | |
| 470 { | |
| 471 print HOUT "#endif /* $bracket */\n"; | |
| 472 print COUT "#endif /* $bracket */\n\n"; | |
| 473 } | |
| 800 | 474 print HOUT "\n"; |
| 771 | 475 } |
| 476 } | |
| 477 } | |
| 478 | |
| 479 foreach my $file (keys %files) | |
| 480 { | |
| 481 foreach my $fun (keys %{$files{$file}}) | |
| 482 { | |
| 483 if (!$processed{$fun} && $files{$file}{$fun}[0] =~ /^(yes|soon|split)$/) | |
| 484 { | |
| 485 print "WARNING: Can't locate prototype for $fun\n"; | |
| 486 } | |
| 487 } | |
| 488 } | |
| 489 | |
| 490 | |
| 491 sub FileContents | |
| 492 { | |
| 493 local $/ = undef; | |
| 778 | 494 open (FILE, "< $dir/$_[0]") or die "$dir/$_[0]: $!"; |
| 771 | 495 my $retval = scalar <FILE>; |
| 496 # must hack away CRLF junk. | |
| 497 $retval =~ s/\r\n/\n/g; | |
| 498 return $retval; | |
| 499 } |
