This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regen/mk_invlists.pl: Add dependency
[perl5.git] / regen / mk_PL_charclass.pl
CommitLineData
9c68f0ab 1#!perl -w
b72a36d4 2use v5.15.8;
9c68f0ab
KW
3use strict;
4use warnings;
cfb8fd6a 5require 'regen/regen_lib.pl';
29ec702e 6require 'regen/charset_translations.pl';
9c68f0ab 7
b1909af7
KW
8# This program outputs l1_charclass_tab.h, which defines the guts of the
9# PL_charclass table. Each line is a bit map of properties that the Unicode
8d4ab2a1 10# code point at the corresponding position in the table array has. The first
b1909af7 11# line corresponds to code point U+0000, NULL, the last line to U+00FF. For
8d4ab2a1
KW
12# an application to see if the code point "i" has a particular property, it
13# just does
9c68f0ab
KW
14# 'PL_charclass[i] & BIT'
15# The bit names are of the form '_CC_property_suffix', where 'CC' stands for
16# character class, and 'property' is the corresponding property, and 'suffix'
17# is one of '_A' to mean the property is true only if the corresponding code
18# point is ASCII, and '_L1' means that the range includes any Latin1
19# character (ISO-8859-1 including the C0 and C1 controls). A property without
20# these suffixes does not have different forms for both ranges.
21
b1909af7
KW
22# This program need be run only when adding new properties to it, or upon a
23# new Unicode release, to make sure things haven't been changed by it.
9c68f0ab
KW
24
25my @properties = qw(
f12c0118 26 NONLATIN1_SIMPLE_FOLD
62841d05 27 NONLATIN1_FOLD
15861f94 28 ALPHANUMERIC
f4cdb42c 29 ALPHA
e48bdfbc 30 ASCII
f4cdb42c 31 BLANK
b0d691b2 32 CASED
9c68f0ab 33 CHARNAME_CONT
f4cdb42c
KW
34 CNTRL
35 DIGIT
36 GRAPH
37 IDFIRST
38 LOWER
b72a36d4 39 NON_FINAL_FOLD
f4cdb42c 40 PRINT
f4cdb42c 41 PUNCT
9a022f3a 42 QUOTEMETA
f4cdb42c
KW
43 SPACE
44 UPPER
45 WORDCHAR
46 XDIGIT
a0947d7b 47 VERTSPACE
f7993745 48 IS_IN_SOME_FOLD
8e35b056 49 MNEMONIC_CNTRL
9c68f0ab
KW
50);
51
00c072cf
KW
52# Read in the case fold mappings.
53my %folded_closure;
62841d05 54my @hex_non_final_folds;
f12c0118 55my @non_latin1_simple_folds;
dbe1ba6b
KW
56my @folds;
57use Unicode::UCD;
58
62841d05
KW
59BEGIN { # Have to do this at compile time because using user-defined \p{property}
60
4ef0bd69
KW
61 # Use the Unicode data file if we are on an ASCII platform (which its data
62 # is for), and it is in the modern format (starting in Unicode 3.1.0) and
63 # it is available. This avoids being affected by potential bugs
64 # introduced by other layers of Perl
65 my $file="lib/unicore/CaseFolding.txt";
66
67 if (ord('A') == 65
68 && pack("C*", split /\./, Unicode::UCD::UnicodeVersion()) ge v3.1.0
69 && open my $fh, "<", $file)
70 {
71 @folds = <$fh>;
72 }
73 else {
74 my ($invlist_ref, $invmap_ref, undef, $default)
dbe1ba6b 75 = Unicode::UCD::prop_invmap('Case_Folding');
4ef0bd69
KW
76 for my $i (0 .. @$invlist_ref - 1 - 1) {
77 next if $invmap_ref->[$i] == $default;
78 my $adjust = -1;
79 for my $j ($invlist_ref->[$i] .. $invlist_ref->[$i+1] -1) {
80 $adjust++;
81
82 # Single-code point maps go to a 'C' type
83 if (! ref $invmap_ref->[$i]) {
84 push @folds, sprintf("%04X; C; %04X\n",
85 $j,
86 $invmap_ref->[$i] + $adjust);
87 }
88 else { # Multi-code point maps go to 'F'. prop_invmap()
89 # guarantees that no adjustment is needed for these,
90 # as the range will contain just one element
91 push @folds, sprintf("%04X; F; %s\n",
92 $j,
93 join " ", map { sprintf "%04X", $_ }
94 @{$invmap_ref->[$i]});
95 }
dbe1ba6b
KW
96 }
97 }
98 }
dbe1ba6b 99
4ef0bd69
KW
100 for (@folds) {
101 chomp;
00c072cf 102
4ef0bd69
KW
103 # Lines look like (without the initial '#'
104 #0130; F; 0069 0307; # LATIN CAPITAL LETTER I WITH DOT ABOVE
105 # Get rid of comments, ignore blank or comment-only lines
106 my $line = $_ =~ s/ (?: \s* \# .* )? $ //rx;
107 next unless length $line;
108 my ($hex_from, $fold_type, @folded) = split /[\s;]+/, $line;
00c072cf 109
4ef0bd69 110 my $from = hex $hex_from;
00c072cf 111
f12c0118
KW
112 # Perl only deals with S, C, and F folds
113 next if $fold_type ne 'C' and $fold_type ne 'F' and $fold_type ne 'S';
00c072cf 114
4ef0bd69
KW
115 # Get each code point in the range that participates in this line's fold.
116 # The hash has keys of each code point in the range, and values of what it
117 # folds to and what folds to it
118 for my $i (0 .. @folded - 1) {
119 my $hex_fold = $folded[$i];
120 my $fold = hex $hex_fold;
121 push @{$folded_closure{$fold}}, $from if $fold < 256;
122 push @{$folded_closure{$from}}, $fold if $from < 256;
62841d05 123
f12c0118
KW
124 if (($fold_type eq 'C' || $fold_type eq 'S')
125 && ($fold < 256 != $from < 256))
126 {
127 # Fold is simple (hence can't be a non-final fold, so the 'if'
128 # above is mutualy exclusive from the 'if below) and crosses
129 # 255/256 boundary. We keep track of the Latin1 code points
130 # in such folds.
131 push @non_latin1_simple_folds, ($fold < 256)
132 ? $fold
133 : $from;
134 }
135 elsif ($i < @folded-1
136 && $fold < 256
137 && ! grep { $_ eq $hex_fold } @hex_non_final_folds)
07725c18
KW
138 {
139 push @hex_non_final_folds, $hex_fold;
140
141 # Also add the upper case, which in the latin1 range folds to
142 # $fold
143 push @hex_non_final_folds, sprintf "%04X", ord uc chr $fold;
144 }
4ef0bd69 145 }
00c072cf 146 }
00c072cf 147
4ef0bd69
KW
148 # Now having read all the lines, combine them into the full closure of each
149 # code point in the range by adding lists together that share a common
150 # element
151 foreach my $folded (keys %folded_closure) {
152 foreach my $from (grep { $_ < 256 } @{$folded_closure{$folded}}) {
153 push @{$folded_closure{$from}}, @{$folded_closure{$folded}};
154 }
00c072cf 155 }
f12c0118
KW
156
157 # We have the single-character folds that cross the 255/256, like KELVIN
158 # SIGN => 'k', but we need the closure, so add like 'K' to it
159 foreach my $folded (@non_latin1_simple_folds) {
160 foreach my $fold (@{$folded_closure{$folded}}) {
161 if ($fold < 256 && ! grep { $fold == $_ } @non_latin1_simple_folds) {
162 push @non_latin1_simple_folds, $fold;
163 }
164 }
165 }
00c072cf
KW
166}
167
62841d05
KW
168sub Is_Non_Latin1_Fold {
169 my @return;
170
171 foreach my $folded (keys %folded_closure) {
172 push @return, sprintf("%X", $folded), if grep { $_ > 255 }
173 @{$folded_closure{$folded}};
174 }
175 return join("\n", @return) . "\n";
00c072cf
KW
176}
177
f12c0118
KW
178sub Is_Non_Latin1_Simple_Fold { # Latin1 code points that are folded to by
179 # non-Latin1 code points as single character
180 # folds
181 return join("\n", map { sprintf "%X", $_ } @non_latin1_simple_folds) . "\n";
182}
183
62841d05
KW
184sub Is_Non_Final_Fold {
185 return join("\n", @hex_non_final_folds) . "\n";
186}
187
188my @bits; # Bit map for each code point
189
b1909af7 190# For each character, calculate which properties it matches.
9c68f0ab
KW
191for my $ord (0..255) {
192 my $char = chr($ord);
850b7ec9 193 utf8::upgrade($char); # Important to use Unicode rules!
b1909af7
KW
194
195 # Look at all the properties we care about here.
9c68f0ab
KW
196 for my $property (@properties) {
197 my $name = $property;
198
b1909af7
KW
199 # Remove the suffix to get the actual property name.
200 # Currently the suffixes are '_L1', '_A', and none.
9c68f0ab
KW
201 # If is a latin1 version, no further checking is needed.
202 if (! ($name =~ s/_L1$//)) {
203
b1909af7 204 # Here, isn't an _L1. If its _A, it's automatically false for
a0947d7b
KW
205 # non-ascii. The only current ones (besides ASCII) without a
206 # suffix are valid over the whole range.
620ee5ce 207 next if $name =~ s/_A$// && $char !~ /\p{ASCII}/;
9c68f0ab
KW
208 }
209 my $re;
210 if ($name eq 'PUNCT') {;
211
212 # Sadly, this is inconsistent: \pP and \pS for the ascii range,
213 # just \pP outside it.
214 $re = qr/\p{Punct}|[^\P{Symbol}\P{ASCII}]/;
215 } elsif ($name eq 'CHARNAME_CONT') {;
699ffc5e 216 $re = qr/\p{_Perl_Charname_Continue}/,
9c68f0ab 217 } elsif ($name eq 'SPACE') {;
c6e8e4a9 218 $re = qr/\p{XPerlSpace}/;
9c68f0ab
KW
219 } elsif ($name eq 'IDFIRST') {
220 $re = qr/[_\p{Alpha}]/;
9c68f0ab 221 } elsif ($name eq 'WORDCHAR') {
c6e8e4a9 222 $re = qr/\p{XPosixWord}/;
15861f94 223 } elsif ($name eq 'ALPHANUMERIC') {
9c68f0ab 224 # Like \w, but no underscore
aedd44b5 225 $re = qr/\p{Alnum}/;
9a022f3a
KW
226 } elsif ($name eq 'QUOTEMETA') {
227 $re = qr/\p{_Perl_Quotemeta}/;
62841d05
KW
228 } elsif ($name eq 'NONLATIN1_FOLD') {
229 $re = qr/\p{Is_Non_Latin1_Fold}/;
f12c0118
KW
230 } elsif ($name eq 'NONLATIN1_SIMPLE_FOLD') {
231 $re = qr/\p{Is_Non_Latin1_Simple_Fold}/;
b72a36d4 232 } elsif ($name eq 'NON_FINAL_FOLD') {
62841d05 233 $re = qr/\p{Is_Non_Final_Fold}/;
f7993745
KW
234 } elsif ($name eq 'IS_IN_SOME_FOLD') {
235 $re = qr/\p{_Perl_Any_Folds}/;
8e35b056
KW
236 } elsif ($name eq 'MNEMONIC_CNTRL') {
237 # These are the control characters that there are mnemonics for
238 $re = qr/[\a\b\e\f\n\r\t]/;
9c68f0ab
KW
239 } else { # The remainder have the same name and values as Unicode
240 $re = eval "qr/\\p{$name}/";
241 use Carp;
242 carp $@ if ! defined $re;
243 }
244 #print "$ord, $name $property, $re\n";
07725c18 245 if ($char =~ $re) { # Add this property if matches
9c68f0ab 246 $bits[$ord] .= '|' if $bits[$ord];
265c1f46 247 $bits[$ord] .= "(1U<<_CC_$property)";
9c68f0ab
KW
248 }
249 }
250 #print __LINE__, " $ord $char $bits[$ord]\n";
251}
252
cc49830d 253my $out_fh = open_new('l1_char_class_tab.h', '>',
b1909af7 254 {style => '*', by => $0,
dbe1ba6b 255 from => "property definitions"});
cfb8fd6a 256
29ec702e
KW
257print $out_fh <<END;
258/* For code points whose position is not the same as Unicode, both are shown
259 * in the comment*/
260END
261
9c68f0ab 262# Output the table using fairly short names for each char.
29ec702e 263foreach my $charset (get_supported_code_pages()) {
c30a0cf2 264 my @a2n = @{get_a2n($charset)};
29ec702e
KW
265 my @out;
266
267 print $out_fh "\n" . get_conditional_compile_line_start($charset);
64d34faf
KW
268 for my $ord (0..255) {
269 my $name;
270 my $char = chr $ord;
271 if ($char =~ /\p{PosixGraph}/) {
272 my $quote = $char eq "'" ? '"' : "'";
273 $name = $quote . chr($ord) . $quote;
620ee5ce 274 }
64d34faf
KW
275 elsif ($char =~ /\p{XPosixGraph}/) {
276 use charnames();
277 $name = charnames::viacode($ord);
278 $name =~ s/LATIN CAPITAL LETTER //
279 or $name =~ s/LATIN SMALL LETTER (.*)/\L$1/
280 or $name =~ s/ SIGN\b//
281 or $name =~ s/EXCLAMATION MARK/'!'/
282 or $name =~ s/QUESTION MARK/'?'/
283 or $name =~ s/QUOTATION MARK/QUOTE/
284 or $name =~ s/ INDICATOR//;
285 $name =~ s/\bWITH\b/\L$&/;
286 $name =~ s/\bONE\b/1/;
287 $name =~ s/\b(TWO|HALF)\b/2/;
288 $name =~ s/\bTHREE\b/3/;
289 $name =~ s/\b QUARTER S? \b/4/x;
290 $name =~ s/VULGAR FRACTION (.) (.)/$1\/$2/;
291 $name =~ s/\bTILDE\b/'~'/i
292 or $name =~ s/\bCIRCUMFLEX\b/'^'/i
293 or $name =~ s/\bSTROKE\b/'\/'/i
294 or $name =~ s/ ABOVE\b//i;
620ee5ce
KW
295 }
296 else {
64d34faf
KW
297 use Unicode::UCD qw(prop_invmap);
298 my ($list_ref, $map_ref, $format) = prop_invmap("Name_Alias");
299 if ($format !~ /^s/) {
300 use Carp;
301 carp "Unexpected format '$format' for 'Name_Alias";
302 last;
303 }
304 my $which = Unicode::UCD::search_invlist($list_ref, $ord);
305 if (! defined $which) {
306 use Carp;
307 carp "No name found for code pont $ord";
620ee5ce
KW
308 }
309 else {
64d34faf
KW
310 my $map = $map_ref->[$which];
311 if (! ref $map) {
312 $name = $map;
313 }
314 else {
315 # Just pick the first abbreviation if more than one
316 my @names = grep { $_ =~ /abbreviation/ } @$map;
317 $name = $names[0];
318 }
319 $name =~ s/:.*//;
620ee5ce 320 }
620ee5ce 321 }
64d34faf
KW
322 my $index = $a2n[$ord];
323 $out[$index] = ($ord == $index)
324 ? sprintf "/* U+%02X %s */ %s,\n", $ord, $name, $bits[$ord]
325 : sprintf "/* 0x%02X U+%02X %s */ %s,\n", $index, $ord, $name, $bits[$ord];
9c68f0ab 326 }
29ec702e
KW
327 print $out_fh join "", @out;
328 print $out_fh "\n" . get_conditional_compile_line_end();
9c68f0ab
KW
329}
330
cfb8fd6a 331read_only_bottom_close_and_rename($out_fh)