mktables executes seven time per build sigh
[p5sagit/p5-mst-13.2.git] / lib / unicore / mktables
1 ## !!!!!!!!!!!!!!       IF YOU MODIFY THIS FILE       !!!!!!!!!!!!!!!!!!!!!!!!!
2 ## Any files created or read by this program should be listed in 'mktables.lst'
3
4 #!/usr/bin/perl -w
5 require 5.008;  # Needs pack "U". Probably safest to run on 5.8.x
6 use strict;
7 use Carp;
8 use File::Spec;
9
10 ##
11 ## mktables -- create the runtime Perl Unicode files (lib/unicore/**/*.pl)
12 ## from the Unicode database files (lib/unicore/*.txt).
13 ##
14
15 ## "Fuzzy" means this section in Unicode TR18:
16 ##
17 ##    The recommended names for UCD properties and property values are in
18 ##    PropertyAliases.txt [Prop] and PropertyValueAliases.txt
19 ##    [PropValue]. There are both abbreviated names and longer, more
20 ##    descriptive names. It is strongly recommended that both names be
21 ##    recognized, and that loose matching of property names be used,
22 ##    whereby the case distinctions, whitespace, hyphens, and underbar
23 ##    are ignored.
24
25 ## Base names already used in lib/gc_sc (for avoiding 8.3 conflicts)
26 my %BaseNames;
27
28 ##
29 ## Process any args.
30 ##
31 my $Verbose        = 0;
32 my $MakeTestScript = 0;
33 my $AlwaysWrite    = 0;
34 my $UseDir         = "";
35 my $FileList       = "$0.lst";
36 my $MakeList       = 0;
37
38 while (@ARGV)
39 {
40     my $arg = shift @ARGV;
41     if ($arg eq '-v') {
42         $Verbose = 1;
43     } elsif ($arg eq '-q') {
44         $Verbose = 0;
45     } elsif ($arg eq '-w') {
46         $AlwaysWrite = 1;       # update the files even if they havent changed
47         $FileList = "";
48     } elsif ($arg eq '-check') {
49         my $this = shift @ARGV;
50         my $ok = shift @ARGV;
51         if ($this ne $ok) {
52             print "Skipping as check params are not the same.\n";
53             exit(0);
54         }
55     } elsif ($arg eq '-maketest') {
56         $MakeTestScript = 1;
57     } elsif ($arg eq '-makelist') {
58         $MakeList = 1;        
59     } elsif ($arg eq '-C' && defined ($UseDir = shift)) {
60         -d $UseDir or die "Unknown directory '$UseDir'";
61     } elsif ($arg eq '-L' && defined ($FileList = shift)) {
62         -e $FileList or die "Filelist '$FileList' doesn't appear to exist!";
63     } else {
64         die "usage: $0 [-v|-q|-w|-C dir|-L filelist] [-maketest] [-makelist]\n",
65             "  -v          : Verbose Mode\n",
66             "  -q          : Quiet Mode\n",
67             "  -w          : Write files regardless\n",
68             "  -maketest   : Make test script\n",
69             "  -makelist   : Rewrite the file list based on current setup\n",
70             "  -L filelist : Use this file list, (defaults to $0)\n",
71             "  -C dir      : Change to this directory before proceeding\n",
72             "  -check A B  : Executes only if A and B are the same\n";   
73     }
74 }
75
76 if ($FileList) {
77     print "Reading file list '$FileList'\n"
78         if $Verbose;
79     open my $fh,"<",$FileList or die "Failed to read '$FileList':$!";
80     my @input;
81     my @output;
82     for my $list ( \@input, \@output ) {
83         while (<$fh>) {
84             s/^ \s+ | \s+ $//xg;
85             next if /^ \s* (?: \# .* )? $/x;
86             last if /^ =+ $/x;
87             my ( $file ) = split /\t/, $_;
88             push @$list, $file;
89         }
90         my %dupe;
91         @$list = grep !$dupe{ $_ }++, @$list;
92     }
93     close $fh;
94     die "No input or output files in '$FileList'!"
95         if !@input or !@output;
96     if ( $MakeList ) {
97         foreach my $file (@output) {
98             unlink $file;
99         }
100     }            
101     if ( $Verbose ) {
102         print "Expecting ".scalar( @input )." input files. ",
103               "Checking ".scalar( @output )." output files.\n";
104     }
105     # we set maxtime to be the youngest input file, including $0 itself.
106     my $maxtime = -M $0; # do this before the chdir!
107     if ($UseDir) {
108         chdir $UseDir or die "Failed to chdir to '$UseDir':$!";
109     }
110     foreach my $in (@input) {
111         my $time = -M $in;
112         die "Missing input file '$in'" unless defined $time;
113         $maxtime = $time if $maxtime < $time;
114     }
115
116     # now we check to see if any output files are older than maxtime, if
117     # they are we need to continue on, otherwise we can presumably bail.
118     my $ok = 1;
119     foreach my $out (@output) {
120         if ( ! -e $out ) {
121             print "'$out' is missing.\n"
122                 if $Verbose;
123             $ok = 0;
124             last;
125         }
126         if ( -M $out > $maxtime ) {
127             print "'$out' is too old.\n"
128                 if $Verbose;
129             $ok = 0;
130             last;
131         }
132     }
133     if ($ok) {
134         print "Files seem to be ok, not bothering to rebuild.\n";
135         exit(0);
136     }
137     print "Must rebuild tables.\n"
138         if $Verbose;
139 } else {
140     if ($Verbose) {
141         print "Not checking filelist.\n";
142     }
143     if ($UseDir) {
144         chdir $UseDir or die "Failed to chdir to '$UseDir':$!";
145     }
146 }
147
148 foreach my $lib ('To', 'lib',
149                  map {File::Spec->catdir("lib",$_)}
150                  qw(gc_sc dt bc hst ea jt lb nt ccc)) {
151   next if -d $lib;
152   mkdir $lib, 0755 or die "mkdir '$lib': $!";
153 }
154
155 my $LastUnicodeCodepoint = 0x10FFFF; # As of Unicode 3.1.1.
156
157 my $HEADER=<<"EOF";
158 # !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!! 
159 # This file is built by $0 from e.g. UnicodeData.txt.
160 # Any changes made here will be lost!
161
162 EOF
163
164 sub force_unlink {
165     my $filename = shift;
166     return unless -e $filename;
167     return if CORE::unlink($filename);
168     # We might need write permission
169     chmod 0777, $filename;
170     CORE::unlink($filename) or die "Couldn't unlink $filename: $!\n";
171 }
172
173 ##
174 ## Given a filename and a reference to an array of lines,
175 ## write the lines to the file only if the contents have not changed.
176 ## Filename can be given as an arrayref of directory names
177 ##
178 sub WriteIfChanged($\@)
179 {
180     my $file  = shift;
181     my $lines = shift;
182
183     $file = File::Spec->catfile(@$file) if ref $file;
184
185     my $TextToWrite = join '', @$lines;
186     if (open IN, $file) {
187         local($/) = undef;
188         my $PreviousText = <IN>;
189         close IN;
190         if ($PreviousText eq $TextToWrite) {
191             print "$file unchanged.\n" if $Verbose;
192             return unless $AlwaysWrite;
193         }
194     }
195     force_unlink ($file);
196     if (not open OUT, ">$file") {
197         die "$0: can't open $file for output: $!\n";
198     }
199     print "$file written.\n" if $Verbose;
200
201     print OUT $TextToWrite;
202     close OUT;
203 }
204
205 ##
206 ## The main datastructure (a "Table") represents a set of code points that
207 ## are part of a particular quality (that are part of \pL, \p{InGreek},
208 ## etc.). They are kept as ranges of code points (starting and ending of
209 ## each range).
210 ##
211 ## For example, a range ASCII LETTERS would be represented as:
212 ##   [ [ 0x41 => 0x5A, 'UPPER' ],
213 ##     [ 0x61 => 0x7A, 'LOWER, ] ]
214 ##
215 sub RANGE_START() { 0 } ## index into range element
216 sub RANGE_END()   { 1 } ## index into range element
217 sub RANGE_NAME()  { 2 } ## index into range element
218
219 ## Conceptually, these should really be folded into the 'Table' objects
220 my %TableInfo;
221 my %TableDesc;
222 my %FuzzyNames;
223 my %AliasInfo;
224 my %CanonicalToOrig;
225
226 ##
227 ## Turn something like
228 ##    OLD-ITALIC
229 ## into
230 ##    OldItalic
231 ##
232 sub CanonicalName($)
233 {
234     my $orig = shift;
235     my $name = lc $orig;
236     $name =~ s/(?<![a-z])(\w)/\u$1/g;
237     $name =~ s/[-_\s]+//g;
238
239     $CanonicalToOrig{$name} = $orig if not $CanonicalToOrig{$name};
240     return $name;
241 }
242
243
244 ##
245 ## Store the alias definitions for later use.
246 ##
247 my %PropertyAlias;
248 my %PropValueAlias;
249
250 my %PA_reverse;
251 my %PVA_reverse;
252
253 sub Build_Aliases()
254 {
255     ##
256     ## Most of the work with aliases doesn't occur here,
257     ## but rather in utf8_heavy.pl, which uses PVA.pl,
258
259     # Placate the warnings about used only once. (They are used again, but
260     # via a typeglob lookup)
261     %utf8::PropertyAlias = ();
262     %utf8::PA_reverse = ();
263     %utf8::PropValueAlias = ();
264     %utf8::PVA_reverse = ();
265     %utf8::PVA_abbr_map = ();
266
267     open PA, "< PropertyAliases.txt"
268         or confess "Can't open PropertyAliases.txt: $!";
269     while (<PA>) {
270         s/#.*//;
271         s/\s+$//;
272         next if /^$/;
273
274         my ($abbrev, $name) = split /\s*;\s*/;
275         next if $abbrev eq "n/a";
276         $PropertyAlias{$abbrev} = $name;
277         $PA_reverse{$name} = $abbrev;
278
279         # The %utf8::... versions use japhy's code originally from utf8_pva.pl
280         # However, it's moved here so that we build the tables at runtime.
281         tr/ _-//d for $abbrev, $name;
282         $utf8::PropertyAlias{lc $abbrev} = $name;
283         $utf8::PA_reverse{lc $name} = $abbrev;
284     }
285     close PA;
286
287     open PVA, "< PropValueAliases.txt"
288         or confess "Can't open PropValueAliases.txt: $!";
289     while (<PVA>) {
290         s/#.*//;
291         s/\s+$//;
292         next if /^$/;
293
294         my ($prop, @data) = split /\s*;\s*/;
295
296         if ($prop eq 'ccc') {
297             $PropValueAlias{$prop}{$data[1]} = [ @data[0,2] ];
298             $PVA_reverse{$prop}{$data[2]} = [ @data[0,1] ];
299         }
300         else {
301             next if $data[0] eq "n/a";
302             $PropValueAlias{$prop}{$data[0]} = $data[1];
303             $PVA_reverse{$prop}{$data[1]} = $data[0];
304         }
305
306         shift @data if $prop eq 'ccc';
307         next if $data[0] eq "n/a";
308
309         $data[1] =~ tr/ _-//d;
310         $utf8::PropValueAlias{$prop}{lc $data[0]} = $data[1];
311         $utf8::PVA_reverse{$prop}{lc $data[1]} = $data[0];
312
313         my $abbr_class = ($prop eq 'gc' or $prop eq 'sc') ? 'gc_sc' : $prop;
314         $utf8::PVA_abbr_map{$abbr_class}{lc $data[0]} = $data[0];
315     }
316     close PVA;
317
318     # backwards compatibility for L& -> LC
319     $utf8::PropValueAlias{gc}{'l&'} = $utf8::PropValueAlias{gc}{lc};
320     $utf8::PVA_abbr_map{gc_sc}{'l&'} = $utf8::PVA_abbr_map{gc_sc}{lc};
321
322 }
323
324
325 ##
326 ## Associates a property ("Greek", "Lu", "Assigned",...) with a Table.
327 ##
328 ## Called like:
329 ##       New_Prop(In => 'Greek', $Table, Desc => 'Greek Block', Fuzzy => 1);
330 ##
331 ## Normally, these parameters are set when the Table is created (when the
332 ## Table->New constructor is called), but there are times when it needs to
333 ## be done after-the-fact...)
334 ##
335 sub New_Prop($$$@)
336 {
337     my $Type = shift; ## "Is" or "In";
338     my $Name = shift;
339     my $Table = shift;
340
341     ## remaining args are optional key/val
342     my %Args = @_;
343
344     my $Fuzzy = delete $Args{Fuzzy};
345     my $Desc  = delete $Args{Desc}; # description
346
347     $Name = CanonicalName($Name) if $Fuzzy;
348
349     ## sanity check a few args
350     if (%Args or ($Type ne 'Is' and $Type ne 'In') or not ref $Table) {
351         confess "$0: bad args to New_Prop"
352     }
353
354     if (not $TableInfo{$Type}->{$Name})
355     {
356         $TableInfo{$Type}->{$Name} = $Table;
357         $TableDesc{$Type}->{$Name} = $Desc;
358         if ($Fuzzy) {
359             $FuzzyNames{$Type}->{$Name} = $Name;
360         }
361     }
362 }
363
364
365 ##
366 ## Creates a new Table object.
367 ##
368 ## Args are key/value pairs:
369 ##    In => Name         -- Name of "In" property to be associated with
370 ##    Is => Name         -- Name of "Is" property to be associated with
371 ##    Fuzzy => Boolean   -- True if name can be accessed "fuzzily"
372 ##    Desc  => String    -- Description of the property
373 ##
374 ## No args are required.
375 ##
376 sub Table::New
377 {
378     my $class = shift;
379     my %Args = @_;
380
381     my $Table = bless [], $class;
382
383     my $Fuzzy = delete $Args{Fuzzy};
384     my $Desc  = delete $Args{Desc};
385
386     for my $Type ('Is', 'In')
387     {
388         if (my $Name = delete $Args{$Type}) {
389             New_Prop($Type => $Name, $Table, Desc => $Desc, Fuzzy => $Fuzzy);
390         }
391     }
392
393     ## shouldn't have any left over
394     if (%Args) {
395         confess "$0: bad args to Table->New"
396     }
397
398     return $Table;
399 }
400
401
402 ##
403 ## Returns the maximum code point currently in the table.
404 ##
405 sub Table::Max
406 {
407     my $last = $_[0]->[-1];      ## last code point
408     confess "oops" unless $last; ## must have code points to have a max
409     return $last->[RANGE_END];
410 }
411
412 ##
413 ## Replaces the codepoints in the Table with those in the Table given
414 ## as an arg. (NOTE: this is not a "deep copy").
415 ##
416 sub Table::Replace($$)
417 {
418     my $Table = shift; #self
419     my $New   = shift;
420
421     @$Table = @$New;
422 }
423
424 ##
425 ## Given a new code point, make the last range of the Table extend to
426 ## include the new (and all intervening) code points.
427 ##
428 ## Takes the time to make sure that the extension is valid.
429 ##
430 sub Table::Extend
431 {
432     my $Table = shift; #self
433     my $codepoint = shift;
434
435     my $PrevMax = $Table->Max;
436
437     confess "oops ($codepoint <= $PrevMax)" if $codepoint <= $PrevMax;
438
439     $Table->ExtendNoCheck($codepoint);
440 }
441
442
443 ##
444 ## Given a new code point, make the last range of the Table extend to
445 ## include the new (and all intervening) code points.
446 ##
447 ## Does NOT check that the extension is valid.  Assumes that the caller
448 ## has already made this check.
449 ##
450 sub Table::ExtendNoCheck
451 {
452     ## Optmized adding: Assumes $Table and $codepoint as parms
453     $_[0]->[-1]->[RANGE_END] = $_[1];
454 }
455
456 ##
457 ## Given a code point range start and end (and optional name), blindly
458 ## append them to the list of ranges for the Table.
459 ##
460 ## NOTE: Code points must be added in strictly ascending numeric order.
461 ##
462 sub Table::RawAppendRange
463 {
464     my $Table = shift; #self
465     my $start = shift;
466     my $end   = shift;
467     my $name  = shift;
468     $name = "" if not defined $name; ## warning: $name can be "0"
469
470     push @$Table, [ $start,    # RANGE_START
471                     $end,      # RANGE_END
472                     $name   ]; # RANGE_NAME
473 }
474
475 ##
476 ## Given a code point (and optional name), add it to the Table.
477 ##
478 ## NOTE: Code points must be added in strictly ascending numeric order.
479 ##
480 sub Table::Append
481 {
482     my $Table     = shift; #self
483     my $codepoint = shift;
484     my $name      = shift;
485     $name = "" if not defined $name; ## warning: $name can be "0"
486
487     ##
488     ## If we've already got a range working, and this code point is the next
489     ## one in line, and if the name is the same, just extend the current range.
490     ##
491     my $last = $Table->[-1];
492     if ($last
493         and
494         $last->[RANGE_END] == $codepoint - 1
495         and
496         $last->[RANGE_NAME] eq $name)
497     {
498         $Table->ExtendNoCheck($codepoint);
499     }
500     else
501     {
502         $Table->RawAppendRange($codepoint, $codepoint, $name);
503     }
504 }
505
506 ##
507 ## Given a code point range starting value and ending value (and name),
508 ## Add the range to teh Table.
509 ##
510 ## NOTE: Code points must be added in strictly ascending numeric order.
511 ##
512 sub Table::AppendRange
513 {
514     my $Table = shift; #self
515     my $start = shift;
516     my $end   = shift;
517     my $name  = shift;
518     $name = "" if not defined $name; ## warning: $name can be "0"
519
520     $Table->Append($start, $name);
521     $Table->Extend($end) if $end > $start;
522 }
523
524 ##
525 ## Return a new Table that represents all code points not in the Table.
526 ##
527 sub Table::Invert
528 {
529     my $Table = shift; #self
530
531     my $New = Table->New();
532     my $max = -1;
533     for my $range (@$Table)
534     {
535         my $start = $range->[RANGE_START];
536         my $end   = $range->[RANGE_END];
537         if ($start-1 >= $max+1) {
538             $New->AppendRange($max+1, $start-1, "");
539         }
540         $max = $end;
541     }
542     if ($max+1 < $LastUnicodeCodepoint) {
543         $New->AppendRange($max+1, $LastUnicodeCodepoint);
544     }
545     return $New;
546 }
547
548 ##
549 ## Merges any number of other tables with $self, returning the new table.
550 ## (existing tables are not modified)
551 ##
552 ##
553 ## Args may be Tables, or individual code points (as integers).
554 ##
555 ## Can be called as either a constructor or a method.
556 ##
557 sub Table::Merge
558 {
559     shift(@_) if not ref $_[0]; ## if called as a constructor, lose the class
560     my @Tables = @_;
561
562     ## Accumulate all records from all tables
563     my @Records;
564     for my $Arg (@Tables)
565     {
566         if (ref $Arg) {
567             ## arg is a table -- get its ranges
568             push @Records, @$Arg;
569         } else {
570             ## arg is a codepoint, make a range
571             push @Records, [ $Arg, $Arg ]
572         }
573     }
574
575     ## sort by range start, with longer ranges coming first.
576     my ($first, @Rest) = sort {
577         ($a->[RANGE_START] <=> $b->[RANGE_START])
578           or
579         ($b->[RANGE_END]   <=> $b->[RANGE_END])
580     } @Records;
581
582     my $New = Table->New();
583
584     ## Ensuring the first range is there makes the subsequent loop easier
585     $New->AppendRange($first->[RANGE_START],
586                       $first->[RANGE_END]);
587
588     ## Fold in records so long as they add new information.
589     for my $set (@Rest)
590     {
591         my $start = $set->[RANGE_START];
592         my $end   = $set->[RANGE_END];
593         if ($start > $New->Max) {
594             $New->AppendRange($start, $end);
595         } elsif ($end > $New->Max) {
596             $New->ExtendNoCheck($end);
597         }
598     }
599
600     return $New;
601 }
602
603 ##
604 ## Given a filename, write a representation of the Table to a file.
605 ## May have an optional comment as a 2nd arg.
606 ## Filename may actually be an arrayref of directories
607 ##
608 sub Table::Write
609 {
610     my $Table    = shift; #self
611     my $filename = shift;
612     my $comment  = shift;
613
614     my @OUT = $HEADER;
615     if (defined $comment) {
616         $comment =~ s/\s+\Z//;
617         $comment =~ s/^/# /gm;
618         push @OUT, "#\n$comment\n#\n";
619     }
620     push @OUT, "return <<'END';\n";
621
622     for my $set (@$Table)
623     {
624         my $start = $set->[RANGE_START];
625         my $end   = $set->[RANGE_END];
626         my $name  = $set->[RANGE_NAME];
627
628         if ($start == $end) {
629             push @OUT, sprintf "%04X\t\t%s\n", $start, $name;
630         } else {
631             push @OUT, sprintf "%04X\t%04X\t%s\n", $start, $end, $name;
632         }
633     }
634
635     push @OUT, "END\n";
636
637     WriteIfChanged($filename, @OUT);
638 }
639
640 ## This used only for making the test script.
641 ## helper function
642 sub IsUsable($)
643 {
644     my $code = shift;
645     return 0 if $code <= 0x0000;                       ## don't use null
646     return 0 if $code >= $LastUnicodeCodepoint;        ## keep in range
647     return 0 if ($code >= 0xD800 and $code <= 0xDFFF); ## no surrogates
648     return 0 if ($code >= 0xFDD0 and $code <= 0xFDEF); ## utf8.c says no good
649     return 0 if (($code & 0xFFFF) == 0xFFFE);          ## utf8.c says no good
650     return 0 if (($code & 0xFFFF) == 0xFFFF);          ## utf8.c says no good
651     return 1;
652 }
653
654 ## Return a code point that's part of the table.
655 ## Returns nothing if the table is empty (or covers only surrogates).
656 ## This used only for making the test script.
657 sub Table::ValidCode
658 {
659     my $Table = shift; #self
660     for my $set (@$Table) {
661         return $set->[RANGE_END] if IsUsable($set->[RANGE_END]);
662     }
663     return ();
664 }
665
666 ## Return a code point that's not part of the table
667 ## Returns nothing if the table covers all code points.
668 ## This used only for making the test script.
669 sub Table::InvalidCode
670 {
671     my $Table = shift; #self
672
673     return 0x1234 if not @$Table;
674
675     for my $set (@$Table)
676     {
677         if (IsUsable($set->[RANGE_END] + 1))
678         {
679             return $set->[RANGE_END] + 1;
680         }
681
682         if (IsUsable($set->[RANGE_START] - 1))
683         {
684             return $set->[RANGE_START] - 1;
685         }
686     }
687     return ();
688 }
689
690 ###########################################################################
691 ###########################################################################
692 ###########################################################################
693
694
695 ##
696 ## Called like:
697 ##     New_Alias(Is => 'All', SameAs => 'Any', Fuzzy => 1);
698 ##
699 ## The args must be in that order, although the Fuzzy pair may be omitted.
700 ##
701 ## This creates 'IsAll' as an alias for 'IsAny'
702 ##
703 sub New_Alias($$$@)
704 {
705     my $Type   = shift; ## "Is" or "In"
706     my $Alias  = shift;
707     my $SameAs = shift; # expecting "SameAs" -- just ignored
708     my $Name   = shift;
709
710     ## remaining args are optional key/val
711     my %Args = @_;
712
713     my $Fuzzy = delete $Args{Fuzzy};
714
715     ## sanity check a few args
716     if (%Args or ($Type ne 'Is' and $Type ne 'In') or $SameAs ne 'SameAs') {
717         confess "$0: bad args to New_Alias"
718     }
719
720     $Alias = CanonicalName($Alias) if $Fuzzy;
721
722     if (not $TableInfo{$Type}->{$Name})
723     {
724         my $CName = CanonicalName($Name);
725         if ($TableInfo{$Type}->{$CName}) {
726             confess "$0: Use canonical form '$CName' instead of '$Name' for alias.";
727         } else {
728             confess "$0: don't have original $Type => $Name to make alias\n";
729         }
730     }
731     if ($TableInfo{$Alias}) {
732         confess "$0: already have original $Type => $Alias; can't make alias";
733     }
734     $AliasInfo{$Type}->{$Name} = $Alias;
735     if ($Fuzzy) {
736         $FuzzyNames{$Type}->{$Alias} = $Name;
737     }
738
739 }
740
741
742 ## All assigned code points
743 my $Assigned = Table->New(Is    => 'Assigned',
744                           Desc  => "All assigned code points",
745                           Fuzzy => 0);
746
747 my $Name     = Table->New(); ## all characters, individually by name
748 my $General  = Table->New(); ## all characters, grouped by category
749 my %General;
750 my %Cat;
751
752 ## Simple Data::Dumper alike. Good enough for our needs. We can't use the real
753 ## thing as we have to run under miniperl
754 sub simple_dumper {
755     my @lines;
756     my $item;
757     foreach $item (@_) {
758         if (ref $item) {
759             if (ref $item eq 'ARRAY') {
760                 push @lines, "[\n", simple_dumper (@$item), "],\n";
761             } elsif (ref $item eq 'HASH') {
762                 push @lines, "{\n", simple_dumper (%$item), "},\n";
763             } else {
764                 die "Can't cope with $item";
765             }
766         } else {
767             if (defined $item) {
768                 my $copy = $item;
769                 $copy =~ s/([\'\\])/\\$1/gs;
770                 push @lines, "'$copy',\n";
771             } else {
772                 push @lines, "undef,\n";
773             }
774         }
775     }
776     @lines;
777 }
778
779 ##
780 ## Process UnicodeData.txt (Categories, etc.)
781 ##
782 sub UnicodeData_Txt()
783 {
784     my $Bidi     = Table->New();
785     my $Deco     = Table->New();
786     my $Comb     = Table->New();
787     my $Number   = Table->New();
788     my $Mirrored = Table->New();#Is    => 'Mirrored',
789                               #Desc  => "Mirrored in bidirectional text",
790                               #Fuzzy => 0);
791
792     my %DC;
793     my %Bidi;
794     my %Number;
795     $DC{can} = Table->New();
796     $DC{com} = Table->New();
797
798     ## Initialize Perl-generated categories
799     ## (Categories from UnicodeData.txt are auto-initialized in gencat)
800     $Cat{Alnum}  =
801         Table->New(Is => 'Alnum',  Desc => "[[:Alnum:]]",  Fuzzy => 0);
802     $Cat{Alpha}  =
803         Table->New(Is => 'Alpha',  Desc => "[[:Alpha:]]",  Fuzzy => 0);
804     $Cat{ASCII}  =
805         Table->New(Is => 'ASCII',  Desc => "[[:ASCII:]]",  Fuzzy => 0);
806     $Cat{Blank}  =
807         Table->New(Is => 'Blank',  Desc => "[[:Blank:]]",  Fuzzy => 0);
808     $Cat{Cntrl}  =
809         Table->New(Is => 'Cntrl',  Desc => "[[:Cntrl:]]",  Fuzzy => 0);
810     $Cat{Digit}  =
811         Table->New(Is => 'Digit',  Desc => "[[:Digit:]]",  Fuzzy => 0);
812     $Cat{Graph}  =
813         Table->New(Is => 'Graph',  Desc => "[[:Graph:]]",  Fuzzy => 0);
814     $Cat{Lower}  =
815         Table->New(Is => 'Lower',  Desc => "[[:Lower:]]",  Fuzzy => 0);
816     $Cat{Print}  =
817         Table->New(Is => 'Print',  Desc => "[[:Print:]]",  Fuzzy => 0);
818     $Cat{Punct}  =
819         Table->New(Is => 'Punct',  Desc => "[[:Punct:]]",  Fuzzy => 0);
820     $Cat{Space}  =
821         Table->New(Is => 'Space',  Desc => "[[:Space:]]",  Fuzzy => 0);
822     $Cat{Title}  =
823         Table->New(Is => 'Title',  Desc => "[[:Title:]]",  Fuzzy => 0);
824     $Cat{Upper}  =
825         Table->New(Is => 'Upper',  Desc => "[[:Upper:]]",  Fuzzy => 0);
826     $Cat{XDigit} =
827         Table->New(Is => 'XDigit', Desc => "[[:XDigit:]]", Fuzzy => 0);
828     $Cat{Word}   =
829         Table->New(Is => 'Word',   Desc => "[[:Word:]]",   Fuzzy => 0);
830     $Cat{SpacePerl} =
831         Table->New(Is => 'SpacePerl', Desc => '\s', Fuzzy => 0);
832
833     my %To;
834     $To{Upper} = Table->New();
835     $To{Lower} = Table->New();
836     $To{Title} = Table->New();
837     $To{Digit} = Table->New();
838
839     sub gencat($$$$)
840     {
841         my ($name, ## Name ("LATIN CAPITAL LETTER A")
842             $cat,  ## Category ("Lu", "Zp", "Nd", etc.)
843             $code, ## Code point (as an integer)
844             $op) = @_;
845
846         my $MajorCat = substr($cat, 0, 1); ## L, M, Z, S, etc
847
848         $Assigned->$op($code);
849         $Name->$op($code, $name);
850         $General->$op($code, $cat);
851
852         ## add to the sub category (e.g. "Lu", "Nd", "Cf", ..)
853         $Cat{$cat}      ||= Table->New(Is   => $cat,
854                                        Desc => "General Category '$cat'",
855                                        Fuzzy => 0);
856         $Cat{$cat}->$op($code);
857
858         ## add to the major category (e.g. "L", "N", "C", ...)
859         $Cat{$MajorCat} ||= Table->New(Is => $MajorCat,
860                                        Desc => "Major Category '$MajorCat'",
861                                        Fuzzy => 0);
862         $Cat{$MajorCat}->$op($code);
863
864         ($General{$name} ||= Table->New)->$op($code, $name);
865
866         # 005F: SPACING UNDERSCORE
867         $Cat{Word}->$op($code)  if $cat =~ /^[LMN]|Pc/;
868         $Cat{Alnum}->$op($code) if $cat =~ /^[LM]|Nd/;
869         $Cat{Alpha}->$op($code) if $cat =~ /^[LM]/;
870
871         my $isspace = 
872             ($cat =~ /Zs|Zl|Zp/ &&
873              $code != 0x200B) # 200B is ZWSP which is for line break control
874              # and therefore it is not part of "space" even while it is "Zs".
875                                 || $code == 0x0009  # 0009: HORIZONTAL TAB
876                                 || $code == 0x000A  # 000A: LINE FEED
877                                 || $code == 0x000B  # 000B: VERTICAL TAB
878                                 || $code == 0x000C  # 000C: FORM FEED
879                                 || $code == 0x000D  # 000D: CARRIAGE RETURN
880                                 || $code == 0x0085  # 0085: NEL
881
882             ;
883
884         $Cat{Space}->$op($code) if $isspace;
885
886         $Cat{SpacePerl}->$op($code) if $isspace
887                                        && $code != 0x000B; # Backward compat.
888
889         $Cat{Blank}->$op($code) if $isspace
890                                 && !($code == 0x000A ||
891                                      $code == 0x000B ||
892                                      $code == 0x000C ||
893                                      $code == 0x000D ||
894                                      $code == 0x0085 ||
895                                      $cat =~ /^Z[lp]/);
896
897         $Cat{Digit}->$op($code) if $cat eq "Nd";
898         $Cat{Upper}->$op($code) if $cat eq "Lu";
899         $Cat{Lower}->$op($code) if $cat eq "Ll";
900         $Cat{Title}->$op($code) if $cat eq "Lt";
901         $Cat{ASCII}->$op($code) if $code <= 0x007F;
902         $Cat{Cntrl}->$op($code) if $cat =~ /^C/;
903         my $isgraph = !$isspace && $cat !~ /Cc|Cs|Cn/;
904         $Cat{Graph}->$op($code) if $isgraph;
905         $Cat{Print}->$op($code) if $isgraph || $isspace;
906         $Cat{Punct}->$op($code) if $cat =~ /^P/;
907
908         $Cat{XDigit}->$op($code) if ($code >= 0x30 && $code <= 0x39)  ## 0..9
909                                  || ($code >= 0x41 && $code <= 0x46)  ## A..F
910                                  || ($code >= 0x61 && $code <= 0x66); ## a..f
911     }
912
913     ## open ane read file.....
914     if (not open IN, "UnicodeData.txt") {
915         die "$0: UnicodeData.txt: $!\n";
916     }
917
918     ##
919     ## For building \p{_CombAbove} and \p{_CanonDCIJ}
920     ##
921     my %_Above_HexCodes; ## Hexcodes for chars with $comb == 230 ("ABOVE")
922
923     my %CodeToDeco;      ## Maps code to decomp. list for chars with first
924                          ## decomp. char an "i" or "j" (for \p{_CanonDCIJ})
925
926     ## This is filled in as we go....
927     my $CombAbove = Table->New(Is   => '_CombAbove',
928                                Desc  => '(for internal casefolding use)',
929                                Fuzzy => 0);
930
931     while (<IN>)
932     {
933         next unless /^[0-9A-Fa-f]+;/;
934         s/\s+$//;
935
936         my ($hexcode,   ## code point in hex (e.g. "0041")
937             $name,      ## character name (e.g. "LATIN CAPITAL LETTER A")
938             $cat,       ## category (e.g. "Lu")
939             $comb,      ## Canonical combining class (e.t. "230")
940             $bidi,      ## directional category (e.g. "L")
941             $deco,      ## decomposition mapping
942             $decimal,   ## decimal digit value
943             $digit,     ## digit value
944             $number,    ## numeric value
945             $mirrored,  ## mirrored
946             $unicode10, ## name in Unicode 1.0
947             $comment,   ## comment field
948             $upper,     ## uppercase mapping
949             $lower,     ## lowercase mapping
950             $title,     ## titlecase mapping
951               ) = split(/\s*;\s*/);
952
953         # Note that in Unicode 3.2 there will be names like
954         # LINE FEED (LF), which probably means that \N{} needs
955         # to cope also with LINE FEED and LF.
956         $name = $unicode10 if $name eq '<control>' && $unicode10 ne '';
957
958         my $code = hex($hexcode);
959
960         if ($comb and $comb == 230) {
961             $CombAbove->Append($code);
962             $_Above_HexCodes{$hexcode} = 1;
963         }
964
965         ## Used in building \p{_CanonDCIJ}
966         if ($deco and $deco =~ m/^006[9A]\b/) {
967             $CodeToDeco{$code} = $deco;
968         }
969
970         ##
971         ## There are a few pairs of lines like:
972         ##   AC00;<Hangul Syllable, First>;Lo;0;L;;;;;N;;;;;
973         ##   D7A3;<Hangul Syllable, Last>;Lo;0;L;;;;;N;;;;;
974         ## that define ranges.
975         ##
976         if ($name =~ /^<(.+), (First|Last)>$/)
977         {
978             $name = $1;
979             gencat($name, $cat, $code, $2 eq 'First' ? 'Append' : 'Extend');
980             #New_Prop(In => $name, $General{$name}, Fuzzy => 1);
981         }
982         else
983         {
984             ## normal (single-character) lines
985             gencat($name, $cat, $code, 'Append');
986
987             # No Append() here since since several codes may map into one.
988             $To{Upper}->RawAppendRange($code, $code, $upper) if $upper;
989             $To{Lower}->RawAppendRange($code, $code, $lower) if $lower;
990             $To{Title}->RawAppendRange($code, $code, $title) if $title;
991             $To{Digit}->Append($code, $decimal) if length $decimal;
992
993             $Bidi->Append($code, $bidi);
994             $Comb->Append($code, $comb) if $comb;
995             $Number->Append($code, $number) if length $number;
996
997             length($decimal) and ($Number{De} ||= Table->New())->Append($code)
998               or
999             length($digit)   and ($Number{Di} ||= Table->New())->Append($code)
1000               or
1001             length($number)  and ($Number{Nu} ||= Table->New())->Append($code);
1002
1003             $Mirrored->Append($code) if $mirrored eq "Y";
1004
1005             $Bidi{$bidi} ||= Table->New();#Is    => "bt/$bidi",
1006                                         #Desc  => "Bi-directional category '$bidi'",
1007                                         #Fuzzy => 0);
1008             $Bidi{$bidi}->Append($code);
1009
1010             if ($deco)
1011             {
1012                 $Deco->Append($code, $deco);
1013                 if ($deco =~/^<(\w+)>/)
1014                 {
1015                     my $dshort = $PVA_reverse{dt}{ucfirst lc $1};
1016                     $DC{com}->Append($code);
1017
1018                     $DC{$dshort} ||= Table->New();
1019                     $DC{$dshort}->Append($code);
1020                 }
1021                 else
1022                 {
1023                     $DC{can}->Append($code);
1024                 }
1025             }
1026         }
1027     }
1028     close IN;
1029
1030     ##
1031     ## Tidy up a few special cases....
1032     ##
1033
1034     $Cat{Cn} = $Assigned->Invert; ## Cn is everything that doesn't exist
1035     New_Prop(Is => 'Cn',
1036              $Cat{Cn},
1037              Desc => "General Category 'Cn' [not functional in Perl]",
1038              Fuzzy => 0);
1039
1040     ## Unassigned is the same as 'Cn'
1041     New_Alias(Is => 'Unassigned', SameAs => 'Cn', Fuzzy => 0);
1042
1043     $Cat{C}->Replace($Cat{C}->Merge($Cat{Cn}));  ## Now merge in Cn into C
1044
1045
1046     # LC is Ll, Lu, and Lt.
1047     # (used to be L& or L_, but PropValueAliases.txt defines it as LC)
1048     New_Prop(Is => 'LC',
1049              Table->Merge(@Cat{qw[Ll Lu Lt]}),
1050              Desc  => '[\p{Ll}\p{Lu}\p{Lt}]',
1051              Fuzzy => 0);
1052
1053     ## Any and All are all code points.
1054     my $Any = Table->New(Is    => 'Any',
1055                          Desc  => sprintf("[\\x{0000}-\\x{%X}]",
1056                                           $LastUnicodeCodepoint),
1057                          Fuzzy => 0);
1058     $Any->RawAppendRange(0, $LastUnicodeCodepoint);
1059
1060     New_Alias(Is => 'All', SameAs => 'Any', Fuzzy => 0);
1061
1062     ##
1063     ## Build special properties for Perl's internal case-folding needs:
1064     ##    \p{_CaseIgnorable}
1065     ##    \p{_CanonDCIJ}
1066     ##    \p{_CombAbove}
1067     ## _CombAbove was built above. Others are built here....
1068     ##
1069
1070     ## \p{_CaseIgnorable} is [\p{Mn}\0x00AD\x2010]
1071     New_Prop(Is => '_CaseIgnorable',
1072              Table->Merge($Cat{Mn},
1073                           0x00AD,    #SOFT HYPHEN
1074                           0x2010),   #HYPHEN
1075              Desc  => '(for internal casefolding use)',
1076              Fuzzy => 0);
1077
1078
1079     ## \p{_CanonDCIJ} is fairly complex...
1080     my $CanonCDIJ = Table->New(Is    => '_CanonDCIJ',
1081                                Desc  => '(for internal casefolding use)',
1082                                Fuzzy => 0);
1083     ## It contains the ASCII 'i' and 'j'....
1084     $CanonCDIJ->Append(0x0069); # ASCII ord("i")
1085     $CanonCDIJ->Append(0x006A); # ASCII ord("j")
1086     ## ...and any character with a decomposition that starts with either of
1087     ## those code points, but only if the decomposition does not have any
1088     ## combining character with the "ABOVE" canonical combining class.
1089     for my $code (sort { $a <=> $b} keys %CodeToDeco)
1090     {
1091         ## Need to ensure that all decomposition characters do not have
1092         ## a %HexCodeToComb in %AboveCombClasses.
1093         my $want = 1;
1094         for my $deco_hexcode (split / /, $CodeToDeco{$code})
1095         {
1096             if (exists $_Above_HexCodes{$deco_hexcode}) {
1097                 ## one of the decmposition chars has an ABOVE combination
1098                 ## class, so we're not interested in this one
1099                 $want = 0;
1100                 last;
1101             }
1102         }
1103         if ($want) {
1104             $CanonCDIJ->Append($code);
1105         }
1106     }
1107
1108
1109
1110     ##
1111     ## Now dump the files.
1112     ##
1113     $Name->Write("Name.pl");
1114
1115     {
1116         my @PVA = $HEADER;
1117         foreach my $name (qw (PropertyAlias PA_reverse PropValueAlias
1118                               PVA_reverse PVA_abbr_map)) {
1119             # Should I really jump through typeglob hoops just to avoid a
1120             # symbolic reference? (%{"utf8::$name})
1121             push @PVA, "\n", "\%utf8::$name = (\n",
1122                 simple_dumper (%{$utf8::{$name}}), ");\n";
1123         }
1124         push @PVA, "1;\n";
1125         WriteIfChanged("PVA.pl", @PVA);
1126     }
1127
1128     # $Bidi->Write("Bidirectional.pl");
1129     for (keys %Bidi) {
1130         $Bidi{$_}->Write(
1131             ["lib","bc","$_.pl"],
1132             "BidiClass category '$PropValueAlias{bc}{$_}'"
1133         );
1134     }
1135
1136     $Comb->Write("CombiningClass.pl");
1137     for (keys %{ $PropValueAlias{ccc} }) {
1138         my ($code, $name) = @{ $PropValueAlias{ccc}{$_} };
1139         (my $c = Table->New())->Append($code);
1140         $c->Write(
1141             ["lib","ccc","$_.pl"],
1142             "CombiningClass category '$name'"
1143         );
1144     }
1145
1146     $Deco->Write("Decomposition.pl");
1147     for (keys %DC) {
1148         $DC{$_}->Write(
1149             ["lib","dt","$_.pl"],
1150             "DecompositionType category '$PropValueAlias{dt}{$_}'"
1151         );
1152     }
1153
1154     # $Number->Write("Number.pl");
1155     for (keys %Number) {
1156         $Number{$_}->Write(
1157             ["lib","nt","$_.pl"],
1158             "NumericType category '$PropValueAlias{nt}{$_}'"
1159         );
1160     }
1161
1162     # $General->Write("Category.pl");
1163
1164     for my $to (sort keys %To) {
1165         $To{$to}->Write(["To","$to.pl"]);
1166     }
1167
1168     for (keys %{ $PropValueAlias{gc} }) {
1169         New_Alias(Is => $PropValueAlias{gc}{$_}, SameAs => $_, Fuzzy => 1);
1170     }
1171 }
1172
1173 ##
1174 ## Process LineBreak.txt
1175 ##
1176 sub LineBreak_Txt()
1177 {
1178     if (not open IN, "LineBreak.txt") {
1179         die "$0: LineBreak.txt: $!\n";
1180     }
1181
1182     my $Lbrk = Table->New();
1183     my %Lbrk;
1184
1185     while (<IN>)
1186     {
1187         next unless /^([0-9A-Fa-f]+)(?:\.\.([0-9A-Fa-f]+))?\s*;\s*(\w+)/;
1188
1189         my ($first, $last, $lbrk) = (hex($1), hex($2||""), $3);
1190
1191         $Lbrk->Append($first, $lbrk);
1192
1193         $Lbrk{$lbrk} ||= Table->New();
1194         $Lbrk{$lbrk}->Append($first);
1195
1196         if ($last) {
1197             $Lbrk->Extend($last);
1198             $Lbrk{$lbrk}->Extend($last);
1199         }
1200     }
1201     close IN;
1202
1203     # $Lbrk->Write("Lbrk.pl");
1204
1205
1206     for (keys %Lbrk) {
1207         $Lbrk{$_}->Write(
1208             ["lib","lb","$_.pl"],
1209             "Linebreak category '$PropValueAlias{lb}{$_}'"
1210         );
1211     }
1212 }
1213
1214 ##
1215 ## Process ArabicShaping.txt.
1216 ##
1217 sub ArabicShaping_txt()
1218 {
1219     if (not open IN, "ArabicShaping.txt") {
1220         die "$0: ArabicShaping.txt: $!\n";
1221     }
1222
1223     my $ArabLink      = Table->New();
1224     my $ArabLinkGroup = Table->New();
1225
1226     my %JoinType;
1227
1228     while (<IN>)
1229     {
1230         next unless /^[0-9A-Fa-f]+;/;
1231         s/\s+$//;
1232
1233         my ($hexcode, $name, $link, $linkgroup) = split(/\s*;\s*/);
1234         my $code = hex($hexcode);
1235         $ArabLink->Append($code, $link);
1236         $ArabLinkGroup->Append($code, $linkgroup);
1237
1238         $JoinType{$link} ||= Table->New(Is => "JoinType$link");
1239         $JoinType{$link}->Append($code);
1240     }
1241     close IN;
1242
1243     # $ArabLink->Write("ArabLink.pl");
1244     # $ArabLinkGroup->Write("ArabLnkGrp.pl");
1245
1246
1247     for (keys %JoinType) {
1248         $JoinType{$_}->Write(
1249             ["lib","jt","$_.pl"],
1250             "JoiningType category '$PropValueAlias{jt}{$_}'"
1251         );
1252     }
1253 }
1254
1255 ##
1256 ## Process EastAsianWidth.txt.
1257 ##
1258 sub EastAsianWidth_txt()
1259 {
1260     if (not open IN, "EastAsianWidth.txt") {
1261         die "$0: EastAsianWidth.txt: $!\n";
1262     }
1263
1264     my %EAW;
1265
1266     while (<IN>)
1267     {
1268         next unless /^[0-9A-Fa-f]+(\.\.[0-9A-Fa-f]+)?;/;
1269         s/#.*//;
1270         s/\s+$//;
1271
1272         my ($hexcodes, $pv) = split(/\s*;\s*/);
1273         $EAW{$pv} ||= Table->New(Is => "EastAsianWidth$pv");
1274       my ($start, $end) = split(/\.\./, $hexcodes);
1275       if (defined $end) {
1276         $EAW{$pv}->AppendRange(hex($start), hex($end));
1277       } else {
1278         $EAW{$pv}->Append(hex($start));
1279       }
1280     }
1281     close IN;
1282
1283
1284     for (keys %EAW) {
1285         $EAW{$_}->Write(
1286             ["lib","ea","$_.pl"],
1287             "EastAsianWidth category '$PropValueAlias{ea}{$_}'"
1288         );
1289     }
1290 }
1291
1292 ##
1293 ## Process HangulSyllableType.txt.
1294 ##
1295 sub HangulSyllableType_txt()
1296 {
1297     if (not open IN, "HangulSyllableType.txt") {
1298         die "$0: HangulSyllableType.txt: $!\n";
1299     }
1300
1301     my %HST;
1302
1303     while (<IN>)
1304     {
1305         next unless /^([0-9A-Fa-f]+)(?:\.\.([0-9A-Fa-f]+))?\s*;\s*(\w+)/;
1306         my ($first, $last, $pv) = (hex($1), hex($2||""), $3);
1307
1308         $HST{$pv} ||= Table->New(Is => "HangulSyllableType$pv");
1309         $HST{$pv}->Append($first);
1310
1311         if ($last) { $HST{$pv}->Extend($last) }
1312     }
1313     close IN;
1314
1315     for (keys %HST) {
1316         $HST{$_}->Write(
1317             ["lib","hst","$_.pl"],
1318             "HangulSyllableType category '$PropValueAlias{hst}{$_}'"
1319         );
1320     }
1321 }
1322
1323 ##
1324 ## Process Jamo.txt.
1325 ##
1326 sub Jamo_txt()
1327 {
1328     if (not open IN, "Jamo.txt") {
1329         die "$0: Jamo.txt: $!\n";
1330     }
1331     my $Short = Table->New();
1332
1333     while (<IN>)
1334     {
1335         next unless /^([0-9A-Fa-f]+)\s*;\s*(\w*)/;
1336         my ($code, $short) = (hex($1), $2);
1337
1338         $Short->Append($code, $short);
1339     }
1340     close IN;
1341     # $Short->Write("JamoShort.pl");
1342 }
1343
1344 ##
1345 ## Process Scripts.txt.
1346 ##
1347 sub Scripts_txt()
1348 {
1349     my @ScriptInfo;
1350
1351     if (not open(IN, "Scripts.txt")) {
1352         die "$0: Scripts.txt: $!\n";
1353     }
1354     while (<IN>) {
1355         next unless /^([0-9A-Fa-f]+)(?:\.\.([0-9A-Fa-f]+))?\s*;\s*(.+?)\s*\#/;
1356
1357         # Wait until all the scripts have been read since
1358         # they are not listed in numeric order.
1359         push @ScriptInfo, [ hex($1), hex($2||""), $3 ];
1360     }
1361     close IN;
1362
1363     # Now append the scripts properties in their code point order.
1364
1365     my %Script;
1366     my $Scripts = Table->New();
1367
1368     for my $script (sort { $a->[0] <=> $b->[0] } @ScriptInfo)
1369     {
1370         my ($first, $last, $name) = @$script;
1371         $Scripts->Append($first, $name);
1372
1373         $Script{$name} ||= Table->New(Is    => $name,
1374                                       Desc  => "Script '$name'",
1375                                       Fuzzy => 1);
1376         $Script{$name}->Append($first, $name);
1377
1378         if ($last) {
1379             $Scripts->Extend($last);
1380             $Script{$name}->Extend($last);
1381         }
1382     }
1383
1384     # $Scripts->Write("Scripts.pl");
1385
1386     ## Common is everything not explicitly assigned to a Script
1387     ##
1388     ##    ***shouldn't this be intersected with \p{Assigned}? ******
1389     ##
1390     New_Prop(Is => 'Common',
1391              $Scripts->Invert,
1392              Desc  => 'Pseudo-Script of codepoints not in other Unicode scripts',
1393              Fuzzy => 1);
1394 }
1395
1396 ##
1397 ## Given a name like "Close Punctuation", return a regex (that when applied
1398 ## with /i) matches any valid form of that name (e.g. "ClosePunctuation",
1399 ## "Close-Punctuation", etc.)
1400 ##
1401 ## Accept any space, dash, or underbar where in the official name there is
1402 ## space or a dash (or underbar, but there never is).
1403 ##
1404 ##
1405 sub NameToRegex($)
1406 {
1407     my $Name = shift;
1408     $Name =~ s/[- _]/(?:[-_]|\\s+)?/g;
1409     return $Name;
1410 }
1411
1412 ##
1413 ## Process Blocks.txt.
1414 ##
1415 sub Blocks_txt()
1416 {
1417     my $Blocks = Table->New();
1418     my %Blocks;
1419
1420     if (not open IN, "Blocks.txt") {
1421         die "$0: Blocks.txt: $!\n";
1422     }
1423
1424     while (<IN>)
1425     {
1426         #next if not /Private Use$/;
1427         next if not /^([0-9A-Fa-f]+)\.\.([0-9A-Fa-f]+)\s*;\s*(.+?)\s*$/;
1428
1429         my ($first, $last, $name) = (hex($1), hex($2), $3);
1430
1431         $Blocks->Append($first, $name);
1432
1433         $Blocks{$name} ||= Table->New(In    => $name,
1434                                       Desc  => "Block '$name'",
1435                                       Fuzzy => 1);
1436         $Blocks{$name}->Append($first, $name);
1437
1438         if ($last and $last != $first) {
1439             $Blocks->Extend($last);
1440             $Blocks{$name}->Extend($last);
1441         }
1442     }
1443     close IN;
1444
1445     # $Blocks->Write("Blocks.pl");
1446 }
1447
1448 ##
1449 ## Read in the PropList.txt.  It contains extended properties not
1450 ## listed in the UnicodeData.txt, such as 'Other_Alphabetic':
1451 ## alphabetic but not of the general category L; many modifiers
1452 ## belong to this extended property category: while they are not
1453 ## alphabets, they are alphabetic in nature.
1454 ##
1455 sub PropList_txt()
1456 {
1457     my @PropInfo;
1458
1459     if (not open IN, "PropList.txt") {
1460         die "$0: PropList.txt: $!\n";
1461     }
1462
1463     while (<IN>)
1464     {
1465         next unless /^([0-9A-Fa-f]+)(?:\.\.([0-9A-Fa-f]+))?\s*;\s*(.+?)\s*\#/;
1466
1467         # Wait until all the extended properties have been read since
1468         # they are not listed in numeric order.
1469         push @PropInfo, [ hex($1), hex($2||""), $3 ];
1470     }
1471     close IN;
1472
1473     # Now append the extended properties in their code point order.
1474     my $Props = Table->New();
1475     my %Prop;
1476
1477     for my $prop (sort { $a->[0] <=> $b->[0] } @PropInfo)
1478     {
1479         my ($first, $last, $name) = @$prop;
1480         $Props->Append($first, $name);
1481
1482         $Prop{$name} ||= Table->New(Is    => $name,
1483                                     Desc  => "Extended property '$name'",
1484                                     Fuzzy => 1);
1485         $Prop{$name}->Append($first, $name);
1486
1487         if ($last) {
1488             $Props->Extend($last);
1489             $Prop{$name}->Extend($last);
1490         }
1491     }
1492
1493     for (keys %Prop) {
1494         (my $file = $PA_reverse{$_}) =~ tr/_//d;
1495         # XXX I'm assuming that the names from %Prop don't suffer 8.3 clashes.
1496         $BaseNames{lc $file}++;
1497         $Prop{$_}->Write(
1498             ["lib","gc_sc","$file.pl"],
1499             "Binary property '$_'"
1500         );
1501     }
1502
1503     # Alphabetic is L and Other_Alphabetic.
1504     New_Prop(Is    => 'Alphabetic',
1505              Table->Merge($Cat{L}, $Prop{Other_Alphabetic}),
1506              Desc  => '[\p{L}\p{OtherAlphabetic}]', # use canonical names here
1507              Fuzzy => 1);
1508
1509     # Lowercase is Ll and Other_Lowercase.
1510     New_Prop(Is    => 'Lowercase',
1511              Table->Merge($Cat{Ll}, $Prop{Other_Lowercase}),
1512              Desc  => '[\p{Ll}\p{OtherLowercase}]', # use canonical names here
1513              Fuzzy => 1);
1514
1515     # Uppercase is Lu and Other_Uppercase.
1516     New_Prop(Is => 'Uppercase',
1517              Table->Merge($Cat{Lu}, $Prop{Other_Uppercase}),
1518              Desc  => '[\p{Lu}\p{Other_Uppercase}]', # use canonical names here
1519              Fuzzy => 1);
1520
1521     # Math is Sm and Other_Math.
1522     New_Prop(Is => 'Math',
1523              Table->Merge($Cat{Sm}, $Prop{Other_Math}),
1524              Desc  => '[\p{Sm}\p{OtherMath}]', # use canonical names here
1525              Fuzzy => 1);
1526
1527     # ID_Start is Ll, Lu, Lt, Lm, Lo, and Nl.
1528     New_Prop(Is => 'ID_Start',
1529              Table->Merge(@Cat{qw[Ll Lu Lt Lm Lo Nl]}),
1530              Desc  => '[\p{Ll}\p{Lu}\p{Lt}\p{Lm}\p{Lo}\p{Nl}]',
1531              Fuzzy => 1);
1532
1533     # ID_Continue is ID_Start, Mn, Mc, Nd, and Pc.
1534     New_Prop(Is => 'ID_Continue',
1535              Table->Merge(@Cat{qw[Ll Lu Lt Lm Lo Nl Mn Mc Nd Pc ]}),
1536              Desc  => '[\p{ID_Start}\p{Mn}\p{Mc}\p{Nd}\p{Pc}]',
1537              Fuzzy => 1);
1538 }
1539
1540
1541 ##
1542 ## These are used in:
1543 ##   MakePropTestScript()
1544 ##   WriteAllMappings()
1545 ## for making the test script.
1546 ##
1547 my %FuzzyNameToTest;
1548 my %ExactNameToTest;
1549
1550
1551 ## This used only for making the test script
1552 sub GenTests($$$$)
1553 {
1554     my $FH = shift;
1555     my $Prop = shift;
1556     my $MatchCode = shift;
1557     my $FailCode = shift;
1558
1559     if (defined $MatchCode) {
1560         printf $FH qq/Expect(1, "\\x{%04X}", '\\p{$Prop}' );\n/, $MatchCode;
1561         printf $FH qq/Expect(0, "\\x{%04X}", '\\p{^$Prop}');\n/, $MatchCode;
1562         printf $FH qq/Expect(0, "\\x{%04X}", '\\P{$Prop}' );\n/, $MatchCode;
1563         printf $FH qq/Expect(1, "\\x{%04X}", '\\P{^$Prop}');\n/, $MatchCode;
1564     }
1565     if (defined $FailCode) {
1566         printf $FH qq/Expect(0, "\\x{%04X}", '\\p{$Prop}' );\n/, $FailCode;
1567         printf $FH qq/Expect(1, "\\x{%04X}", '\\p{^$Prop}');\n/, $FailCode;
1568         printf $FH qq/Expect(1, "\\x{%04X}", '\\P{$Prop}' );\n/, $FailCode;
1569         printf $FH qq/Expect(0, "\\x{%04X}", '\\P{^$Prop}');\n/, $FailCode;
1570     }
1571 }
1572
1573 ## This used only for making the test script
1574 sub ExpectError($$)
1575 {
1576     my $FH = shift;
1577     my $prop = shift;
1578
1579     print $FH qq/Error('\\p{$prop}');\n/;
1580     print $FH qq/Error('\\P{$prop}');\n/;
1581 }
1582
1583 ## This used only for making the test script
1584 my @GoodSeps = (
1585                 " ",
1586                 "-",
1587                 " \t ",
1588                 "",
1589                 "",
1590                 "_",
1591                );
1592 my @BadSeps = (
1593                "--",
1594                "__",
1595                " _",
1596                "/"
1597               );
1598
1599 ## This used only for making the test script
1600 sub RandomlyFuzzifyName($;$)
1601 {
1602     my $Name = shift;
1603     my $WantError = shift;  ## if true, make an error
1604
1605     my @parts;
1606     for my $part (split /[-\s_]+/, $Name)
1607     {
1608         if (@parts) {
1609             if ($WantError and rand() < 0.3) {
1610                 push @parts, $BadSeps[rand(@BadSeps)];
1611                 $WantError = 0;
1612             } else {
1613                 push @parts, $GoodSeps[rand(@GoodSeps)];
1614             }
1615         }
1616         my $switch = int rand(4);
1617         if ($switch == 0) {
1618             push @parts, uc $part;
1619         } elsif ($switch == 1) {
1620             push @parts, lc $part;
1621         } elsif ($switch == 2) {
1622             push @parts, ucfirst $part;
1623         } else {
1624             push @parts, $part;
1625         }
1626     }
1627     my $new = join('', @parts);
1628
1629     if ($WantError) {
1630         if (rand() >= 0.5) {
1631             $new .= $BadSeps[rand(@BadSeps)];
1632         } else {
1633             $new = $BadSeps[rand(@BadSeps)] . $new;
1634         }
1635     }
1636     return $new;
1637 }
1638
1639 ## This used only for making the test script
1640 sub MakePropTestScript()
1641 {
1642     ## this written directly -- it's huge.
1643     force_unlink ("TestProp.pl");
1644     if (not open OUT, ">TestProp.pl") {
1645         die "$0: TestProp.pl: $!\n";
1646     }
1647     print OUT <DATA>;
1648
1649     while (my ($Name, $Table) = each %ExactNameToTest)
1650     {
1651         GenTests(*OUT, $Name, $Table->ValidCode, $Table->InvalidCode);
1652         ExpectError(*OUT, uc $Name) if uc $Name ne $Name;
1653         ExpectError(*OUT, lc $Name) if lc $Name ne $Name;
1654     }
1655
1656
1657     while (my ($Name, $Table) = each %FuzzyNameToTest)
1658     {
1659         my $Orig  = $CanonicalToOrig{$Name};
1660         my %Names = (
1661                      $Name => 1,
1662                      $Orig => 1,
1663                      RandomlyFuzzifyName($Orig) => 1
1664                     );
1665
1666         for my $N (keys %Names) {
1667             GenTests(*OUT, $N, $Table->ValidCode, $Table->InvalidCode);
1668         }
1669
1670         ExpectError(*OUT, RandomlyFuzzifyName($Orig, 'ERROR'));
1671     }
1672
1673     print OUT "Finished();\n";
1674     close OUT;
1675 }
1676
1677
1678 ##
1679 ## These are used only in:
1680 ##   RegisterFileForName()
1681 ##   WriteAllMappings()
1682 ##
1683 my %Exact;      ## will become %utf8::Exact;
1684 my %Canonical;  ## will become %utf8::Canonical;
1685 my %CaComment;  ## Comment for %Canonical entry of same key
1686
1687 ##
1688 ## Given info about a name and a datafile that it should be associated with,
1689 ## register that assocation in %Exact and %Canonical.
1690 sub RegisterFileForName($$$$)
1691 {
1692     my $Type     = shift;
1693     my $Name     = shift;
1694     my $IsFuzzy  = shift;
1695     my $filename = shift;
1696
1697     ##
1698     ## Now in details for the mapping. $Type eq 'Is' has the
1699     ## Is removed, as it will be removed in utf8_heavy when this
1700     ## data is being checked. In keeps its "In", but a second
1701     ## sans-In record is written if it doesn't conflict with
1702     ## anything already there.
1703     ##
1704     if (not $IsFuzzy)
1705     {
1706         if ($Type eq 'Is') {
1707             die "oops[$Name]" if $Exact{$Name};
1708             $Exact{$Name} = $filename;
1709         } else {
1710             die "oops[$Type$Name]" if $Exact{"$Type$Name"};
1711             $Exact{"$Type$Name"} = $filename;
1712             $Exact{$Name} = $filename if not $Exact{$Name};
1713         }
1714     }
1715     else
1716     {
1717         my $CName = lc $Name;
1718         if ($Type eq 'Is') {
1719             die "oops[$CName]" if $Canonical{$CName};
1720             $Canonical{$CName} = $filename;
1721             $CaComment{$CName} = $Name if $Name =~ tr/A-Z// >= 2;
1722         } else {
1723             die "oops[$Type$CName]" if $Canonical{lc "$Type$CName"};
1724             $Canonical{lc "$Type$CName"} = $filename;
1725             $CaComment{lc "$Type$CName"} = "$Type$Name";
1726             if (not $Canonical{$CName}) {
1727                 $Canonical{$CName} = $filename;
1728                 $CaComment{$CName} = "$Type$Name";
1729             }
1730         }
1731     }
1732 }
1733
1734 ##
1735 ## Writes the info accumulated in
1736 ##
1737 ##       %TableInfo;
1738 ##       %FuzzyNames;
1739 ##       %AliasInfo;
1740 ##
1741 ##
1742 sub WriteAllMappings()
1743 {
1744     my @MAP;
1745
1746     ## 'Is' *MUST* come first, so its names have precidence over 'In's
1747     for my $Type ('Is', 'In')
1748     {
1749         my %RawNameToFile; ## a per-$Type cache
1750
1751         for my $Name (sort {length $a <=> length $b} keys %{$TableInfo{$Type}})
1752         {
1753             ## Note: $Name is already canonical
1754             my $Table   = $TableInfo{$Type}->{$Name};
1755             my $IsFuzzy = $FuzzyNames{$Type}->{$Name};
1756
1757             ## Need an 8.3 safe filename (which means "an 8 safe" $filename)
1758             my $filename;
1759             {
1760                 ## 'Is' items lose 'Is' from the basename.
1761                 $filename = $Type eq 'Is' ?
1762                     ($PVA_reverse{sc}{$Name} || $Name) :
1763                     "$Type$Name";
1764
1765                 $filename =~ s/[^\w_]+/_/g; # "L&" -> "L_"
1766                 substr($filename, 8) = '' if length($filename) > 8;
1767
1768                 ##
1769                 ## Make sure the basename doesn't conflict with something we
1770                 ## might have already written. If we have, say,
1771                 ##     InGreekExtended1
1772                 ##     InGreekExtended2
1773                 ## they become
1774                 ##     InGreekE
1775                 ##     InGreek2
1776                 ##
1777                 while (my $num = $BaseNames{lc $filename}++)
1778                 {
1779                     $num++; ## so basenames with numbers start with '2', which
1780                             ## just looks more natural.
1781                     ## Want to append $num, but if it'll make the basename longer
1782                     ## than 8 characters, pre-truncate $filename so that the result
1783                     ## is acceptable.
1784                     my $delta = length($filename) + length($num) - 8;
1785                     if ($delta > 0) {
1786                         substr($filename, -$delta) = $num;
1787                     } else {
1788                         $filename .= $num;
1789                     }
1790                 }
1791             };
1792
1793             ##
1794             ## Construct a nice comment to add to the file, and build data
1795             ## for the "./Properties" file along the way.
1796             ##
1797             my $Comment;
1798             {
1799                 my $Desc = $TableDesc{$Type}->{$Name} || "";
1800                 ## get list of names this table is reference by
1801                 my @Supported = $Name;
1802                 while (my ($Orig, $Alias) = each %{ $AliasInfo{$Type} })
1803                 {
1804                     if ($Orig eq $Name) {
1805                         push @Supported, $Alias;
1806                     }
1807                 }
1808
1809                 my $TypeToShow = $Type eq 'Is' ? "" : $Type;
1810                 my $OrigProp;
1811
1812                 $Comment = "This file supports:\n";
1813                 for my $N (@Supported)
1814                 {
1815                     my $IsFuzzy = $FuzzyNames{$Type}->{$N};
1816                     my $Prop    = "\\p{$TypeToShow$Name}";
1817                     $OrigProp = $Prop if not $OrigProp; #cache for aliases
1818                     if ($IsFuzzy) {
1819                         $Comment .= "\t$Prop (and fuzzy permutations)\n";
1820                     } else {
1821                         $Comment .= "\t$Prop\n";
1822                     }
1823                     my $MyDesc = ($N eq $Name) ? $Desc : "Alias for $OrigProp ($Desc)";
1824
1825                     push @MAP, sprintf("%s %-42s %s\n",
1826                                        $IsFuzzy ? '*' : ' ', $Prop, $MyDesc);
1827                 }
1828                 if ($Desc) {
1829                     $Comment .= "\nMeaning: $Desc\n";
1830                 }
1831
1832             }
1833             ##
1834             ## Okay, write the file...
1835             ##
1836             $Table->Write(["lib","gc_sc","$filename.pl"], $Comment);
1837
1838             ## and register it
1839             $RawNameToFile{$Name} = $filename;
1840             RegisterFileForName($Type => $Name, $IsFuzzy, $filename);
1841
1842             if ($IsFuzzy)
1843             {
1844                 my $CName = CanonicalName($Type . '_'. $Name);
1845                 $FuzzyNameToTest{$Name}  = $Table if !$FuzzyNameToTest{$Name};
1846                 $FuzzyNameToTest{$CName} = $Table if !$FuzzyNameToTest{$CName};
1847             } else {
1848                 $ExactNameToTest{$Name} = $Table;
1849             }
1850
1851         }
1852
1853         ## Register aliase info
1854         for my $Name (sort {length $a <=> length $b} keys %{$AliasInfo{$Type}})
1855         {
1856             my $Alias    = $AliasInfo{$Type}->{$Name};
1857             my $IsFuzzy  = $FuzzyNames{$Type}->{$Alias};
1858             my $filename = $RawNameToFile{$Name};
1859             die "oops [$Alias]->[$Name]" if not $filename;
1860             RegisterFileForName($Type => $Alias, $IsFuzzy, $filename);
1861
1862             my $Table = $TableInfo{$Type}->{$Name};
1863             die "oops" if not $Table;
1864             if ($IsFuzzy)
1865             {
1866                 my $CName = CanonicalName($Type .'_'. $Alias);
1867                 $FuzzyNameToTest{$Alias} = $Table if !$FuzzyNameToTest{$Alias};
1868                 $FuzzyNameToTest{$CName} = $Table if !$FuzzyNameToTest{$CName};
1869             } else {
1870                 $ExactNameToTest{$Alias} = $Table;
1871             }
1872         }
1873     }
1874
1875     ##
1876     ## Write out the property list
1877     ##
1878     {
1879         my @OUT = (
1880                    "##\n",
1881                    "## This file created by $0\n",
1882                    "## List of built-in \\p{...}/\\P{...} properties.\n",
1883                    "##\n",
1884                    "## '*' means name may be 'fuzzy'\n",
1885                    "##\n\n",
1886                    sort { substr($a,2) cmp substr($b, 2) } @MAP,
1887                   );
1888         WriteIfChanged('Properties', @OUT);
1889     }
1890
1891     use Text::Tabs ();  ## using this makes the files about half the size
1892
1893     ## Write Exact.pl
1894     {
1895         my @OUT = (
1896                    $HEADER,
1897                    "##\n",
1898                    "## Data in this file used by ../utf8_heavy.pl\n",
1899                    "##\n\n",
1900                    "## Mapping from name to filename in ./lib/gc_sc\n",
1901                    "%utf8::Exact = (\n",
1902                   );
1903
1904         $Exact{InGreek} = 'InGreekA';  # this is evil kludge
1905         for my $Name (sort keys %Exact)
1906         {
1907             my $File = $Exact{$Name};
1908             $Name = $Name =~ m/\W/ ? qq/'$Name'/ : " $Name ";
1909             my $Text = sprintf("%-15s => %s,\n", $Name, qq/'$File'/);
1910             push @OUT, Text::Tabs::unexpand($Text);
1911         }
1912         push @OUT, ");\n1;\n";
1913
1914         WriteIfChanged('Exact.pl', @OUT);
1915     }
1916
1917     ## Write Canonical.pl
1918     {
1919         my @OUT = (
1920                    $HEADER,
1921                    "##\n",
1922                    "## Data in this file used by ../utf8_heavy.pl\n",
1923                    "##\n\n",
1924                    "## Mapping from lc(canonical name) to filename in ./lib\n",
1925                    "%utf8::Canonical = (\n",
1926                   );
1927         my $Trail = ""; ## used just to keep the spacing pretty
1928         for my $Name (sort keys %Canonical)
1929         {
1930             my $File = $Canonical{$Name};
1931             if ($CaComment{$Name}) {
1932                 push @OUT, "\n" if not $Trail;
1933                 push @OUT, " # $CaComment{$Name}\n";
1934                 $Trail = "\n";
1935             } else {
1936                 $Trail = "";
1937             }
1938             $Name = $Name =~ m/\W/ ? qq/'$Name'/ : " $Name ";
1939             my $Text = sprintf("  %-41s => %s,\n$Trail", $Name, qq/'$File'/);
1940             push @OUT, Text::Tabs::unexpand($Text);
1941         }
1942         push @OUT, ");\n1\n";
1943         WriteIfChanged('Canonical.pl', @OUT);
1944     }
1945
1946     MakePropTestScript() if $MakeTestScript;
1947 }
1948
1949
1950 sub SpecialCasing_txt()
1951 {
1952     #
1953     # Read in the special cases.
1954     #
1955
1956     my %CaseInfo;
1957
1958     if (not open IN, "SpecialCasing.txt") {
1959         die "$0: SpecialCasing.txt: $!\n";
1960     }
1961     while (<IN>) {
1962         next unless /^[0-9A-Fa-f]+;/;
1963         s/\#.*//;
1964         s/\s+$//;
1965
1966         my ($code, $lower, $title, $upper, $condition) = split(/\s*;\s*/);
1967
1968         if ($condition) { # not implemented yet
1969             print "# SKIPPING $_\n" if $Verbose;
1970             next;
1971         }
1972
1973         # Wait until all the special cases have been read since
1974         # they are not listed in numeric order.
1975         my $ix = hex($code);
1976         push @{$CaseInfo{Lower}}, [ $ix, $code, $lower ]
1977             unless $code eq $lower;
1978         push @{$CaseInfo{Title}}, [ $ix, $code, $title ]
1979             unless $code eq $title;
1980         push @{$CaseInfo{Upper}}, [ $ix, $code, $upper ]
1981             unless $code eq $upper;
1982     }
1983     close IN;
1984
1985     # Now write out the special cases properties in their code point order.
1986     # Prepend them to the To/{Upper,Lower,Title}.pl.
1987
1988     for my $case (qw(Lower Title Upper))
1989     {
1990         my $NormalCase = do "To/$case.pl" || die "$0: $@\n";
1991
1992         my @OUT =
1993             (
1994              $HEADER, "\n",
1995              "# The key UTF-8 _bytes_, the value UTF-8 (speed hack)\n",
1996              "%utf8::ToSpec$case =\n(\n",
1997             );
1998
1999         for my $prop (sort { $a->[0] <=> $b->[0] } @{$CaseInfo{$case}}) {
2000             my ($ix, $code, $to) = @$prop;
2001             my $tostr =
2002               join "", map { sprintf "\\x{%s}", $_ } split ' ', $to;
2003             push @OUT, sprintf qq["%s" => "$tostr",\n], join("", map { sprintf "\\x%02X", $_ } unpack("U0C*", pack("U", $ix)));
2004             # Remove any single-character mappings for
2005             # the same character since we are going for
2006             # the special casing rules.
2007             $NormalCase =~ s/^$code\t\t\w+\n//m;
2008         }
2009         push @OUT, (
2010                     ");\n\n",
2011                     "return <<'END';\n",
2012                     $NormalCase,
2013                     "END\n"
2014                     );
2015         WriteIfChanged(["To","$case.pl"], @OUT);
2016     }
2017 }
2018
2019 #
2020 # Read in the case foldings.
2021 #
2022 # We will do full case folding, C + F + I (see CaseFolding.txt).
2023 #
2024 sub CaseFolding_txt()
2025 {
2026     if (not open IN, "CaseFolding.txt") {
2027         die "$0: CaseFolding.txt: $!\n";
2028     }
2029
2030     my $Fold = Table->New();
2031     my %Fold;
2032
2033     while (<IN>) {
2034         # Skip status 'S', simple case folding
2035         next unless /^([0-9A-Fa-f]+)\s*;\s*([CFI])\s*;\s*([0-9A-Fa-f]+(?: [0-9A-Fa-f]+)*)\s*;/;
2036
2037         my ($code, $status, $fold) = (hex($1), $2, $3);
2038
2039         if ($status eq 'C') { # Common: one-to-one folding
2040             # No append() since several codes may fold into one.
2041             $Fold->RawAppendRange($code, $code, $fold);
2042         } else { # F: full, or I: dotted uppercase I -> dotless lowercase I
2043             $Fold{$code} = $fold;
2044         }
2045     }
2046     close IN;
2047
2048     $Fold->Write("To/Fold.pl");
2049
2050     #
2051     # Prepend the special foldings to the common foldings.
2052     #
2053     my $CommonFold = do "To/Fold.pl" || die "$0: To/Fold.pl: $!\n";
2054
2055     my @OUT =
2056         (
2057          $HEADER, "\n",
2058          "#  The ke UTF-8 _bytes_, the value UTF-8 (speed hack)\n",
2059          "%utf8::ToSpecFold =\n(\n",
2060         );
2061     for my $code (sort { $a <=> $b } keys %Fold) {
2062         my $foldstr =
2063           join "", map { sprintf "\\x{%s}", $_ } split ' ', $Fold{$code};
2064         push @OUT, sprintf qq["%s" => "$foldstr",\n], join("", map { sprintf "\\x%02X", $_ } unpack("U0C*", pack("U", $code)));
2065     }
2066     push @OUT, (
2067                 ");\n\n",
2068                 "return <<'END';\n",
2069                 $CommonFold,
2070                 "END\n",
2071                );
2072
2073     WriteIfChanged(["To","Fold.pl"], @OUT);
2074 }
2075
2076 ## Do it....
2077
2078 Build_Aliases();
2079 UnicodeData_Txt();
2080 PropList_txt();
2081
2082 Scripts_txt();
2083 Blocks_txt();
2084
2085 WriteAllMappings();
2086
2087 LineBreak_Txt();
2088 ArabicShaping_txt();
2089 EastAsianWidth_txt();
2090 HangulSyllableType_txt();
2091 Jamo_txt();
2092 SpecialCasing_txt();
2093 CaseFolding_txt();
2094
2095 if ( $FileList and $MakeList ) {
2096     
2097     print "Updating '$FileList'\n"
2098         if ($Verbose);
2099         
2100     open my $ofh,">",$FileList 
2101         or die "Can't write to '$FileList':$!";
2102     print $ofh <<"EOFHEADER";
2103 #
2104 # mktables.lst -- File list for mktables.
2105 #
2106 #   Autogenerated on @{[scalar localtime]}
2107 #
2108 # - First section is input files
2109 #   (mktables itself is automatically included)
2110 # - Section seperator is /^=+\$/
2111 # - Second section is a list of output files.
2112 # - Lines matching /^\\s*#/ are treated as comments
2113 #   which along with blank lines are ignored.
2114 #
2115
2116 # Input files:
2117
2118 EOFHEADER
2119     my @input=("version",glob('*.txt'));
2120     print $ofh "$_\n" for 
2121         @input,
2122         "\n=================================\n",
2123         "# Output files:\n",
2124         # special files
2125         "Properties";
2126         
2127     
2128     require File::Find;
2129     my $count=0;
2130     File::Find::find({
2131         no_chdir=>1,
2132         wanted=>sub {
2133           if (/\.pl$/) {
2134             s!^\./!!;
2135             print $ofh "$_\n";
2136             $count++;
2137           }
2138         },
2139     },"."); 
2140     
2141     print $ofh "\n# ",scalar(@input)," input files\n",
2142                "# ",scalar($count+1)," output files\n\n",
2143                "# End list\n";  
2144     close $ofh 
2145         or warn "Failed to close $ofh: $!";
2146     
2147     print "Filelist has ",scalar(@input)," input files and ",
2148           scalar($count+1)," output files\n"
2149         if $Verbose;
2150 }
2151 print "All done\n" if $Verbose;
2152 exit(0);
2153
2154 ## TRAILING CODE IS USED BY MakePropTestScript()
2155 __DATA__
2156 use strict;
2157 use warnings;
2158
2159 my $Tests = 0;
2160 my $Fails = 0;
2161
2162 sub Expect($$$)
2163 {
2164     my $Expect = shift;
2165     my $String = shift;
2166     my $Regex  = shift;
2167     my $Line   = (caller)[2];
2168
2169     $Tests++;
2170     my $RegObj;
2171     my $result = eval {
2172         $RegObj = qr/$Regex/;
2173         $String =~ $RegObj ? 1 : 0
2174     };
2175     
2176     if (not defined $result) {
2177         print "couldn't compile /$Regex/ on $0 line $Line: $@\n";
2178         $Fails++;
2179     } elsif ($result ^ $Expect) {
2180         print "bad result (expected $Expect) on $0 line $Line: $@\n";
2181         $Fails++;
2182     }
2183 }
2184
2185 sub Error($)
2186 {
2187     my $Regex  = shift;
2188     $Tests++;
2189     if (eval { 'x' =~ qr/$Regex/; 1 }) {
2190         $Fails++;
2191         my $Line = (caller)[2];
2192         print "expected error for /$Regex/ on $0 line $Line: $@\n";
2193     }
2194 }
2195
2196 sub Finished()
2197 {
2198    if ($Fails == 0) {
2199       print "All $Tests tests passed.\n";
2200       exit(0);
2201    } else {
2202       print "$Tests tests, $Fails failed!\n";
2203       exit(-1);
2204    }
2205 }