3 # !!!!!!!!!!!!!! IF YOU MODIFY THIS FILE !!!!!!!!!!!!!!!!!!!!!!!!!
4 # Any files created or read by this program should be listed in 'mktables.lst'
5 # Use -makelist to regenerate it.
7 # There was an attempt when this was first rewritten to make it 5.8
8 # compatible, but that has now been abandoned, and newer constructs are used
12 BEGIN { # Get the time the script started running; do it at compilation to
13 # get it as close as possible
29 sub DEBUG () { 0 } # Set to 0 for production; 1 for development
30 my $debugging_build = $Config{"ccflags"} =~ /-DDEBUGGING/;
32 sub NON_ASCII_PLATFORM { ord("A") != 65 }
34 ##########################################################################
36 # mktables -- create the runtime Perl Unicode files (lib/unicore/.../*.pl),
37 # from the Unicode database files (lib/unicore/.../*.txt), It also generates
38 # a pod file and .t files, depending on option parameters.
40 # The structure of this file is:
41 # First these introductory comments; then
42 # code needed for everywhere, such as debugging stuff; then
43 # code to handle input parameters; then
44 # data structures likely to be of external interest (some of which depend on
45 # the input parameters, so follows them; then
46 # more data structures and subroutine and package (class) definitions; then
47 # the small actual loop to process the input files and finish up; then
48 # a __DATA__ section, for the .t tests
50 # This program works on all releases of Unicode so far. The outputs have been
51 # scrutinized most intently for release 5.1. The others have been checked for
52 # somewhat more than just sanity. It can handle all non-provisional Unicode
53 # character properties in those releases.
55 # This program is mostly about Unicode character (or code point) properties.
56 # A property describes some attribute or quality of a code point, like if it
57 # is lowercase or not, its name, what version of Unicode it was first defined
58 # in, or what its uppercase equivalent is. Unicode deals with these disparate
59 # possibilities by making all properties into mappings from each code point
60 # into some corresponding value. In the case of it being lowercase or not,
61 # the mapping is either to 'Y' or 'N' (or various synonyms thereof). Each
62 # property maps each Unicode code point to a single value, called a "property
63 # value". (Some more recently defined properties, map a code point to a set
66 # When using a property in a regular expression, what is desired isn't the
67 # mapping of the code point to its property's value, but the reverse (or the
68 # mathematical "inverse relation"): starting with the property value, "Does a
69 # code point map to it?" These are written in a "compound" form:
70 # \p{property=value}, e.g., \p{category=punctuation}. This program generates
71 # files containing the lists of code points that map to each such regular
72 # expression property value, one file per list
74 # There is also a single form shortcut that Perl adds for many of the commonly
75 # used properties. This happens for all binary properties, plus script,
76 # general_category, and block properties.
78 # Thus the outputs of this program are files. There are map files, mostly in
79 # the 'To' directory; and there are list files for use in regular expression
80 # matching, all in subdirectories of the 'lib' directory, with each
81 # subdirectory being named for the property that the lists in it are for.
82 # Bookkeeping, test, and documentation files are also generated.
84 my $matches_directory = 'lib'; # Where match (\p{}) files go.
85 my $map_directory = 'To'; # Where map files go.
89 # The major data structures of this program are Property, of course, but also
90 # Table. There are two kinds of tables, very similar to each other.
91 # "Match_Table" is the data structure giving the list of code points that have
92 # a particular property value, mentioned above. There is also a "Map_Table"
93 # data structure which gives the property's mapping from code point to value.
94 # There are two structures because the match tables need to be combined in
95 # various ways, such as constructing unions, intersections, complements, etc.,
96 # and the map ones don't. And there would be problems, perhaps subtle, if
97 # a map table were inadvertently operated on in some of those ways.
98 # The use of separate classes with operations defined on one but not the other
99 # prevents accidentally confusing the two.
101 # At the heart of each table's data structure is a "Range_List", which is just
102 # an ordered list of "Ranges", plus ancillary information, and methods to
103 # operate on them. A Range is a compact way to store property information.
104 # Each range has a starting code point, an ending code point, and a value that
105 # is meant to apply to all the code points between the two end points,
106 # inclusive. For a map table, this value is the property value for those
107 # code points. Two such ranges could be written like this:
108 # 0x41 .. 0x5A, 'Upper',
109 # 0x61 .. 0x7A, 'Lower'
111 # Each range also has a type used as a convenience to classify the values.
112 # Most ranges in this program will be Type 0, or normal, but there are some
113 # ranges that have a non-zero type. These are used only in map tables, and
114 # are for mappings that don't fit into the normal scheme of things. Mappings
115 # that require a hash entry to communicate with utf8.c are one example;
116 # another example is mappings for charnames.pm to use which indicate a name
117 # that is algorithmically determinable from its code point (and the reverse).
118 # These are used to significantly compact these tables, instead of listing
119 # each one of the tens of thousands individually.
121 # In a match table, the value of a range is irrelevant (and hence the type as
122 # well, which will always be 0), and arbitrarily set to the null string.
123 # Using the example above, there would be two match tables for those two
124 # entries, one named Upper would contain the 0x41..0x5A range, and the other
125 # named Lower would contain 0x61..0x7A.
127 # Actually, there are two types of range lists, "Range_Map" is the one
128 # associated with map tables, and "Range_List" with match tables.
129 # Again, this is so that methods can be defined on one and not the others so
130 # as to prevent operating on them in incorrect ways.
132 # Eventually, most tables are written out to files to be read by utf8_heavy.pl
133 # in the perl core. All tables could in theory be written, but some are
134 # suppressed because there is no current practical use for them. It is easy
135 # to change which get written by changing various lists that are near the top
136 # of the actual code in this file. The table data structures contain enough
137 # ancillary information to allow them to be treated as separate entities for
138 # writing, such as the path to each one's file. There is a heading in each
139 # map table that gives the format of its entries, and what the map is for all
140 # the code points missing from it. (This allows tables to be more compact.)
142 # The Property data structure contains one or more tables. All properties
143 # contain a map table (except the $perl property which is a
144 # pseudo-property containing only match tables), and any properties that
145 # are usable in regular expression matches also contain various matching
146 # tables, one for each value the property can have. A binary property can
147 # have two values, True and False (or Y and N, which are preferred by Unicode
148 # terminology). Thus each of these properties will have a map table that
149 # takes every code point and maps it to Y or N (but having ranges cuts the
150 # number of entries in that table way down), and two match tables, one
151 # which has a list of all the code points that map to Y, and one for all the
152 # code points that map to N. (For each binary property, a third table is also
153 # generated for the pseudo Perl property. It contains the identical code
154 # points as the Y table, but can be written in regular expressions, not in the
155 # compound form, but in a "single" form like \p{IsUppercase}.) Many
156 # properties are binary, but some properties have several possible values,
157 # some have many, and properties like Name have a different value for every
158 # named code point. Those will not, unless the controlling lists are changed,
159 # have their match tables written out. But all the ones which can be used in
160 # regular expression \p{} and \P{} constructs will. Prior to 5.14, generally
161 # a property would have either its map table or its match tables written but
162 # not both. Again, what gets written is controlled by lists which can easily
163 # be changed. Starting in 5.14, advantage was taken of this, and all the map
164 # tables needed to reconstruct the Unicode db are now written out, while
165 # suppressing the Unicode .txt files that contain the data. Our tables are
166 # much more compact than the .txt files, so a significant space savings was
167 # achieved. Also, tables are not written out that are trivially derivable
168 # from tables that do get written. So, there typically is no file containing
169 # the code points not matched by a binary property (the table for \P{} versus
170 # lowercase \p{}), since you just need to invert the True table to get the
173 # Properties have a 'Type', like 'binary', or 'string', or 'enum' depending on
174 # how many match tables there are and the content of the maps. This 'Type' is
175 # different than a range 'Type', so don't get confused by the two concepts
176 # having the same name.
178 # For information about the Unicode properties, see Unicode's UAX44 document:
180 my $unicode_reference_url = 'http://www.unicode.org/reports/tr44/';
182 # As stated earlier, this program will work on any release of Unicode so far.
183 # Most obvious problems in earlier data have NOT been corrected except when
184 # necessary to make Perl or this program work reasonably, and to keep out
185 # potential security issues. For example, no folding information was given in
186 # early releases, so this program substitutes lower case instead, just so that
187 # a regular expression with the /i option will do something that actually
188 # gives the right results in many cases. There are also a couple other
189 # corrections for version 1.1.5, commented at the point they are made. As an
190 # example of corrections that weren't made (but could be) is this statement
191 # from DerivedAge.txt: "The supplementary private use code points and the
192 # non-character code points were assigned in version 2.0, but not specifically
193 # listed in the UCD until versions 3.0 and 3.1 respectively." (To be precise
194 # it was 3.0.1 not 3.0.0) More information on Unicode version glitches is
195 # further down in these introductory comments.
197 # This program works on all non-provisional properties as of the current
198 # Unicode release, though the files for some are suppressed for various
199 # reasons. You can change which are output by changing lists in this program.
201 # The old version of mktables emphasized the term "Fuzzy" to mean Unicode's
202 # loose matchings rules (from Unicode TR18):
204 # The recommended names for UCD properties and property values are in
205 # PropertyAliases.txt [Prop] and PropertyValueAliases.txt
206 # [PropValue]. There are both abbreviated names and longer, more
207 # descriptive names. It is strongly recommended that both names be
208 # recognized, and that loose matching of property names be used,
209 # whereby the case distinctions, whitespace, hyphens, and underbar
212 # The program still allows Fuzzy to override its determination of if loose
213 # matching should be used, but it isn't currently used, as it is no longer
214 # needed; the calculations it makes are good enough.
216 # SUMMARY OF HOW IT WORKS:
220 # A list is constructed containing each input file that is to be processed
222 # Each file on the list is processed in a loop, using the associated handler
224 # The PropertyAliases.txt and PropValueAliases.txt files are processed
225 # first. These files name the properties and property values.
226 # Objects are created of all the property and property value names
227 # that the rest of the input should expect, including all synonyms.
228 # The other input files give mappings from properties to property
229 # values. That is, they list code points and say what the mapping
230 # is under the given property. Some files give the mappings for
231 # just one property; and some for many. This program goes through
232 # each file and populates the properties and their map tables from
233 # them. Some properties are listed in more than one file, and
234 # Unicode has set up a precedence as to which has priority if there
235 # is a conflict. Thus the order of processing matters, and this
236 # program handles the conflict possibility by processing the
237 # overriding input files last, so that if necessary they replace
239 # After this is all done, the program creates the property mappings not
240 # furnished by Unicode, but derivable from what it does give.
241 # The tables of code points that match each property value in each
242 # property that is accessible by regular expressions are created.
243 # The Perl-defined properties are created and populated. Many of these
244 # require data determined from the earlier steps
245 # Any Perl-defined synonyms are created, and name clashes between Perl
246 # and Unicode are reconciled and warned about.
247 # All the properties are written to files
248 # Any other files are written, and final warnings issued.
250 # For clarity, a number of operators have been overloaded to work on tables:
251 # ~ means invert (take all characters not in the set). The more
252 # conventional '!' is not used because of the possibility of confusing
253 # it with the actual boolean operation.
255 # - means subtraction
256 # & means intersection
257 # The precedence of these is the order listed. Parentheses should be
258 # copiously used. These are not a general scheme. The operations aren't
259 # defined for a number of things, deliberately, to avoid getting into trouble.
260 # Operations are done on references and affect the underlying structures, so
261 # that the copy constructors for them have been overloaded to not return a new
262 # clone, but the input object itself.
264 # The bool operator is deliberately not overloaded to avoid confusion with
265 # "should it mean if the object merely exists, or also is non-empty?".
267 # WHY CERTAIN DESIGN DECISIONS WERE MADE
269 # This program needs to be able to run under miniperl. Therefore, it uses a
270 # minimum of other modules, and hence implements some things itself that could
271 # be gotten from CPAN
273 # This program uses inputs published by the Unicode Consortium. These can
274 # change incompatibly between releases without the Perl maintainers realizing
275 # it. Therefore this program is now designed to try to flag these. It looks
276 # at the directories where the inputs are, and flags any unrecognized files.
277 # It keeps track of all the properties in the files it handles, and flags any
278 # that it doesn't know how to handle. It also flags any input lines that
279 # don't match the expected syntax, among other checks.
281 # It is also designed so if a new input file matches one of the known
282 # templates, one hopefully just needs to add it to a list to have it
285 # As mentioned earlier, some properties are given in more than one file. In
286 # particular, the files in the extracted directory are supposedly just
287 # reformattings of the others. But they contain information not easily
288 # derivable from the other files, including results for Unihan (which isn't
289 # usually available to this program) and for unassigned code points. They
290 # also have historically had errors or been incomplete. In an attempt to
291 # create the best possible data, this program thus processes them first to
292 # glean information missing from the other files; then processes those other
293 # files to override any errors in the extracted ones. Much of the design was
294 # driven by this need to store things and then possibly override them.
296 # It tries to keep fatal errors to a minimum, to generate something usable for
297 # testing purposes. It always looks for files that could be inputs, and will
298 # warn about any that it doesn't know how to handle (the -q option suppresses
301 # Why is there more than one type of range?
302 # This simplified things. There are some very specialized code points that
303 # have to be handled specially for output, such as Hangul syllable names.
304 # By creating a range type (done late in the development process), it
305 # allowed this to be stored with the range, and overridden by other input.
306 # Originally these were stored in another data structure, and it became a
307 # mess trying to decide if a second file that was for the same property was
308 # overriding the earlier one or not.
310 # Why are there two kinds of tables, match and map?
311 # (And there is a base class shared by the two as well.) As stated above,
312 # they actually are for different things. Development proceeded much more
313 # smoothly when I (khw) realized the distinction. Map tables are used to
314 # give the property value for every code point (actually every code point
315 # that doesn't map to a default value). Match tables are used for regular
316 # expression matches, and are essentially the inverse mapping. Separating
317 # the two allows more specialized methods, and error checks so that one
318 # can't just take the intersection of two map tables, for example, as that
321 # What about 'fate' and 'status'. The concept of a table's fate was created
322 # late when it became clear that something more was needed. The difference
323 # between this and 'status' is unclean, and could be improved if someone
324 # wanted to spend the effort.
328 # This program is written so it will run under miniperl. Occasionally changes
329 # will cause an error where the backtrace doesn't work well under miniperl.
330 # To diagnose the problem, you can instead run it under regular perl, if you
333 # There is a good trace facility. To enable it, first sub DEBUG must be set
334 # to return true. Then a line like
336 # local $to_trace = 1 if main::DEBUG;
338 # can be added to enable tracing in its lexical scope (plus dynamic) or until
339 # you insert another line:
341 # local $to_trace = 0 if main::DEBUG;
343 # To actually trace, use a line like "trace $a, @b, %c, ...;
345 # Some of the more complex subroutines already have trace statements in them.
346 # Permanent trace statements should be like:
348 # trace ... if main::DEBUG && $to_trace;
350 # If there is just one or a few files that you're debugging, you can easily
351 # cause most everything else to be skipped. Change the line
353 # my $debug_skip = 0;
355 # to 1, and every file whose object is in @input_file_objects and doesn't have
356 # a, 'non_skip => 1,' in its constructor will be skipped. However, skipping
357 # Jamo.txt or UnicodeData.txt will likely cause fatal errors.
359 # To compare the output tables, it may be useful to specify the -annotate
360 # flag. (As of this writing, this can't be done on a clean workspace, due to
361 # requirements in Text::Tabs used in this option; so first run mktables
362 # without this option.) This option adds comment lines to each table, one for
363 # each non-algorithmically named character giving, currently its code point,
364 # name, and graphic representation if printable (and you have a font that
365 # knows about it). This makes it easier to see what the particular code
366 # points are in each output table. Non-named code points are annotated with a
367 # description of their status, and contiguous ones with the same description
368 # will be output as a range rather than individually. Algorithmically named
369 # characters are also output as ranges, except when there are just a few
374 # The program would break if Unicode were to change its names so that
375 # interior white space, underscores, or dashes differences were significant
376 # within property and property value names.
378 # It might be easier to use the xml versions of the UCD if this program ever
379 # would need heavy revision, and the ability to handle old versions was not
382 # There is the potential for name collisions, in that Perl has chosen names
383 # that Unicode could decide it also likes. There have been such collisions in
384 # the past, with mostly Perl deciding to adopt the Unicode definition of the
385 # name. However in the 5.2 Unicode beta testing, there were a number of such
386 # collisions, which were withdrawn before the final release, because of Perl's
387 # and other's protests. These all involved new properties which began with
388 # 'Is'. Based on the protests, Unicode is unlikely to try that again. Also,
389 # many of the Perl-defined synonyms, like Any, Word, etc, are listed in a
390 # Unicode document, so they are unlikely to be used by Unicode for another
391 # purpose. However, they might try something beginning with 'In', or use any
392 # of the other Perl-defined properties. This program will warn you of name
393 # collisions, and refuse to generate tables with them, but manual intervention
394 # will be required in this event. One scheme that could be implemented, if
395 # necessary, would be to have this program generate another file, or add a
396 # field to mktables.lst that gives the date of first definition of a property.
397 # Each new release of Unicode would use that file as a basis for the next
398 # iteration. And the Perl synonym addition code could sort based on the age
399 # of the property, so older properties get priority, and newer ones that clash
400 # would be refused; hence existing code would not be impacted, and some other
401 # synonym would have to be used for the new property. This is ugly, and
402 # manual intervention would certainly be easier to do in the short run; lets
403 # hope it never comes to this.
407 # This program can generate tables from the Unihan database. But it doesn't
408 # by default, letting the CPAN module Unicode::Unihan handle them. Prior to
409 # version 5.2, this database was in a single file, Unihan.txt. In 5.2 the
410 # database was split into 8 different files, all beginning with the letters
411 # 'Unihan'. This program will read those file(s) if present, but it needs to
412 # know which of the many properties in the file(s) should have tables created
413 # for them. It will create tables for any properties listed in
414 # PropertyAliases.txt and PropValueAliases.txt, plus any listed in the
415 # @cjk_properties array and the @cjk_property_values array. Thus, if a
416 # property you want is not in those files of the release you are building
417 # against, you must add it to those two arrays. Starting in 4.0, the
418 # Unicode_Radical_Stroke was listed in those files, so if the Unihan database
419 # is present in the directory, a table will be generated for that property.
420 # In 5.2, several more properties were added. For your convenience, the two
421 # arrays are initialized with all the 6.0 listed properties that are also in
422 # earlier releases. But these are commented out. You can just uncomment the
423 # ones you want, or use them as a template for adding entries for other
426 # You may need to adjust the entries to suit your purposes. setup_unihan(),
427 # and filter_unihan_line() are the functions where this is done. This program
428 # already does some adjusting to make the lines look more like the rest of the
429 # Unicode DB; You can see what that is in filter_unihan_line()
431 # There is a bug in the 3.2 data file in which some values for the
432 # kPrimaryNumeric property have commas and an unexpected comment. A filter
433 # could be added to correct these; or for a particular installation, the
434 # Unihan.txt file could be edited to fix them.
436 # HOW TO ADD A FILE TO BE PROCESSED
438 # A new file from Unicode needs to have an object constructed for it in
439 # @input_file_objects, probably at the end or at the end of the extracted
440 # ones. The program should warn you if its name will clash with others on
441 # restrictive file systems, like DOS. If so, figure out a better name, and
442 # add lines to the README.perl file giving that. If the file is a character
443 # property, it should be in the format that Unicode has implicitly
444 # standardized for such files for the more recently introduced ones.
445 # If so, the Input_file constructor for @input_file_objects can just be the
446 # file name and release it first appeared in. If not, then it should be
447 # possible to construct an each_line_handler() to massage the line into the
450 # For non-character properties, more code will be needed. You can look at
451 # the existing entries for clues.
453 # UNICODE VERSIONS NOTES
455 # The Unicode UCD has had a number of errors in it over the versions. And
456 # these remain, by policy, in the standard for that version. Therefore it is
457 # risky to correct them, because code may be expecting the error. So this
458 # program doesn't generally make changes, unless the error breaks the Perl
459 # core. As an example, some versions of 2.1.x Jamo.txt have the wrong value
460 # for U+1105, which causes real problems for the algorithms for Jamo
461 # calculations, so it is changed here.
463 # But it isn't so clear cut as to what to do about concepts that are
464 # introduced in a later release; should they extend back to earlier releases
465 # where the concept just didn't exist? It was easier to do this than to not,
466 # so that's what was done. For example, the default value for code points not
467 # in the files for various properties was probably undefined until changed by
468 # some version. No_Block for blocks is such an example. This program will
469 # assign No_Block even in Unicode versions that didn't have it. This has the
470 # benefit that code being written doesn't have to special case earlier
471 # versions; and the detriment that it doesn't match the Standard precisely for
472 # the affected versions.
474 # Here are some observations about some of the issues in early versions:
476 # Prior to version 3.0, there were 3 character decompositions. These are not
477 # handled by Unicode::Normalize, nor will it compile when presented a version
478 # that has them. However, you can trivially get it to compile by simply
479 # ignoring those decompositions, by changing the croak to a carp. At the time
480 # of this writing, the line (in cpan/Unicode-Normalize/Normalize.pm or
481 # cpan/Unicode-Normalize/mkheader) reads
483 # croak("Weird Canonical Decomposition of U+$h");
485 # Simply comment it out. It will compile, but will not know about any three
486 # character decompositions.
488 # The number of code points in \p{alpha=True} halved in 2.1.9. It turns out
489 # that the reason is that the CJK block starting at 4E00 was removed from
490 # PropList, and was not put back in until 3.1.0. The Perl extension (the
491 # single property name \p{alpha}) has the correct values. But the compound
492 # form is simply not generated until 3.1, as it can be argued that prior to
493 # this release, this was not an official property. The comments for
494 # filter_old_style_proplist() give more details.
496 # Unicode introduced the synonym Space for White_Space in 4.1. Perl has
497 # always had a \p{Space}. In release 3.2 only, they are not synonymous. The
498 # reason is that 3.2 introduced U+205F=medium math space, which was not
499 # classed as white space, but Perl figured out that it should have been. 4.0
500 # reclassified it correctly.
502 # Another change between 3.2 and 4.0 is the CCC property value ATBL. In 3.2
503 # this was erroneously a synonym for 202 (it should be 200). In 4.0, ATB
504 # became 202, and ATBL was left with no code points, as all the ones that
505 # mapped to 202 stayed mapped to 202. Thus if your program used the numeric
506 # name for the class, it would not have been affected, but if it used the
507 # mnemonic, it would have been.
509 # \p{Script=Hrkt} (Katakana_Or_Hiragana) came in 4.0.1. Before that, code
510 # points which eventually came to have this script property value, instead
511 # mapped to "Unknown". But in the next release all these code points were
512 # moved to \p{sc=common} instead.
514 # The tests furnished by Unicode for testing WordBreak and SentenceBreak
515 # generate errors in 5.0 and earlier.
517 # The default for missing code points for BidiClass is complicated. Starting
518 # in 3.1.1, the derived file DBidiClass.txt handles this, but this program
519 # tries to do the best it can for earlier releases. It is done in
520 # process_PropertyAliases()
522 # In version 2.1.2, the entry in UnicodeData.txt:
523 # 0275;LATIN SMALL LETTER BARRED O;Ll;0;L;;;;;N;;;;019F;
525 # 0275;LATIN SMALL LETTER BARRED O;Ll;0;L;;;;;N;;;019F;;019F
526 # Without this change, there are casing problems for this character.
528 # Search for $string_compare_versions to see how to compare changes to
529 # properties between Unicode versions
531 ##############################################################################
533 my $UNDEF = ':UNDEF:'; # String to print out for undefined values in tracing
535 my $MAX_LINE_WIDTH = 78;
537 # Debugging aid to skip most files so as to not be distracted by them when
538 # concentrating on the ones being debugged. Add
540 # to the constructor for those files you want processed when you set this.
541 # Files with a first version number of 0 are special: they are always
542 # processed regardless of the state of this flag. Generally, Jamo.txt and
543 # UnicodeData.txt must not be skipped if you want this program to not die
544 # before normal completion.
548 # Normally these are suppressed.
549 my $write_Unicode_deprecated_tables = 0;
551 # Set to 1 to enable tracing.
554 { # Closure for trace: debugging aid
555 my $print_caller = 1; # ? Include calling subroutine name
556 my $main_with_colon = 'main::';
557 my $main_colon_length = length($main_with_colon);
560 return unless $to_trace; # Do nothing if global flag not set
564 local $DB::trace = 0;
565 $DB::trace = 0; # Quiet 'used only once' message
569 # Loop looking up the stack to get the first non-trace caller
574 $line_number = $caller_line;
575 (my $pkg, my $file, $caller_line, my $caller) = caller $i++;
576 $caller = $main_with_colon unless defined $caller;
578 $caller_name = $caller;
581 $caller_name =~ s/.*:://;
582 if (substr($caller_name, 0, $main_colon_length)
585 $caller_name = substr($caller_name, $main_colon_length);
588 } until ($caller_name ne 'trace');
590 # If the stack was empty, we were called from the top level
591 $caller_name = 'main' if ($caller_name eq ""
592 || $caller_name eq 'trace');
595 #print STDERR __LINE__, ": ", join ", ", @input, "\n";
596 foreach my $string (@input) {
597 if (ref $string eq 'ARRAY' || ref $string eq 'HASH') {
598 $output .= simple_dumper($string);
601 $string = "$string" if ref $string;
602 $string = $UNDEF unless defined $string;
604 $string = '""' if $string eq "";
605 $output .= " " if $output ne ""
607 && substr($output, -1, 1) ne " "
608 && substr($string, 0, 1) ne " ";
613 print STDERR sprintf "%4d: ", $line_number if defined $line_number;
614 print STDERR "$caller_name: " if $print_caller;
615 print STDERR $output, "\n";
620 # This is for a rarely used development feature that allows you to compare two
621 # versions of the Unicode standard without having to deal with changes caused
622 # by the code points introduced in the later version. You probably also want
623 # to use the -annotate option when using this. Change the 0 to a string
624 # containing a SINGLE dotted Unicode release number (e.g. "2.1"). Only code
625 # points introduced in that release and earlier will be used; later ones are
626 # thrown away. You use the version number of the earliest one you want to
627 # compare; then run this program on directory structures containing each
628 # release, and compare the outputs. These outputs will therefore include only
629 # the code points common to both releases, and you can see the changes caused
630 # just by the underlying release semantic changes. For versions earlier than
631 # 3.2, you must copy a version of DAge.txt into the directory.
632 my $string_compare_versions = DEBUG && 0; # e.g., "2.1";
633 my $compare_versions = DEBUG
634 && $string_compare_versions
635 && pack "C*", split /\./, $string_compare_versions;
638 # Returns non-duplicated input values. From "Perl Best Practices:
639 # Encapsulated Cleverness". p. 455 in first edition.
642 # Arguably this breaks encapsulation, if the goal is to permit multiple
643 # distinct objects to stringify to the same value, and be interchangeable.
644 # However, for this program, no two objects stringify identically, and all
645 # lists passed to this function are either objects or strings. So this
646 # doesn't affect correctness, but it does give a couple of percent speedup.
648 return grep { ! $seen{$_}++ } @_;
651 $0 = File::Spec->canonpath($0);
653 my $make_test_script = 0; # ? Should we output a test script
654 my $make_norm_test_script = 0; # ? Should we output a normalization test script
655 my $write_unchanged_files = 0; # ? Should we update the output files even if
656 # we don't think they have changed
657 my $use_directory = ""; # ? Should we chdir somewhere.
658 my $pod_directory; # input directory to store the pod file.
659 my $pod_file = 'perluniprops';
660 my $t_path; # Path to the .t test file
661 my $file_list = 'mktables.lst'; # File to store input and output file names.
662 # This is used to speed up the build, by not
663 # executing the main body of the program if
664 # nothing on the list has changed since the
666 my $make_list = 1; # ? Should we write $file_list. Set to always
667 # make a list so that when the pumpking is
668 # preparing a release, s/he won't have to do
670 my $glob_list = 0; # ? Should we try to include unknown .txt files
672 my $output_range_counts = $debugging_build; # ? Should we include the number
673 # of code points in ranges in
675 my $annotate = 0; # ? Should character names be in the output
677 # Verbosity levels; 0 is quiet
678 my $NORMAL_VERBOSITY = 1;
682 my $verbosity = $NORMAL_VERBOSITY;
684 # Stored in mktables.lst so that if this program is called with different
685 # options, will regenerate even if the files otherwise look like they're
687 my $command_line_arguments = join " ", @ARGV;
691 my $arg = shift @ARGV;
693 $verbosity = $VERBOSE;
695 elsif ($arg eq '-p') {
696 $verbosity = $PROGRESS;
697 $| = 1; # Flush buffers as we go.
699 elsif ($arg eq '-q') {
702 elsif ($arg eq '-w') {
703 $write_unchanged_files = 1; # update the files even if havent changed
705 elsif ($arg eq '-check') {
706 my $this = shift @ARGV;
707 my $ok = shift @ARGV;
709 print "Skipping as check params are not the same.\n";
713 elsif ($arg eq '-P' && defined ($pod_directory = shift)) {
714 -d $pod_directory or croak "Directory '$pod_directory' doesn't exist";
716 elsif ($arg eq '-maketest' || ($arg eq '-T' && defined ($t_path = shift)))
718 $make_test_script = 1;
720 elsif ($arg eq '-makenormtest')
722 $make_norm_test_script = 1;
724 elsif ($arg eq '-makelist') {
727 elsif ($arg eq '-C' && defined ($use_directory = shift)) {
728 -d $use_directory or croak "Unknown directory '$use_directory'";
730 elsif ($arg eq '-L') {
732 # Existence not tested until have chdir'd
735 elsif ($arg eq '-globlist') {
738 elsif ($arg eq '-c') {
739 $output_range_counts = ! $output_range_counts
741 elsif ($arg eq '-annotate') {
743 $debugging_build = 1;
744 $output_range_counts = 1;
748 $with_c .= 'out' if $output_range_counts; # Complements the state
750 usage: $0 [-c|-p|-q|-v|-w] [-C dir] [-L filelist] [ -P pod_dir ]
751 [ -T test_file_path ] [-globlist] [-makelist] [-maketest]
753 -c : Output comments $with_c number of code points in ranges
754 -q : Quiet Mode: Only output serious warnings.
755 -p : Set verbosity level to normal plus show progress.
756 -v : Set Verbosity level high: Show progress and non-serious
758 -w : Write files regardless
759 -C dir : Change to this directory before proceeding. All relative paths
760 except those specified by the -P and -T options will be done
761 with respect to this directory.
762 -P dir : Output $pod_file file to directory 'dir'.
763 -T path : Create a test script as 'path'; overrides -maketest
764 -L filelist : Use alternate 'filelist' instead of standard one
765 -globlist : Take as input all non-Test *.txt files in current and sub
767 -maketest : Make test script 'TestProp.pl' in current (or -C directory),
769 -makelist : Rewrite the file list $file_list based on current setup
770 -annotate : Output an annotation for each character in the table files;
771 useful for debugging mktables, looking at diffs; but is slow
773 -check A B : Executes $0 only if A and B are the same
778 # Stores the most-recently changed file. If none have changed, can skip the
780 my $most_recent = (stat $0)[9]; # Do this before the chdir!
782 # Change directories now, because need to read 'version' early.
783 if ($use_directory) {
784 if ($pod_directory && ! File::Spec->file_name_is_absolute($pod_directory)) {
785 $pod_directory = File::Spec->rel2abs($pod_directory);
787 if ($t_path && ! File::Spec->file_name_is_absolute($t_path)) {
788 $t_path = File::Spec->rel2abs($t_path);
790 chdir $use_directory or croak "Failed to chdir to '$use_directory':$!";
791 if ($pod_directory && File::Spec->file_name_is_absolute($pod_directory)) {
792 $pod_directory = File::Spec->abs2rel($pod_directory);
794 if ($t_path && File::Spec->file_name_is_absolute($t_path)) {
795 $t_path = File::Spec->abs2rel($t_path);
799 # Get Unicode version into regular and v-string. This is done now because
800 # various tables below get populated based on it. These tables are populated
801 # here to be near the top of the file, and so easily seeable by those needing
803 open my $VERSION, "<", "version"
804 or croak "$0: can't open required file 'version': $!\n";
805 my $string_version = <$VERSION>;
807 chomp $string_version;
808 my $v_version = pack "C*", split /\./, $string_version; # v string
810 # The following are the complete names of properties with property values that
811 # are known to not match any code points in some versions of Unicode, but that
812 # may change in the future so they should be matchable, hence an empty file is
813 # generated for them.
814 my @tables_that_may_be_empty;
815 push @tables_that_may_be_empty, 'Joining_Type=Left_Joining'
816 if $v_version lt v6.3.0;
817 push @tables_that_may_be_empty, 'Script=Common' if $v_version le v4.0.1;
818 push @tables_that_may_be_empty, 'Title' if $v_version lt v2.0.0;
819 push @tables_that_may_be_empty, 'Script=Katakana_Or_Hiragana'
820 if $v_version ge v4.1.0;
821 push @tables_that_may_be_empty, 'Script_Extensions=Katakana_Or_Hiragana'
822 if $v_version ge v6.0.0;
823 push @tables_that_may_be_empty, 'Grapheme_Cluster_Break=Prepend'
824 if $v_version ge v6.1.0;
825 push @tables_that_may_be_empty, 'Canonical_Combining_Class=CCC133'
826 if $v_version ge v6.2.0;
828 # The lists below are hashes, so the key is the item in the list, and the
829 # value is the reason why it is in the list. This makes generation of
830 # documentation easier.
832 my %why_suppressed; # No file generated for these.
834 # Files aren't generated for empty extraneous properties. This is arguable.
835 # Extraneous properties generally come about because a property is no longer
836 # used in a newer version of Unicode. If we generated a file without code
837 # points, programs that used to work on that property will still execute
838 # without errors. It just won't ever match (or will always match, with \P{}).
839 # This means that the logic is now likely wrong. I (khw) think its better to
840 # find this out by getting an error message. Just move them to the table
841 # above to change this behavior
842 my %why_suppress_if_empty_warn_if_not = (
844 # It is the only property that has ever officially been removed from the
845 # Standard. The database never contained any code points for it.
846 'Special_Case_Condition' => 'Obsolete',
848 # Apparently never official, but there were code points in some versions of
849 # old-style PropList.txt
850 'Non_Break' => 'Obsolete',
853 # These would normally go in the warn table just above, but they were changed
854 # a long time before this program was written, so warnings about them are
856 if ($v_version gt v3.2.0) {
857 push @tables_that_may_be_empty,
858 'Canonical_Combining_Class=Attached_Below_Left'
861 # These are listed in the Property aliases file in 6.0, but Unihan is ignored
862 # unless explicitly added.
863 if ($v_version ge v5.2.0 && ! $write_Unicode_deprecated_tables) {
864 my $unihan = 'Unihan; remove from list if using Unihan';
865 foreach my $table (qw (
869 kCompatibilityVariant
883 $why_suppress_if_empty_warn_if_not{$table} = $unihan;
887 # Enum values for to_output_map() method in the Map_Table package. (0 is don't
889 my $EXTERNAL_MAP = 1;
890 my $INTERNAL_MAP = 2;
891 my $OUTPUT_ADJUSTED = 3;
893 # To override computed values for writing the map tables for these properties.
894 # The default for enum map tables is to write them out, so that the Unicode
895 # .txt files can be removed, but all the data to compute any property value
896 # for any code point is available in a more compact form.
897 my %global_to_output_map = (
898 # Needed by UCD.pm, but don't want to publicize that it exists, so won't
899 # get stuck supporting it if things change. Since it is a STRING
900 # property, it normally would be listed in the pod, but INTERNAL_MAP
902 Unicode_1_Name => $INTERNAL_MAP,
904 Present_In => 0, # Suppress, as easily computed from Age
905 Block => (NON_ASCII_PLATFORM) ? 1 : 0, # Suppress, as Blocks.txt is
906 # retained, but needed for
909 # Suppress, as mapping can be found instead from the
910 # Perl_Decomposition_Mapping file
911 Decomposition_Type => 0,
914 # Properties that this program ignores.
915 my @unimplemented_properties;
917 # With this release, it is automatically handled if the Unihan db is
919 push @unimplemented_properties, 'Unicode_Radical_Stroke' if $v_version lt v5.2.0;
921 # There are several types of obsolete properties defined by Unicode. These
922 # must be hand-edited for every new Unicode release.
923 my %why_deprecated; # Generates a deprecated warning message if used.
924 my %why_stabilized; # Documentation only
925 my %why_obsolete; # Documentation only
928 my $simple = 'Perl uses the more complete version';
929 my $unihan = 'Unihan properties are by default not enabled in the Perl core. Instead use CPAN: Unicode::Unihan';
931 my $other_properties = 'other properties';
932 my $contributory = "Used by Unicode internally for generating $other_properties and not intended to be used stand-alone";
933 my $why_no_expand = "Deprecated by Unicode. These are characters that expand to more than one character in the specified normalization form, but whether they actually take up more bytes or not depends on the encoding being used. For example, a UTF-8 encoded character may expand to a different number of bytes than a UTF-32 encoded character.";
936 'Grapheme_Link' => 'Deprecated by Unicode: Duplicates ccc=vr (Canonical_Combining_Class=Virama)',
937 'Jamo_Short_Name' => $contributory,
938 'Line_Break=Surrogate' => 'Deprecated by Unicode because surrogates should never appear in well-formed text, and therefore shouldn\'t be the basis for line breaking',
939 'Other_Alphabetic' => $contributory,
940 'Other_Default_Ignorable_Code_Point' => $contributory,
941 'Other_Grapheme_Extend' => $contributory,
942 'Other_ID_Continue' => $contributory,
943 'Other_ID_Start' => $contributory,
944 'Other_Lowercase' => $contributory,
945 'Other_Math' => $contributory,
946 'Other_Uppercase' => $contributory,
947 'Expands_On_NFC' => $why_no_expand,
948 'Expands_On_NFD' => $why_no_expand,
949 'Expands_On_NFKC' => $why_no_expand,
950 'Expands_On_NFKD' => $why_no_expand,
954 # There is a lib/unicore/Decomposition.pl (used by Normalize.pm) which
955 # contains the same information, but without the algorithmically
956 # determinable Hangul syllables'. This file is not published, so it's
957 # existence is not noted in the comment.
958 'Decomposition_Mapping' => 'Accessible via Unicode::Normalize or prop_invmap() or charprop() in Unicode::UCD::',
960 'Indic_Matra_Category' => "Withdrawn by Unicode while still provisional",
962 # Don't suppress ISO_Comment, as otherwise special handling is needed
963 # to differentiate between it and gc=c, which can be written as 'isc',
964 # which is the same characters as ISO_Comment's short name.
966 'Name' => "Accessible via \\N{...} or 'use charnames;' or charprop() or prop_invmap() in Unicode::UCD::",
968 'Simple_Case_Folding' => "$simple. Can access this through casefold(), charprop(), or prop_invmap() in Unicode::UCD",
969 'Simple_Lowercase_Mapping' => "$simple. Can access this through charinfo(), charprop(), or prop_invmap() in Unicode::UCD",
970 'Simple_Titlecase_Mapping' => "$simple. Can access this through charinfo(), charprop(), or prop_invmap() in Unicode::UCD",
971 'Simple_Uppercase_Mapping' => "$simple. Can access this through charinfo(), charprop(), or prop_invmap() in Unicode::UCD",
973 FC_NFKC_Closure => 'Deprecated by Unicode, and supplanted in usage by NFKC_Casefold; otherwise not useful',
976 foreach my $property (
978 # The following are suppressed because they were made contributory
979 # or deprecated by Unicode before Perl ever thought about
988 # The following are suppressed because they have been marked
989 # as deprecated for a sufficient amount of time
991 'Other_Default_Ignorable_Code_Point',
992 'Other_Grapheme_Extend',
999 $why_suppressed{$property} = $why_deprecated{$property};
1002 # Customize the message for all the 'Other_' properties
1003 foreach my $property (keys %why_deprecated) {
1004 next if (my $main_property = $property) !~ s/^Other_//;
1005 $why_deprecated{$property} =~ s/$other_properties/the $main_property property (which should be used instead)/;
1009 if ($write_Unicode_deprecated_tables) {
1010 foreach my $property (keys %why_suppressed) {
1011 delete $why_suppressed{$property} if $property =~
1012 / ^ Other | Grapheme /x;
1016 if ($v_version ge 4.0.0) {
1017 $why_stabilized{'Hyphen'} = 'Use the Line_Break property instead; see www.unicode.org/reports/tr14';
1018 if ($v_version ge 6.0.0) {
1019 $why_deprecated{'Hyphen'} = 'Supplanted by Line_Break property values; see www.unicode.org/reports/tr14';
1022 if ($v_version ge 5.2.0 && $v_version lt 6.0.0) {
1023 $why_obsolete{'ISO_Comment'} = 'Code points for it have been removed';
1024 if ($v_version ge 6.0.0) {
1025 $why_deprecated{'ISO_Comment'} = 'No longer needed for Unicode\'s internal chart generation; otherwise not useful, and code points for it have been removed';
1029 # Probably obsolete forever
1030 if ($v_version ge v4.1.0) {
1031 $why_suppressed{'Script=Katakana_Or_Hiragana'} = 'Obsolete. All code points previously matched by this have been moved to "Script=Common".';
1033 if ($v_version ge v6.0.0) {
1034 $why_suppressed{'Script=Katakana_Or_Hiragana'} .= ' Consider instead using "Script_Extensions=Katakana" or "Script_Extensions=Hiragana" (or both)';
1035 $why_suppressed{'Script_Extensions=Katakana_Or_Hiragana'} = 'All code points that would be matched by this are matched by either "Script_Extensions=Katakana" or "Script_Extensions=Hiragana"';
1038 # This program can create files for enumerated-like properties, such as
1039 # 'Numeric_Type'. This file would be the same format as for a string
1040 # property, with a mapping from code point to its value, so you could look up,
1041 # for example, the script a code point is in. But no one so far wants this
1042 # mapping, or they have found another way to get it since this is a new
1043 # feature. So no file is generated except if it is in this list.
1044 my @output_mapped_properties = split "\n", <<END;
1047 # If you are using the Unihan database in a Unicode version before 5.2, you
1048 # need to add the properties that you want to extract from it to this table.
1049 # For your convenience, the properties in the 6.0 PropertyAliases.txt file are
1050 # listed, commented out
1051 my @cjk_properties = split "\n", <<'END';
1052 #cjkAccountingNumeric; kAccountingNumeric
1053 #cjkOtherNumeric; kOtherNumeric
1054 #cjkPrimaryNumeric; kPrimaryNumeric
1055 #cjkCompatibilityVariant; kCompatibilityVariant
1056 #cjkIICore ; kIICore
1057 #cjkIRG_GSource; kIRG_GSource
1058 #cjkIRG_HSource; kIRG_HSource
1059 #cjkIRG_JSource; kIRG_JSource
1060 #cjkIRG_KPSource; kIRG_KPSource
1061 #cjkIRG_KSource; kIRG_KSource
1062 #cjkIRG_TSource; kIRG_TSource
1063 #cjkIRG_USource; kIRG_USource
1064 #cjkIRG_VSource; kIRG_VSource
1065 #cjkRSUnicode; kRSUnicode ; Unicode_Radical_Stroke; URS
1068 # Similarly for the property values. For your convenience, the lines in the
1069 # 6.0 PropertyAliases.txt file are listed. Just remove the first BUT NOT both
1070 # '#' marks (for Unicode versions before 5.2)
1071 my @cjk_property_values = split "\n", <<'END';
1072 ## @missing: 0000..10FFFF; cjkAccountingNumeric; NaN
1073 ## @missing: 0000..10FFFF; cjkCompatibilityVariant; <code point>
1074 ## @missing: 0000..10FFFF; cjkIICore; <none>
1075 ## @missing: 0000..10FFFF; cjkIRG_GSource; <none>
1076 ## @missing: 0000..10FFFF; cjkIRG_HSource; <none>
1077 ## @missing: 0000..10FFFF; cjkIRG_JSource; <none>
1078 ## @missing: 0000..10FFFF; cjkIRG_KPSource; <none>
1079 ## @missing: 0000..10FFFF; cjkIRG_KSource; <none>
1080 ## @missing: 0000..10FFFF; cjkIRG_TSource; <none>
1081 ## @missing: 0000..10FFFF; cjkIRG_USource; <none>
1082 ## @missing: 0000..10FFFF; cjkIRG_VSource; <none>
1083 ## @missing: 0000..10FFFF; cjkOtherNumeric; NaN
1084 ## @missing: 0000..10FFFF; cjkPrimaryNumeric; NaN
1085 ## @missing: 0000..10FFFF; cjkRSUnicode; <none>
1088 # The input files don't list every code point. Those not listed are to be
1089 # defaulted to some value. Below are hard-coded what those values are for
1090 # non-binary properties as of 5.1. Starting in 5.0, there are
1091 # machine-parsable comment lines in the files that give the defaults; so this
1092 # list shouldn't have to be extended. The claim is that all missing entries
1093 # for binary properties will default to 'N'. Unicode tried to change that in
1094 # 5.2, but the beta period produced enough protest that they backed off.
1096 # The defaults for the fields that appear in UnicodeData.txt in this hash must
1097 # be in the form that it expects. The others may be synonyms.
1098 my $CODE_POINT = '<code point>';
1099 my %default_mapping = (
1100 Age => "Unassigned",
1101 # Bidi_Class => Complicated; set in code
1102 Bidi_Mirroring_Glyph => "",
1103 Block => 'No_Block',
1104 Canonical_Combining_Class => 0,
1105 Case_Folding => $CODE_POINT,
1106 Decomposition_Mapping => $CODE_POINT,
1107 Decomposition_Type => 'None',
1108 East_Asian_Width => "Neutral",
1109 FC_NFKC_Closure => $CODE_POINT,
1110 General_Category => ($v_version le 6.3.0) ? 'Cn' : 'Unassigned',
1111 Grapheme_Cluster_Break => 'Other',
1112 Hangul_Syllable_Type => 'NA',
1114 Jamo_Short_Name => "",
1115 Joining_Group => "No_Joining_Group",
1116 # Joining_Type => Complicated; set in code
1117 kIICore => 'N', # Is converted to binary
1118 #Line_Break => Complicated; set in code
1119 Lowercase_Mapping => $CODE_POINT,
1126 Numeric_Type => 'None',
1127 Numeric_Value => 'NaN',
1128 Script => ($v_version le 4.1.0) ? 'Common' : 'Unknown',
1129 Sentence_Break => 'Other',
1130 Simple_Case_Folding => $CODE_POINT,
1131 Simple_Lowercase_Mapping => $CODE_POINT,
1132 Simple_Titlecase_Mapping => $CODE_POINT,
1133 Simple_Uppercase_Mapping => $CODE_POINT,
1134 Titlecase_Mapping => $CODE_POINT,
1135 Unicode_1_Name => "",
1136 Unicode_Radical_Stroke => "",
1137 Uppercase_Mapping => $CODE_POINT,
1138 Word_Break => 'Other',
1141 # Below are files that Unicode furnishes, but this program ignores, and why.
1142 # NormalizationCorrections.txt requires some more explanation. It documents
1143 # the cumulative fixes to erroneous normalizations in earlier Unicode
1144 # versions. Its main purpose is so that someone running on an earlier version
1145 # can use this file to override what got published in that earlier release.
1146 # It would be easy for mktables to read and handle this file. But all the
1147 # corrections in it should already be in the other files for the release it
1148 # is. To get it to actually mean something useful, someone would have to be
1149 # using an earlier Unicode release, and copy it to the files for that release
1150 # and recomplile. So far there has been no demand to do that, so this hasn't
1152 my %ignored_files = (
1153 'CJKRadicals.txt' => 'Maps the kRSUnicode property values to corresponding code points',
1154 'Index.txt' => 'Alphabetical index of Unicode characters',
1155 'NamedSqProv.txt' => 'Named sequences proposed for inclusion in a later version of the Unicode Standard; if you need them now, you can append this file to F<NamedSequences.txt> and recompile perl',
1156 'NamesList.txt' => 'Annotated list of characters',
1157 'NamesList.html' => 'Describes the format and contents of F<NamesList.txt>',
1158 'NormalizationCorrections.txt' => 'Documentation of corrections already incorporated into the Unicode data base',
1159 'Props.txt' => 'Only in very early releases; is a subset of F<PropList.txt> (which is used instead)',
1160 'ReadMe.txt' => 'Documentation',
1161 'StandardizedVariants.txt' => 'Certain glyph variations for character display are standardized. This lists the non-Unihan ones; the Unihan ones are also not used by Perl, and are in a separate Unicode data base L<http://www.unicode.org/ivd>',
1162 'StandardizedVariants.html' => 'Provides a visual display of the standard variant sequences derived from F<StandardizedVariants.txt>.',
1163 'EmojiSources.txt' => 'Maps certain Unicode code points to their legacy Japanese cell-phone values',
1164 'USourceData.txt' => 'Documentation of status and cross reference of proposals for encoding by Unicode of Unihan characters',
1165 'USourceGlyphs.pdf' => 'Pictures of the characters in F<USourceData.txt>',
1166 'auxiliary/WordBreakTest.html' => 'Documentation of validation tests',
1167 'auxiliary/SentenceBreakTest.html' => 'Documentation of validation tests',
1168 'auxiliary/GraphemeBreakTest.html' => 'Documentation of validation tests',
1169 'auxiliary/LineBreakTest.html' => 'Documentation of validation tests',
1172 my %skipped_files; # List of files that we skip
1174 ### End of externally interesting definitions, except for @input_file_objects
1177 # !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
1178 # This file is machine-generated by $0 from the Unicode
1179 # database, Version $string_version. Any changes made here will be lost!
1182 my $INTERNAL_ONLY_HEADER = <<"EOF";
1184 # !!!!!!! INTERNAL PERL USE ONLY !!!!!!!
1185 # This file is for internal use by core Perl only. The format and even the
1186 # name or existence of this file are subject to change without notice. Don't
1187 # use it directly. Use Unicode::UCD to access the Unicode character data
1191 my $DEVELOPMENT_ONLY=<<"EOF";
1192 # !!!!!!! DEVELOPMENT USE ONLY !!!!!!!
1193 # This file contains information artificially constrained to code points
1194 # present in Unicode release $string_compare_versions.
1195 # IT CANNOT BE RELIED ON. It is for use during development only and should
1196 # not be used for production.
1200 my $MAX_UNICODE_CODEPOINT_STRING = ($v_version ge v2.0.0)
1203 my $MAX_UNICODE_CODEPOINT = hex $MAX_UNICODE_CODEPOINT_STRING;
1204 my $MAX_UNICODE_CODEPOINTS = $MAX_UNICODE_CODEPOINT + 1;
1206 # We work with above-Unicode code points, up to UV_MAX. But when you get
1207 # that high, above IV_MAX, some operations don't work, and you can easily get
1208 # overflow. Therefore for internal use, we use a much smaller number,
1209 # translating it to UV_MAX only for output. The exact number is immaterial
1210 # (all Unicode code points are treated exactly the same), but the algorithm
1211 # requires it to be at least 2 * $MAX_UNICODE_CODEPOINTS + 1;
1212 my $MAX_WORKING_CODEPOINTS= $MAX_UNICODE_CODEPOINT * 8;
1213 my $MAX_WORKING_CODEPOINT = $MAX_WORKING_CODEPOINTS - 1;
1214 my $MAX_WORKING_CODEPOINT_STRING = sprintf("%X", $MAX_WORKING_CODEPOINT);
1216 my $MAX_PLATFORM_CODEPOINT = ~0;
1218 # Matches legal code point. 4-6 hex numbers, If there are 6, the first
1219 # two must be 10; if there are 5, the first must not be a 0. Written this way
1220 # to decrease backtracking. The first regex allows the code point to be at
1221 # the end of a word, but to work properly, the word shouldn't end with a valid
1222 # hex character. The second one won't match a code point at the end of a
1223 # word, and doesn't have the run-on issue
1224 my $run_on_code_point_re =
1225 qr/ (?: 10[0-9A-F]{4} | [1-9A-F][0-9A-F]{4} | [0-9A-F]{4} ) \b/x;
1226 my $code_point_re = qr/\b$run_on_code_point_re/;
1228 # This matches the beginning of the line in the Unicode db files that give the
1229 # defaults for code points not listed (i.e., missing) in the file. The code
1230 # depends on this ending with a semi-colon, so it can assume it is a valid
1231 # field when the line is split() by semi-colons
1232 my $missing_defaults_prefix = qr/^#\s+\@missing:\s+0000\.\.10FFFF\s*;/;
1234 # Property types. Unicode has more types, but these are sufficient for our
1236 my $UNKNOWN = -1; # initialized to illegal value
1237 my $NON_STRING = 1; # Either binary or enum
1239 my $FORCED_BINARY = 3; # Not a binary property, but, besides its normal
1240 # tables, additional true and false tables are
1241 # generated so that false is anything matching the
1242 # default value, and true is everything else.
1243 my $ENUM = 4; # Include catalog
1244 my $STRING = 5; # Anything else: string or misc
1246 # Some input files have lines that give default values for code points not
1247 # contained in the file. Sometimes these should be ignored.
1248 my $NO_DEFAULTS = 0; # Must evaluate to false
1249 my $NOT_IGNORED = 1;
1252 # Range types. Each range has a type. Most ranges are type 0, for normal,
1253 # and will appear in the main body of the tables in the output files, but
1254 # there are other types of ranges as well, listed below, that are specially
1255 # handled. There are pseudo-types as well that will never be stored as a
1256 # type, but will affect the calculation of the type.
1258 # 0 is for normal, non-specials
1259 my $MULTI_CP = 1; # Sequence of more than code point
1260 my $HANGUL_SYLLABLE = 2;
1261 my $CP_IN_NAME = 3; # The NAME contains the code point appended to it.
1262 my $NULL = 4; # The map is to the null string; utf8.c can't
1263 # handle these, nor is there an accepted syntax
1264 # for them in \p{} constructs
1265 my $COMPUTE_NO_MULTI_CP = 5; # Pseudo-type; means that ranges that would
1266 # otherwise be $MULTI_CP type are instead type 0
1268 # process_generic_property_file() can accept certain overrides in its input.
1269 # Each of these must begin AND end with $CMD_DELIM.
1270 my $CMD_DELIM = "\a";
1271 my $REPLACE_CMD = 'replace'; # Override the Replace
1272 my $MAP_TYPE_CMD = 'map_type'; # Override the Type
1277 # Values for the Replace argument to add_range.
1278 # $NO # Don't replace; add only the code points not
1280 my $IF_NOT_EQUIVALENT = 1; # Replace only under certain conditions; details in
1281 # the comments at the subroutine definition.
1282 my $UNCONDITIONALLY = 2; # Replace without conditions.
1283 my $MULTIPLE_BEFORE = 4; # Don't replace, but add a duplicate record if
1285 my $MULTIPLE_AFTER = 5; # Don't replace, but add a duplicate record if
1287 my $CROAK = 6; # Die with an error if is already there
1289 # Flags to give property statuses. The phrases are to remind maintainers that
1290 # if the flag is changed, the indefinite article referring to it in the
1291 # documentation may need to be as well.
1293 my $DEPRECATED = 'D';
1294 my $a_bold_deprecated = "a 'B<$DEPRECATED>'";
1295 my $A_bold_deprecated = "A 'B<$DEPRECATED>'";
1296 my $DISCOURAGED = 'X';
1297 my $a_bold_discouraged = "an 'B<$DISCOURAGED>'";
1298 my $A_bold_discouraged = "An 'B<$DISCOURAGED>'";
1300 my $a_bold_stricter = "a 'B<$STRICTER>'";
1301 my $A_bold_stricter = "A 'B<$STRICTER>'";
1302 my $STABILIZED = 'S';
1303 my $a_bold_stabilized = "an 'B<$STABILIZED>'";
1304 my $A_bold_stabilized = "An 'B<$STABILIZED>'";
1306 my $a_bold_obsolete = "an 'B<$OBSOLETE>'";
1307 my $A_bold_obsolete = "An 'B<$OBSOLETE>'";
1309 # Aliases can also have an extra status:
1310 my $INTERNAL_ALIAS = 'P';
1312 my %status_past_participles = (
1313 $DISCOURAGED => 'discouraged',
1314 $STABILIZED => 'stabilized',
1315 $OBSOLETE => 'obsolete',
1316 $DEPRECATED => 'deprecated',
1317 $INTERNAL_ALIAS => 'reserved for Perl core internal use only',
1320 # Table fates. These are somewhat ordered, so that fates < $MAP_PROXIED should be
1321 # externally documented.
1322 my $ORDINARY = 0; # The normal fate.
1323 my $MAP_PROXIED = 1; # The map table for the property isn't written out,
1324 # but there is a file written that can be used to
1325 # reconstruct this table
1326 my $INTERNAL_ONLY = 2; # The file for this table is written out, but it is
1327 # for Perl's internal use only
1328 my $LEGACY_ONLY = 3; # Like $INTERNAL_ONLY, but not actually used by Perl.
1329 # Is for backwards compatibility for applications that
1330 # read the file directly, so it's format is
1332 my $SUPPRESSED = 4; # The file for this table is not written out, and as a
1333 # result, we don't bother to do many computations on
1335 my $PLACEHOLDER = 5; # Like $SUPPRESSED, but we go through all the
1336 # computations anyway, as the values are needed for
1337 # things to work. This happens when we have Perl
1338 # extensions that depend on Unicode tables that
1339 # wouldn't normally be in a given Unicode version.
1341 # The format of the values of the tables:
1342 my $EMPTY_FORMAT = "";
1343 my $BINARY_FORMAT = 'b';
1344 my $DECIMAL_FORMAT = 'd';
1345 my $FLOAT_FORMAT = 'f';
1346 my $INTEGER_FORMAT = 'i';
1347 my $HEX_FORMAT = 'x';
1348 my $RATIONAL_FORMAT = 'r';
1349 my $STRING_FORMAT = 's';
1350 my $ADJUST_FORMAT = 'a';
1351 my $HEX_ADJUST_FORMAT = 'ax';
1352 my $DECOMP_STRING_FORMAT = 'c';
1353 my $STRING_WHITE_SPACE_LIST = 'sw';
1355 my %map_table_formats = (
1356 $BINARY_FORMAT => 'binary',
1357 $DECIMAL_FORMAT => 'single decimal digit',
1358 $FLOAT_FORMAT => 'floating point number',
1359 $INTEGER_FORMAT => 'integer',
1360 $HEX_FORMAT => 'non-negative hex whole number; a code point',
1361 $RATIONAL_FORMAT => 'rational: an integer or a fraction',
1362 $STRING_FORMAT => 'string',
1363 $ADJUST_FORMAT => 'some entries need adjustment',
1364 $HEX_ADJUST_FORMAT => 'mapped value in hex; some entries need adjustment',
1365 $DECOMP_STRING_FORMAT => 'Perl\'s internal (Normalize.pm) decomposition mapping',
1366 $STRING_WHITE_SPACE_LIST => 'string, but some elements are interpreted as a list; white space occurs only as list item separators'
1369 # Unicode didn't put such derived files in a separate directory at first.
1370 my $EXTRACTED_DIR = (-d 'extracted') ? 'extracted' : "";
1371 my $EXTRACTED = ($EXTRACTED_DIR) ? "$EXTRACTED_DIR/" : "";
1372 my $AUXILIARY = 'auxiliary';
1374 # Hashes and arrays that will eventually go into Heavy.pl for the use of
1375 # utf8_heavy.pl and into UCD.pl for the use of UCD.pm
1376 my %loose_to_file_of; # loosely maps table names to their respective
1378 my %stricter_to_file_of; # same; but for stricter mapping.
1379 my %loose_property_to_file_of; # Maps a loose property name to its map file
1380 my %strict_property_to_file_of; # Same, but strict
1381 my @inline_definitions = "V0"; # Each element gives a definition of a unique
1382 # inversion list. When a definition is inlined,
1383 # its value in the hash it's in (one of the two
1384 # defined just above) will include an index into
1385 # this array. The 0th element is initialized to
1386 # the definition for a zero length inversion list
1387 my %file_to_swash_name; # Maps the file name to its corresponding key name
1388 # in the hash %utf8::SwashInfo
1389 my %nv_floating_to_rational; # maps numeric values floating point numbers to
1390 # their rational equivalent
1391 my %loose_property_name_of; # Loosely maps (non_string) property names to
1393 my %strict_property_name_of; # Strictly maps (non_string) property names to
1395 my %string_property_loose_to_name; # Same, for string properties.
1396 my %loose_defaults; # keys are of form "prop=value", where 'prop' is
1397 # the property name in standard loose form, and
1398 # 'value' is the default value for that property,
1399 # also in standard loose form.
1400 my %loose_to_standard_value; # loosely maps table names to the canonical
1402 my %ambiguous_names; # keys are alias names (in standard form) that
1403 # have more than one possible meaning.
1404 my %combination_property; # keys are alias names (in standard form) that
1405 # have both a map table, and a binary one that
1406 # yields true for all non-null maps.
1407 my %prop_aliases; # Keys are standard property name; values are each
1409 my %prop_value_aliases; # Keys of top level are standard property name;
1410 # values are keys to another hash, Each one is
1411 # one of the property's values, in standard form.
1412 # The values are that prop-val's aliases.
1413 my %ucd_pod; # Holds entries that will go into the UCD section of the pod
1415 # Most properties are immune to caseless matching, otherwise you would get
1416 # nonsensical results, as properties are a function of a code point, not
1417 # everything that is caselessly equivalent to that code point. For example,
1418 # Changes_When_Case_Folded('s') should be false, whereas caselessly it would
1419 # be true because 's' and 'S' are equivalent caselessly. However,
1420 # traditionally, [:upper:] and [:lower:] are equivalent caselessly, so we
1421 # extend that concept to those very few properties that are like this. Each
1422 # such property will match the full range caselessly. They are hard-coded in
1423 # the program; it's not worth trying to make it general as it's extremely
1424 # unlikely that they will ever change.
1425 my %caseless_equivalent_to;
1427 # These constants names and values were taken from the Unicode standard,
1428 # version 5.1, section 3.12. They are used in conjunction with Hangul
1429 # syllables. The '_string' versions are so generated tables can retain the
1430 # hex format, which is the more familiar value
1431 my $SBase_string = "0xAC00";
1432 my $SBase = CORE::hex $SBase_string;
1433 my $LBase_string = "0x1100";
1434 my $LBase = CORE::hex $LBase_string;
1435 my $VBase_string = "0x1161";
1436 my $VBase = CORE::hex $VBase_string;
1437 my $TBase_string = "0x11A7";
1438 my $TBase = CORE::hex $TBase_string;
1443 my $NCount = $VCount * $TCount;
1445 # For Hangul syllables; These store the numbers from Jamo.txt in conjunction
1446 # with the above published constants.
1448 my %Jamo_L; # Leading consonants
1449 my %Jamo_V; # Vowels
1450 my %Jamo_T; # Trailing consonants
1452 # For code points whose name contains its ordinal as a '-ABCD' suffix.
1453 # The key is the base name of the code point, and the value is an
1454 # array giving all the ranges that use this base name. Each range
1455 # is actually a hash giving the 'low' and 'high' values of it.
1456 my %names_ending_in_code_point;
1457 my %loose_names_ending_in_code_point; # Same as above, but has blanks, dashes
1458 # removed from the names
1459 # Inverse mapping. The list of ranges that have these kinds of
1460 # names. Each element contains the low, high, and base names in an
1462 my @code_points_ending_in_code_point;
1464 # To hold Unicode's normalization test suite
1465 my @normalization_tests;
1467 # Boolean: does this Unicode version have the hangul syllables, and are we
1468 # writing out a table for them?
1469 my $has_hangul_syllables = 0;
1471 # Does this Unicode version have code points whose names end in their
1472 # respective code points, and are we writing out a table for them? 0 for no;
1473 # otherwise points to first property that a table is needed for them, so that
1474 # if multiple tables are needed, we don't create duplicates
1475 my $needing_code_points_ending_in_code_point = 0;
1477 my @backslash_X_tests; # List of tests read in for testing \X
1478 my @SB_tests; # List of tests read in for testing \b{sb}
1479 my @WB_tests; # List of tests read in for testing \b{wb}
1480 my @unhandled_properties; # Will contain a list of properties found in
1481 # the input that we didn't process.
1482 my @match_properties; # Properties that have match tables, to be
1484 my @map_properties; # Properties that get map files written
1485 my @named_sequences; # NamedSequences.txt contents.
1486 my %potential_files; # Generated list of all .txt files in the directory
1487 # structure so we can warn if something is being
1489 my @files_actually_output; # List of files we generated.
1490 my @more_Names; # Some code point names are compound; this is used
1491 # to store the extra components of them.
1492 my $MIN_FRACTION_LENGTH = 3; # How many digits of a floating point number at
1493 # the minimum before we consider it equivalent to a
1494 # candidate rational
1495 my $MAX_FLOATING_SLOP = 10 ** - $MIN_FRACTION_LENGTH; # And in floating terms
1497 # These store references to certain commonly used property objects
1505 my $Assigned; # All assigned characters in this Unicode release
1508 # Are there conflicting names because of beginning with 'In_', or 'Is_'
1509 my $has_In_conflicts = 0;
1510 my $has_Is_conflicts = 0;
1512 sub internal_file_to_platform ($) {
1513 # Convert our file paths which have '/' separators to those of the
1517 return undef unless defined $file;
1519 return File::Spec->join(split '/', $file);
1522 sub file_exists ($) { # platform independent '-e'. This program internally
1523 # uses slash as a path separator.
1525 return 0 if ! defined $file;
1526 return -e internal_file_to_platform($file);
1530 # Returns the address of the blessed input object.
1531 # It doesn't check for blessedness because that would do a string eval
1532 # every call, and the program is structured so that this is never called
1533 # for a non-blessed object.
1535 no overloading; # If overloaded, numifying below won't work.
1537 # Numifying a ref gives its address.
1538 return pack 'J', $_[0];
1541 # These are used only if $annotate is true.
1542 # The entire range of Unicode characters is examined to populate these
1543 # after all the input has been processed. But most can be skipped, as they
1544 # have the same descriptive phrases, such as being unassigned
1545 my @viacode; # Contains the 1 million character names
1546 my @printable; # boolean: And are those characters printable?
1547 my @annotate_char_type; # Contains a type of those characters, specifically
1548 # for the purposes of annotation.
1549 my $annotate_ranges; # A map of ranges of code points that have the same
1550 # name for the purposes of annotation. They map to the
1551 # upper edge of the range, so that the end point can
1552 # be immediately found. This is used to skip ahead to
1553 # the end of a range, and avoid processing each
1554 # individual code point in it.
1555 my $unassigned_sans_noncharacters; # A Range_List of the unassigned
1556 # characters, but excluding those which are
1557 # also noncharacter code points
1559 # The annotation types are an extension of the regular range types, though
1560 # some of the latter are folded into one. Make the new types negative to
1561 # avoid conflicting with the regular types
1562 my $SURROGATE_TYPE = -1;
1563 my $UNASSIGNED_TYPE = -2;
1564 my $PRIVATE_USE_TYPE = -3;
1565 my $NONCHARACTER_TYPE = -4;
1566 my $CONTROL_TYPE = -5;
1567 my $ABOVE_UNICODE_TYPE = -6;
1568 my $UNKNOWN_TYPE = -7; # Used only if there is a bug in this program
1570 sub populate_char_info ($) {
1571 # Used only with the $annotate option. Populates the arrays with the
1572 # input code point's info that are needed for outputting more detailed
1573 # comments. If calling context wants a return, it is the end point of
1574 # any contiguous range of characters that share essentially the same info
1577 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
1579 $viacode[$i] = $perl_charname->value_of($i) || "";
1581 # A character is generally printable if Unicode says it is,
1582 # but below we make sure that most Unicode general category 'C' types
1584 $printable[$i] = $print->contains($i);
1586 $annotate_char_type[$i] = $perl_charname->type_of($i) || 0;
1588 # Only these two regular types are treated specially for annotations
1590 $annotate_char_type[$i] = 0 if $annotate_char_type[$i] != $CP_IN_NAME
1591 && $annotate_char_type[$i] != $HANGUL_SYLLABLE;
1593 # Give a generic name to all code points that don't have a real name.
1594 # We output ranges, if applicable, for these. Also calculate the end
1595 # point of the range.
1597 if (! $viacode[$i]) {
1599 if ($i > $MAX_UNICODE_CODEPOINT) {
1600 $viacode[$i] = 'Above-Unicode';
1601 $annotate_char_type[$i] = $ABOVE_UNICODE_TYPE;
1603 $end = $MAX_WORKING_CODEPOINT;
1605 elsif ($gc-> table('Private_use')->contains($i)) {
1606 $viacode[$i] = 'Private Use';
1607 $annotate_char_type[$i] = $PRIVATE_USE_TYPE;
1609 $end = $gc->table('Private_Use')->containing_range($i)->end;
1611 elsif ((defined ($nonchar =
1612 Property::property_ref('Noncharacter_Code_Point'))
1613 && $nonchar->table('Y')->contains($i)))
1615 $viacode[$i] = 'Noncharacter';
1616 $annotate_char_type[$i] = $NONCHARACTER_TYPE;
1618 $end = property_ref('Noncharacter_Code_Point')->table('Y')->
1619 containing_range($i)->end;
1621 elsif ($gc-> table('Control')->contains($i)) {
1622 $viacode[$i] = property_ref('Name_Alias')->value_of($i) || 'Control';
1623 $annotate_char_type[$i] = $CONTROL_TYPE;
1626 elsif ($gc-> table('Unassigned')->contains($i)) {
1627 $annotate_char_type[$i] = $UNASSIGNED_TYPE;
1629 if ($v_version lt v2.0.0) { # No blocks in earliest releases
1630 $viacode[$i] = 'Unassigned';
1631 $end = $gc-> table('Unassigned')->containing_range($i)->end;
1634 $viacode[$i] = 'Unassigned, block=' . $block-> value_of($i);
1636 # Because we name the unassigned by the blocks they are in, it
1637 # can't go past the end of that block, and it also can't go
1638 # past the unassigned range it is in. The special table makes
1639 # sure that the non-characters, which are unassigned, are
1641 $end = min($block->containing_range($i)->end,
1642 $unassigned_sans_noncharacters->
1643 containing_range($i)->end);
1646 elsif ($perl->table('_Perl_Surrogate')->contains($i)) {
1647 $viacode[$i] = 'Surrogate';
1648 $annotate_char_type[$i] = $SURROGATE_TYPE;
1650 $end = $gc->table('Surrogate')->containing_range($i)->end;
1653 Carp::my_carp_bug("Can't figure out how to annotate "
1654 . sprintf("U+%04X", $i)
1655 . ". Proceeding anyway.");
1656 $viacode[$i] = 'UNKNOWN';
1657 $annotate_char_type[$i] = $UNKNOWN_TYPE;
1662 # Here, has a name, but if it's one in which the code point number is
1663 # appended to the name, do that.
1664 elsif ($annotate_char_type[$i] == $CP_IN_NAME) {
1665 $viacode[$i] .= sprintf("-%04X", $i);
1666 $end = $perl_charname->containing_range($i)->end;
1669 # And here, has a name, but if it's a hangul syllable one, replace it with
1670 # the correct name from the Unicode algorithm
1671 elsif ($annotate_char_type[$i] == $HANGUL_SYLLABLE) {
1673 my $SIndex = $i - $SBase;
1674 my $L = $LBase + $SIndex / $NCount;
1675 my $V = $VBase + ($SIndex % $NCount) / $TCount;
1676 my $T = $TBase + $SIndex % $TCount;
1677 $viacode[$i] = "HANGUL SYLLABLE $Jamo{$L}$Jamo{$V}";
1678 $viacode[$i] .= $Jamo{$T} if $T != $TBase;
1679 $end = $perl_charname->containing_range($i)->end;
1682 return if ! defined wantarray;
1683 return $i if ! defined $end; # If not a range, return the input
1685 # Save this whole range so can find the end point quickly
1686 $annotate_ranges->add_map($i, $end, $end);
1691 # Commented code below should work on Perl 5.8.
1692 ## This 'require' doesn't necessarily work in miniperl, and even if it does,
1693 ## the native perl version of it (which is what would operate under miniperl)
1694 ## is extremely slow, as it does a string eval every call.
1695 #my $has_fast_scalar_util = $^X !~ /miniperl/
1696 # && defined eval "require Scalar::Util";
1699 # # Returns the address of the blessed input object. Uses the XS version if
1700 # # available. It doesn't check for blessedness because that would do a
1701 # # string eval every call, and the program is structured so that this is
1702 # # never called for a non-blessed object.
1704 # return Scalar::Util::refaddr($_[0]) if $has_fast_scalar_util;
1706 # # Check at least that is a ref.
1707 # my $pkg = ref($_[0]) or return undef;
1709 # # Change to a fake package to defeat any overloaded stringify
1710 # bless $_[0], 'main::Fake';
1712 # # Numifying a ref gives its address.
1713 # my $addr = pack 'J', $_[0];
1715 # # Return to original class
1716 # bless $_[0], $pkg;
1723 return $a if $a >= $b;
1730 return $a if $a <= $b;
1734 sub clarify_number ($) {
1735 # This returns the input number with underscores inserted every 3 digits
1736 # in large (5 digits or more) numbers. Input must be entirely digits, not
1740 my $pos = length($number) - 3;
1741 return $number if $pos <= 1;
1743 substr($number, $pos, 0) = '_';
1749 sub clarify_code_point_count ($) {
1750 # This is like clarify_number(), but the input is assumed to be a count of
1751 # code points, rather than a generic number.
1756 if ($number > $MAX_UNICODE_CODEPOINTS) {
1757 $number -= ($MAX_WORKING_CODEPOINTS - $MAX_UNICODE_CODEPOINTS);
1758 return "All above-Unicode code points" if $number == 0;
1759 $append = " + all above-Unicode code points";
1761 return clarify_number($number) . $append;
1766 # These routines give a uniform treatment of messages in this program. They
1767 # are placed in the Carp package to cause the stack trace to not include them,
1768 # although an alternative would be to use another package and set @CARP_NOT
1771 our $Verbose = 1 if main::DEBUG; # Useful info when debugging
1773 # This is a work-around suggested by Nicholas Clark to fix a problem with Carp
1774 # and overload trying to load Scalar:Util under miniperl. See
1775 # http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2009-11/msg01057.html
1776 undef $overload::VERSION;
1779 my $message = shift || "";
1780 my $nofold = shift || 0;
1783 $message = main::join_lines($message);
1784 $message =~ s/^$0: *//; # Remove initial program name
1785 $message =~ s/[.;,]+$//; # Remove certain ending punctuation
1786 $message = "\n$0: $message;";
1788 # Fold the message with program name, semi-colon end punctuation
1789 # (which looks good with the message that carp appends to it), and a
1790 # hanging indent for continuation lines.
1791 $message = main::simple_fold($message, "", 4) unless $nofold;
1792 $message =~ s/\n$//; # Remove the trailing nl so what carp
1793 # appends is to the same line
1796 return $message if defined wantarray; # If a caller just wants the msg
1803 # This is called when it is clear that the problem is caused by a bug in
1806 my $message = shift;
1807 $message =~ s/^$0: *//;
1808 $message = my_carp("Bug in $0. Please report it by running perlbug or if that is unavailable, by sending email to perbug\@perl.org:\n$message");
1813 sub carp_too_few_args {
1815 my_carp_bug("Wrong number of arguments: to 'carp_too_few_arguments'. No action taken.");
1819 my $args_ref = shift;
1822 my_carp_bug("Need at least $count arguments to "
1824 . ". Instead got: '"
1825 . join ', ', @$args_ref
1826 . "'. No action taken.");
1830 sub carp_extra_args {
1831 my $args_ref = shift;
1832 my_carp_bug("Too many arguments to 'carp_extra_args': (" . join(', ', @_) . "); Extras ignored.") if @_;
1834 unless (ref $args_ref) {
1835 my_carp_bug("Argument to 'carp_extra_args' ($args_ref) must be a ref. Not checking arguments.");
1838 my ($package, $file, $line) = caller;
1839 my $subroutine = (caller 1)[3];
1842 if (ref $args_ref eq 'HASH') {
1843 foreach my $key (keys %$args_ref) {
1844 $args_ref->{$key} = $UNDEF unless defined $args_ref->{$key};
1846 $list = join ', ', each %{$args_ref};
1848 elsif (ref $args_ref eq 'ARRAY') {
1849 foreach my $arg (@$args_ref) {
1850 $arg = $UNDEF unless defined $arg;
1852 $list = join ', ', @$args_ref;
1855 my_carp_bug("Can't cope with ref "
1857 . " . argument to 'carp_extra_args'. Not checking arguments.");
1861 my_carp_bug("Unrecognized parameters in options: '$list' to $subroutine. Skipped.");
1869 # This program uses the inside-out method for objects, as recommended in
1870 # "Perl Best Practices". (This is the best solution still, since this has
1871 # to run under miniperl.) This closure aids in generating those. There
1872 # are two routines. setup_package() is called once per package to set
1873 # things up, and then set_access() is called for each hash representing a
1874 # field in the object. These routines arrange for the object to be
1875 # properly destroyed when no longer used, and for standard accessor
1876 # functions to be generated. If you need more complex accessors, just
1877 # write your own and leave those accesses out of the call to set_access().
1878 # More details below.
1880 my %constructor_fields; # fields that are to be used in constructors; see
1883 # The values of this hash will be the package names as keys to other
1884 # hashes containing the name of each field in the package as keys, and
1885 # references to their respective hashes as values.
1889 # Sets up the package, creating standard DESTROY and dump methods
1890 # (unless already defined). The dump method is used in debugging by
1892 # The optional parameters are:
1893 # a) a reference to a hash, that gets populated by later
1894 # set_access() calls with one of the accesses being
1895 # 'constructor'. The caller can then refer to this, but it is
1896 # not otherwise used by these two routines.
1897 # b) a reference to a callback routine to call during destruction
1898 # of the object, before any fields are actually destroyed
1901 my $constructor_ref = delete $args{'Constructor_Fields'};
1902 my $destroy_callback = delete $args{'Destroy_Callback'};
1903 Carp::carp_extra_args(\@_) if main::DEBUG && %args;
1906 my $package = (caller)[0];
1908 $package_fields{$package} = \%fields;
1909 $constructor_fields{$package} = $constructor_ref;
1911 unless ($package->can('DESTROY')) {
1912 my $destroy_name = "${package}::DESTROY";
1915 # Use typeglob to give the anonymous subroutine the name we want
1916 *$destroy_name = sub {
1918 my $addr = do { no overloading; pack 'J', $self; };
1920 $self->$destroy_callback if $destroy_callback;
1921 foreach my $field (keys %{$package_fields{$package}}) {
1922 #print STDERR __LINE__, ": Destroying ", ref $self, " ", sprintf("%04X", $addr), ": ", $field, "\n";
1923 delete $package_fields{$package}{$field}{$addr};
1929 unless ($package->can('dump')) {
1930 my $dump_name = "${package}::dump";
1934 return dump_inside_out($self, $package_fields{$package}, @_);
1941 # Arrange for the input field to be garbage collected when no longer
1942 # needed. Also, creates standard accessor functions for the field
1943 # based on the optional parameters-- none if none of these parameters:
1944 # 'addable' creates an 'add_NAME()' accessor function.
1945 # 'readable' or 'readable_array' creates a 'NAME()' accessor
1947 # 'settable' creates a 'set_NAME()' accessor function.
1948 # 'constructor' doesn't create an accessor function, but adds the
1949 # field to the hash that was previously passed to
1951 # Any of the accesses can be abbreviated down, so that 'a', 'ad',
1952 # 'add' etc. all mean 'addable'.
1953 # The read accessor function will work on both array and scalar
1954 # values. If another accessor in the parameter list is 'a', the read
1955 # access assumes an array. You can also force it to be array access
1956 # by specifying 'readable_array' instead of 'readable'
1958 # A sort-of 'protected' access can be set-up by preceding the addable,
1959 # readable or settable with some initial portion of 'protected_' (but,
1960 # the underscore is required), like 'p_a', 'pro_set', etc. The
1961 # "protection" is only by convention. All that happens is that the
1962 # accessor functions' names begin with an underscore. So instead of
1963 # calling set_foo, the call is _set_foo. (Real protection could be
1964 # accomplished by having a new subroutine, end_package, called at the
1965 # end of each package, and then storing the __LINE__ ranges and
1966 # checking them on every accessor. But that is way overkill.)
1968 # We create anonymous subroutines as the accessors and then use
1969 # typeglobs to assign them to the proper package and name
1971 my $name = shift; # Name of the field
1972 my $field = shift; # Reference to the inside-out hash containing the
1975 my $package = (caller)[0];
1977 if (! exists $package_fields{$package}) {
1978 croak "$0: Must call 'setup_package' before 'set_access'";
1981 # Stash the field so DESTROY can get it.
1982 $package_fields{$package}{$name} = $field;
1984 # Remaining arguments are the accessors. For each...
1985 foreach my $access (@_) {
1986 my $access = lc $access;
1990 # Match the input as far as it goes.
1991 if ($access =~ /^(p[^_]*)_/) {
1993 if (substr('protected_', 0, length $protected)
1997 # Add 1 for the underscore not included in $protected
1998 $access = substr($access, length($protected) + 1);
2006 if (substr('addable', 0, length $access) eq $access) {
2007 my $subname = "${package}::${protected}add_$name";
2010 # add_ accessor. Don't add if already there, which we
2011 # determine using 'eq' for scalars and '==' otherwise.
2014 return Carp::carp_too_few_args(\@_, 2) if main::DEBUG && @_ < 2;
2017 my $addr = do { no overloading; pack 'J', $self; };
2018 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2020 return if grep { $value == $_ } @{$field->{$addr}};
2023 return if grep { $value eq $_ } @{$field->{$addr}};
2025 push @{$field->{$addr}}, $value;
2029 elsif (substr('constructor', 0, length $access) eq $access) {
2031 Carp::my_carp_bug("Can't set-up 'protected' constructors")
2034 $constructor_fields{$package}{$name} = $field;
2037 elsif (substr('readable_array', 0, length $access) eq $access) {
2039 # Here has read access. If one of the other parameters for
2040 # access is array, or this one specifies array (by being more
2041 # than just 'readable_'), then create a subroutine that
2042 # assumes the data is an array. Otherwise just a scalar
2043 my $subname = "${package}::${protected}$name";
2044 if (grep { /^a/i } @_
2045 or length($access) > length('readable_'))
2050 Carp::carp_extra_args(\@_) if main::DEBUG && @_ > 1;
2051 my $addr = do { no overloading; pack 'J', $_[0]; };
2052 if (ref $field->{$addr} ne 'ARRAY') {
2053 my $type = ref $field->{$addr};
2054 $type = 'scalar' unless $type;
2055 Carp::my_carp_bug("Trying to read $name as an array when it is a $type. Big problems.");
2058 return scalar @{$field->{$addr}} unless wantarray;
2060 # Make a copy; had problems with caller modifying the
2061 # original otherwise
2062 my @return = @{$field->{$addr}};
2068 # Here not an array value, a simpler function.
2072 Carp::carp_extra_args(\@_) if main::DEBUG && @_ > 1;
2074 return $field->{pack 'J', $_[0]};
2078 elsif (substr('settable', 0, length $access) eq $access) {
2079 my $subname = "${package}::${protected}set_$name";
2084 return Carp::carp_too_few_args(\@_, 2) if @_ < 2;
2085 Carp::carp_extra_args(\@_) if @_ > 2;
2087 # $self is $_[0]; $value is $_[1]
2089 $field->{pack 'J', $_[0]} = $_[1];
2094 Carp::my_carp_bug("Unknown accessor type $access. No accessor set.");
2103 # All input files use this object, which stores various attributes about them,
2104 # and provides for convenient, uniform handling. The run method wraps the
2105 # processing. It handles all the bookkeeping of opening, reading, and closing
2106 # the file, returning only significant input lines.
2108 # Each object gets a handler which processes the body of the file, and is
2109 # called by run(). All character property files must use the generic,
2110 # default handler, which has code scrubbed to handle things you might not
2111 # expect, including automatic EBCDIC handling. For files that don't deal with
2112 # mapping code points to a property value, such as test files,
2113 # PropertyAliases, PropValueAliases, and named sequences, you can override the
2114 # handler to be a custom one. Such a handler should basically be a
2115 # while(next_line()) {...} loop.
2117 # You can also set up handlers to
2118 # 0) call during object construction time, after everything else is done
2119 # 1) call before the first line is read, for pre processing
2120 # 2) call to adjust each line of the input before the main handler gets
2121 # them. This can be automatically generated, if appropriately simple
2122 # enough, by specifiying a Properties parameter in the constructor.
2123 # 3) call upon EOF before the main handler exits its loop
2124 # 4) call at the end, for post processing
2126 # $_ is used to store the input line, and is to be filtered by the
2127 # each_line_handler()s. So, if the format of the line is not in the desired
2128 # format for the main handler, these are used to do that adjusting. They can
2129 # be stacked (by enclosing them in an [ anonymous array ] in the constructor,
2130 # so the $_ output of one is used as the input to the next. The eof handler
2131 # is also stackable, but none of the others are, but could easily be changed
2134 # Most of the handlers can call insert_lines() or insert_adjusted_lines()
2135 # which insert the parameters as lines to be processed before the next input
2136 # file line is read. This allows the EOF handler(s) to flush buffers, for
2137 # example. The difference between the two routines is that the lines inserted
2138 # by insert_lines() are subjected to the each_line_handler()s. (So if you
2139 # called it from such a handler, you would get infinite recursion without some
2140 # mechanism to prevent that.) Lines inserted by insert_adjusted_lines() go
2141 # directly to the main handler without any adjustments. If the
2142 # post-processing handler calls any of these, there will be no effect. Some
2143 # error checking for these conditions could be added, but it hasn't been done.
2145 # carp_bad_line() should be called to warn of bad input lines, which clears $_
2146 # to prevent further processing of the line. This routine will output the
2147 # message as a warning once, and then keep a count of the lines that have the
2148 # same message, and output that count at the end of the file's processing.
2149 # This keeps the number of messages down to a manageable amount.
2151 # get_missings() should be called to retrieve any @missing input lines.
2152 # Messages will be raised if this isn't done if the options aren't to ignore
2155 sub trace { return main::trace(@_); }
2158 # Keep track of fields that are to be put into the constructor.
2159 my %constructor_fields;
2161 main::setup_package(Constructor_Fields => \%constructor_fields);
2163 my %file; # Input file name, required
2164 main::set_access('file', \%file, qw{ c r });
2166 my %first_released; # Unicode version file was first released in, required
2167 main::set_access('first_released', \%first_released, qw{ c r });
2169 my %handler; # Subroutine to process the input file, defaults to
2170 # 'process_generic_property_file'
2171 main::set_access('handler', \%handler, qw{ c });
2174 # name of property this file is for. defaults to none, meaning not
2175 # applicable, or is otherwise determinable, for example, from each line.
2176 main::set_access('property', \%property, qw{ c r });
2179 # If this is true, the file is optional. If not present, no warning is
2180 # output. If it is present, the string given by this parameter is
2181 # evaluated, and if false the file is not processed.
2182 main::set_access('optional', \%optional, 'c', 'r');
2185 # This is used for debugging, to skip processing of all but a few input
2186 # files. Add 'non_skip => 1' to the constructor for those files you want
2187 # processed when you set the $debug_skip global.
2188 main::set_access('non_skip', \%non_skip, 'c');
2191 # This is used to skip processing of this input file (semi-) permanently.
2192 # The value should be the reason the file is being skipped. It is used
2193 # for files that we aren't planning to process anytime soon, but want to
2194 # allow to be in the directory and be checked for their names not
2195 # conflicting with any other files on a DOS 8.3 name filesystem, but to
2196 # not otherwise be processed, and to not raise a warning about not being
2197 # handled. In the constructor call, any value that evaluates to a numeric
2198 # 0 or undef means don't skip. Any other value is a string giving the
2199 # reason it is being skippped, and this will appear in generated pod.
2200 # However, an empty string reason will suppress the pod entry.
2201 # Internally, calls that evaluate to numeric 0 are changed into undef to
2202 # distinguish them from an empty string call.
2203 main::set_access('skip', \%skip, 'c', 'r');
2205 my %each_line_handler;
2206 # list of subroutines to look at and filter each non-comment line in the
2207 # file. defaults to none. The subroutines are called in order, each is
2208 # to adjust $_ for the next one, and the final one adjusts it for
2210 main::set_access('each_line_handler', \%each_line_handler, 'c');
2212 my %properties; # Optional ordered list of the properties that occur in each
2213 # meaningful line of the input file. If present, an appropriate
2214 # each_line_handler() is automatically generated and pushed onto the stack
2215 # of such handlers. This is useful when a file contains multiple
2216 # proerties per line, but no other special considerations are necessary.
2217 # The special value "<ignored>" means to discard the corresponding input
2219 # Any @missing lines in the file should also match this syntax; no such
2220 # files exist as of 6.3. But if it happens in a future release, the code
2221 # could be expanded to properly parse them.
2222 main::set_access('properties', \%properties, qw{ c r });
2224 my %has_missings_defaults;
2225 # ? Are there lines in the file giving default values for code points
2226 # missing from it?. Defaults to NO_DEFAULTS. Otherwise NOT_IGNORED is
2227 # the norm, but IGNORED means it has such lines, but the handler doesn't
2228 # use them. Having these three states allows us to catch changes to the
2229 # UCD that this program should track. XXX This could be expanded to
2230 # specify the syntax for such lines, like %properties above.
2231 main::set_access('has_missings_defaults',
2232 \%has_missings_defaults, qw{ c r });
2234 my %construction_time_handler;
2235 # Subroutine to call at the end of the new method. If undef, no such
2236 # handler is called.
2237 main::set_access('construction_time_handler',
2238 \%construction_time_handler, qw{ c });
2241 # Subroutine to call before doing anything else in the file. If undef, no
2242 # such handler is called.
2243 main::set_access('pre_handler', \%pre_handler, qw{ c });
2246 # Subroutines to call upon getting an EOF on the input file, but before
2247 # that is returned to the main handler. This is to allow buffers to be
2248 # flushed. The handler is expected to call insert_lines() or
2249 # insert_adjusted() with the buffered material
2250 main::set_access('eof_handler', \%eof_handler, qw{ c });
2253 # Subroutine to call after all the lines of the file are read in and
2254 # processed. If undef, no such handler is called. Note that this cannot
2255 # add lines to be processed; instead use eof_handler
2256 main::set_access('post_handler', \%post_handler, qw{ c });
2258 my %progress_message;
2259 # Message to print to display progress in lieu of the standard one
2260 main::set_access('progress_message', \%progress_message, qw{ c });
2263 # cache open file handle, internal. Is undef if file hasn't been
2264 # processed at all, empty if has;
2265 main::set_access('handle', \%handle);
2268 # cache of lines added virtually to the file, internal
2269 main::set_access('added_lines', \%added_lines);
2272 # cache of lines added virtually to the file, internal
2273 main::set_access('remapped_lines', \%remapped_lines);
2276 # cache of errors found, internal
2277 main::set_access('errors', \%errors);
2280 # storage of '@missing' defaults lines
2281 main::set_access('missings', \%missings);
2283 my %required_even_in_debug_skip;
2284 # debug_skip is used to speed up compilation during debugging by skipping
2285 # processing files that are not needed for the task at hand. However,
2286 # some files pretty much can never be skipped, and this is used to specify
2287 # that this is one of them. In order to skip this file, the call to the
2288 # constructor must be edited to comment out this parameter.
2289 main::set_access('required_even_in_debug_skip',
2290 \%required_even_in_debug_skip, 'c');
2293 # Some files get removed from the Unicode DB. This is a version object
2294 # giving the first release without this file.
2295 main::set_access('withdrawn', \%withdrawn, 'c');
2297 my %in_this_release;
2298 # Calculated value from %first_released and %withdrawn. Are we compiling
2299 # a Unicode release which includes this file?
2300 main::set_access('in_this_release', \%in_this_release);
2303 sub _next_line_with_remapped_range;
2308 my $self = bless \do{ my $anonymous_scalar }, $class;
2309 my $addr = do { no overloading; pack 'J', $self; };
2312 $handler{$addr} = \&main::process_generic_property_file;
2313 $non_skip{$addr} = 0;
2314 $skip{$addr} = undef;
2315 $has_missings_defaults{$addr} = $NO_DEFAULTS;
2316 $handle{$addr} = undef;
2317 $added_lines{$addr} = [ ];
2318 $remapped_lines{$addr} = [ ];
2319 $each_line_handler{$addr} = [ ];
2320 $eof_handler{$addr} = [ ];
2321 $errors{$addr} = { };
2322 $missings{$addr} = [ ];
2324 # Two positional parameters.
2325 return Carp::carp_too_few_args(\@_, 2) if main::DEBUG && @_ < 2;
2326 $file{$addr} = main::internal_file_to_platform(shift);
2327 $first_released{$addr} = shift;
2329 # The rest of the arguments are key => value pairs
2330 # %constructor_fields has been set up earlier to list all possible
2331 # ones. Either set or push, depending on how the default has been set
2334 foreach my $key (keys %args) {
2335 my $argument = $args{$key};
2337 # Note that the fields are the lower case of the constructor keys
2338 my $hash = $constructor_fields{lc $key};
2339 if (! defined $hash) {
2340 Carp::my_carp_bug("Unrecognized parameters '$key => $argument' to new() for $self. Skipped");
2343 if (ref $hash->{$addr} eq 'ARRAY') {
2344 if (ref $argument eq 'ARRAY') {
2345 foreach my $argument (@{$argument}) {
2346 next if ! defined $argument;
2347 push @{$hash->{$addr}}, $argument;
2351 push @{$hash->{$addr}}, $argument if defined $argument;
2355 $hash->{$addr} = $argument;
2360 $non_skip{$addr} = 1 if $required_even_in_debug_skip{$addr};
2362 # Convert 0 (meaning don't skip) to undef
2363 undef $skip{$addr} unless $skip{$addr};
2367 if ($first_released{$addr} le $v_version) {
2368 $progress = $file{$addr};
2371 my $file = $file{$addr};
2372 $progress_message{$addr} = "Processing $progress"
2373 unless $progress_message{$addr};
2375 # A file should be there if it is within the window of versions for
2376 # which Unicode supplies it
2377 if ($withdrawn{$addr} && $withdrawn{$addr} le $v_version) {
2378 $in_this_release{$addr} = 0;
2382 $in_this_release{$addr} = $first_released{$addr} le $v_version;
2384 # Check that the file for this object exists
2385 if (! main::file_exists($file))
2387 # Here there is nothing available for this release. This is
2388 # fine if we aren't expecting anything in this release.
2389 if (! $in_this_release{$addr}) {
2390 $skip{$addr} = ""; # Don't remark since we expected
2391 # nothing and got nothing
2393 elsif ($optional{$addr}) {
2395 # Here the file is optional in this release.
2398 elsif ( $in_this_release{$addr}
2399 && ! defined $skip{$addr}
2401 { # Doesn't exist but should.
2402 $skip{$addr} = "'$file' not found. Possibly Big problems";
2403 Carp::my_carp($skip{$addr});
2406 elsif ($debug_skip && ! defined $skip{$addr} && ! $non_skip{$addr})
2409 # The file exists; if not skipped for another reason, and we are
2410 # skipping most everything during debugging builds, use that as
2412 $skip{$addr} = '$debug_skip is on'
2418 && ! $required_even_in_debug_skip{$addr}
2421 print "Warning: " . __PACKAGE__ . " constructor for $file has useless 'non_skip' in it\n";
2424 # Here, we have figured out if we will be skipping this file or not.
2425 if (defined $skip{$addr}) {
2427 elsif ($property{$addr}) {
2429 # If the file has a property defined in the constructor for it, it
2430 # means that the property is not listed in the file's entries. So
2431 # add a handler (to the list of line handlers) to insert the
2432 # property name into the lines, to provide a uniform interface to
2433 # the final processing subroutine.
2434 push @{$each_line_handler{$addr}}, \&_insert_property_into_line;
2436 elsif ($properties{$addr}) {
2438 # Similarly, there may be more than one property represented on
2439 # each line, with no clue but the constructor input what those
2440 # might be. Add a handler for each line in the input so that it
2441 # creates a separate input line for each property in those input
2442 # lines, thus making them suitable to handle generically.
2444 push @{$each_line_handler{$addr}},
2447 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2449 my @fields = split /\s*;\s*/, $_, -1;
2451 if (@fields - 1 > @{$properties{$addr}}) {
2452 $file->carp_bad_line('Extra fields');
2456 my $range = shift @fields; # 0th element is always the
2459 # The next fields in the input line correspond
2460 # respectively to the stored properties.
2461 for my $i (0 .. @{$properties{$addr}} - 1) {
2462 my $property_name = $properties{$addr}[$i];
2463 next if $property_name eq '<ignored>';
2464 $file->insert_adjusted_lines(
2465 "$range; $property_name; $fields[$i]");
2473 { # On non-ascii platforms, we use a special pre-handler
2476 *next_line = (main::NON_ASCII_PLATFORM)
2477 ? *_next_line_with_remapped_range
2481 &{$construction_time_handler{$addr}}($self)
2482 if $construction_time_handler{$addr};
2490 qw("") => "_operator_stringify",
2491 "." => \&main::_operator_dot,
2492 ".=" => \&main::_operator_dot_equal,
2495 sub _operator_stringify {
2498 return __PACKAGE__ . " object for " . $self->file;
2502 # Process the input object $self. This opens and closes the file and
2503 # calls all the handlers for it. Currently, this can only be called
2504 # once per file, as it destroy's the EOF handlers
2506 # flag to make sure extracted files are processed early
2507 state $seen_non_extracted_non_age = 0;
2510 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2512 my $addr = do { no overloading; pack 'J', $self; };
2514 my $file = $file{$addr};
2517 $handle{$addr} = 'pretend_is_open';
2520 if ($seen_non_extracted_non_age) {
2521 if ($file =~ /$EXTRACTED/i) # Some platforms may change the
2522 # case of the file's name
2524 Carp::my_carp_bug(main::join_lines(<<END
2525 $file should be processed just after the 'Prop...Alias' files, and before
2526 anything not in the $EXTRACTED_DIR directory. Proceeding, but the results may
2527 have subtle problems
2532 elsif ($EXTRACTED_DIR
2534 # We only do this check for generic property files
2535 && $handler{$addr} == \&main::process_generic_property_file
2537 && $file !~ /$EXTRACTED/i
2538 && lc($file) ne 'dage.txt')
2540 # We don't set this (by the 'if' above) if we have no
2541 # extracted directory, so if running on an early version,
2542 # this test won't work. Not worth worrying about.
2543 $seen_non_extracted_non_age = 1;
2546 # Mark the file as having being processed, and warn if it
2547 # isn't a file we are expecting. As we process the files,
2548 # they are deleted from the hash, so any that remain at the
2549 # end of the program are files that we didn't process.
2550 my $fkey = File::Spec->rel2abs($file);
2551 my $exists = delete $potential_files{lc($fkey)};
2553 Carp::my_carp("Was not expecting '$file'.")
2554 if $exists && ! $in_this_release{$addr};
2556 # We may be skipping this file ...
2557 if (defined $skip{$addr}) {
2559 # If the file isn't supposed to be in this release, there is
2561 if ($in_this_release{$addr}) {
2563 # But otherwise, we may print a message
2565 print STDERR "Skipping input file '$file'",
2566 " because '$skip{$addr}'\n";
2569 # And add it to the list of skipped files, which is later
2570 # used to make the pod
2571 $skipped_files{$file} = $skip{$addr};
2577 # Here, we are going to process the file. Open it, converting the
2578 # slashes used in this program into the proper form for the OS
2580 if (not open $file_handle, "<", $file) {
2581 Carp::my_carp("Can't open $file. Skipping: $!");
2584 $handle{$addr} = $file_handle; # Cache the open file handle
2586 # If possible, make sure that the file is the correct version.
2587 # (This data isn't available on early Unicode releases or in
2588 # UnicodeData.txt.) We don't do this check if we are using a
2589 # substitute file instead of the official one (though the code
2590 # could be extended to do so).
2591 if ($in_this_release{$addr}
2592 && lc($file) ne 'unicodedata.txt')
2594 if ($file !~ /^Unihan/i) {
2596 # The non-Unihan files started getting version numbers in
2597 # 3.2, but some files in 4.0 are unchanged from 3.2, and
2598 # marked as 3.2. 4.0.1 is the first version where there
2599 # are no files marked as being from less than 4.0, though
2600 # some are marked as 4.0. In versions after that, the
2601 # numbers are correct.
2602 if ($v_version ge v4.0.1) {
2603 $_ = <$file_handle>; # The version number is in the
2605 if ($_ !~ / - $string_version \. /x) {
2609 # 4.0.1 had some valid files that weren't updated.
2610 if (! ($v_version eq v4.0.1 && $_ =~ /4\.0\.0/)) {
2611 die Carp::my_carp("File '$file' is version "
2612 . "'$_'. It should be "
2613 . "version $string_version");
2618 elsif ($v_version ge v6.0.0) { # Unihan
2620 # Unihan files didn't get accurate version numbers until
2621 # 6.0. The version is somewhere in the first comment
2623 while (<$file_handle>) {
2625 Carp::my_carp_bug("Could not find the expected "
2626 . "version info in file '$file'");
2631 next if $_ !~ / version: /x;
2632 last if $_ =~ /$string_version/;
2633 die Carp::my_carp("File '$file' is version "
2634 . "'$_'. It should be "
2635 . "version $string_version");
2641 print "$progress_message{$addr}\n" if $verbosity >= $PROGRESS;
2643 # Call any special handler for before the file.
2644 &{$pre_handler{$addr}}($self) if $pre_handler{$addr};
2646 # Then the main handler
2647 &{$handler{$addr}}($self);
2649 # Then any special post-file handler.
2650 &{$post_handler{$addr}}($self) if $post_handler{$addr};
2652 # If any errors have been accumulated, output the counts (as the first
2653 # error message in each class was output when it was encountered).
2654 if ($errors{$addr}) {
2657 foreach my $error (keys %{$errors{$addr}}) {
2658 $total += $errors{$addr}->{$error};
2659 delete $errors{$addr}->{$error};
2664 = "A total of $total lines had errors in $file. ";
2666 $message .= ($types == 1)
2667 ? '(Only the first one was displayed.)'
2668 : '(Only the first of each type was displayed.)';
2669 Carp::my_carp($message);
2673 if (@{$missings{$addr}}) {
2674 Carp::my_carp_bug("Handler for $file didn't look at all the \@missing lines. Generated tables likely are wrong");
2677 # If a real file handle, close it.
2678 close $handle{$addr} or Carp::my_carp("Can't close $file: $!") if
2680 $handle{$addr} = ""; # Uses empty to indicate that has already seen
2681 # the file, as opposed to undef
2686 # Sets $_ to be the next logical input line, if any. Returns non-zero
2687 # if such a line exists. 'logical' means that any lines that have
2688 # been added via insert_lines() will be returned in $_ before the file
2692 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2694 my $addr = do { no overloading; pack 'J', $self; };
2696 # Here the file is open (or if the handle is not a ref, is an open
2697 # 'virtual' file). Get the next line; any inserted lines get priority
2698 # over the file itself.
2702 while (1) { # Loop until find non-comment, non-empty line
2703 #local $to_trace = 1 if main::DEBUG;
2704 my $inserted_ref = shift @{$added_lines{$addr}};
2705 if (defined $inserted_ref) {
2706 ($adjusted, $_) = @{$inserted_ref};
2707 trace $adjusted, $_ if main::DEBUG && $to_trace;
2708 return 1 if $adjusted;
2711 last if ! ref $handle{$addr}; # Don't read unless is real file
2712 last if ! defined ($_ = readline $handle{$addr});
2715 trace $_ if main::DEBUG && $to_trace;
2717 # See if this line is the comment line that defines what property
2718 # value that code points that are not listed in the file should
2719 # have. The format or existence of these lines is not guaranteed
2720 # by Unicode since they are comments, but the documentation says
2721 # that this was added for machine-readability, so probably won't
2722 # change. This works starting in Unicode Version 5.0. They look
2725 # @missing: 0000..10FFFF; Not_Reordered
2726 # @missing: 0000..10FFFF; Decomposition_Mapping; <code point>
2727 # @missing: 0000..10FFFF; ; NaN
2729 # Save the line for a later get_missings() call.
2730 if (/$missing_defaults_prefix/) {
2731 if ($has_missings_defaults{$addr} == $NO_DEFAULTS) {
2732 $self->carp_bad_line("Unexpected \@missing line. Assuming no missing entries");
2734 elsif ($has_missings_defaults{$addr} == $NOT_IGNORED) {
2735 my @defaults = split /\s* ; \s*/x, $_;
2737 # The first field is the @missing, which ends in a
2738 # semi-colon, so can safely shift.
2741 # Some of these lines may have empty field placeholders
2742 # which get in the way. An example is:
2743 # @missing: 0000..10FFFF; ; NaN
2744 # Remove them. Process starting from the top so the
2745 # splice doesn't affect things still to be looked at.
2746 for (my $i = @defaults - 1; $i >= 0; $i--) {
2747 next if $defaults[$i] ne "";
2748 splice @defaults, $i, 1;
2751 # What's left should be just the property (maybe) and the
2752 # default. Having only one element means it doesn't have
2756 if (@defaults >= 1) {
2757 if (@defaults == 1) {
2758 $default = $defaults[0];
2761 $property = $defaults[0];
2762 $default = $defaults[1];
2768 || ($default =~ /^</
2769 && $default !~ /^<code *point>$/i
2770 && $default !~ /^<none>$/i
2771 && $default !~ /^<script>$/i))
2773 $self->carp_bad_line("Unrecognized \@missing line: $_. Assuming no missing entries");
2777 # If the property is missing from the line, it should
2778 # be the one for the whole file
2779 $property = $property{$addr} if ! defined $property;
2781 # Change <none> to the null string, which is what it
2782 # really means. If the default is the code point
2783 # itself, set it to <code point>, which is what
2784 # Unicode uses (but sometimes they've forgotten the
2786 if ($default =~ /^<none>$/i) {
2789 elsif ($default =~ /^<code *point>$/i) {
2790 $default = $CODE_POINT;
2792 elsif ($default =~ /^<script>$/i) {
2794 # Special case this one. Currently is from
2795 # ScriptExtensions.txt, and means for all unlisted
2796 # code points, use their Script property values.
2797 # For the code points not listed in that file, the
2798 # default value is 'Unknown'.
2799 $default = "Unknown";
2802 # Store them as a sub-arrays with both components.
2803 push @{$missings{$addr}}, [ $default, $property ];
2807 # There is nothing for the caller to process on this comment
2812 # Remove comments and trailing space, and skip this line if the
2818 # Call any handlers for this line, and skip further processing of
2819 # the line if the handler sets the line to null.
2820 foreach my $sub_ref (@{$each_line_handler{$addr}}) {
2825 # Here the line is ok. return success.
2827 } # End of looping through lines.
2829 # If there are EOF handlers, call each (only once) and if it generates
2830 # more lines to process go back in the loop to handle them.
2831 while ($eof_handler{$addr}->@*) {
2832 &{$eof_handler{$addr}[0]}($self);
2833 shift $eof_handler{$addr}->@*; # Currently only get one shot at it.
2834 goto LINE if $added_lines{$addr};
2837 # Return failure -- no more lines.
2842 sub _next_line_with_remapped_range {
2844 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2846 # like _next_line(), but for use on non-ASCII platforms. It sets $_
2847 # to be the next logical input line, if any. Returns non-zero if such
2848 # a line exists. 'logical' means that any lines that have been added
2849 # via insert_lines() will be returned in $_ before the file is read
2852 # The difference from _next_line() is that this remaps the Unicode
2853 # code points in the input to those of the native platform. Each
2854 # input line contains a single code point, or a single contiguous
2855 # range of them This routine splits each range into its individual
2856 # code points and caches them. It returns the cached values,
2857 # translated into their native equivalents, one at a time, for each
2858 # call, before reading the next line. Since native values can only be
2859 # a single byte wide, no translation is needed for code points above
2860 # 0xFF, and ranges that are entirely above that number are not split.
2861 # If an input line contains the range 254-1000, it would be split into
2862 # three elements: 254, 255, and 256-1000. (The downstream table
2863 # insertion code will sort and coalesce the individual code points
2864 # into appropriate ranges.)
2866 my $addr = do { no overloading; pack 'J', $self; };
2870 # Look in cache before reading the next line. Return any cached
2872 my $inserted = shift @{$remapped_lines{$addr}};
2873 if (defined $inserted) {
2874 trace $inserted if main::DEBUG && $to_trace;
2875 $_ = $inserted =~ s/^ ( \d+ ) /sprintf("%04X", utf8::unicode_to_native($1))/xer;
2876 trace $_ if main::DEBUG && $to_trace;
2880 # Get the next line.
2881 return 0 unless _next_line($self);
2883 # If there is a special handler for it, return the line,
2884 # untranslated. This should happen only for files that are
2885 # special, not being code-point related, such as property names.
2886 return 1 if $handler{$addr}
2887 != \&main::process_generic_property_file;
2889 my ($range, $property_name, $map, @remainder)
2890 = split /\s*;\s*/, $_, -1; # -1 => retain trailing null fields
2893 || ! defined $property_name
2894 || $range !~ /^ ($code_point_re) (?:\.\. ($code_point_re) )? $/x)
2896 Carp::my_carp_bug("Unrecognized input line '$_'. Ignored");
2900 my $high = (defined $2) ? hex $2 : $low;
2902 # If the input maps the range to another code point, remap the
2903 # target if it is between 0 and 255.
2906 $map =~ s/\b 00 ( [0-9A-F]{2} ) \b/sprintf("%04X", utf8::unicode_to_native(hex $1))/gxe;
2907 $tail = "$property_name; $map";
2908 $_ = "$range; $tail";
2911 $tail = $property_name;
2914 # If entire range is above 255, just return it, unchanged (except
2915 # any mapped-to code point, already changed above)
2916 return 1 if $low > 255;
2918 # Cache an entry for every code point < 255. For those in the
2919 # range above 255, return a dummy entry for just that portion of
2920 # the range. Note that this will be out-of-order, but that is not
2922 foreach my $code_point ($low .. $high) {
2923 if ($code_point > 255) {
2924 $_ = sprintf "%04X..%04X; $tail", $code_point, $high;
2927 push @{$remapped_lines{$addr}}, "$code_point; $tail";
2929 } # End of looping through lines.
2934 # Not currently used, not fully tested.
2936 # # Non-destructive look-ahead one non-adjusted, non-comment, non-blank
2937 # # record. Not callable from an each_line_handler(), nor does it call
2938 # # an each_line_handler() on the line.
2941 # my $addr = do { no overloading; pack 'J', $self; };
2943 # foreach my $inserted_ref (@{$added_lines{$addr}}) {
2944 # my ($adjusted, $line) = @{$inserted_ref};
2945 # next if $adjusted;
2947 # # Remove comments and trailing space, and return a non-empty
2950 # $line =~ s/\s+$//;
2951 # return $line if $line ne "";
2954 # return if ! ref $handle{$addr}; # Don't read unless is real file
2955 # while (1) { # Loop until find non-comment, non-empty line
2956 # local $to_trace = 1 if main::DEBUG;
2957 # trace $_ if main::DEBUG && $to_trace;
2958 # return if ! defined (my $line = readline $handle{$addr});
2960 # push @{$added_lines{$addr}}, [ 0, $line ];
2963 # $line =~ s/\s+$//;
2964 # return $line if $line ne "";
2972 # Lines can be inserted so that it looks like they were in the input
2973 # file at the place it was when this routine is called. See also
2974 # insert_adjusted_lines(). Lines inserted via this routine go through
2975 # any each_line_handler()
2979 # Each inserted line is an array, with the first element being 0 to
2980 # indicate that this line hasn't been adjusted, and needs to be
2983 push @{$added_lines{pack 'J', $self}}, map { [ 0, $_ ] } @_;
2987 sub insert_adjusted_lines {
2988 # Lines can be inserted so that it looks like they were in the input
2989 # file at the place it was when this routine is called. See also
2990 # insert_lines(). Lines inserted via this routine are already fully
2991 # adjusted, ready to be processed; each_line_handler()s handlers will
2992 # not be called. This means this is not a completely general
2993 # facility, as only the last each_line_handler on the stack should
2994 # call this. It could be made more general, by passing to each of the
2995 # line_handlers their position on the stack, which they would pass on
2996 # to this routine, and that would replace the boolean first element in
2997 # the anonymous array pushed here, so that the next_line routine could
2998 # use that to call only those handlers whose index is after it on the
2999 # stack. But this is overkill for what is needed now.
3002 trace $_[0] if main::DEBUG && $to_trace;
3004 # Each inserted line is an array, with the first element being 1 to
3005 # indicate that this line has been adjusted
3007 push @{$added_lines{pack 'J', $self}}, map { [ 1, $_ ] } @_;
3012 # Returns the stored up @missings lines' values, and clears the list.
3013 # The values are in an array, consisting of the default in the first
3014 # element, and the property in the 2nd. However, since these lines
3015 # can be stacked up, the return is an array of all these arrays.
3018 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3020 my $addr = do { no overloading; pack 'J', $self; };
3022 # If not accepting a list return, just return the first one.
3023 return shift @{$missings{$addr}} unless wantarray;
3025 my @return = @{$missings{$addr}};
3026 undef @{$missings{$addr}};
3030 sub _insert_property_into_line {
3031 # Add a property field to $_, if this file requires it.
3034 my $addr = do { no overloading; pack 'J', $self; };
3035 my $property = $property{$addr};
3036 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3038 $_ =~ s/(;|$)/; $property$1/;
3043 # Output consistent error messages, using either a generic one, or the
3044 # one given by the optional parameter. To avoid gazillions of the
3045 # same message in case the syntax of a file is way off, this routine
3046 # only outputs the first instance of each message, incrementing a
3047 # count so the totals can be output at the end of the file.
3050 my $message = shift;
3051 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3053 my $addr = do { no overloading; pack 'J', $self; };
3055 $message = 'Unexpected line' unless $message;
3057 # No trailing punctuation so as to fit with our addenda.
3058 $message =~ s/[.:;,]$//;
3060 # If haven't seen this exact message before, output it now. Otherwise
3061 # increment the count of how many times it has occurred
3062 unless ($errors{$addr}->{$message}) {
3063 Carp::my_carp("$message in '$_' in "
3065 . " at line $.. Skipping this line;");
3066 $errors{$addr}->{$message} = 1;
3069 $errors{$addr}->{$message}++;
3072 # Clear the line to prevent any further (meaningful) processing of it.
3079 package Multi_Default;
3081 # Certain properties in early versions of Unicode had more than one possible
3082 # default for code points missing from the files. In these cases, one
3083 # default applies to everything left over after all the others are applied,
3084 # and for each of the others, there is a description of which class of code
3085 # points applies to it. This object helps implement this by storing the
3086 # defaults, and for all but that final default, an eval string that generates
3087 # the class that it applies to.
3092 main::setup_package();
3095 # The defaults structure for the classes
3096 main::set_access('class_defaults', \%class_defaults);
3099 # The default that applies to everything left over.
3100 main::set_access('other_default', \%other_default, 'r');
3104 # The constructor is called with default => eval pairs, terminated by
3105 # the left-over default. e.g.
3106 # Multi_Default->new(
3107 # 'T' => '$gc->table("Mn") + $gc->table("Cf") - 0x200C
3109 # 'R' => 'some other expression that evaluates to code points',
3117 my $self = bless \do{my $anonymous_scalar}, $class;
3118 my $addr = do { no overloading; pack 'J', $self; };
3121 my $default = shift;
3123 $class_defaults{$addr}->{$default} = $eval;
3126 $other_default{$addr} = shift;
3131 sub get_next_defaults {
3132 # Iterates and returns the next class of defaults.
3134 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3136 my $addr = do { no overloading; pack 'J', $self; };
3138 return each %{$class_defaults{$addr}};
3144 # An alias is one of the names that a table goes by. This class defines them
3145 # including some attributes. Everything is currently setup in the
3151 main::setup_package();
3154 main::set_access('name', \%name, 'r');
3157 # Should this name match loosely or not.
3158 main::set_access('loose_match', \%loose_match, 'r');
3160 my %make_re_pod_entry;
3161 # Some aliases should not get their own entries in the re section of the
3162 # pod, because they are covered by a wild-card, and some we want to
3163 # discourage use of. Binary
3164 main::set_access('make_re_pod_entry', \%make_re_pod_entry, 'r', 's');
3167 # Is this documented to be accessible via Unicode::UCD
3168 main::set_access('ucd', \%ucd, 'r', 's');
3171 # Aliases have a status, like deprecated, or even suppressed (which means
3172 # they don't appear in documentation). Enum
3173 main::set_access('status', \%status, 'r');
3176 # Similarly, some aliases should not be considered as usable ones for
3177 # external use, such as file names, or we don't want documentation to
3178 # recommend them. Boolean
3179 main::set_access('ok_as_filename', \%ok_as_filename, 'r');
3184 my $self = bless \do { my $anonymous_scalar }, $class;
3185 my $addr = do { no overloading; pack 'J', $self; };
3187 $name{$addr} = shift;
3188 $loose_match{$addr} = shift;
3189 $make_re_pod_entry{$addr} = shift;
3190 $ok_as_filename{$addr} = shift;
3191 $status{$addr} = shift;
3192 $ucd{$addr} = shift;
3194 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3196 # Null names are never ok externally
3197 $ok_as_filename{$addr} = 0 if $name{$addr} eq "";
3205 # A range is the basic unit for storing code points, and is described in the
3206 # comments at the beginning of the program. Each range has a starting code
3207 # point; an ending code point (not less than the starting one); a value
3208 # that applies to every code point in between the two end-points, inclusive;
3209 # and an enum type that applies to the value. The type is for the user's
3210 # convenience, and has no meaning here, except that a non-zero type is
3211 # considered to not obey the normal Unicode rules for having standard forms.
3213 # The same structure is used for both map and match tables, even though in the
3214 # latter, the value (and hence type) is irrelevant and could be used as a
3215 # comment. In map tables, the value is what all the code points in the range
3216 # map to. Type 0 values have the standardized version of the value stored as
3217 # well, so as to not have to recalculate it a lot.
3219 sub trace { return main::trace(@_); }
3223 main::setup_package();
3226 main::set_access('start', \%start, 'r', 's');
3229 main::set_access('end', \%end, 'r', 's');
3232 main::set_access('value', \%value, 'r');
3235 main::set_access('type', \%type, 'r');
3238 # The value in internal standard form. Defined only if the type is 0.
3239 main::set_access('standard_form', \%standard_form);
3241 # Note that if these fields change, the dump() method should as well
3244 return Carp::carp_too_few_args(\@_, 3) if main::DEBUG && @_ < 3;
3247 my $self = bless \do { my $anonymous_scalar }, $class;
3248 my $addr = do { no overloading; pack 'J', $self; };
3250 $start{$addr} = shift;
3251 $end{$addr} = shift;
3255 my $value = delete $args{'Value'}; # Can be 0
3256 $value = "" unless defined $value;
3257 $value{$addr} = $value;
3259 $type{$addr} = delete $args{'Type'} || 0;
3261 Carp::carp_extra_args(\%args) if main::DEBUG && %args;
3268 qw("") => "_operator_stringify",
3269 "." => \&main::_operator_dot,
3270 ".=" => \&main::_operator_dot_equal,
3273 sub _operator_stringify {
3275 my $addr = do { no overloading; pack 'J', $self; };
3277 # Output it like '0041..0065 (value)'
3278 my $return = sprintf("%04X", $start{$addr})
3280 . sprintf("%04X", $end{$addr});
3281 my $value = $value{$addr};
3282 my $type = $type{$addr};
3284 $return .= "$value";
3285 $return .= ", Type=$type" if $type != 0;
3292 # Calculate the standard form only if needed, and cache the result.
3293 # The standard form is the value itself if the type is special.
3294 # This represents a considerable CPU and memory saving - at the time
3295 # of writing there are 368676 non-special objects, but the standard
3296 # form is only requested for 22047 of them - ie about 6%.
3299 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3301 my $addr = do { no overloading; pack 'J', $self; };
3303 return $standard_form{$addr} if defined $standard_form{$addr};
3305 my $value = $value{$addr};
3306 return $value if $type{$addr};
3307 return $standard_form{$addr} = main::standardize($value);
3311 # Human, not machine readable. For machine readable, comment out this
3312 # entire routine and let the standard one take effect.
3315 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3317 my $addr = do { no overloading; pack 'J', $self; };
3319 my $return = $indent
3320 . sprintf("%04X", $start{$addr})
3322 . sprintf("%04X", $end{$addr})
3323 . " '$value{$addr}';";
3324 if (! defined $standard_form{$addr}) {
3325 $return .= "(type=$type{$addr})";
3327 elsif ($standard_form{$addr} ne $value{$addr}) {
3328 $return .= "(standard '$standard_form{$addr}')";
3334 package _Range_List_Base;
3336 # Base class for range lists. A range list is simply an ordered list of
3337 # ranges, so that the ranges with the lowest starting numbers are first in it.
3339 # When a new range is added that is adjacent to an existing range that has the
3340 # same value and type, it merges with it to form a larger range.
3342 # Ranges generally do not overlap, except that there can be multiple entries
3343 # of single code point ranges. This is because of NameAliases.txt.
3345 # In this program, there is a standard value such that if two different
3346 # values, have the same standard value, they are considered equivalent. This
3347 # value was chosen so that it gives correct results on Unicode data
3349 # There are a number of methods to manipulate range lists, and some operators
3350 # are overloaded to handle them.
3352 sub trace { return main::trace(@_); }
3358 # Max is initialized to a negative value that isn't adjacent to 0, for
3362 main::setup_package();
3365 # The list of ranges
3366 main::set_access('ranges', \%ranges, 'readable_array');
3369 # The highest code point in the list. This was originally a method, but
3370 # actual measurements said it was used a lot.
3371 main::set_access('max', \%max, 'r');
3373 my %each_range_iterator;
3374 # Iterator position for each_range()
3375 main::set_access('each_range_iterator', \%each_range_iterator);
3378 # Name of parent this is attached to, if any. Solely for better error
3380 main::set_access('owner_name_of', \%owner_name_of, 'p_r');
3382 my %_search_ranges_cache;
3383 # A cache of the previous result from _search_ranges(), for better
3385 main::set_access('_search_ranges_cache', \%_search_ranges_cache);
3391 # Optional initialization data for the range list.
3392 my $initialize = delete $args{'Initialize'};
3396 # Use _union() to initialize. _union() returns an object of this
3397 # class, which means that it will call this constructor recursively.
3398 # But it won't have this $initialize parameter so that it won't
3399 # infinitely loop on this.
3400 return _union($class, $initialize, %args) if defined $initialize;
3402 $self = bless \do { my $anonymous_scalar }, $class;
3403 my $addr = do { no overloading; pack 'J', $self; };
3405 # Optional parent object, only for debug info.
3406 $owner_name_of{$addr} = delete $args{'Owner'};
3407 $owner_name_of{$addr} = "" if ! defined $owner_name_of{$addr};
3409 # Stringify, in case it is an object.
3410 $owner_name_of{$addr} = "$owner_name_of{$addr}";
3412 # This is used only for error messages, and so a colon is added
3413 $owner_name_of{$addr} .= ": " if $owner_name_of{$addr} ne "";
3415 Carp::carp_extra_args(\%args) if main::DEBUG && %args;
3417 $max{$addr} = $max_init;
3419 $_search_ranges_cache{$addr} = 0;
3420 $ranges{$addr} = [];
3427 qw("") => "_operator_stringify",
3428 "." => \&main::_operator_dot,
3429 ".=" => \&main::_operator_dot_equal,
3432 sub _operator_stringify {
3434 my $addr = do { no overloading; pack 'J', $self; };
3436 return "Range_List attached to '$owner_name_of{$addr}'"
3437 if $owner_name_of{$addr};
3438 return "anonymous Range_List " . \$self;
3442 # Returns the union of the input code points. It can be called as
3443 # either a constructor or a method. If called as a method, the result
3444 # will be a new() instance of the calling object, containing the union
3445 # of that object with the other parameter's code points; if called as
3446 # a constructor, the first parameter gives the class that the new object
3447 # should be, and the second parameter gives the code points to go into
3449 # In either case, there are two parameters looked at by this routine;
3450 # any additional parameters are passed to the new() constructor.
3452 # The code points can come in the form of some object that contains
3453 # ranges, and has a conventionally named method to access them; or
3454 # they can be an array of individual code points (as integers); or
3455 # just a single code point.
3457 # If they are ranges, this routine doesn't make any effort to preserve
3458 # the range values and types of one input over the other. Therefore
3459 # this base class should not allow _union to be called from other than
3460 # initialization code, so as to prevent two tables from being added
3461 # together where the range values matter. The general form of this
3462 # routine therefore belongs in a derived class, but it was moved here
3463 # to avoid duplication of code. The failure to overload this in this
3464 # class keeps it safe.
3466 # It does make the effort during initialization to accept tables with
3467 # multiple values for the same code point, and to preserve the order
3468 # of these. If there is only one input range or range set, it doesn't
3469 # sort (as it should already be sorted to the desired order), and will
3470 # accept multiple values per code point. Otherwise it will merge
3471 # multiple values into a single one.
3474 my @args; # Arguments to pass to the constructor
3478 # If a method call, will start the union with the object itself, and
3479 # the class of the new object will be the same as self.
3486 # Add the other required parameter.
3488 # Rest of parameters are passed on to the constructor
3490 # Accumulate all records from both lists.
3492 my $input_count = 0;
3493 for my $arg (@args) {
3494 #local $to_trace = 0 if main::DEBUG;
3495 trace "argument = $arg" if main::DEBUG && $to_trace;
3496 if (! defined $arg) {
3498 if (defined $self) {
3500 $message .= $owner_name_of{pack 'J', $self};
3502 Carp::my_carp_bug($message . "Undefined argument to _union. No union done.");
3506 $arg = [ $arg ] if ! ref $arg;
3507 my $type = ref $arg;
3508 if ($type eq 'ARRAY') {
3509 foreach my $element (@$arg) {
3510 push @records, Range->new($element, $element);
3514 elsif ($arg->isa('Range')) {
3515 push @records, $arg;
3518 elsif ($arg->can('ranges')) {
3519 push @records, $arg->ranges;
3524 if (defined $self) {
3526 $message .= $owner_name_of{pack 'J', $self};
3528 Carp::my_carp_bug($message . "Cannot take the union of a $type. No union done.");
3533 # Sort with the range containing the lowest ordinal first, but if
3534 # two ranges start at the same code point, sort with the bigger range
3535 # of the two first, because it takes fewer cycles.
3536 if ($input_count > 1) {
3537 @records = sort { ($a->start <=> $b->start)
3539 # if b is shorter than a, b->end will be
3540 # less than a->end, and we want to select
3541 # a, so want to return -1
3542 ($b->end <=> $a->end)
3546 my $new = $class->new(@_);
3548 # Fold in records so long as they add new information.
3549 for my $set (@records) {
3550 my $start = $set->start;
3551 my $end = $set->end;
3552 my $value = $set->value;
3553 my $type = $set->type;
3554 if ($start > $new->max) {
3555 $new->_add_delete('+', $start, $end, $value, Type => $type);
3557 elsif ($end > $new->max) {
3558 $new->_add_delete('+', $new->max +1, $end, $value,
3561 elsif ($input_count == 1) {
3562 # Here, overlaps existing range, but is from a single input,
3563 # so preserve the multiple values from that input.
3564 $new->_add_delete('+', $start, $end, $value, Type => $type,
3565 Replace => $MULTIPLE_AFTER);
3572 sub range_count { # Return the number of ranges in the range list
3574 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3577 return scalar @{$ranges{pack 'J', $self}};
3581 # Returns the minimum code point currently in the range list, or if
3582 # the range list is empty, 2 beyond the max possible. This is a
3583 # method because used so rarely, that not worth saving between calls,
3584 # and having to worry about changing it as ranges are added and
3588 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3590 my $addr = do { no overloading; pack 'J', $self; };
3592 # If the range list is empty, return a large value that isn't adjacent
3593 # to any that could be in the range list, for simpler tests
3594 return $MAX_WORKING_CODEPOINT + 2 unless scalar @{$ranges{$addr}};
3595 return $ranges{$addr}->[0]->start;
3599 # Boolean: Is argument in the range list? If so returns $i such that:
3600 # range[$i]->end < $codepoint <= range[$i+1]->end
3601 # which is one beyond what you want; this is so that the 0th range
3602 # doesn't return false
3604 my $codepoint = shift;
3605 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3607 my $i = $self->_search_ranges($codepoint);
3608 return 0 unless defined $i;
3610 # The search returns $i, such that
3611 # range[$i-1]->end < $codepoint <= range[$i]->end
3612 # So is in the table if and only iff it is at least the start position
3615 return 0 if $ranges{pack 'J', $self}->[$i]->start > $codepoint;
3619 sub containing_range {
3620 # Returns the range object that contains the code point, undef if none
3623 my $codepoint = shift;
3624 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3626 my $i = $self->contains($codepoint);
3629 # contains() returns 1 beyond where we should look
3631 return $ranges{pack 'J', $self}->[$i-1];
3635 # Returns the value associated with the code point, undef if none
3638 my $codepoint = shift;
3639 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3641 my $range = $self->containing_range($codepoint);
3642 return unless defined $range;
3644 return $range->value;
3648 # Returns the type of the range containing the code point, undef if
3649 # the code point is not in the table
3652 my $codepoint = shift;
3653 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3655 my $range = $self->containing_range($codepoint);
3656 return unless defined $range;
3658 return $range->type;
3661 sub _search_ranges {
3662 # Find the range in the list which contains a code point, or where it
3663 # should go if were to add it. That is, it returns $i, such that:
3664 # range[$i-1]->end < $codepoint <= range[$i]->end
3665 # Returns undef if no such $i is possible (e.g. at end of table), or
3666 # if there is an error.
3669 my $code_point = shift;
3670 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3672 my $addr = do { no overloading; pack 'J', $self; };
3674 return if $code_point > $max{$addr};
3675 my $r = $ranges{$addr}; # The current list of ranges
3676 my $range_list_size = scalar @$r;
3679 use integer; # want integer division
3681 # Use the cached result as the starting guess for this one, because,
3682 # an experiment on 5.1 showed that 90% of the time the cache was the
3683 # same as the result on the next call (and 7% it was one less).
3684 $i = $_search_ranges_cache{$addr};
3685 $i = 0 if $i >= $range_list_size; # Reset if no longer valid (prob.
3686 # from an intervening deletion
3687 #local $to_trace = 1 if main::DEBUG;
3688 trace "previous \$i is still valid: $i" if main::DEBUG && $to_trace && $code_point <= $r->[$i]->end && ($i == 0 || $r->[$i-1]->end < $code_point);
3689 return $i if $code_point <= $r->[$i]->end
3690 && ($i == 0 || $r->[$i-1]->end < $code_point);
3692 # Here the cache doesn't yield the correct $i. Try adding 1.
3693 if ($i < $range_list_size - 1
3694 && $r->[$i]->end < $code_point &&
3695 $code_point <= $r->[$i+1]->end)
3698 trace "next \$i is correct: $i" if main::DEBUG && $to_trace;
3699 $_search_ranges_cache{$addr} = $i;
3703 # Here, adding 1 also didn't work. We do a binary search to
3704 # find the correct position, starting with current $i
3706 my $upper = $range_list_size - 1;
3708 trace "top of loop i=$i:", sprintf("%04X", $r->[$lower]->start), "[$lower] .. ", sprintf("%04X", $r->[$i]->start), "[$i] .. ", sprintf("%04X", $r->[$upper]->start), "[$upper]" if main::DEBUG && $to_trace;
3710 if ($code_point <= $r->[$i]->end) {
3712 # Here we have met the upper constraint. We can quit if we
3713 # also meet the lower one.
3714 last if $i == 0 || $r->[$i-1]->end < $code_point;
3716 $upper = $i; # Still too high.
3721 # Here, $r[$i]->end < $code_point, so look higher up.
3725 # Split search domain in half to try again.
3726 my $temp = ($upper + $lower) / 2;
3728 # No point in continuing unless $i changes for next time
3732 # We can't reach the highest element because of the averaging.
3733 # So if one below the upper edge, force it there and try one
3735 if ($i == $range_list_size - 2) {
3737 trace "Forcing to upper edge" if main::DEBUG && $to_trace;
3738 $i = $range_list_size - 1;
3740 # Change $lower as well so if fails next time through,
3741 # taking the average will yield the same $i, and we will
3742 # quit with the error message just below.
3746 Carp::my_carp_bug("$owner_name_of{$addr}Can't find where the range ought to go. No action taken.");
3750 } # End of while loop
3752 if (main::DEBUG && $to_trace) {
3753 trace 'i-1=[', $i-1, ']', $r->[$i-1] if $i;
3754 trace "i= [ $i ]", $r->[$i];
3755 trace 'i+1=[', $i+1, ']', $r->[$i+1] if $i < $range_list_size - 1;
3758 # Here we have found the offset. Cache it as a starting point for the
3760 $_search_ranges_cache{$addr} = $i;
3765 # Add, replace or delete ranges to or from a list. The $type
3766 # parameter gives which:
3767 # '+' => insert or replace a range, returning a list of any changed
3769 # '-' => delete a range, returning a list of any deleted ranges.
3771 # The next three parameters give respectively the start, end, and
3772 # value associated with the range. 'value' should be null unless the
3775 # The range list is kept sorted so that the range with the lowest
3776 # starting position is first in the list, and generally, adjacent
3777 # ranges with the same values are merged into a single larger one (see
3778 # exceptions below).
3780 # There are more parameters; all are key => value pairs:
3781 # Type gives the type of the value. It is only valid for '+'.
3782 # All ranges have types; if this parameter is omitted, 0 is
3783 # assumed. Ranges with type 0 are assumed to obey the
3784 # Unicode rules for casing, etc; ranges with other types are
3785 # not. Otherwise, the type is arbitrary, for the caller's
3786 # convenience, and looked at only by this routine to keep
3787 # adjacent ranges of different types from being merged into
3788 # a single larger range, and when Replace =>
3789 # $IF_NOT_EQUIVALENT is specified (see just below).
3790 # Replace determines what to do if the range list already contains
3791 # ranges which coincide with all or portions of the input
3792 # range. It is only valid for '+':
3793 # => $NO means that the new value is not to replace
3794 # any existing ones, but any empty gaps of the
3795 # range list coinciding with the input range
3796 # will be filled in with the new value.
3797 # => $UNCONDITIONALLY means to replace the existing values with
3798 # this one unconditionally. However, if the
3799 # new and old values are identical, the
3800 # replacement is skipped to save cycles
3801 # => $IF_NOT_EQUIVALENT means to replace the existing values
3802 # (the default) with this one if they are not equivalent.
3803 # Ranges are equivalent if their types are the
3804 # same, and they are the same string; or if
3805 # both are type 0 ranges, if their Unicode
3806 # standard forms are identical. In this last
3807 # case, the routine chooses the more "modern"
3808 # one to use. This is because some of the
3809 # older files are formatted with values that
3810 # are, for example, ALL CAPs, whereas the
3811 # derived files have a more modern style,
3812 # which looks better. By looking for this
3813 # style when the pre-existing and replacement
3814 # standard forms are the same, we can move to
3816 # => $MULTIPLE_BEFORE means that if this range duplicates an
3817 # existing one, but has a different value,
3818 # don't replace the existing one, but insert
3819 # this one so that the same range can occur
3820 # multiple times. They are stored LIFO, so
3821 # that the final one inserted is the first one
3822 # returned in an ordered search of the table.
3823 # If this is an exact duplicate, including the
3824 # value, the original will be moved to be
3825 # first, before any other duplicate ranges
3826 # with different values.
3827 # => $MULTIPLE_AFTER is like $MULTIPLE_BEFORE, but is stored
3828 # FIFO, so that this one is inserted after all
3829 # others that currently exist. If this is an
3830 # exact duplicate, including value, of an
3831 # existing range, this one is discarded
3832 # (leaving the existing one in its original,
3833 # higher priority position
3834 # => $CROAK Die with an error if is already there
3835 # => anything else is the same as => $IF_NOT_EQUIVALENT
3837 # "same value" means identical for non-type-0 ranges, and it means
3838 # having the same standard forms for type-0 ranges.
3840 return Carp::carp_too_few_args(\@_, 5) if main::DEBUG && @_ < 5;
3843 my $operation = shift; # '+' for add/replace; '-' for delete;
3850 $value = "" if not defined $value; # warning: $value can be "0"
3852 my $replace = delete $args{'Replace'};
3853 $replace = $IF_NOT_EQUIVALENT unless defined $replace;
3855 my $type = delete $args{'Type'};
3856 $type = 0 unless defined $type;
3858 Carp::carp_extra_args(\%args) if main::DEBUG && %args;
3860 my $addr = do { no overloading; pack 'J', $self; };
3862 if ($operation ne '+' && $operation ne '-') {
3863 Carp::my_carp_bug("$owner_name_of{$addr}First parameter to _add_delete must be '+' or '-'. No action taken.");
3866 unless (defined $start && defined $end) {
3867 Carp::my_carp_bug("$owner_name_of{$addr}Undefined start and/or end to _add_delete. No action taken.");
3870 unless ($end >= $start) {
3871 Carp::my_carp_bug("$owner_name_of{$addr}End of range (" . sprintf("%04X", $end) . ") must not be before start (" . sprintf("%04X", $start) . "). No action taken.");
3874 #local $to_trace = 1 if main::DEBUG;
3876 if ($operation eq '-') {
3877 if ($replace != $IF_NOT_EQUIVALENT) {
3878 Carp::my_carp_bug("$owner_name_of{$addr}Replace => \$IF_NOT_EQUIVALENT is required when deleting a range from a range list. Assuming Replace => \$IF_NOT_EQUIVALENT.");
3879 $replace = $IF_NOT_EQUIVALENT;
3882 Carp::my_carp_bug("$owner_name_of{$addr}Type => 0 is required when deleting a range from a range list. Assuming Type => 0.");
3886 Carp::my_carp_bug("$owner_name_of{$addr}Value => \"\" is required when deleting a range from a range list. Assuming Value => \"\".");
3891 my $r = $ranges{$addr}; # The current list of ranges
3892 my $range_list_size = scalar @$r; # And its size
3893 my $max = $max{$addr}; # The current high code point in
3894 # the list of ranges
3896 # Do a special case requiring fewer machine cycles when the new range
3897 # starts after the current highest point. The Unicode input data is
3898 # structured so this is common.
3899 if ($start > $max) {
3901 trace "$owner_name_of{$addr} $operation", sprintf("%04X..%04X (%s) type=%d; prev max=%04X", $start, $end, $value, $type, $max) if main::DEBUG && $to_trace;
3902 return if $operation eq '-'; # Deleting a non-existing range is a
3905 # If the new range doesn't logically extend the current final one
3906 # in the range list, create a new range at the end of the range
3907 # list. (max cleverly is initialized to a negative number not
3908 # adjacent to 0 if the range list is empty, so even adding a range
3909 # to an empty range list starting at 0 will have this 'if'
3911 if ($start > $max + 1 # non-adjacent means can't extend.
3912 || @{$r}[-1]->value ne $value # values differ, can't extend.
3913 || @{$r}[-1]->type != $type # types differ, can't extend.
3915 push @$r, Range->new($start, $end,
3921 # Here, the new range starts just after the current highest in
3922 # the range list, and they have the same type and value.
3923 # Extend the existing range to incorporate the new one.
3924 @{$r}[-1]->set_end($end);
3927 # This becomes the new maximum.
3932 #local $to_trace = 0 if main::DEBUG;
3934 trace "$owner_name_of{$addr} $operation", sprintf("%04X", $start) . '..' . sprintf("%04X", $end) . " ($value) replace=$replace" if main::DEBUG && $to_trace;
3936 # Here, the input range isn't after the whole rest of the range list.
3937 # Most likely 'splice' will be needed. The rest of the routine finds
3938 # the needed splice parameters, and if necessary, does the splice.
3939 # First, find the offset parameter needed by the splice function for
3940 # the input range. Note that the input range may span multiple
3941 # existing ones, but we'll worry about that later. For now, just find
3942 # the beginning. If the input range is to be inserted starting in a
3943 # position not currently in the range list, it must (obviously) come
3944 # just after the range below it, and just before the range above it.
3945 # Slightly less obviously, it will occupy the position currently
3946 # occupied by the range that is to come after it. More formally, we
3947 # are looking for the position, $i, in the array of ranges, such that:
3949 # r[$i-1]->start <= r[$i-1]->end < $start < r[$i]->start <= r[$i]->end
3951 # (The ordered relationships within existing ranges are also shown in
3952 # the equation above). However, if the start of the input range is
3953 # within an existing range, the splice offset should point to that
3954 # existing range's position in the list; that is $i satisfies a
3955 # somewhat different equation, namely:
3957 #r[$i-1]->start <= r[$i-1]->end < r[$i]->start <= $start <= r[$i]->end
3959 # More briefly, $start can come before or after r[$i]->start, and at
3960 # this point, we don't know which it will be. However, these
3961 # two equations share these constraints:
3963 # r[$i-1]->end < $start <= r[$i]->end
3965 # And that is good enough to find $i.
3967 my $i = $self->_search_ranges($start);
3969 Carp::my_carp_bug("Searching $self for range beginning with $start unexpectedly returned undefined. Operation '$operation' not performed");
3973 # The search function returns $i such that:
3975 # r[$i-1]->end < $start <= r[$i]->end
3977 # That means that $i points to the first range in the range list
3978 # that could possibly be affected by this operation. We still don't
3979 # know if the start of the input range is within r[$i], or if it
3980 # points to empty space between r[$i-1] and r[$i].
3981 trace "[$i] is the beginning splice point. Existing range there is ", $r->[$i] if main::DEBUG && $to_trace;
3983 # Special case the insertion of data that is not to replace any
3985 if ($replace == $NO) { # If $NO, has to be operation '+'
3986 #local $to_trace = 1 if main::DEBUG;
3987 trace "Doesn't replace" if main::DEBUG && $to_trace;
3989 # Here, the new range is to take effect only on those code points
3990 # that aren't already in an existing range. This can be done by
3991 # looking through the existing range list and finding the gaps in
3992 # the ranges that this new range affects, and then calling this
3993 # function recursively on each of those gaps, leaving untouched
3994 # anything already in the list. Gather up a list of the changed
3995 # gaps first so that changes to the internal state as new ranges
3996 # are added won't be a problem.
3999 # First, if the starting point of the input range is outside an
4000 # existing one, there is a gap from there to the beginning of the
4001 # existing range -- add a span to fill the part that this new
4003 if ($start < $r->[$i]->start) {
4004 push @gap_list, Range->new($start,
4006 $r->[$i]->start - 1),
4008 trace "gap before $r->[$i] [$i], will add", $gap_list[-1] if main::DEBUG && $to_trace;
4011 # Then look through the range list for other gaps until we reach