]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | #!/usr/bin/perl |
f3c0d7a5 A |
2 | # Copyright (C) 2016 and later: Unicode, Inc. and others. |
3 | # License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
4 | #* |
5 | #******************************************************************************* | |
51004dcb | 6 | #* Copyright (C) 2001-2012, International Business Machines |
b75a7d8f A |
7 | #* Corporation and others. All Rights Reserved. |
8 | #******************************************************************************* | |
9 | #* | |
10 | #* file name: genren.pl | |
f3c0d7a5 | 11 | #* encoding: UTF-8 |
b75a7d8f A |
12 | #* tab size: 8 (not used) |
13 | #* indentation:4 | |
14 | #* | |
15 | #* Created by: Vladimir Weinstein | |
16 | #* 07/19/2001 | |
17 | #* | |
18 | #* Used to generate renaming headers. | |
19 | #* Run on UNIX platforms (linux) in order to catch all the exports | |
20 | ||
729e4ab9 A |
21 | use POSIX qw(strftime); |
22 | ||
b75a7d8f A |
23 | $headername = 'urename.h'; |
24 | ||
25 | $path = substr($0, 0, rindex($0, "/")+1)."../../common/unicode/uversion.h"; | |
26 | ||
46f4442e A |
27 | $nmopts = '-Cg -f s'; |
28 | $post = ''; | |
29 | ||
729e4ab9 | 30 | $mode = 'POSIX'; |
46f4442e | 31 | |
b75a7d8f A |
32 | (-e $path) || die "Cannot find uversion.h"; |
33 | ||
34 | open(UVERSION, $path); | |
35 | ||
36 | while(<UVERSION>) { | |
37 | if(/\#define U_ICU_VERSION_SUFFIX/) { | |
38 | chop; | |
39 | s/\#define U_ICU_VERSION_SUFFIX //; | |
40 | $U_ICU_VERSION_SUFFIX = "$_"; | |
41 | last; | |
42 | } | |
43 | } | |
44 | ||
45 | while($ARGV[0] =~ /^-/) { # detects whether there are any arguments | |
46 | $_ = shift @ARGV; # extracts the argument for processing | |
47 | /^-v/ && ($VERBOSE++, next); # verbose | |
48 | /^-h/ && (&printHelpMsgAndExit, next); # help | |
49 | /^-o/ && (($headername = shift (@ARGV)), next); # output file | |
46f4442e A |
50 | /^-n/ && (($nmopts = shift (@ARGV)), next); # nm opts |
51 | /^-p/ && (($post = shift (@ARGV)), next); # nm opts | |
52 | /^-x/ && (($mode = shift (@ARGV)), next); # nm opts | |
b75a7d8f A |
53 | /^-S/ && (($U_ICU_VERSION_SUFFIX = shift(@ARGV)), next); # pick the suffix |
54 | warn("Invalid option $_\n"); | |
55 | &printHelpMsgAndExit; | |
56 | } | |
57 | ||
58 | unless(@ARGV > 0) { | |
59 | warn "No libraries, exiting...\n"; | |
60 | &printHelpMsgAndExit; | |
61 | } | |
62 | ||
63 | #$headername = "uren".substr($ARGV[0], 6, index(".", $ARGV[0])-7).".h"; | |
64 | ||
65 | $HEADERDEF = uc($headername); # this is building the constant for #define | |
66 | $HEADERDEF =~ s/\./_/; | |
67 | ||
68 | ||
69 | open HEADER, ">$headername"; # opening a header file | |
70 | ||
71 | #We will print our copyright here + warnings | |
729e4ab9 | 72 | |
b75a7d8f | 73 | print HEADER <<"EndOfHeaderComment"; |
0f5d89e8 A |
74 | // © 2016 and later: Unicode, Inc. and others. |
75 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
76 | /* |
77 | ******************************************************************************* | |
0f5d89e8 | 78 | * Copyright (C) 2002-2016, International Business Machines |
b75a7d8f A |
79 | * Corporation and others. All Rights Reserved. |
80 | ******************************************************************************* | |
81 | * | |
82 | * file name: $headername | |
f3c0d7a5 | 83 | * encoding: UTF-8 |
b75a7d8f A |
84 | * tab size: 8 (not used) |
85 | * indentation:4 | |
86 | * | |
51004dcb | 87 | * Created by: Perl script tools/genren.pl written by Vladimir Weinstein |
b75a7d8f A |
88 | * |
89 | * Contains data for renaming ICU exports. | |
90 | * Gets included by umachine.h | |
91 | * | |
92 | * THIS FILE IS MACHINE-GENERATED, DON'T PLAY WITH IT IF YOU DON'T KNOW WHAT | |
93 | * YOU ARE DOING, OTHERWISE VERY BAD THINGS WILL HAPPEN! | |
94 | */ | |
95 | ||
96 | #ifndef $HEADERDEF | |
97 | #define $HEADERDEF | |
98 | ||
51004dcb A |
99 | /* U_DISABLE_RENAMING can be defined in the following ways: |
100 | * - when running configure, e.g. | |
101 | * runConfigureICU Linux --disable-renaming | |
102 | * - by changing the default setting of U_DISABLE_RENAMING in uconfig.h | |
103 | */ | |
104 | ||
105 | #include "unicode/uconfig.h" | |
b75a7d8f A |
106 | |
107 | #if !U_DISABLE_RENAMING | |
729e4ab9 A |
108 | |
109 | /* We need the U_ICU_ENTRY_POINT_RENAME definition. There's a default one in unicode/uvernum.h we can use, but we will give | |
110 | the platform a chance to define it first. | |
111 | Normally (if utypes.h or umachine.h was included first) this will not be necessary as it will already be defined. | |
112 | */ | |
4388f060 | 113 | |
729e4ab9 A |
114 | #ifndef U_ICU_ENTRY_POINT_RENAME |
115 | #include "unicode/umachine.h" | |
116 | #endif | |
117 | ||
118 | /* If we still don't have U_ICU_ENTRY_POINT_RENAME use the default. */ | |
119 | #ifndef U_ICU_ENTRY_POINT_RENAME | |
120 | #include "unicode/uvernum.h" | |
121 | #endif | |
122 | ||
123 | /* Error out before the following defines cause very strange and unexpected code breakage */ | |
124 | #ifndef U_ICU_ENTRY_POINT_RENAME | |
125 | #error U_ICU_ENTRY_POINT_RENAME is not defined - cannot continue. Consider defining U_DISABLE_RENAMING if renaming should not be used. | |
126 | #endif | |
127 | ||
b75a7d8f A |
128 | EndOfHeaderComment |
129 | ||
729e4ab9 A |
130 | $fileCount = 0; |
131 | $itemCount = 0; | |
132 | $symbolCount = 0; | |
133 | ||
b75a7d8f | 134 | for(;@ARGV; shift(@ARGV)) { |
729e4ab9 | 135 | $fileCount++; |
46f4442e | 136 | @NMRESULT = `nm $nmopts $ARGV[0] $post`; |
b75a7d8f A |
137 | if($?) { |
138 | warn "Couldn't do 'nm' for $ARGV[0], continuing...\n"; | |
139 | next; # Couldn't do nm for the file | |
140 | } | |
46f4442e A |
141 | if($mode =~ /POSIX/) { |
142 | splice @NMRESULT, 0, 6; | |
143 | } elsif ($mode =~ /Mach-O/) { | |
144 | # splice @NMRESULT, 0, 10; | |
145 | } | |
b75a7d8f | 146 | foreach (@NMRESULT) { # Process every line of result and stuff it in $_ |
729e4ab9 | 147 | $itemCount++; |
46f4442e | 148 | if($mode =~ /POSIX/) { |
4388f060 | 149 | &verbose(" $_"); |
46f4442e | 150 | ($_, $address, $type) = split(/\|/); |
4388f060 | 151 | chop $qtype; |
46f4442e | 152 | } elsif ($mode =~ /Mach-O/) { |
51004dcb A |
153 | ($address, $type, $_) = split(/ /); |
154 | if(/^_(.*)$/) { | |
155 | $_ = $1; | |
46f4442e A |
156 | } else { |
157 | next; | |
158 | } | |
159 | } else { | |
160 | die "Unknown mode $mode"; | |
161 | } | |
b75a7d8f A |
162 | &verbose( "type: \"$type\" "); |
163 | if(!($type =~ /[UAwW?]/)) { | |
164 | if(/@@/) { # These would be imports | |
165 | &verbose( "Import: $_ \"$type\"\n"); | |
b75a7d8f | 166 | &verbose( "C++ method: $_\n"); |
729e4ab9 A |
167 | } elsif (/^[^\(]*::/) { # C++ methods, stuff class name in associative array |
168 | ## DON'T match ... ( foo::bar ... want :: to be to the left of paren | |
4388f060 | 169 | ## icu::CharString::~CharString(void) -> CharString |
b75a7d8f | 170 | @CppName = split(/::/); ## remove scope stuff |
4388f060 | 171 | |
b75a7d8f A |
172 | if(@CppName>1) { |
173 | ## MessageFormat virtual table -> MessageFormat | |
4388f060 A |
174 | if(! ($CppName[0] =~ /icu/ )) { |
175 | # *** WARNING Bad namespace (not 'icu') on ShoeSize::ShoeSize() | |
176 | warn "*** WARNING Bad namespace (not 'icu') on $_\n"; | |
177 | next; | |
178 | } | |
179 | &verbose ( "(Chopping scope $CppName[0] )"); | |
b75a7d8f A |
180 | @CppName = split(/ /, $CppName[1]); ## remove debug stuff |
181 | } | |
182 | ## ures_getUnicodeStringByIndex(UResourceBundle -> ures_getUnicodeStringByIndex | |
183 | @CppName = split(/\(/, $CppName[0]); ## remove function args | |
46f4442e A |
184 | if($CppName[0] =~ /^operator/) { |
185 | &verbose ("Skipping C++ function: $_\n"); | |
186 | } elsif($CppName[0] =~ /^~/) { | |
187 | &verbose ("Skipping C++ destructor: $_\n"); | |
188 | } else { | |
4388f060 A |
189 | &verbose( "Skipping C++ class: '$CppName[0]': $_ \n"); |
190 | # $CppClasses{$CppName[0]}++; | |
191 | # $symbolCount++; | |
46f4442e | 192 | } |
729e4ab9 A |
193 | } elsif ( my ($cfn) = m/^([A-Za-z0-9_]*)\(.*/ ) { |
194 | &verbose ( "$ARGV[0]: got global C++ function $cfn with '$_'\n" ); | |
195 | $CFuncs{$cfn}++; | |
196 | $symbolCount++; | |
b75a7d8f | 197 | } elsif ( /\(/) { # These are strange functions |
729e4ab9 A |
198 | print STDERR "$ARGV[0]: Not sure what to do with '$_'\n"; |
199 | } elsif ( /^_init/ ) { | |
200 | &verbose( "$ARGV[0]: Skipped initializer $_\n" ); | |
201 | } elsif ( /^_fini/ ) { | |
202 | &verbose( "$ARGV[0]: Skipped finilizer $_\n" ); | |
b75a7d8f | 203 | } elsif ( /icu_/) { |
729e4ab9 | 204 | print STDERR "$ARGV[0]: Skipped strange mangled function $_\n"; |
46f4442e | 205 | } elsif ( /^vtable for /) { |
729e4ab9 | 206 | print STDERR "$ARGV[0]: Skipped vtable $_\n"; |
4388f060 | 207 | } elsif ( /^typeinfo/) { |
729e4ab9 | 208 | print STDERR "$ARGV[0]: Skipped typeinfo $_\n"; |
46f4442e | 209 | } elsif ( /operator\+/ ) { |
729e4ab9 | 210 | print STDERR "$ARGV[0]: Skipped ignored function $_\n"; |
b75a7d8f A |
211 | } else { # This is regular C function |
212 | &verbose( "C func: $_\n"); | |
213 | @funcname = split(/[\(\s+]/); | |
214 | $CFuncs{$funcname[0]}++; | |
729e4ab9 | 215 | $symbolCount++; |
b75a7d8f A |
216 | } |
217 | } else { | |
218 | &verbose( "Skipped: $_ $1\n"); | |
219 | } | |
220 | } | |
221 | } | |
222 | ||
729e4ab9 A |
223 | if( $fileCount == 0 ) { |
224 | die "Error: $itemCount lines from $fileCount files processed, but $symbolCount symbols were found.\n"; | |
225 | } | |
226 | ||
227 | if( $symbolCount == 0 ) { | |
228 | die "Error: $itemCount lines from $fileCount files processed, but $symbolCount symbols were found.\n"; | |
229 | } | |
230 | ||
231 | print " Loaded $symbolCount symbols from $itemCount lines in $fileCount files.\n"; | |
232 | ||
b75a7d8f A |
233 | print HEADER "\n/* C exports renaming data */\n\n"; |
234 | foreach(sort keys(%CFuncs)) { | |
729e4ab9 A |
235 | print HEADER "#define $_ U_ICU_ENTRY_POINT_RENAME($_)\n"; |
236 | # print HEADER "#define $_ $_$U_ICU_VERSION_SUFFIX\n"; | |
b75a7d8f A |
237 | } |
238 | ||
b75a7d8f A |
239 | print HEADER "\n#endif\n"; |
240 | print HEADER "\n#endif\n"; | |
241 | ||
242 | close HEADER; | |
243 | ||
244 | sub verbose { | |
245 | if($VERBOSE) { | |
246 | print STDERR @_; | |
247 | } | |
248 | } | |
249 | ||
250 | ||
251 | sub printHelpMsgAndExit { | |
252 | print STDERR <<"EndHelpText"; | |
253 | Usage: $0 [OPTIONS] LIBRARY_FILES | |
254 | Options: | |
255 | -v - verbose | |
256 | -h - help | |
257 | -o - output file name (defaults to 'urename.h' | |
258 | -S - suffix (defaults to _MAJOR_MINOR of current ICU version) | |
259 | Will produce a renaming .h file | |
260 | ||
261 | EndHelpText | |
262 | ||
263 | exit 0; | |
264 | ||
265 | } |