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
11 # NOTE: this script can run quite slowly in older/slower systems.
12 # It can also consume a lot of memory (128 MB or more), you may need
13 # to raise your process resource limits (e.g. in bash, "ulimit -a"
14 # to inspect, and "ulimit -d ..." or "ulimit -m ..." to set)
17 BEGIN { # Get the time the script started running; do it at compilation to
18 # get it as close as possible
34 sub DEBUG () { 0 } # Set to 0 for production; 1 for development
35 my $debugging_build = $Config{"ccflags"} =~ /-DDEBUGGING/;
37 sub NON_ASCII_PLATFORM { ord("A") != 65 }
39 # When a new version of Unicode is published, unfortunately the algorithms for
40 # dealing with various bounds, like \b{gcb}, \b{lb} may have to be updated
41 # manually. The changes may or may not be backward compatible with older
42 # releases. The code is in regen/mk_invlist.pl and regexec.c. Make the
43 # changes, then come back here and set the variable below to what version the
44 # code is expecting. If a newer version of Unicode is being compiled than
45 # expected, a warning will be generated. If an older version is being
46 # compiled, any bounds tests that fail in the generated test file (-maketest
47 # option) will be marked as TODO.
48 my $version_of_mk_invlist_bounds = v13.0.0;
50 ##########################################################################
52 # mktables -- create the runtime Perl Unicode files (lib/unicore/.../*.pl),
53 # from the Unicode database files (lib/unicore/.../*.txt), It also generates
54 # a pod file and .t files, depending on option parameters.
56 # The structure of this file is:
57 # First these introductory comments; then
58 # code needed for everywhere, such as debugging stuff; then
59 # code to handle input parameters; then
60 # data structures likely to be of external interest (some of which depend on
61 # the input parameters, so follows them; then
62 # more data structures and subroutine and package (class) definitions; then
63 # the small actual loop to process the input files and finish up; then
64 # a __DATA__ section, for the .t tests
66 # This program works on all releases of Unicode so far. The outputs have been
67 # scrutinized most intently for release 5.1. The others have been checked for
68 # somewhat more than just sanity. It can handle all non-provisional Unicode
69 # character properties in those releases.
71 # This program is mostly about Unicode character (or code point) properties.
72 # A property describes some attribute or quality of a code point, like if it
73 # is lowercase or not, its name, what version of Unicode it was first defined
74 # in, or what its uppercase equivalent is. Unicode deals with these disparate
75 # possibilities by making all properties into mappings from each code point
76 # into some corresponding value. In the case of it being lowercase or not,
77 # the mapping is either to 'Y' or 'N' (or various synonyms thereof). Each
78 # property maps each Unicode code point to a single value, called a "property
79 # value". (Some more recently defined properties, map a code point to a set
82 # When using a property in a regular expression, what is desired isn't the
83 # mapping of the code point to its property's value, but the reverse (or the
84 # mathematical "inverse relation"): starting with the property value, "Does a
85 # code point map to it?" These are written in a "compound" form:
86 # \p{property=value}, e.g., \p{category=punctuation}. This program generates
87 # files containing the lists of code points that map to each such regular
88 # expression property value, one file per list
90 # There is also a single form shortcut that Perl adds for many of the commonly
91 # used properties. This happens for all binary properties, plus script,
92 # general_category, and block properties.
94 # Thus the outputs of this program are files. There are map files, mostly in
95 # the 'To' directory; and there are list files for use in regular expression
96 # matching, all in subdirectories of the 'lib' directory, with each
97 # subdirectory being named for the property that the lists in it are for.
98 # Bookkeeping, test, and documentation files are also generated.
100 my $matches_directory = 'lib'; # Where match (\p{}) files go.
101 my $map_directory = 'To'; # Where map files go.
105 # The major data structures of this program are Property, of course, but also
106 # Table. There are two kinds of tables, very similar to each other.
107 # "Match_Table" is the data structure giving the list of code points that have
108 # a particular property value, mentioned above. There is also a "Map_Table"
109 # data structure which gives the property's mapping from code point to value.
110 # There are two structures because the match tables need to be combined in
111 # various ways, such as constructing unions, intersections, complements, etc.,
112 # and the map ones don't. And there would be problems, perhaps subtle, if
113 # a map table were inadvertently operated on in some of those ways.
114 # The use of separate classes with operations defined on one but not the other
115 # prevents accidentally confusing the two.
117 # At the heart of each table's data structure is a "Range_List", which is just
118 # an ordered list of "Ranges", plus ancillary information, and methods to
119 # operate on them. A Range is a compact way to store property information.
120 # Each range has a starting code point, an ending code point, and a value that
121 # is meant to apply to all the code points between the two end points,
122 # inclusive. For a map table, this value is the property value for those
123 # code points. Two such ranges could be written like this:
124 # 0x41 .. 0x5A, 'Upper',
125 # 0x61 .. 0x7A, 'Lower'
127 # Each range also has a type used as a convenience to classify the values.
128 # Most ranges in this program will be Type 0, or normal, but there are some
129 # ranges that have a non-zero type. These are used only in map tables, and
130 # are for mappings that don't fit into the normal scheme of things. Mappings
131 # that require a hash entry to communicate with utf8.c are one example;
132 # another example is mappings for charnames.pm to use which indicate a name
133 # that is algorithmically determinable from its code point (and the reverse).
134 # These are used to significantly compact these tables, instead of listing
135 # each one of the tens of thousands individually.
137 # In a match table, the value of a range is irrelevant (and hence the type as
138 # well, which will always be 0), and arbitrarily set to the empty string.
139 # Using the example above, there would be two match tables for those two
140 # entries, one named Upper would contain the 0x41..0x5A range, and the other
141 # named Lower would contain 0x61..0x7A.
143 # Actually, there are two types of range lists, "Range_Map" is the one
144 # associated with map tables, and "Range_List" with match tables.
145 # Again, this is so that methods can be defined on one and not the others so
146 # as to prevent operating on them in incorrect ways.
148 # Eventually, most tables are written out to files to be read by Unicode::UCD.
149 # All tables could in theory be written, but some are suppressed because there
150 # is no current practical use for them. It is easy to change which get
151 # written by changing various lists that are near the top of the actual code
152 # in this file. The table data structures contain enough ancillary
153 # information to allow them to be treated as separate entities for writing,
154 # such as the path to each one's file. There is a heading in each map table
155 # that gives the format of its entries, and what the map is for all the code
156 # points missing from it. (This allows tables to be more compact.)
158 # The Property data structure contains one or more tables. All properties
159 # contain a map table (except the $perl property which is a
160 # pseudo-property containing only match tables), and any properties that
161 # are usable in regular expression matches also contain various matching
162 # tables, one for each value the property can have. A binary property can
163 # have two values, True and False (or Y and N, which are preferred by Unicode
164 # terminology). Thus each of these properties will have a map table that
165 # takes every code point and maps it to Y or N (but having ranges cuts the
166 # number of entries in that table way down), and two match tables, one
167 # which has a list of all the code points that map to Y, and one for all the
168 # code points that map to N. (For each binary property, a third table is also
169 # generated for the pseudo Perl property. It contains the identical code
170 # points as the Y table, but can be written in regular expressions, not in the
171 # compound form, but in a "single" form like \p{IsUppercase}.) Many
172 # properties are binary, but some properties have several possible values,
173 # some have many, and properties like Name have a different value for every
174 # named code point. Those will not, unless the controlling lists are changed,
175 # have their match tables written out. But all the ones which can be used in
176 # regular expression \p{} and \P{} constructs will. Prior to 5.14, generally
177 # a property would have either its map table or its match tables written but
178 # not both. Again, what gets written is controlled by lists which can easily
179 # be changed. Starting in 5.14, advantage was taken of this, and all the map
180 # tables needed to reconstruct the Unicode db are now written out, while
181 # suppressing the Unicode .txt files that contain the data. Our tables are
182 # much more compact than the .txt files, so a significant space savings was
183 # achieved. Also, tables are not written out that are trivially derivable
184 # from tables that do get written. So, there typically is no file containing
185 # the code points not matched by a binary property (the table for \P{} versus
186 # lowercase \p{}), since you just need to invert the True table to get the
189 # Properties have a 'Type', like 'binary', or 'string', or 'enum' depending on
190 # how many match tables there are and the content of the maps. This 'Type' is
191 # different than a range 'Type', so don't get confused by the two concepts
192 # having the same name.
194 # For information about the Unicode properties, see Unicode's UAX44 document:
196 my $unicode_reference_url = 'http://www.unicode.org/reports/tr44/';
198 # As stated earlier, this program will work on any release of Unicode so far.
199 # Most obvious problems in earlier data have NOT been corrected except when
200 # necessary to make Perl or this program work reasonably, and to keep out
201 # potential security issues. For example, no folding information was given in
202 # early releases, so this program substitutes lower case instead, just so that
203 # a regular expression with the /i option will do something that actually
204 # gives the right results in many cases. There are also a couple other
205 # corrections for version 1.1.5, commented at the point they are made. As an
206 # example of corrections that weren't made (but could be) is this statement
207 # from DerivedAge.txt: "The supplementary private use code points and the
208 # non-character code points were assigned in version 2.0, but not specifically
209 # listed in the UCD until versions 3.0 and 3.1 respectively." (To be precise
210 # it was 3.0.1 not 3.0.0) More information on Unicode version glitches is
211 # further down in these introductory comments.
213 # This program works on all non-provisional properties as of the current
214 # Unicode release, though the files for some are suppressed for various
215 # reasons. You can change which are output by changing lists in this program.
217 # The old version of mktables emphasized the term "Fuzzy" to mean Unicode's
218 # loose matchings rules (from Unicode TR18):
220 # The recommended names for UCD properties and property values are in
221 # PropertyAliases.txt [Prop] and PropertyValueAliases.txt
222 # [PropValue]. There are both abbreviated names and longer, more
223 # descriptive names. It is strongly recommended that both names be
224 # recognized, and that loose matching of property names be used,
225 # whereby the case distinctions, whitespace, hyphens, and underbar
228 # The program still allows Fuzzy to override its determination of if loose
229 # matching should be used, but it isn't currently used, as it is no longer
230 # needed; the calculations it makes are good enough.
232 # SUMMARY OF HOW IT WORKS:
236 # A list is constructed containing each input file that is to be processed
238 # Each file on the list is processed in a loop, using the associated handler
240 # The PropertyAliases.txt and PropValueAliases.txt files are processed
241 # first. These files name the properties and property values.
242 # Objects are created of all the property and property value names
243 # that the rest of the input should expect, including all synonyms.
244 # The other input files give mappings from properties to property
245 # values. That is, they list code points and say what the mapping
246 # is under the given property. Some files give the mappings for
247 # just one property; and some for many. This program goes through
248 # each file and populates the properties and their map tables from
249 # them. Some properties are listed in more than one file, and
250 # Unicode has set up a precedence as to which has priority if there
251 # is a conflict. Thus the order of processing matters, and this
252 # program handles the conflict possibility by processing the
253 # overriding input files last, so that if necessary they replace
255 # After this is all done, the program creates the property mappings not
256 # furnished by Unicode, but derivable from what it does give.
257 # The tables of code points that match each property value in each
258 # property that is accessible by regular expressions are created.
259 # The Perl-defined properties are created and populated. Many of these
260 # require data determined from the earlier steps
261 # Any Perl-defined synonyms are created, and name clashes between Perl
262 # and Unicode are reconciled and warned about.
263 # All the properties are written to files
264 # Any other files are written, and final warnings issued.
266 # For clarity, a number of operators have been overloaded to work on tables:
267 # ~ means invert (take all characters not in the set). The more
268 # conventional '!' is not used because of the possibility of confusing
269 # it with the actual boolean operation.
271 # - means subtraction
272 # & means intersection
273 # The precedence of these is the order listed. Parentheses should be
274 # copiously used. These are not a general scheme. The operations aren't
275 # defined for a number of things, deliberately, to avoid getting into trouble.
276 # Operations are done on references and affect the underlying structures, so
277 # that the copy constructors for them have been overloaded to not return a new
278 # clone, but the input object itself.
280 # The bool operator is deliberately not overloaded to avoid confusion with
281 # "should it mean if the object merely exists, or also is non-empty?".
283 # WHY CERTAIN DESIGN DECISIONS WERE MADE
285 # This program needs to be able to run under miniperl. Therefore, it uses a
286 # minimum of other modules, and hence implements some things itself that could
287 # be gotten from CPAN
289 # This program uses inputs published by the Unicode Consortium. These can
290 # change incompatibly between releases without the Perl maintainers realizing
291 # it. Therefore this program is now designed to try to flag these. It looks
292 # at the directories where the inputs are, and flags any unrecognized files.
293 # It keeps track of all the properties in the files it handles, and flags any
294 # that it doesn't know how to handle. It also flags any input lines that
295 # don't match the expected syntax, among other checks.
297 # It is also designed so if a new input file matches one of the known
298 # templates, one hopefully just needs to add it to a list to have it
301 # As mentioned earlier, some properties are given in more than one file. In
302 # particular, the files in the extracted directory are supposedly just
303 # reformattings of the others. But they contain information not easily
304 # derivable from the other files, including results for Unihan (which isn't
305 # usually available to this program) and for unassigned code points. They
306 # also have historically had errors or been incomplete. In an attempt to
307 # create the best possible data, this program thus processes them first to
308 # glean information missing from the other files; then processes those other
309 # files to override any errors in the extracted ones. Much of the design was
310 # driven by this need to store things and then possibly override them.
312 # It tries to keep fatal errors to a minimum, to generate something usable for
313 # testing purposes. It always looks for files that could be inputs, and will
314 # warn about any that it doesn't know how to handle (the -q option suppresses
317 # Why is there more than one type of range?
318 # This simplified things. There are some very specialized code points that
319 # have to be handled specially for output, such as Hangul syllable names.
320 # By creating a range type (done late in the development process), it
321 # allowed this to be stored with the range, and overridden by other input.
322 # Originally these were stored in another data structure, and it became a
323 # mess trying to decide if a second file that was for the same property was
324 # overriding the earlier one or not.
326 # Why are there two kinds of tables, match and map?
327 # (And there is a base class shared by the two as well.) As stated above,
328 # they actually are for different things. Development proceeded much more
329 # smoothly when I (khw) realized the distinction. Map tables are used to
330 # give the property value for every code point (actually every code point
331 # that doesn't map to a default value). Match tables are used for regular
332 # expression matches, and are essentially the inverse mapping. Separating
333 # the two allows more specialized methods, and error checks so that one
334 # can't just take the intersection of two map tables, for example, as that
337 # What about 'fate' and 'status'. The concept of a table's fate was created
338 # late when it became clear that something more was needed. The difference
339 # between this and 'status' is unclean, and could be improved if someone
340 # wanted to spend the effort.
344 # This program is written so it will run under miniperl. Occasionally changes
345 # will cause an error where the backtrace doesn't work well under miniperl.
346 # To diagnose the problem, you can instead run it under regular perl, if you
349 # There is a good trace facility. To enable it, first sub DEBUG must be set
350 # to return true. Then a line like
352 # local $to_trace = 1 if main::DEBUG;
354 # can be added to enable tracing in its lexical scope (plus dynamic) or until
355 # you insert another line:
357 # local $to_trace = 0 if main::DEBUG;
359 # To actually trace, use a line like "trace $a, @b, %c, ...;
361 # Some of the more complex subroutines already have trace statements in them.
362 # Permanent trace statements should be like:
364 # trace ... if main::DEBUG && $to_trace;
366 # main::stack_trace() will display what its name implies
368 # If there is just one or a few files that you're debugging, you can easily
369 # cause most everything else to be skipped. Change the line
371 # my $debug_skip = 0;
373 # to 1, and every file whose object is in @input_file_objects and doesn't have
374 # a, 'non_skip => 1,' in its constructor will be skipped. However, skipping
375 # Jamo.txt or UnicodeData.txt will likely cause fatal errors.
377 # To compare the output tables, it may be useful to specify the -annotate
378 # flag. (As of this writing, this can't be done on a clean workspace, due to
379 # requirements in Text::Tabs used in this option; so first run mktables
380 # without this option.) This option adds comment lines to each table, one for
381 # each non-algorithmically named character giving, currently its code point,
382 # name, and graphic representation if printable (and you have a font that
383 # knows about it). This makes it easier to see what the particular code
384 # points are in each output table. Non-named code points are annotated with a
385 # description of their status, and contiguous ones with the same description
386 # will be output as a range rather than individually. Algorithmically named
387 # characters are also output as ranges, except when there are just a few
392 # The program would break if Unicode were to change its names so that
393 # interior white space, underscores, or dashes differences were significant
394 # within property and property value names.
396 # It might be easier to use the xml versions of the UCD if this program ever
397 # would need heavy revision, and the ability to handle old versions was not
400 # There is the potential for name collisions, in that Perl has chosen names
401 # that Unicode could decide it also likes. There have been such collisions in
402 # the past, with mostly Perl deciding to adopt the Unicode definition of the
403 # name. However in the 5.2 Unicode beta testing, there were a number of such
404 # collisions, which were withdrawn before the final release, because of Perl's
405 # and other's protests. These all involved new properties which began with
406 # 'Is'. Based on the protests, Unicode is unlikely to try that again. Also,
407 # many of the Perl-defined synonyms, like Any, Word, etc, are listed in a
408 # Unicode document, so they are unlikely to be used by Unicode for another
409 # purpose. However, they might try something beginning with 'In', or use any
410 # of the other Perl-defined properties. This program will warn you of name
411 # collisions, and refuse to generate tables with them, but manual intervention
412 # will be required in this event. One scheme that could be implemented, if
413 # necessary, would be to have this program generate another file, or add a
414 # field to mktables.lst that gives the date of first definition of a property.
415 # Each new release of Unicode would use that file as a basis for the next
416 # iteration. And the Perl synonym addition code could sort based on the age
417 # of the property, so older properties get priority, and newer ones that clash
418 # would be refused; hence existing code would not be impacted, and some other
419 # synonym would have to be used for the new property. This is ugly, and
420 # manual intervention would certainly be easier to do in the short run; lets
421 # hope it never comes to this.
425 # This program can generate tables from the Unihan database. But that DB
426 # isn't normally available, so it is marked as optional. Prior to version
427 # 5.2, this database was in a single file, Unihan.txt. In 5.2 the database
428 # was split into 8 different files, all beginning with the letters 'Unihan'.
429 # If you plunk those files down into the directory mktables ($0) is in, this
430 # program will read them and automatically create tables for the properties
431 # from it that are listed in PropertyAliases.txt and PropValueAliases.txt,
432 # plus any you add to the @cjk_properties array and the @cjk_property_values
433 # array, being sure to add necessary '# @missings' lines to the latter. For
434 # Unicode versions earlier than 5.2, most of the Unihan properties are not
435 # listed at all in PropertyAliases nor PropValueAliases. This program assumes
436 # for these early releases that you want the properties that are specified in
439 # You may need to adjust the entries to suit your purposes. setup_unihan(),
440 # and filter_unihan_line() are the functions where this is done. This program
441 # already does some adjusting to make the lines look more like the rest of the
442 # Unicode DB; You can see what that is in filter_unihan_line()
444 # There is a bug in the 3.2 data file in which some values for the
445 # kPrimaryNumeric property have commas and an unexpected comment. A filter
446 # could be added to correct these; or for a particular installation, the
447 # Unihan.txt file could be edited to fix them.
449 # HOW TO ADD A FILE TO BE PROCESSED
451 # A new file from Unicode needs to have an object constructed for it in
452 # @input_file_objects, probably at the end or at the end of the extracted
453 # ones. The program should warn you if its name will clash with others on
454 # restrictive file systems, like DOS. If so, figure out a better name, and
455 # add lines to the README.perl file giving that. If the file is a character
456 # property, it should be in the format that Unicode has implicitly
457 # standardized for such files for the more recently introduced ones.
458 # If so, the Input_file constructor for @input_file_objects can just be the
459 # file name and release it first appeared in. If not, then it should be
460 # possible to construct an each_line_handler() to massage the line into the
463 # For non-character properties, more code will be needed. You can look at
464 # the existing entries for clues.
466 # UNICODE VERSIONS NOTES
468 # The Unicode UCD has had a number of errors in it over the versions. And
469 # these remain, by policy, in the standard for that version. Therefore it is
470 # risky to correct them, because code may be expecting the error. So this
471 # program doesn't generally make changes, unless the error breaks the Perl
472 # core. As an example, some versions of 2.1.x Jamo.txt have the wrong value
473 # for U+1105, which causes real problems for the algorithms for Jamo
474 # calculations, so it is changed here.
476 # But it isn't so clear cut as to what to do about concepts that are
477 # introduced in a later release; should they extend back to earlier releases
478 # where the concept just didn't exist? It was easier to do this than to not,
479 # so that's what was done. For example, the default value for code points not
480 # in the files for various properties was probably undefined until changed by
481 # some version. No_Block for blocks is such an example. This program will
482 # assign No_Block even in Unicode versions that didn't have it. This has the
483 # benefit that code being written doesn't have to special case earlier
484 # versions; and the detriment that it doesn't match the Standard precisely for
485 # the affected versions.
487 # Here are some observations about some of the issues in early versions:
489 # Prior to version 3.0, there were 3 character decompositions. These are not
490 # handled by Unicode::Normalize, nor will it compile when presented a version
491 # that has them. However, you can trivially get it to compile by simply
492 # ignoring those decompositions, by changing the croak to a carp. At the time
493 # of this writing, the line (in dist/Unicode-Normalize/Normalize.pm or
494 # dist/Unicode-Normalize/mkheader) reads
496 # croak("Weird Canonical Decomposition of U+$h");
498 # Simply comment it out. It will compile, but will not know about any three
499 # character decompositions.
501 # The number of code points in \p{alpha=True} halved in 2.1.9. It turns out
502 # that the reason is that the CJK block starting at 4E00 was removed from
503 # PropList, and was not put back in until 3.1.0. The Perl extension (the
504 # single property name \p{alpha}) has the correct values. But the compound
505 # form is simply not generated until 3.1, as it can be argued that prior to
506 # this release, this was not an official property. The comments for
507 # filter_old_style_proplist() give more details.
509 # Unicode introduced the synonym Space for White_Space in 4.1. Perl has
510 # always had a \p{Space}. In release 3.2 only, they are not synonymous. The
511 # reason is that 3.2 introduced U+205F=medium math space, which was not
512 # classed as white space, but Perl figured out that it should have been. 4.0
513 # reclassified it correctly.
515 # Another change between 3.2 and 4.0 is the CCC property value ATBL. In 3.2
516 # this was erroneously a synonym for 202 (it should be 200). In 4.0, ATB
517 # became 202, and ATBL was left with no code points, as all the ones that
518 # mapped to 202 stayed mapped to 202. Thus if your program used the numeric
519 # name for the class, it would not have been affected, but if it used the
520 # mnemonic, it would have been.
522 # \p{Script=Hrkt} (Katakana_Or_Hiragana) came in 4.0.1. Before that, code
523 # points which eventually came to have this script property value, instead
524 # mapped to "Unknown". But in the next release all these code points were
525 # moved to \p{sc=common} instead.
527 # The tests furnished by Unicode for testing WordBreak and SentenceBreak
528 # generate errors in 5.0 and earlier.
530 # The default for missing code points for BidiClass is complicated. Starting
531 # in 3.1.1, the derived file DBidiClass.txt handles this, but this program
532 # tries to do the best it can for earlier releases. It is done in
533 # process_PropertyAliases()
535 # In version 2.1.2, the entry in UnicodeData.txt:
536 # 0275;LATIN SMALL LETTER BARRED O;Ll;0;L;;;;;N;;;;019F;
538 # 0275;LATIN SMALL LETTER BARRED O;Ll;0;L;;;;;N;;;019F;;019F
539 # Without this change, there are casing problems for this character.
541 # Search for $string_compare_versions to see how to compare changes to
542 # properties between Unicode versions
544 ##############################################################################
546 my $UNDEF = ':UNDEF:'; # String to print out for undefined values in tracing
548 my $MAX_LINE_WIDTH = 78;
550 # Debugging aid to skip most files so as to not be distracted by them when
551 # concentrating on the ones being debugged. Add
553 # to the constructor for those files you want processed when you set this.
554 # Files with a first version number of 0 are special: they are always
555 # processed regardless of the state of this flag. Generally, Jamo.txt and
556 # UnicodeData.txt must not be skipped if you want this program to not die
557 # before normal completion.
561 # Normally these are suppressed.
562 my $write_Unicode_deprecated_tables = 0;
564 # Set to 1 to enable tracing.
567 { # Closure for trace: debugging aid
568 my $print_caller = 1; # ? Include calling subroutine name
569 my $main_with_colon = 'main::';
570 my $main_colon_length = length($main_with_colon);
573 return unless $to_trace; # Do nothing if global flag not set
577 local $DB::trace = 0;
578 $DB::trace = 0; # Quiet 'used only once' message
582 # Loop looking up the stack to get the first non-trace caller
587 $line_number = $caller_line;
588 (my $pkg, my $file, $caller_line, my $caller) = caller $i++;
589 $caller = $main_with_colon unless defined $caller;
591 $caller_name = $caller;
594 $caller_name =~ s/.*:://;
595 if (substr($caller_name, 0, $main_colon_length)
598 $caller_name = substr($caller_name, $main_colon_length);
601 } until ($caller_name ne 'trace');
603 # If the stack was empty, we were called from the top level
604 $caller_name = 'main' if ($caller_name eq ""
605 || $caller_name eq 'trace');
608 #print STDERR __LINE__, ": ", join ", ", @input, "\n";
609 foreach my $string (@input) {
610 if (ref $string eq 'ARRAY' || ref $string eq 'HASH') {
611 $output .= simple_dumper($string);
614 $string = "$string" if ref $string;
615 $string = $UNDEF unless defined $string;
617 $string = '""' if $string eq "";
618 $output .= " " if $output ne ""
620 && substr($output, -1, 1) ne " "
621 && substr($string, 0, 1) ne " ";
626 print STDERR sprintf "%4d: ", $line_number if defined $line_number;
627 print STDERR "$caller_name: " if $print_caller;
628 print STDERR $output, "\n";
634 local $to_trace = 1 if main::DEBUG;
635 my $line = (caller(0))[2];
638 # Accumulate the stack trace
640 my ($pkg, $file, $caller_line, $caller) = caller $i++;
642 last unless defined $caller;
644 trace "called from $caller() at line $line";
645 $line = $caller_line;
649 # This is for a rarely used development feature that allows you to compare two
650 # versions of the Unicode standard without having to deal with changes caused
651 # by the code points introduced in the later version. You probably also want
652 # to use the -annotate option when using this. Run this program on a unicore
653 # containing the starting release you want to compare. Save that output
654 # structure. Then, switching to a unicore with the ending release, change the
655 # "" in the $string_compare_versions definition just below to a string
656 # containing a SINGLE dotted Unicode release number (e.g. "2.1") corresponding
657 # to the starting release. This program will then compile, but throw away all
658 # code points introduced after the starting release. Finally use a diff tool
659 # to compare the two directory structures. They include only the code points
660 # common to both releases, and you can see the changes caused just by the
661 # underlying release semantic changes. For versions earlier than 3.2, you
662 # must copy a version of DAge.txt into the directory.
663 my $string_compare_versions = DEBUG && "";
664 my $compare_versions = DEBUG
665 && $string_compare_versions
666 && pack "C*", split /\./, $string_compare_versions;
669 # Returns non-duplicated input values. From "Perl Best Practices:
670 # Encapsulated Cleverness". p. 455 in first edition.
673 # Arguably this breaks encapsulation, if the goal is to permit multiple
674 # distinct objects to stringify to the same value, and be interchangeable.
675 # However, for this program, no two objects stringify identically, and all
676 # lists passed to this function are either objects or strings. So this
677 # doesn't affect correctness, but it does give a couple of percent speedup.
679 return grep { ! $seen{$_}++ } @_;
682 $0 = File::Spec->canonpath($0);
684 my $make_test_script = 0; # ? Should we output a test script
685 my $make_norm_test_script = 0; # ? Should we output a normalization test script
686 my $write_unchanged_files = 0; # ? Should we update the output files even if
687 # we don't think they have changed
688 my $use_directory = ""; # ? Should we chdir somewhere.
689 my $pod_directory; # input directory to store the pod file.
690 my $pod_file = 'perluniprops';
691 my $t_path; # Path to the .t test file
692 my $file_list = 'mktables.lst'; # File to store input and output file names.
693 # This is used to speed up the build, by not
694 # executing the main body of the program if
695 # nothing on the list has changed since the
697 my $make_list = 1; # ? Should we write $file_list. Set to always
698 # make a list so that when the pumpking is
699 # preparing a release, s/he won't have to do
701 my $glob_list = 0; # ? Should we try to include unknown .txt files
703 my $output_range_counts = $debugging_build; # ? Should we include the number
704 # of code points in ranges in
706 my $annotate = 0; # ? Should character names be in the output
708 # Verbosity levels; 0 is quiet
709 my $NORMAL_VERBOSITY = 1;
713 my $verbosity = $NORMAL_VERBOSITY;
715 # Stored in mktables.lst so that if this program is called with different
716 # options, will regenerate even if the files otherwise look like they're
718 my $command_line_arguments = join " ", @ARGV;
722 my $arg = shift @ARGV;
724 $verbosity = $VERBOSE;
726 elsif ($arg eq '-p') {
727 $verbosity = $PROGRESS;
728 $| = 1; # Flush buffers as we go.
730 elsif ($arg eq '-q') {
733 elsif ($arg eq '-w') {
734 # update the files even if they haven't changed
735 $write_unchanged_files = 1;
737 elsif ($arg eq '-check') {
738 my $this = shift @ARGV;
739 my $ok = shift @ARGV;
741 print "Skipping as check params are not the same.\n";
745 elsif ($arg eq '-P' && defined ($pod_directory = shift)) {
746 -d $pod_directory or croak "Directory '$pod_directory' doesn't exist";
748 elsif ($arg eq '-maketest' || ($arg eq '-T' && defined ($t_path = shift)))
750 $make_test_script = 1;
752 elsif ($arg eq '-makenormtest')
754 $make_norm_test_script = 1;
756 elsif ($arg eq '-makelist') {
759 elsif ($arg eq '-C' && defined ($use_directory = shift)) {
760 -d $use_directory or croak "Unknown directory '$use_directory'";
762 elsif ($arg eq '-L') {
764 # Existence not tested until have chdir'd
767 elsif ($arg eq '-globlist') {
770 elsif ($arg eq '-c') {
771 $output_range_counts = ! $output_range_counts
773 elsif ($arg eq '-annotate') {
775 $debugging_build = 1;
776 $output_range_counts = 1;
780 $with_c .= 'out' if $output_range_counts; # Complements the state
782 usage: $0 [-c|-p|-q|-v|-w] [-C dir] [-L filelist] [ -P pod_dir ]
783 [ -T test_file_path ] [-globlist] [-makelist] [-maketest]
785 -c : Output comments $with_c number of code points in ranges
786 -q : Quiet Mode: Only output serious warnings.
787 -p : Set verbosity level to normal plus show progress.
788 -v : Set Verbosity level high: Show progress and non-serious
790 -w : Write files regardless
791 -C dir : Change to this directory before proceeding. All relative paths
792 except those specified by the -P and -T options will be done
793 with respect to this directory.
794 -P dir : Output $pod_file file to directory 'dir'.
795 -T path : Create a test script as 'path'; overrides -maketest
796 -L filelist : Use alternate 'filelist' instead of standard one
797 -globlist : Take as input all non-Test *.txt files in current and sub
799 -maketest : Make test script 'TestProp.pl' in current (or -C directory),
801 -makelist : Rewrite the file list $file_list based on current setup
802 -annotate : Output an annotation for each character in the table files;
803 useful for debugging mktables, looking at diffs; but is slow
805 -check A B : Executes $0 only if A and B are the same
810 # Stores the most-recently changed file. If none have changed, can skip the
812 my $most_recent = (stat $0)[9]; # Do this before the chdir!
814 # Change directories now, because need to read 'version' early.
815 if ($use_directory) {
816 if ($pod_directory && ! File::Spec->file_name_is_absolute($pod_directory)) {
817 $pod_directory = File::Spec->rel2abs($pod_directory);
819 if ($t_path && ! File::Spec->file_name_is_absolute($t_path)) {
820 $t_path = File::Spec->rel2abs($t_path);
822 chdir $use_directory or croak "Failed to chdir to '$use_directory':$!";
823 if ($pod_directory && File::Spec->file_name_is_absolute($pod_directory)) {
824 $pod_directory = File::Spec->abs2rel($pod_directory);
826 if ($t_path && File::Spec->file_name_is_absolute($t_path)) {
827 $t_path = File::Spec->abs2rel($t_path);
831 # Get Unicode version into regular and v-string. This is done now because
832 # various tables below get populated based on it. These tables are populated
833 # here to be near the top of the file, and so easily seeable by those needing
835 open my $VERSION, "<", "version"
836 or croak "$0: can't open required file 'version': $!\n";
837 my $string_version = <$VERSION>;
839 chomp $string_version;
840 my $v_version = pack "C*", split /\./, $string_version; # v string
842 my $unicode_version = ($compare_versions)
843 ? ( "$string_compare_versions (using "
844 . "$string_version rules)")
847 # The following are the complete names of properties with property values that
848 # are known to not match any code points in some versions of Unicode, but that
849 # may change in the future so they should be matchable, hence an empty file is
850 # generated for them.
851 my @tables_that_may_be_empty;
852 push @tables_that_may_be_empty, 'Joining_Type=Left_Joining'
853 if $v_version lt v6.3.0;
854 push @tables_that_may_be_empty, 'Script=Common' if $v_version le v4.0.1;
855 push @tables_that_may_be_empty, 'Title' if $v_version lt v2.0.0;
856 push @tables_that_may_be_empty, 'Script=Katakana_Or_Hiragana'
857 if $v_version ge v4.1.0;
858 push @tables_that_may_be_empty, 'Script_Extensions=Katakana_Or_Hiragana'
859 if $v_version ge v6.0.0;
860 push @tables_that_may_be_empty, 'Grapheme_Cluster_Break=Prepend'
861 if $v_version ge v6.1.0;
862 push @tables_that_may_be_empty, 'Canonical_Combining_Class=CCC133'
863 if $v_version ge v6.2.0;
865 # The lists below are hashes, so the key is the item in the list, and the
866 # value is the reason why it is in the list. This makes generation of
867 # documentation easier.
869 my %why_suppressed; # No file generated for these.
871 # Files aren't generated for empty extraneous properties. This is arguable.
872 # Extraneous properties generally come about because a property is no longer
873 # used in a newer version of Unicode. If we generated a file without code
874 # points, programs that used to work on that property will still execute
875 # without errors. It just won't ever match (or will always match, with \P{}).
876 # This means that the logic is now likely wrong. I (khw) think its better to
877 # find this out by getting an error message. Just move them to the table
878 # above to change this behavior
879 my %why_suppress_if_empty_warn_if_not = (
881 # It is the only property that has ever officially been removed from the
882 # Standard. The database never contained any code points for it.
883 'Special_Case_Condition' => 'Obsolete',
885 # Apparently never official, but there were code points in some versions of
886 # old-style PropList.txt
887 'Non_Break' => 'Obsolete',
890 # These would normally go in the warn table just above, but they were changed
891 # a long time before this program was written, so warnings about them are
893 if ($v_version gt v3.2.0) {
894 push @tables_that_may_be_empty,
895 'Canonical_Combining_Class=Attached_Below_Left'
899 if ($v_version ge v11.0.0) {
900 push @tables_that_may_be_empty, qw(
901 Grapheme_Cluster_Break=E_Base
902 Grapheme_Cluster_Break=E_Base_GAZ
903 Grapheme_Cluster_Break=E_Modifier
904 Grapheme_Cluster_Break=Glue_After_Zwj
906 Word_Break=E_Base_GAZ
907 Word_Break=E_Modifier
908 Word_Break=Glue_After_Zwj);
911 # Enum values for to_output_map() method in the Map_Table package. (0 is don't
913 my $EXTERNAL_MAP = 1;
914 my $INTERNAL_MAP = 2;
915 my $OUTPUT_ADJUSTED = 3;
917 # To override computed values for writing the map tables for these properties.
918 # The default for enum map tables is to write them out, so that the Unicode
919 # .txt files can be removed, but all the data to compute any property value
920 # for any code point is available in a more compact form.
921 my %global_to_output_map = (
922 # Needed by UCD.pm, but don't want to publicize that it exists, so won't
923 # get stuck supporting it if things change. Since it is a STRING
924 # property, it normally would be listed in the pod, but INTERNAL_MAP
926 Unicode_1_Name => $INTERNAL_MAP,
928 Present_In => 0, # Suppress, as easily computed from Age
929 Block => (NON_ASCII_PLATFORM) ? 1 : 0, # Suppress, as Blocks.txt is
930 # retained, but needed for
933 # Suppress, as mapping can be found instead from the
934 # Perl_Decomposition_Mapping file
935 Decomposition_Type => 0,
938 # There are several types of obsolete properties defined by Unicode. These
939 # must be hand-edited for every new Unicode release.
940 my %why_deprecated; # Generates a deprecated warning message if used.
941 my %why_stabilized; # Documentation only
942 my %why_obsolete; # Documentation only
945 my $simple = 'Perl uses the more complete version';
946 my $unihan = 'Unihan properties are by default not enabled in the Perl core. Instead use CPAN: Unicode::Unihan';
948 my $other_properties = 'other properties';
949 my $contributory = "Used by Unicode internally for generating $other_properties and not intended to be used stand-alone";
950 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.";
953 'Grapheme_Link' => 'Duplicates ccc=vr (Canonical_Combining_Class=Virama)',
954 'Jamo_Short_Name' => $contributory,
955 'Line_Break=Surrogate' => 'Surrogates should never appear in well-formed text, and therefore shouldn\'t be the basis for line breaking',
956 'Other_Alphabetic' => $contributory,
957 'Other_Default_Ignorable_Code_Point' => $contributory,
958 'Other_Grapheme_Extend' => $contributory,
959 'Other_ID_Continue' => $contributory,
960 'Other_ID_Start' => $contributory,
961 'Other_Lowercase' => $contributory,
962 'Other_Math' => $contributory,
963 'Other_Uppercase' => $contributory,
964 'Expands_On_NFC' => $why_no_expand,
965 'Expands_On_NFD' => $why_no_expand,
966 'Expands_On_NFKC' => $why_no_expand,
967 'Expands_On_NFKD' => $why_no_expand,
971 # There is a lib/unicore/Decomposition.pl (used by Normalize.pm) which
972 # contains the same information, but without the algorithmically
973 # determinable Hangul syllables'. This file is not published, so it's
974 # existence is not noted in the comment.
975 'Decomposition_Mapping' => 'Accessible via Unicode::Normalize or prop_invmap() or charprop() in Unicode::UCD::',
977 # Don't suppress ISO_Comment, as otherwise special handling is needed
978 # to differentiate between it and gc=c, which can be written as 'isc',
979 # which is the same characters as ISO_Comment's short name.
981 'Name' => "Accessible via \\N{...} or 'use charnames;' or charprop() or prop_invmap() in Unicode::UCD::",
983 'Simple_Case_Folding' => "$simple. Can access this through casefold(), charprop(), or prop_invmap() in Unicode::UCD",
984 'Simple_Lowercase_Mapping' => "$simple. Can access this through charinfo(), charprop(), or prop_invmap() in Unicode::UCD",
985 'Simple_Titlecase_Mapping' => "$simple. Can access this through charinfo(), charprop(), or prop_invmap() in Unicode::UCD",
986 'Simple_Uppercase_Mapping' => "$simple. Can access this through charinfo(), charprop(), or prop_invmap() in Unicode::UCD",
988 FC_NFKC_Closure => 'Deprecated by Unicode, and supplanted in usage by NFKC_Casefold; otherwise not useful',
991 foreach my $property (
993 # The following are suppressed because they were made contributory
994 # or deprecated by Unicode before Perl ever thought about
1003 # The following are suppressed because they have been marked
1004 # as deprecated for a sufficient amount of time
1006 'Other_Default_Ignorable_Code_Point',
1007 'Other_Grapheme_Extend',
1008 'Other_ID_Continue',
1014 $why_suppressed{$property} = $why_deprecated{$property};
1017 # Customize the message for all the 'Other_' properties
1018 foreach my $property (keys %why_deprecated) {
1019 next if (my $main_property = $property) !~ s/^Other_//;
1020 $why_deprecated{$property} =~ s/$other_properties/the $main_property property (which should be used instead)/;
1024 if ($write_Unicode_deprecated_tables) {
1025 foreach my $property (keys %why_suppressed) {
1026 delete $why_suppressed{$property} if $property =~
1027 / ^ Other | Grapheme /x;
1031 if ($v_version ge 4.0.0) {
1032 $why_stabilized{'Hyphen'} = 'Use the Line_Break property instead; see www.unicode.org/reports/tr14';
1033 if ($v_version ge 6.0.0) {
1034 $why_deprecated{'Hyphen'} = 'Supplanted by Line_Break property values; see www.unicode.org/reports/tr14';
1037 if ($v_version ge 5.2.0 && $v_version lt 6.0.0) {
1038 $why_obsolete{'ISO_Comment'} = 'Code points for it have been removed';
1039 if ($v_version ge 6.0.0) {
1040 $why_deprecated{'ISO_Comment'} = 'No longer needed for Unicode\'s internal chart generation; otherwise not useful, and code points for it have been removed';
1044 # Probably obsolete forever
1045 if ($v_version ge v4.1.0) {
1046 $why_suppressed{'Script=Katakana_Or_Hiragana'} = 'Obsolete. All code points previously matched by this have been moved to "Script=Common".';
1048 if ($v_version ge v6.0.0) {
1049 $why_suppressed{'Script=Katakana_Or_Hiragana'} .= ' Consider instead using "Script_Extensions=Katakana" or "Script_Extensions=Hiragana" (or both)';
1050 $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"';
1053 # This program can create files for enumerated-like properties, such as
1054 # 'Numeric_Type'. This file would be the same format as for a string
1055 # property, with a mapping from code point to its value, so you could look up,
1056 # for example, the script a code point is in. But no one so far wants this
1057 # mapping, or they have found another way to get it since this is a new
1058 # feature. So no file is generated except if it is in this list.
1059 my @output_mapped_properties = split "\n", <<END;
1062 # If you want more Unihan properties than the default, you need to add them to
1063 # these arrays. Depending on the property type, @missing lines might have to
1064 # be added to the second array. A sample entry would be (including the '#'):
1065 # @missing: 0000..10FFFF; cjkAccountingNumeric; NaN
1066 my @cjk_properties = split "\n", <<'END';
1068 my @cjk_property_values = split "\n", <<'END';
1071 # The input files don't list every code point. Those not listed are to be
1072 # defaulted to some value. Below are hard-coded what those values are for
1073 # non-binary properties as of 5.1. Starting in 5.0, there are
1074 # machine-parsable comment lines in the files that give the defaults; so this
1075 # list shouldn't have to be extended. The claim is that all missing entries
1076 # for binary properties will default to 'N'. Unicode tried to change that in
1077 # 5.2, but the beta period produced enough protest that they backed off.
1079 # The defaults for the fields that appear in UnicodeData.txt in this hash must
1080 # be in the form that it expects. The others may be synonyms.
1081 my $CODE_POINT = '<code point>';
1082 my %default_mapping = (
1083 Age => "Unassigned",
1084 # Bidi_Class => Complicated; set in code
1085 Bidi_Mirroring_Glyph => "",
1086 Block => 'No_Block',
1087 Canonical_Combining_Class => 0,
1088 Case_Folding => $CODE_POINT,
1089 Decomposition_Mapping => $CODE_POINT,
1090 Decomposition_Type => 'None',
1091 East_Asian_Width => "Neutral",
1092 FC_NFKC_Closure => $CODE_POINT,
1093 General_Category => ($v_version le 6.3.0) ? 'Cn' : 'Unassigned',
1094 Grapheme_Cluster_Break => 'Other',
1095 Hangul_Syllable_Type => 'NA',
1097 Jamo_Short_Name => "",
1098 Joining_Group => "No_Joining_Group",
1099 # Joining_Type => Complicated; set in code
1100 kIICore => 'N', # Is converted to binary
1101 #Line_Break => Complicated; set in code
1102 Lowercase_Mapping => $CODE_POINT,
1109 Numeric_Type => 'None',
1110 Numeric_Value => 'NaN',
1111 Script => ($v_version le 4.1.0) ? 'Common' : 'Unknown',
1112 Sentence_Break => 'Other',
1113 Simple_Case_Folding => $CODE_POINT,
1114 Simple_Lowercase_Mapping => $CODE_POINT,
1115 Simple_Titlecase_Mapping => $CODE_POINT,
1116 Simple_Uppercase_Mapping => $CODE_POINT,
1117 Titlecase_Mapping => $CODE_POINT,
1118 Unicode_1_Name => "",
1119 Unicode_Radical_Stroke => "",
1120 Uppercase_Mapping => $CODE_POINT,
1121 Word_Break => 'Other',
1124 ### End of externally interesting definitions, except for @input_file_objects
1127 # !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
1128 # This file is machine-generated by $0 from the Unicode
1129 # database, Version $unicode_version. Any changes made here will be lost!
1132 my $INTERNAL_ONLY_HEADER = <<"EOF";
1134 # !!!!!!! INTERNAL PERL USE ONLY !!!!!!!
1135 # This file is for internal use by core Perl only. The format and even the
1136 # name or existence of this file are subject to change without notice. Don't
1137 # use it directly. Use Unicode::UCD to access the Unicode character data
1141 my $DEVELOPMENT_ONLY=<<"EOF";
1142 # !!!!!!! DEVELOPMENT USE ONLY !!!!!!!
1143 # This file contains information artificially constrained to code points
1144 # present in Unicode release $string_compare_versions.
1145 # IT CANNOT BE RELIED ON. It is for use during development only and should
1146 # not be used for production.
1150 my $MAX_UNICODE_CODEPOINT_STRING = ($v_version ge v2.0.0)
1153 my $MAX_UNICODE_CODEPOINT = hex $MAX_UNICODE_CODEPOINT_STRING;
1154 my $MAX_UNICODE_CODEPOINTS = $MAX_UNICODE_CODEPOINT + 1;
1156 # We work with above-Unicode code points, up to IV_MAX, but we may want to use
1157 # sentinels above that number. Therefore for internal use, we use a much
1158 # smaller number, translating it to IV_MAX only for output. The exact number
1159 # is immaterial (all above-Unicode code points are treated exactly the same),
1160 # but the algorithm requires it to be at least
1161 # 2 * $MAX_UNICODE_CODEPOINTS + 1
1162 my $MAX_WORKING_CODEPOINTS= $MAX_UNICODE_CODEPOINT * 8;
1163 my $MAX_WORKING_CODEPOINT = $MAX_WORKING_CODEPOINTS - 1;
1164 my $MAX_WORKING_CODEPOINT_STRING = sprintf("%X", $MAX_WORKING_CODEPOINT);
1166 my $MAX_PLATFORM_CODEPOINT = ~0 >> 1;
1168 # Matches legal code point. 4-6 hex numbers, If there are 6, the first
1169 # two must be 10; if there are 5, the first must not be a 0. Written this way
1170 # to decrease backtracking. The first regex allows the code point to be at
1171 # the end of a word, but to work properly, the word shouldn't end with a valid
1172 # hex character. The second one won't match a code point at the end of a
1173 # word, and doesn't have the run-on issue
1174 my $run_on_code_point_re =
1175 qr/ (?: 10[0-9A-F]{4} | [1-9A-F][0-9A-F]{4} | [0-9A-F]{4} ) \b/x;
1176 my $code_point_re = qr/\b$run_on_code_point_re/;
1178 # This matches the beginning of the line in the Unicode DB files that give the
1179 # defaults for code points not listed (i.e., missing) in the file. The code
1180 # depends on this ending with a semi-colon, so it can assume it is a valid
1181 # field when the line is split() by semi-colons
1182 my $missing_defaults_prefix = qr/^#\s+\@missing:\s+0000\.\.10FFFF\s*;/;
1184 # Property types. Unicode has more types, but these are sufficient for our
1186 my $UNKNOWN = -1; # initialized to illegal value
1187 my $NON_STRING = 1; # Either binary or enum
1189 my $FORCED_BINARY = 3; # Not a binary property, but, besides its normal
1190 # tables, additional true and false tables are
1191 # generated so that false is anything matching the
1192 # default value, and true is everything else.
1193 my $ENUM = 4; # Include catalog
1194 my $STRING = 5; # Anything else: string or misc
1196 # Some input files have lines that give default values for code points not
1197 # contained in the file. Sometimes these should be ignored.
1198 my $NO_DEFAULTS = 0; # Must evaluate to false
1199 my $NOT_IGNORED = 1;
1202 # Range types. Each range has a type. Most ranges are type 0, for normal,
1203 # and will appear in the main body of the tables in the output files, but
1204 # there are other types of ranges as well, listed below, that are specially
1205 # handled. There are pseudo-types as well that will never be stored as a
1206 # type, but will affect the calculation of the type.
1208 # 0 is for normal, non-specials
1209 my $MULTI_CP = 1; # Sequence of more than code point
1210 my $HANGUL_SYLLABLE = 2;
1211 my $CP_IN_NAME = 3; # The NAME contains the code point appended to it.
1212 my $NULL = 4; # The map is to the null string; utf8.c can't
1213 # handle these, nor is there an accepted syntax
1214 # for them in \p{} constructs
1215 my $COMPUTE_NO_MULTI_CP = 5; # Pseudo-type; means that ranges that would
1216 # otherwise be $MULTI_CP type are instead type 0
1218 # process_generic_property_file() can accept certain overrides in its input.
1219 # Each of these must begin AND end with $CMD_DELIM.
1220 my $CMD_DELIM = "\a";
1221 my $REPLACE_CMD = 'replace'; # Override the Replace
1222 my $MAP_TYPE_CMD = 'map_type'; # Override the Type
1227 # Values for the Replace argument to add_range.
1228 # $NO # Don't replace; add only the code points not
1230 my $IF_NOT_EQUIVALENT = 1; # Replace only under certain conditions; details in
1231 # the comments at the subroutine definition.
1232 my $UNCONDITIONALLY = 2; # Replace without conditions.
1233 my $MULTIPLE_BEFORE = 4; # Don't replace, but add a duplicate record if
1235 my $MULTIPLE_AFTER = 5; # Don't replace, but add a duplicate record if
1237 my $CROAK = 6; # Die with an error if is already there
1239 # Flags to give property statuses. The phrases are to remind maintainers that
1240 # if the flag is changed, the indefinite article referring to it in the
1241 # documentation may need to be as well.
1243 my $DEPRECATED = 'D';
1244 my $a_bold_deprecated = "a 'B<$DEPRECATED>'";
1245 my $A_bold_deprecated = "A 'B<$DEPRECATED>'";
1246 my $DISCOURAGED = 'X';
1247 my $a_bold_discouraged = "an 'B<$DISCOURAGED>'";
1248 my $A_bold_discouraged = "An 'B<$DISCOURAGED>'";
1250 my $a_bold_stricter = "a 'B<$STRICTER>'";
1251 my $A_bold_stricter = "A 'B<$STRICTER>'";
1252 my $STABILIZED = 'S';
1253 my $a_bold_stabilized = "an 'B<$STABILIZED>'";
1254 my $A_bold_stabilized = "An 'B<$STABILIZED>'";
1256 my $a_bold_obsolete = "an 'B<$OBSOLETE>'";
1257 my $A_bold_obsolete = "An 'B<$OBSOLETE>'";
1259 # Aliases can also have an extra status:
1260 my $INTERNAL_ALIAS = 'P';
1262 my %status_past_participles = (
1263 $DISCOURAGED => 'discouraged',
1264 $STABILIZED => 'stabilized',
1265 $OBSOLETE => 'obsolete',
1266 $DEPRECATED => 'deprecated',
1267 $INTERNAL_ALIAS => 'reserved for Perl core internal use only',
1270 # Table fates. These are somewhat ordered, so that fates < $MAP_PROXIED should be
1271 # externally documented.
1272 my $ORDINARY = 0; # The normal fate.
1273 my $MAP_PROXIED = 1; # The map table for the property isn't written out,
1274 # but there is a file written that can be used to
1275 # reconstruct this table
1276 my $INTERNAL_ONLY = 2; # The file for this table is written out, but it is
1277 # for Perl's internal use only
1278 my $LEGACY_ONLY = 3; # Like $INTERNAL_ONLY, but not actually used by Perl.
1279 # Is for backwards compatibility for applications that
1280 # read the file directly, so it's format is
1282 my $SUPPRESSED = 4; # The file for this table is not written out, and as a
1283 # result, we don't bother to do many computations on
1285 my $PLACEHOLDER = 5; # Like $SUPPRESSED, but we go through all the
1286 # computations anyway, as the values are needed for
1287 # things to work. This happens when we have Perl
1288 # extensions that depend on Unicode tables that
1289 # wouldn't normally be in a given Unicode version.
1291 # The format of the values of the tables:
1292 my $EMPTY_FORMAT = "";
1293 my $BINARY_FORMAT = 'b';
1294 my $DECIMAL_FORMAT = 'd';
1295 my $FLOAT_FORMAT = 'f';
1296 my $INTEGER_FORMAT = 'i';
1297 my $HEX_FORMAT = 'x';
1298 my $RATIONAL_FORMAT = 'r';
1299 my $STRING_FORMAT = 's';
1300 my $ADJUST_FORMAT = 'a';
1301 my $HEX_ADJUST_FORMAT = 'ax';
1302 my $DECOMP_STRING_FORMAT = 'c';
1303 my $STRING_WHITE_SPACE_LIST = 'sw';
1305 my %map_table_formats = (
1306 $BINARY_FORMAT => 'binary',
1307 $DECIMAL_FORMAT => 'single decimal digit',
1308 $FLOAT_FORMAT => 'floating point number',
1309 $INTEGER_FORMAT => 'integer',
1310 $HEX_FORMAT => 'non-negative hex whole number; a code point',
1311 $RATIONAL_FORMAT => 'rational: an integer or a fraction',
1312 $STRING_FORMAT => 'string',
1313 $ADJUST_FORMAT => 'some entries need adjustment',
1314 $HEX_ADJUST_FORMAT => 'mapped value in hex; some entries need adjustment',
1315 $DECOMP_STRING_FORMAT => 'Perl\'s internal (Normalize.pm) decomposition mapping',
1316 $STRING_WHITE_SPACE_LIST => 'string, but some elements are interpreted as a list; white space occurs only as list item separators'
1319 # Unicode didn't put such derived files in a separate directory at first.
1320 my $EXTRACTED_DIR = (-d 'extracted') ? 'extracted' : "";
1321 my $EXTRACTED = ($EXTRACTED_DIR) ? "$EXTRACTED_DIR/" : "";
1322 my $AUXILIARY = 'auxiliary';
1323 my $EMOJI = 'emoji';
1325 # Hashes and arrays that will eventually go into UCD.pl for the use of UCD.pm
1326 my %loose_to_file_of; # loosely maps table names to their respective
1328 my %stricter_to_file_of; # same; but for stricter mapping.
1329 my %loose_property_to_file_of; # Maps a loose property name to its map file
1330 my %strict_property_to_file_of; # Same, but strict
1331 my @inline_definitions = "V0"; # Each element gives a definition of a unique
1332 # inversion list. When a definition is inlined,
1333 # its value in the hash it's in (one of the two
1334 # defined just above) will include an index into
1335 # this array. The 0th element is initialized to
1336 # the definition for a zero length inversion list
1337 my %file_to_swash_name; # Maps the file name to its corresponding key name
1338 # in the hash %Unicode::UCD::SwashInfo
1339 my %nv_floating_to_rational; # maps numeric values floating point numbers to
1340 # their rational equivalent
1341 my %loose_property_name_of; # Loosely maps (non_string) property names to
1343 my %strict_property_name_of; # Strictly maps (non_string) property names to
1345 my %string_property_loose_to_name; # Same, for string properties.
1346 my %loose_defaults; # keys are of form "prop=value", where 'prop' is
1347 # the property name in standard loose form, and
1348 # 'value' is the default value for that property,
1349 # also in standard loose form.
1350 my %loose_to_standard_value; # loosely maps table names to the canonical
1352 my %ambiguous_names; # keys are alias names (in standard form) that
1353 # have more than one possible meaning.
1354 my %combination_property; # keys are alias names (in standard form) that
1355 # have both a map table, and a binary one that
1356 # yields true for all non-null maps.
1357 my %prop_aliases; # Keys are standard property name; values are each
1359 my %prop_value_aliases; # Keys of top level are standard property name;
1360 # values are keys to another hash, Each one is
1361 # one of the property's values, in standard form.
1362 # The values are that prop-val's aliases.
1363 my %skipped_files; # List of files that we skip
1364 my %ucd_pod; # Holds entries that will go into the UCD section of the pod
1366 # Most properties are immune to caseless matching, otherwise you would get
1367 # nonsensical results, as properties are a function of a code point, not
1368 # everything that is caselessly equivalent to that code point. For example,
1369 # Changes_When_Case_Folded('s') should be false, whereas caselessly it would
1370 # be true because 's' and 'S' are equivalent caselessly. However,
1371 # traditionally, [:upper:] and [:lower:] are equivalent caselessly, so we
1372 # extend that concept to those very few properties that are like this. Each
1373 # such property will match the full range caselessly. They are hard-coded in
1374 # the program; it's not worth trying to make it general as it's extremely
1375 # unlikely that they will ever change.
1376 my %caseless_equivalent_to;
1378 # This is the range of characters that were in Release 1 of Unicode, and
1379 # removed in Release 2 (replaced with the current Hangul syllables starting at
1380 # U+AC00). The range was reused starting in Release 3 for other purposes.
1381 my $FIRST_REMOVED_HANGUL_SYLLABLE = 0x3400;
1382 my $FINAL_REMOVED_HANGUL_SYLLABLE = 0x4DFF;
1384 # These constants names and values were taken from the Unicode standard,
1385 # version 5.1, section 3.12. They are used in conjunction with Hangul
1386 # syllables. The '_string' versions are so generated tables can retain the
1387 # hex format, which is the more familiar value
1388 my $SBase_string = "0xAC00";
1389 my $SBase = CORE::hex $SBase_string;
1390 my $LBase_string = "0x1100";
1391 my $LBase = CORE::hex $LBase_string;
1392 my $VBase_string = "0x1161";
1393 my $VBase = CORE::hex $VBase_string;
1394 my $TBase_string = "0x11A7";
1395 my $TBase = CORE::hex $TBase_string;
1400 my $NCount = $VCount * $TCount;
1402 # For Hangul syllables; These store the numbers from Jamo.txt in conjunction
1403 # with the above published constants.
1405 my %Jamo_L; # Leading consonants
1406 my %Jamo_V; # Vowels
1407 my %Jamo_T; # Trailing consonants
1409 # For code points whose name contains its ordinal as a '-ABCD' suffix.
1410 # The key is the base name of the code point, and the value is an
1411 # array giving all the ranges that use this base name. Each range
1412 # is actually a hash giving the 'low' and 'high' values of it.
1413 my %names_ending_in_code_point;
1414 my %loose_names_ending_in_code_point; # Same as above, but has blanks, dashes
1415 # removed from the names
1416 # Inverse mapping. The list of ranges that have these kinds of
1417 # names. Each element contains the low, high, and base names in an
1419 my @code_points_ending_in_code_point;
1421 # To hold Unicode's normalization test suite
1422 my @normalization_tests;
1424 # Boolean: does this Unicode version have the hangul syllables, and are we
1425 # writing out a table for them?
1426 my $has_hangul_syllables = 0;
1428 # Does this Unicode version have code points whose names end in their
1429 # respective code points, and are we writing out a table for them? 0 for no;
1430 # otherwise points to first property that a table is needed for them, so that
1431 # if multiple tables are needed, we don't create duplicates
1432 my $needing_code_points_ending_in_code_point = 0;
1434 my @backslash_X_tests; # List of tests read in for testing \X
1435 my @LB_tests; # List of tests read in for testing \b{lb}
1436 my @SB_tests; # List of tests read in for testing \b{sb}
1437 my @WB_tests; # List of tests read in for testing \b{wb}
1438 my @unhandled_properties; # Will contain a list of properties found in
1439 # the input that we didn't process.
1440 my @match_properties; # Properties that have match tables, to be
1442 my @map_properties; # Properties that get map files written
1443 my @named_sequences; # NamedSequences.txt contents.
1444 my %potential_files; # Generated list of all .txt files in the directory
1445 # structure so we can warn if something is being
1447 my @missing_early_files; # Generated list of absent files that we need to
1448 # proceed in compiling this early Unicode version
1449 my @files_actually_output; # List of files we generated.
1450 my @more_Names; # Some code point names are compound; this is used
1451 # to store the extra components of them.
1452 my $E_FLOAT_PRECISION = 2; # The minimum number of digits after the decimal
1453 # point of a normalized floating point number
1454 # needed to match before we consider it equivalent
1455 # to a candidate rational
1457 # These store references to certain commonly used property objects
1466 my $Assigned; # All assigned characters in this Unicode release
1467 my $DI; # Default_Ignorable_Code_Point property
1468 my $NChar; # Noncharacter_Code_Point property
1470 my $scx; # Script_Extensions property
1471 my $idt; # Identifier_Type property
1473 # Are there conflicting names because of beginning with 'In_', or 'Is_'
1474 my $has_In_conflicts = 0;
1475 my $has_Is_conflicts = 0;
1477 sub internal_file_to_platform ($) {
1478 # Convert our file paths which have '/' separators to those of the
1482 return undef unless defined $file;
1484 return File::Spec->join(split '/', $file);
1487 sub file_exists ($) { # platform independent '-e'. This program internally
1488 # uses slash as a path separator.
1490 return 0 if ! defined $file;
1491 return -e internal_file_to_platform($file);
1495 # Returns the address of the blessed input object.
1496 # It doesn't check for blessedness because that would do a string eval
1497 # every call, and the program is structured so that this is never called
1498 # for a non-blessed object.
1500 no overloading; # If overloaded, numifying below won't work.
1502 # Numifying a ref gives its address.
1503 return pack 'J', $_[0];
1506 # These are used only if $annotate is true.
1507 # The entire range of Unicode characters is examined to populate these
1508 # after all the input has been processed. But most can be skipped, as they
1509 # have the same descriptive phrases, such as being unassigned
1510 my @viacode; # Contains the 1 million character names
1511 my @age; # And their ages ("" if none)
1512 my @printable; # boolean: And are those characters printable?
1513 my @annotate_char_type; # Contains a type of those characters, specifically
1514 # for the purposes of annotation.
1515 my $annotate_ranges; # A map of ranges of code points that have the same
1516 # name for the purposes of annotation. They map to the
1517 # upper edge of the range, so that the end point can
1518 # be immediately found. This is used to skip ahead to
1519 # the end of a range, and avoid processing each
1520 # individual code point in it.
1521 my $unassigned_sans_noncharacters; # A Range_List of the unassigned
1522 # characters, but excluding those which are
1523 # also noncharacter code points
1525 # The annotation types are an extension of the regular range types, though
1526 # some of the latter are folded into one. Make the new types negative to
1527 # avoid conflicting with the regular types
1528 my $SURROGATE_TYPE = -1;
1529 my $UNASSIGNED_TYPE = -2;
1530 my $PRIVATE_USE_TYPE = -3;
1531 my $NONCHARACTER_TYPE = -4;
1532 my $CONTROL_TYPE = -5;
1533 my $ABOVE_UNICODE_TYPE = -6;
1534 my $UNKNOWN_TYPE = -7; # Used only if there is a bug in this program
1536 sub populate_char_info ($) {
1537 # Used only with the $annotate option. Populates the arrays with the
1538 # input code point's info that are needed for outputting more detailed
1539 # comments. If calling context wants a return, it is the end point of
1540 # any contiguous range of characters that share essentially the same info
1543 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
1545 $viacode[$i] = $perl_charname->value_of($i) || "";
1546 $age[$i] = (defined $age)
1547 ? (($age->value_of($i) =~ / ^ \d+ \. \d+ $ /x)
1548 ? $age->value_of($i)
1552 # A character is generally printable if Unicode says it is,
1553 # but below we make sure that most Unicode general category 'C' types
1555 $printable[$i] = $print->contains($i);
1557 # But the characters in this range were removed in v2.0 and replaced by
1558 # different ones later. Modern fonts will be for the replacement
1559 # characters, so suppress printing them.
1560 if (($v_version lt v2.0
1561 || ($compare_versions && $compare_versions lt v2.0))
1562 && ( $i >= $FIRST_REMOVED_HANGUL_SYLLABLE
1563 && $i <= $FINAL_REMOVED_HANGUL_SYLLABLE))
1568 $annotate_char_type[$i] = $perl_charname->type_of($i) || 0;
1570 # Only these two regular types are treated specially for annotations
1572 $annotate_char_type[$i] = 0 if $annotate_char_type[$i] != $CP_IN_NAME
1573 && $annotate_char_type[$i] != $HANGUL_SYLLABLE;
1575 # Give a generic name to all code points that don't have a real name.
1576 # We output ranges, if applicable, for these. Also calculate the end
1577 # point of the range.
1579 if (! $viacode[$i]) {
1580 if ($i > $MAX_UNICODE_CODEPOINT) {
1581 $viacode[$i] = 'Above-Unicode';
1582 $annotate_char_type[$i] = $ABOVE_UNICODE_TYPE;
1584 $end = $MAX_WORKING_CODEPOINT;
1586 elsif ($gc-> table('Private_use')->contains($i)) {
1587 $viacode[$i] = 'Private Use';
1588 $annotate_char_type[$i] = $PRIVATE_USE_TYPE;
1590 $end = $gc->table('Private_Use')->containing_range($i)->end;
1592 elsif ($NChar->contains($i)) {
1593 $viacode[$i] = 'Noncharacter';
1594 $annotate_char_type[$i] = $NONCHARACTER_TYPE;
1596 $end = $NChar->containing_range($i)->end;
1598 elsif ($gc-> table('Control')->contains($i)) {
1599 my $name_ref = property_ref('Name_Alias');
1600 $name_ref = property_ref('Unicode_1_Name') if ! defined $name_ref;
1601 $viacode[$i] = (defined $name_ref)
1602 ? $name_ref->value_of($i)
1604 $annotate_char_type[$i] = $CONTROL_TYPE;
1607 elsif ($gc-> table('Unassigned')->contains($i)) {
1608 $annotate_char_type[$i] = $UNASSIGNED_TYPE;
1610 $viacode[$i] = 'Unassigned';
1612 if (defined $block) { # No blocks in earliest releases
1613 $viacode[$i] .= ', block=' . $block-> value_of($i);
1614 $end = $gc-> table('Unassigned')->containing_range($i)->end;
1616 # Because we name the unassigned by the blocks they are in, it
1617 # can't go past the end of that block, and it also can't go
1618 # past the unassigned range it is in. The special table makes
1619 # sure that the non-characters, which are unassigned, are
1621 $end = min($block->containing_range($i)->end,
1622 $unassigned_sans_noncharacters->
1623 containing_range($i)->end);
1627 while ($unassigned_sans_noncharacters->contains($end)) {
1633 elsif ($perl->table('_Perl_Surrogate')->contains($i)) {
1634 $viacode[$i] = 'Surrogate';
1635 $annotate_char_type[$i] = $SURROGATE_TYPE;
1637 $end = $gc->table('Surrogate')->containing_range($i)->end;
1640 Carp::my_carp_bug("Can't figure out how to annotate "
1641 . sprintf("U+%04X", $i)
1642 . ". Proceeding anyway.");
1643 $viacode[$i] = 'UNKNOWN';
1644 $annotate_char_type[$i] = $UNKNOWN_TYPE;
1649 # Here, has a name, but if it's one in which the code point number is
1650 # appended to the name, do that.
1651 elsif ($annotate_char_type[$i] == $CP_IN_NAME) {
1652 $viacode[$i] .= sprintf("-%04X", $i);
1654 my $limit = $perl_charname->containing_range($i)->end;
1656 # Do all these as groups of the same age, instead of individually,
1657 # because their names are so meaningless, and there are typically
1658 # large quantities of them.
1660 while ($end <= $limit && $age->value_of($end) == $age[$i]) {
1670 # And here, has a name, but if it's a hangul syllable one, replace it with
1671 # the correct name from the Unicode algorithm
1672 elsif ($annotate_char_type[$i] == $HANGUL_SYLLABLE) {
1674 my $SIndex = $i - $SBase;
1675 my $L = $LBase + $SIndex / $NCount;
1676 my $V = $VBase + ($SIndex % $NCount) / $TCount;
1677 my $T = $TBase + $SIndex % $TCount;
1678 $viacode[$i] = "HANGUL SYLLABLE $Jamo{$L}$Jamo{$V}";
1679 $viacode[$i] .= $Jamo{$T} if $T != $TBase;
1680 $end = $perl_charname->containing_range($i)->end;
1683 return if ! defined wantarray;
1684 return $i if ! defined $end; # If not a range, return the input
1686 # Save this whole range so can find the end point quickly
1687 $annotate_ranges->add_map($i, $end, $end);
1692 # Commented code below should work on Perl 5.8.
1693 ## This 'require' doesn't necessarily work in miniperl, and even if it does,
1694 ## the native perl version of it (which is what would operate under miniperl)
1695 ## is extremely slow, as it does a string eval every call.
1696 #my $has_fast_scalar_util = $^X !~ /miniperl/
1697 # && defined eval "require Scalar::Util";
1700 # # Returns the address of the blessed input object. Uses the XS version if
1701 # # available. It doesn't check for blessedness because that would do a
1702 # # string eval every call, and the program is structured so that this is
1703 # # never called for a non-blessed object.
1705 # return Scalar::Util::refaddr($_[0]) if $has_fast_scalar_util;
1707 # # Check at least that is a ref.
1708 # my $pkg = ref($_[0]) or return undef;
1710 # # Change to a fake package to defeat any overloaded stringify
1711 # bless $_[0], 'main::Fake';
1713 # # Numifying a ref gives its address.
1714 # my $addr = pack 'J', $_[0];
1716 # # Return to original class
1717 # bless $_[0], $pkg;
1724 return $a if $a >= $b;
1731 return $a if $a <= $b;
1735 sub clarify_number ($) {
1736 # This returns the input number with underscores inserted every 3 digits
1737 # in large (5 digits or more) numbers. Input must be entirely digits, not
1741 my $pos = length($number) - 3;
1742 return $number if $pos <= 1;
1744 substr($number, $pos, 0) = '_';
1750 sub clarify_code_point_count ($) {
1751 # This is like clarify_number(), but the input is assumed to be a count of
1752 # code points, rather than a generic number.
1757 if ($number > $MAX_UNICODE_CODEPOINTS) {
1758 $number -= ($MAX_WORKING_CODEPOINTS - $MAX_UNICODE_CODEPOINTS);
1759 return "All above-Unicode code points" if $number == 0;
1760 $append = " + all above-Unicode code points";
1762 return clarify_number($number) . $append;
1767 # These routines give a uniform treatment of messages in this program. They
1768 # are placed in the Carp package to cause the stack trace to not include them,
1769 # although an alternative would be to use another package and set @CARP_NOT
1772 our $Verbose = 1 if main::DEBUG; # Useful info when debugging
1774 # This is a work-around suggested by Nicholas Clark to fix a problem with Carp
1775 # and overload trying to load Scalar:Util under miniperl. See
1776 # http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2009-11/msg01057.html
1777 undef $overload::VERSION;
1780 my $message = shift || "";
1781 my $nofold = shift || 0;
1784 $message = main::join_lines($message);
1785 $message =~ s/^$0: *//; # Remove initial program name
1786 $message =~ s/[.;,]+$//; # Remove certain ending punctuation
1787 $message = "\n$0: $message;";
1789 # Fold the message with program name, semi-colon end punctuation
1790 # (which looks good with the message that carp appends to it), and a
1791 # hanging indent for continuation lines.
1792 $message = main::simple_fold($message, "", 4) unless $nofold;
1793 $message =~ s/\n$//; # Remove the trailing nl so what carp
1794 # appends is to the same line
1797 return $message if defined wantarray; # If a caller just wants the msg
1804 # This is called when it is clear that the problem is caused by a bug in
1807 my $message = shift;
1808 $message =~ s/^$0: *//;
1809 $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");
1814 sub carp_too_few_args {
1816 my_carp_bug("Wrong number of arguments: to 'carp_too_few_arguments'. No action taken.");
1820 my $args_ref = shift;
1823 my_carp_bug("Need at least $count arguments to "
1825 . ". Instead got: '"
1826 . join ', ', @$args_ref
1827 . "'. No action taken.");
1831 sub carp_extra_args {
1832 my $args_ref = shift;
1833 my_carp_bug("Too many arguments to 'carp_extra_args': (" . join(', ', @_) . "); Extras ignored.") if @_;
1835 unless (ref $args_ref) {
1836 my_carp_bug("Argument to 'carp_extra_args' ($args_ref) must be a ref. Not checking arguments.");
1839 my ($package, $file, $line) = caller;
1840 my $subroutine = (caller 1)[3];
1843 if (ref $args_ref eq 'HASH') {
1844 foreach my $key (keys %$args_ref) {
1845 $args_ref->{$key} = $UNDEF unless defined $args_ref->{$key};
1847 $list = join ', ', each %{$args_ref};
1849 elsif (ref $args_ref eq 'ARRAY') {
1850 foreach my $arg (@$args_ref) {
1851 $arg = $UNDEF unless defined $arg;
1853 $list = join ', ', @$args_ref;
1856 my_carp_bug("Can't cope with ref "
1858 . " . argument to 'carp_extra_args'. Not checking arguments.");
1862 my_carp_bug("Unrecognized parameters in options: '$list' to $subroutine. Skipped.");
1870 # This program uses the inside-out method for objects, as recommended in
1871 # "Perl Best Practices". (This is the best solution still, since this has
1872 # to run under miniperl.) This closure aids in generating those. There
1873 # are two routines. setup_package() is called once per package to set
1874 # things up, and then set_access() is called for each hash representing a
1875 # field in the object. These routines arrange for the object to be
1876 # properly destroyed when no longer used, and for standard accessor
1877 # functions to be generated. If you need more complex accessors, just
1878 # write your own and leave those accesses out of the call to set_access().
1879 # More details below.
1881 my %constructor_fields; # fields that are to be used in constructors; see
1884 # The values of this hash will be the package names as keys to other
1885 # hashes containing the name of each field in the package as keys, and
1886 # references to their respective hashes as values.
1890 # Sets up the package, creating standard DESTROY and dump methods
1891 # (unless already defined). The dump method is used in debugging by
1893 # The optional parameters are:
1894 # a) a reference to a hash, that gets populated by later
1895 # set_access() calls with one of the accesses being
1896 # 'constructor'. The caller can then refer to this, but it is
1897 # not otherwise used by these two routines.
1898 # b) a reference to a callback routine to call during destruction
1899 # of the object, before any fields are actually destroyed
1902 my $constructor_ref = delete $args{'Constructor_Fields'};
1903 my $destroy_callback = delete $args{'Destroy_Callback'};
1904 Carp::carp_extra_args(\@_) if main::DEBUG && %args;
1907 my $package = (caller)[0];
1909 $package_fields{$package} = \%fields;
1910 $constructor_fields{$package} = $constructor_ref;
1912 unless ($package->can('DESTROY')) {
1913 my $destroy_name = "${package}::DESTROY";
1916 # Use typeglob to give the anonymous subroutine the name we want
1917 *$destroy_name = sub {
1919 my $addr = do { no overloading; pack 'J', $self; };
1921 $self->$destroy_callback if $destroy_callback;
1922 foreach my $field (keys %{$package_fields{$package}}) {
1923 #print STDERR __LINE__, ": Destroying ", ref $self, " ", sprintf("%04X", $addr), ": ", $field, "\n";
1924 delete $package_fields{$package}{$field}{$addr};
1930 unless ($package->can('dump')) {
1931 my $dump_name = "${package}::dump";
1935 return dump_inside_out($self, $package_fields{$package}, @_);
1942 # Arrange for the input field to be garbage collected when no longer
1943 # needed. Also, creates standard accessor functions for the field
1944 # based on the optional parameters-- none if none of these parameters:
1945 # 'addable' creates an 'add_NAME()' accessor function.
1946 # 'readable' or 'readable_array' creates a 'NAME()' accessor
1948 # 'settable' creates a 'set_NAME()' accessor function.
1949 # 'constructor' doesn't create an accessor function, but adds the
1950 # field to the hash that was previously passed to
1952 # Any of the accesses can be abbreviated down, so that 'a', 'ad',
1953 # 'add' etc. all mean 'addable'.
1954 # The read accessor function will work on both array and scalar
1955 # values. If another accessor in the parameter list is 'a', the read
1956 # access assumes an array. You can also force it to be array access
1957 # by specifying 'readable_array' instead of 'readable'
1959 # A sort-of 'protected' access can be set-up by preceding the addable,
1960 # readable or settable with some initial portion of 'protected_' (but,
1961 # the underscore is required), like 'p_a', 'pro_set', etc. The
1962 # "protection" is only by convention. All that happens is that the
1963 # accessor functions' names begin with an underscore. So instead of
1964 # calling set_foo, the call is _set_foo. (Real protection could be
1965 # accomplished by having a new subroutine, end_package, called at the
1966 # end of each package, and then storing the __LINE__ ranges and
1967 # checking them on every accessor. But that is way overkill.)
1969 # We create anonymous subroutines as the accessors and then use
1970 # typeglobs to assign them to the proper package and name
1972 my $name = shift; # Name of the field
1973 my $field = shift; # Reference to the inside-out hash containing the
1976 my $package = (caller)[0];
1978 if (! exists $package_fields{$package}) {
1979 croak "$0: Must call 'setup_package' before 'set_access'";
1982 # Stash the field so DESTROY can get it.
1983 $package_fields{$package}{$name} = $field;
1985 # Remaining arguments are the accessors. For each...
1986 foreach my $access (@_) {
1987 my $access = lc $access;
1991 # Match the input as far as it goes.
1992 if ($access =~ /^(p[^_]*)_/) {
1994 if (substr('protected_', 0, length $protected)
1998 # Add 1 for the underscore not included in $protected
1999 $access = substr($access, length($protected) + 1);
2007 if (substr('addable', 0, length $access) eq $access) {
2008 my $subname = "${package}::${protected}add_$name";
2011 # add_ accessor. Don't add if already there, which we
2012 # determine using 'eq' for scalars and '==' otherwise.
2015 return Carp::carp_too_few_args(\@_, 2) if main::DEBUG && @_ < 2;
2018 my $addr = do { no overloading; pack 'J', $self; };
2019 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2021 return if grep { $value == $_ } @{$field->{$addr}};
2024 return if grep { $value eq $_ } @{$field->{$addr}};
2026 push @{$field->{$addr}}, $value;
2030 elsif (substr('constructor', 0, length $access) eq $access) {
2032 Carp::my_carp_bug("Can't set-up 'protected' constructors")
2035 $constructor_fields{$package}{$name} = $field;
2038 elsif (substr('readable_array', 0, length $access) eq $access) {
2040 # Here has read access. If one of the other parameters for
2041 # access is array, or this one specifies array (by being more
2042 # than just 'readable_'), then create a subroutine that
2043 # assumes the data is an array. Otherwise just a scalar
2044 my $subname = "${package}::${protected}$name";
2045 if (grep { /^a/i } @_
2046 or length($access) > length('readable_'))
2051 Carp::carp_extra_args(\@_) if main::DEBUG && @_ > 1;
2052 my $addr = do { no overloading; pack 'J', $_[0]; };
2053 if (ref $field->{$addr} ne 'ARRAY') {
2054 my $type = ref $field->{$addr};
2055 $type = 'scalar' unless $type;
2056 Carp::my_carp_bug("Trying to read $name as an array when it is a $type. Big problems.");
2059 return scalar @{$field->{$addr}} unless wantarray;
2061 # Make a copy; had problems with caller modifying the
2062 # original otherwise
2063 my @return = @{$field->{$addr}};
2069 # Here not an array value, a simpler function.
2073 Carp::carp_extra_args(\@_) if main::DEBUG && @_ > 1;
2075 return $field->{pack 'J', $_[0]};
2079 elsif (substr('settable', 0, length $access) eq $access) {
2080 my $subname = "${package}::${protected}set_$name";
2085 return Carp::carp_too_few_args(\@_, 2) if @_ < 2;
2086 Carp::carp_extra_args(\@_) if @_ > 2;
2088 # $self is $_[0]; $value is $_[1]
2090 $field->{pack 'J', $_[0]} = $_[1];
2095 Carp::my_carp_bug("Unknown accessor type $access. No accessor set.");
2104 # All input files use this object, which stores various attributes about them,
2105 # and provides for convenient, uniform handling. The run method wraps the
2106 # processing. It handles all the bookkeeping of opening, reading, and closing
2107 # the file, returning only significant input lines.
2109 # Each object gets a handler which processes the body of the file, and is
2110 # called by run(). All character property files must use the generic,
2111 # default handler, which has code scrubbed to handle things you might not
2112 # expect, including automatic EBCDIC handling. For files that don't deal with
2113 # mapping code points to a property value, such as test files,
2114 # PropertyAliases, PropValueAliases, and named sequences, you can override the
2115 # handler to be a custom one. Such a handler should basically be a
2116 # while(next_line()) {...} loop.
2118 # You can also set up handlers to
2119 # 0) call during object construction time, after everything else is done
2120 # 1) call before the first line is read, for pre processing
2121 # 2) call to adjust each line of the input before the main handler gets
2122 # them. This can be automatically generated, if appropriately simple
2123 # enough, by specifying a Properties parameter in the constructor.
2124 # 3) call upon EOF before the main handler exits its loop
2125 # 4) call at the end, for post processing
2127 # $_ is used to store the input line, and is to be filtered by the
2128 # each_line_handler()s. So, if the format of the line is not in the desired
2129 # format for the main handler, these are used to do that adjusting. They can
2130 # be stacked (by enclosing them in an [ anonymous array ] in the constructor,
2131 # so the $_ output of one is used as the input to the next. The EOF handler
2132 # is also stackable, but none of the others are, but could easily be changed
2135 # Some properties are used by the Perl core but aren't defined until later
2136 # Unicode releases. The perl interpreter would have problems working when
2137 # compiled with an earlier Unicode version that doesn't have them, so we need
2138 # to define them somehow for those releases. The 'Early' constructor
2139 # parameter can be used to automatically handle this. It is essentially
2140 # ignored if the Unicode version being compiled has a data file for this
2141 # property. Either code to execute or a file to read can be specified.
2142 # Details are at the %early definition.
2144 # Most of the handlers can call insert_lines() or insert_adjusted_lines()
2145 # which insert the parameters as lines to be processed before the next input
2146 # file line is read. This allows the EOF handler(s) to flush buffers, for
2147 # example. The difference between the two routines is that the lines inserted
2148 # by insert_lines() are subjected to the each_line_handler()s. (So if you
2149 # called it from such a handler, you would get infinite recursion without some
2150 # mechanism to prevent that.) Lines inserted by insert_adjusted_lines() go
2151 # directly to the main handler without any adjustments. If the
2152 # post-processing handler calls any of these, there will be no effect. Some
2153 # error checking for these conditions could be added, but it hasn't been done.
2155 # carp_bad_line() should be called to warn of bad input lines, which clears $_
2156 # to prevent further processing of the line. This routine will output the
2157 # message as a warning once, and then keep a count of the lines that have the
2158 # same message, and output that count at the end of the file's processing.
2159 # This keeps the number of messages down to a manageable amount.
2161 # get_missings() should be called to retrieve any @missing input lines.
2162 # Messages will be raised if this isn't done if the options aren't to ignore
2165 sub trace { return main::trace(@_); }
2168 # Keep track of fields that are to be put into the constructor.
2169 my %constructor_fields;
2171 main::setup_package(Constructor_Fields => \%constructor_fields);
2173 my %file; # Input file name, required
2174 main::set_access('file', \%file, qw{ c r });
2176 my %first_released; # Unicode version file was first released in, required
2177 main::set_access('first_released', \%first_released, qw{ c r });
2179 my %handler; # Subroutine to process the input file, defaults to
2180 # 'process_generic_property_file'
2181 main::set_access('handler', \%handler, qw{ c });
2184 # name of property this file is for. defaults to none, meaning not
2185 # applicable, or is otherwise determinable, for example, from each line.
2186 main::set_access('property', \%property, qw{ c r });
2189 # This is either an unsigned number, or a list of property names. In the
2190 # former case, if it is non-zero, it means the file is optional, so if the
2191 # file is absent, no warning about that is output. In the latter case, it
2192 # is a list of properties that the file (exclusively) defines. If the
2193 # file is present, tables for those properties will be produced; if
2194 # absent, none will, even if they are listed elsewhere (namely
2195 # PropertyAliases.txt and PropValueAliases.txt) as being in this release,
2196 # and no warnings will be raised about them not being available. (And no
2197 # warning about the file itself will be raised.)
2198 main::set_access('optional', \%optional, qw{ c readable_array } );
2201 # This is used for debugging, to skip processing of all but a few input
2202 # files. Add 'non_skip => 1' to the constructor for those files you want
2203 # processed when you set the $debug_skip global.
2204 main::set_access('non_skip', \%non_skip, 'c');
2207 # This is used to skip processing of this input file (semi-) permanently.
2208 # The value should be the reason the file is being skipped. It is used
2209 # for files that we aren't planning to process anytime soon, but want to
2210 # allow to be in the directory and be checked for their names not
2211 # conflicting with any other files on a DOS 8.3 name filesystem, but to
2212 # not otherwise be processed, and to not raise a warning about not being
2213 # handled. In the constructor call, any value that evaluates to a numeric
2214 # 0 or undef means don't skip. Any other value is a string giving the
2215 # reason it is being skipped, and this will appear in generated pod.
2216 # However, an empty string reason will suppress the pod entry.
2217 # Internally, calls that evaluate to numeric 0 are changed into undef to
2218 # distinguish them from an empty string call.
2219 main::set_access('skip', \%skip, 'c', 'r');
2221 my %each_line_handler;
2222 # list of subroutines to look at and filter each non-comment line in the
2223 # file. defaults to none. The subroutines are called in order, each is
2224 # to adjust $_ for the next one, and the final one adjusts it for
2226 main::set_access('each_line_handler', \%each_line_handler, 'c');
2228 my %retain_trailing_comments;
2229 # This is used to not discard the comments that end data lines. This
2230 # would be used only for files with non-typical syntax, and most code here
2231 # assumes that comments have been stripped, so special handlers would have
2232 # to be written. It is assumed that the code will use these in
2233 # single-quoted contexts, and so any "'" marks in the comment will be
2234 # prefixed by a backslash.
2235 main::set_access('retain_trailing_comments', \%retain_trailing_comments, 'c');
2237 my %properties; # Optional ordered list of the properties that occur in each
2238 # meaningful line of the input file. If present, an appropriate
2239 # each_line_handler() is automatically generated and pushed onto the stack
2240 # of such handlers. This is useful when a file contains multiple
2241 # properties per line, but no other special considerations are necessary.
2242 # The special value "<ignored>" means to discard the corresponding input
2244 # Any @missing lines in the file should also match this syntax; no such
2245 # files exist as of 6.3. But if it happens in a future release, the code
2246 # could be expanded to properly parse them.
2247 main::set_access('properties', \%properties, qw{ c r });
2249 my %has_missings_defaults;
2250 # ? Are there lines in the file giving default values for code points
2251 # missing from it?. Defaults to NO_DEFAULTS. Otherwise NOT_IGNORED is
2252 # the norm, but IGNORED means it has such lines, but the handler doesn't
2253 # use them. Having these three states allows us to catch changes to the
2254 # UCD that this program should track. XXX This could be expanded to
2255 # specify the syntax for such lines, like %properties above.
2256 main::set_access('has_missings_defaults',
2257 \%has_missings_defaults, qw{ c r });
2259 my %construction_time_handler;
2260 # Subroutine to call at the end of the new method. If undef, no such
2261 # handler is called.
2262 main::set_access('construction_time_handler',
2263 \%construction_time_handler, qw{ c });
2266 # Subroutine to call before doing anything else in the file. If undef, no
2267 # such handler is called.
2268 main::set_access('pre_handler', \%pre_handler, qw{ c });
2271 # Subroutines to call upon getting an EOF on the input file, but before
2272 # that is returned to the main handler. This is to allow buffers to be
2273 # flushed. The handler is expected to call insert_lines() or
2274 # insert_adjusted() with the buffered material
2275 main::set_access('eof_handler', \%eof_handler, qw{ c });
2278 # Subroutine to call after all the lines of the file are read in and
2279 # processed. If undef, no such handler is called. Note that this cannot
2280 # add lines to be processed; instead use eof_handler
2281 main::set_access('post_handler', \%post_handler, qw{ c });
2283 my %progress_message;
2284 # Message to print to display progress in lieu of the standard one
2285 main::set_access('progress_message', \%progress_message, qw{ c });
2288 # cache open file handle, internal. Is undef if file hasn't been
2289 # processed at all, empty if has;
2290 main::set_access('handle', \%handle);
2293 # cache of lines added virtually to the file, internal
2294 main::set_access('added_lines', \%added_lines);
2297 # cache of lines added virtually to the file, internal
2298 main::set_access('remapped_lines', \%remapped_lines);
2301 # cache of errors found, internal
2302 main::set_access('errors', \%errors);
2305 # storage of '@missing' defaults lines
2306 main::set_access('missings', \%missings);
2309 # Used for properties that must be defined (for Perl's purposes) on
2310 # versions of Unicode earlier than Unicode itself defines them. The
2311 # parameter is an array (it would be better to be a hash, but not worth
2312 # bothering about due to its rare use).
2314 # The first element is either a code reference to call when in a release
2315 # earlier than the Unicode file is available in, or it is an alternate
2316 # file to use instead of the non-existent one. This file must have been
2317 # plunked down in the same directory as mktables. Should you be compiling
2318 # on a release that needs such a file, mktables will abort the
2319 # compilation, and tell you where to get the necessary file(s), and what
2320 # name(s) to use to store them as.
2321 # In the case of specifying an alternate file, the array must contain two
2324 # [1] is the name of the property that will be generated by this file.
2325 # The class automatically takes the input file and excludes any code
2326 # points in it that were not assigned in the Unicode version being
2327 # compiled. It then uses this result to define the property in the given
2328 # version. Since the property doesn't actually exist in the Unicode
2329 # version being compiled, this should be a name accessible only by core
2330 # perl. If it is the same name as the regular property, the constructor
2331 # will mark the output table as a $PLACEHOLDER so that it doesn't actually
2332 # get output, and so will be unusable by non-core code. Otherwise it gets
2333 # marked as $INTERNAL_ONLY.
2335 # [2] is a property value to assign (only when compiling Unicode 1.1.5) to
2336 # the Hangul syllables in that release (which were ripped out in version
2337 # 2) for the given property . (Hence it is ignored except when compiling
2338 # version 1. You only get one value that applies to all of them, which
2339 # may not be the actual reality, but probably nobody cares anyway for
2340 # these obsolete characters.)
2342 # [3] if present is the default value for the property to assign for code
2343 # points not given in the input. If not present, the default from the
2344 # normal property is used
2346 # [-1] If there is an extra final element that is the string 'ONLY_EARLY'.
2347 # it means to not add the name in [1] as an alias to the property name
2348 # used for these. Normally, when compiling Unicode versions that don't
2349 # invoke the early handling, the name is added as a synonym.
2351 # Not all files can be handled in the above way, and so the code ref
2352 # alternative is available. It can do whatever it needs to. The other
2353 # array elements are optional in this case, and the code is free to use or
2354 # ignore them if they are present.
2356 # Internally, the constructor unshifts a 0 or 1 onto this array to
2357 # indicate if an early alternative is actually being used or not. This
2358 # makes for easier testing later on.
2359 main::set_access('early', \%early, 'c');
2362 main::set_access('only_early', \%only_early, 'c');
2364 my %required_even_in_debug_skip;
2365 # debug_skip is used to speed up compilation during debugging by skipping
2366 # processing files that are not needed for the task at hand. However,
2367 # some files pretty much can never be skipped, and this is used to specify
2368 # that this is one of them. In order to skip this file, the call to the
2369 # constructor must be edited to comment out this parameter.
2370 main::set_access('required_even_in_debug_skip',
2371 \%required_even_in_debug_skip, 'c');
2374 # Some files get removed from the Unicode DB. This is a version object
2375 # giving the first release without this file.
2376 main::set_access('withdrawn', \%withdrawn, 'c');
2378 my %in_this_release;
2379 # Calculated value from %first_released and %withdrawn. Are we compiling
2380 # a Unicode release which includes this file?
2381 main::set_access('in_this_release', \%in_this_release);
2384 sub _next_line_with_remapped_range;
2389 my $self = bless \do{ my $anonymous_scalar }, $class;
2390 my $addr = do { no overloading; pack 'J', $self; };
2393 $handler{$addr} = \&main::process_generic_property_file;
2394 $retain_trailing_comments{$addr} = 0;
2395 $non_skip{$addr} = 0;
2396 $skip{$addr} = undef;
2397 $has_missings_defaults{$addr} = $NO_DEFAULTS;
2398 $handle{$addr} = undef;
2399 $added_lines{$addr} = [ ];
2400 $remapped_lines{$addr} = [ ];
2401 $each_line_handler{$addr} = [ ];
2402 $eof_handler{$addr} = [ ];
2403 $errors{$addr} = { };
2404 $missings{$addr} = [ ];
2405 $early{$addr} = [ ];
2406 $optional{$addr} = [ ];
2408 # Two positional parameters.
2409 return Carp::carp_too_few_args(\@_, 2) if main::DEBUG && @_ < 2;
2410 $file{$addr} = main::internal_file_to_platform(shift);
2411 $first_released{$addr} = shift;
2413 # The rest of the arguments are key => value pairs
2414 # %constructor_fields has been set up earlier to list all possible
2415 # ones. Either set or push, depending on how the default has been set
2418 foreach my $key (keys %args) {
2419 my $argument = $args{$key};
2421 # Note that the fields are the lower case of the constructor keys
2422 my $hash = $constructor_fields{lc $key};
2423 if (! defined $hash) {
2424 Carp::my_carp_bug("Unrecognized parameters '$key => $argument' to new() for $self. Skipped");
2427 if (ref $hash->{$addr} eq 'ARRAY') {
2428 if (ref $argument eq 'ARRAY') {
2429 foreach my $argument (@{$argument}) {
2430 next if ! defined $argument;
2431 push @{$hash->{$addr}}, $argument;
2435 push @{$hash->{$addr}}, $argument if defined $argument;
2439 $hash->{$addr} = $argument;
2444 $non_skip{$addr} = 1 if $required_even_in_debug_skip{$addr};
2446 # Convert 0 (meaning don't skip) to undef
2447 undef $skip{$addr} unless $skip{$addr};
2449 # Handle the case where this file is optional
2450 my $pod_message_for_non_existent_optional = "";
2451 if ($optional{$addr}->@*) {
2453 # First element is the pod message
2454 $pod_message_for_non_existent_optional
2455 = shift $optional{$addr}->@*;
2456 # Convert a 0 'Optional' argument to an empty list to make later
2457 # code more concise.
2458 if ( $optional{$addr}->@*
2459 && $optional{$addr}->@* == 1
2460 && $optional{$addr}[0] ne ""
2461 && $optional{$addr}[0] !~ /\D/
2462 && $optional{$addr}[0] == 0)
2464 $optional{$addr} = [ ];
2466 else { # But if the only element doesn't evaluate to 0, make sure
2467 # that this file is indeed considered optional below.
2468 unshift $optional{$addr}->@*, 1;
2473 my $function_instead_of_file = 0;
2475 if ($early{$addr}->@* && $early{$addr}[-1] eq 'ONLY_EARLY') {
2476 $only_early{$addr} = 1;
2477 pop $early{$addr}->@*;
2480 # If we are compiling a Unicode release earlier than the file became
2481 # available, the constructor may have supplied a substitute
2482 if ($first_released{$addr} gt $v_version && $early{$addr}->@*) {
2484 # Yes, we have a substitute, that we will use; mark it so
2485 unshift $early{$addr}->@*, 1;
2487 # See the definition of %early for what the array elements mean.
2488 # Note that we have just unshifted onto the array, so the numbers
2489 # below are +1 of those in the %early description.
2490 # If we have a property this defines, create a table and default
2491 # map for it now (at essentially compile time), so that it will be
2492 # available for the whole of run time. (We will want to add this
2493 # name as an alias when we are using the official property name;
2494 # but this must be deferred until run(), because at construction
2495 # time the official names have yet to be defined.)
2496 if ($early{$addr}[2]) {
2497 my $fate = ($property{$addr}
2498 && $property{$addr} eq $early{$addr}[2])
2501 my $prop_object = Property->new($early{$addr}[2],
2503 Perl_Extension => 1,
2506 # If not specified by the constructor, use the default mapping
2507 # for the regular property for this substitute one.
2508 if ($early{$addr}[4]) {
2509 $prop_object->set_default_map($early{$addr}[4]);
2511 elsif ( defined $property{$addr}
2512 && defined $default_mapping{$property{$addr}})
2515 ->set_default_map($default_mapping{$property{$addr}});
2519 if (ref $early{$addr}[1] eq 'CODE') {
2520 $function_instead_of_file = 1;
2522 # If the first element of the array is a code ref, the others
2524 $handler{$addr} = $early{$addr}[1];
2525 $property{$addr} = $early{$addr}[2]
2526 if defined $early{$addr}[2];
2527 $progress = "substitute $file{$addr}";
2531 else { # Specifying a substitute file
2533 if (! main::file_exists($early{$addr}[1])) {
2535 # If we don't see the substitute file, generate an error
2536 # message giving the needed things, and add it to the list
2537 # of such to output before actual processing happens
2538 # (hence the user finds out all of them in one run).
2539 # Instead of creating a general method for NameAliases,
2540 # hard-code it here, as there is unlikely to ever be a
2541 # second one which needs special handling.
2542 my $string_version = ($file{$addr} eq "NameAliases.txt")
2543 ? 'at least 6.1 (the later, the better)'
2544 : sprintf "%vd", $first_released{$addr};
2545 push @missing_early_files, <<END;
2546 '$file{$addr}' version $string_version should be copied to '$early{$addr}[1]'.
2551 $progress = $early{$addr}[1];
2552 $progress .= ", substituting for $file{$addr}" if $file{$addr};
2553 $file{$addr} = $early{$addr}[1];
2554 $property{$addr} = $early{$addr}[2];
2556 # Ignore code points not in the version being compiled
2557 push $each_line_handler{$addr}->@*, \&_exclude_unassigned;
2559 if ( $v_version lt v2.0 # Hanguls in this release ...
2560 && defined $early{$addr}[3]) # ... need special treatment
2562 push $eof_handler{$addr}->@*, \&_fixup_obsolete_hanguls;
2566 # And this substitute is valid for all releases.
2567 $first_released{$addr} = v0;
2569 else { # Normal behavior
2570 $progress = $file{$addr};
2571 unshift $early{$addr}->@*, 0; # No substitute
2574 my $file = $file{$addr};
2575 $progress_message{$addr} = "Processing $progress"
2576 unless $progress_message{$addr};
2578 # A file should be there if it is within the window of versions for
2579 # which Unicode supplies it
2580 if ($withdrawn{$addr} && $withdrawn{$addr} le $v_version) {
2581 $in_this_release{$addr} = 0;
2585 $in_this_release{$addr} = $first_released{$addr} le $v_version;
2587 # Check that the file for this object (possibly using a substitute
2588 # for early releases) exists or we have a function alternative
2589 if ( ! $function_instead_of_file
2590 && ! main::file_exists($file))
2592 # Here there is nothing available for this release. This is
2593 # fine if we aren't expecting anything in this release.
2594 if (! $in_this_release{$addr}) {
2595 $skip{$addr} = ""; # Don't remark since we expected
2596 # nothing and got nothing
2598 elsif ($optional{$addr}->@*) {
2600 # Here the file is optional in this release; Use the
2601 # passed in text to document this case in the pod.
2602 $skip{$addr} = $pod_message_for_non_existent_optional;
2604 elsif ( $in_this_release{$addr}
2605 && ! defined $skip{$addr}
2607 { # Doesn't exist but should.
2608 $skip{$addr} = "'$file' not found. Possibly Big problems";
2609 Carp::my_carp($skip{$addr});
2612 elsif ($debug_skip && ! defined $skip{$addr} && ! $non_skip{$addr})
2615 # The file exists; if not skipped for another reason, and we are
2616 # skipping most everything during debugging builds, use that as
2618 $skip{$addr} = '$debug_skip is on'
2624 && ! $required_even_in_debug_skip{$addr}
2627 print "Warning: " . __PACKAGE__ . " constructor for $file has useless 'non_skip' in it\n";
2630 # Here, we have figured out if we will be skipping this file or not.
2631 # If so, we add any single property it defines to any passed in
2632 # optional property list. These will be dealt with at run time.
2633 if (defined $skip{$addr}) {
2634 if ($property{$addr}) {
2635 push $optional{$addr}->@*, $property{$addr};
2637 } # Otherwise, are going to process the file.
2638 elsif ($property{$addr}) {
2640 # If the file has a property defined in the constructor for it, it
2641 # means that the property is not listed in the file's entries. So
2642 # add a handler (to the list of line handlers) to insert the
2643 # property name into the lines, to provide a uniform interface to
2644 # the final processing subroutine.
2645 push @{$each_line_handler{$addr}}, \&_insert_property_into_line;
2647 elsif ($properties{$addr}) {
2649 # Similarly, there may be more than one property represented on
2650 # each line, with no clue but the constructor input what those
2651 # might be. Add a handler for each line in the input so that it
2652 # creates a separate input line for each property in those input
2653 # lines, thus making them suitable to handle generically.
2655 push @{$each_line_handler{$addr}},
2658 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2660 my @fields = split /\s*;\s*/, $_, -1;
2662 if (@fields - 1 > @{$properties{$addr}}) {
2663 $file->carp_bad_line('Extra fields');
2667 my $range = shift @fields; # 0th element is always the
2670 # The next fields in the input line correspond
2671 # respectively to the stored properties.
2672 for my $i (0 .. @{$properties{$addr}} - 1) {
2673 my $property_name = $properties{$addr}[$i];
2674 next if $property_name eq '<ignored>';
2675 $file->insert_adjusted_lines(
2676 "$range; $property_name; $fields[$i]");
2684 { # On non-ascii platforms, we use a special pre-handler
2687 *next_line = (main::NON_ASCII_PLATFORM)
2688 ? *_next_line_with_remapped_range
2692 &{$construction_time_handler{$addr}}($self)
2693 if $construction_time_handler{$addr};
2701 qw("") => "_operator_stringify",
2702 "." => \&main::_operator_dot,
2703 ".=" => \&main::_operator_dot_equal,
2706 sub _operator_stringify {
2709 return __PACKAGE__ . " object for " . $self->file;
2713 # Process the input object $self. This opens and closes the file and
2714 # calls all the handlers for it. Currently, this can only be called
2715 # once per file, as it destroy's the EOF handlers
2717 # flag to make sure extracted files are processed early
2718 state $seen_non_extracted = 0;
2721 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2723 my $addr = do { no overloading; pack 'J', $self; };
2725 my $file = $file{$addr};
2728 $handle{$addr} = 'pretend_is_open';
2731 if ($seen_non_extracted) {
2732 if ($file =~ /$EXTRACTED/i) # Some platforms may change the
2733 # case of the file's name
2735 Carp::my_carp_bug(main::join_lines(<<END
2736 $file should be processed just after the 'Prop...Alias' files, and before
2737 anything not in the $EXTRACTED_DIR directory. Proceeding, but the results may
2738 have subtle problems
2743 elsif ($EXTRACTED_DIR
2745 # We only do this check for generic property files
2746 && $handler{$addr} == \&main::process_generic_property_file
2748 && $file !~ /$EXTRACTED/i)
2750 # We don't set this (by the 'if' above) if we have no
2751 # extracted directory, so if running on an early version,
2752 # this test won't work. Not worth worrying about.
2753 $seen_non_extracted = 1;
2756 # Mark the file as having being processed, and warn if it
2757 # isn't a file we are expecting. As we process the files,
2758 # they are deleted from the hash, so any that remain at the
2759 # end of the program are files that we didn't process.
2760 my $fkey = File::Spec->rel2abs($file);
2761 my $exists = delete $potential_files{lc($fkey)};
2763 Carp::my_carp("Was not expecting '$file'.")
2764 if $exists && ! $in_this_release{$addr};
2766 # If there is special handling for compiling Unicode releases
2767 # earlier than the first one in which Unicode defines this
2769 if ($early{$addr}->@* > 1) {
2771 # Mark as processed any substitute file that would be used in
2773 $fkey = File::Spec->rel2abs($early{$addr}[1]);
2774 delete $potential_files{lc($fkey)};
2776 # As commented in the constructor code, when using the
2777 # official property, we still have to allow the publicly
2778 # inaccessible early name so that the core code which uses it
2779 # will work regardless.
2780 if ( ! $only_early{$addr}
2781 && ! $early{$addr}[0]
2782 && $early{$addr}->@* > 2)
2784 my $early_property_name = $early{$addr}[2];
2785 if ($property{$addr} ne $early_property_name) {
2786 main::property_ref($property{$addr})
2787 ->add_alias($early_property_name);
2792 # We may be skipping this file ...
2793 if (defined $skip{$addr}) {
2795 # If the file isn't supposed to be in this release, there is
2797 if ($in_this_release{$addr}) {
2799 # But otherwise, we may print a message
2801 print STDERR "Skipping input file '$file'",
2802 " because '$skip{$addr}'\n";
2805 # And add it to the list of skipped files, which is later
2806 # used to make the pod
2807 $skipped_files{$file} = $skip{$addr};
2809 # The 'optional' list contains properties that are also to
2810 # be skipped along with the file. (There may also be
2811 # digits which are just placeholders to make sure it isn't
2813 foreach my $property ($optional{$addr}->@*) {
2814 next unless $property =~ /\D/;
2815 my $prop_object = main::property_ref($property);
2816 next unless defined $prop_object;
2817 $prop_object->set_fate($SUPPRESSED, $skip{$addr});
2824 # Here, we are going to process the file. Open it, converting the
2825 # slashes used in this program into the proper form for the OS
2827 if (not open $file_handle, "<", $file) {
2828 Carp::my_carp("Can't open $file. Skipping: $!");
2831 $handle{$addr} = $file_handle; # Cache the open file handle
2833 # If possible, make sure that the file is the correct version.
2834 # (This data isn't available on early Unicode releases or in
2835 # UnicodeData.txt.) We don't do this check if we are using a
2836 # substitute file instead of the official one (though the code
2837 # could be extended to do so).
2838 if ($in_this_release{$addr}
2839 && ! $early{$addr}[0]
2840 && lc($file) ne 'unicodedata.txt')
2842 if ($file !~ /^Unihan/i) {
2844 # The non-Unihan files started getting version numbers in
2845 # 3.2, but some files in 4.0 are unchanged from 3.2, and
2846 # marked as 3.2. 4.0.1 is the first version where there
2847 # are no files marked as being from less than 4.0, though
2848 # some are marked as 4.0. In versions after that, the
2849 # numbers are correct.
2850 if ($v_version ge v4.0.1) {
2851 $_ = <$file_handle>; # The version number is in the
2853 if ($_ !~ / - $string_version \. /x) {
2857 # 4.0.1 had some valid files that weren't updated.
2858 if (! ($v_version eq v4.0.1 && $_ =~ /4\.0\.0/)) {
2859 die Carp::my_carp("File '$file' is version "
2860 . "'$_'. It should be "
2861 . "version $string_version");
2866 elsif ($v_version ge v6.0.0) { # Unihan
2868 # Unihan files didn't get accurate version numbers until
2869 # 6.0. The version is somewhere in the first comment
2871 while (<$file_handle>) {
2873 Carp::my_carp_bug("Could not find the expected "
2874 . "version info in file '$file'");
2879 next if $_ !~ / version: /x;
2880 last if $_ =~ /$string_version/;
2881 die Carp::my_carp("File '$file' is version "
2882 . "'$_'. It should be "
2883 . "version $string_version");
2889 print "$progress_message{$addr}\n" if $verbosity >= $PROGRESS;
2891 # Call any special handler for before the file.
2892 &{$pre_handler{$addr}}($self) if $pre_handler{$addr};
2894 # Then the main handler
2895 &{$handler{$addr}}($self);
2897 # Then any special post-file handler.
2898 &{$post_handler{$addr}}($self) if $post_handler{$addr};
2900 # If any errors have been accumulated, output the counts (as the first
2901 # error message in each class was output when it was encountered).
2902 if ($errors{$addr}) {
2905 foreach my $error (keys %{$errors{$addr}}) {
2906 $total += $errors{$addr}->{$error};
2907 delete $errors{$addr}->{$error};
2912 = "A total of $total lines had errors in $file. ";
2914 $message .= ($types == 1)
2915 ? '(Only the first one was displayed.)'
2916 : '(Only the first of each type was displayed.)';
2917 Carp::my_carp($message);
2921 if (@{$missings{$addr}}) {
2922 Carp::my_carp_bug("Handler for $file didn't look at all the \@missing lines. Generated tables likely are wrong");
2925 # If a real file handle, close it.
2926 close $handle{$addr} or Carp::my_carp("Can't close $file: $!") if
2928 $handle{$addr} = ""; # Uses empty to indicate that has already seen
2929 # the file, as opposed to undef
2934 # Sets $_ to be the next logical input line, if any. Returns non-zero
2935 # if such a line exists. 'logical' means that any lines that have
2936 # been added via insert_lines() will be returned in $_ before the file
2940 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
2942 my $addr = do { no overloading; pack 'J', $self; };
2944 # Here the file is open (or if the handle is not a ref, is an open
2945 # 'virtual' file). Get the next line; any inserted lines get priority
2946 # over the file itself.
2950 while (1) { # Loop until find non-comment, non-empty line
2951 #local $to_trace = 1 if main::DEBUG;
2952 my $inserted_ref = shift @{$added_lines{$addr}};
2953 if (defined $inserted_ref) {
2954 ($adjusted, $_) = @{$inserted_ref};
2955 trace $adjusted, $_ if main::DEBUG && $to_trace;
2956 return 1 if $adjusted;
2959 last if ! ref $handle{$addr}; # Don't read unless is real file
2960 last if ! defined ($_ = readline $handle{$addr});
2963 trace $_ if main::DEBUG && $to_trace;
2965 # See if this line is the comment line that defines what property
2966 # value that code points that are not listed in the file should
2967 # have. The format or existence of these lines is not guaranteed
2968 # by Unicode since they are comments, but the documentation says
2969 # that this was added for machine-readability, so probably won't
2970 # change. This works starting in Unicode Version 5.0. They look
2973 # @missing: 0000..10FFFF; Not_Reordered
2974 # @missing: 0000..10FFFF; Decomposition_Mapping; <code point>
2975 # @missing: 0000..10FFFF; ; NaN
2977 # Save the line for a later get_missings() call.
2978 if (/$missing_defaults_prefix/) {
2979 if ($has_missings_defaults{$addr} == $NO_DEFAULTS) {
2980 $self->carp_bad_line("Unexpected \@missing line. Assuming no missing entries");
2982 elsif ($has_missings_defaults{$addr} == $NOT_IGNORED) {
2983 my @defaults = split /\s* ; \s*/x, $_;
2985 # The first field is the @missing, which ends in a
2986 # semi-colon, so can safely shift.
2989 # Some of these lines may have empty field placeholders
2990 # which get in the way. An example is:
2991 # @missing: 0000..10FFFF; ; NaN
2992 # Remove them. Process starting from the top so the
2993 # splice doesn't affect things still to be looked at.
2994 for (my $i = @defaults - 1; $i >= 0; $i--) {
2995 next if $defaults[$i] ne "";
2996 splice @defaults, $i, 1;
2999 # What's left should be just the property (maybe) and the
3000 # default. Having only one element means it doesn't have
3004 if (@defaults >= 1) {
3005 if (@defaults == 1) {
3006 $default = $defaults[0];
3009 $property = $defaults[0];
3010 $default = $defaults[1];
3016 || ($default =~ /^</
3017 && $default !~ /^<code *point>$/i
3018 && $default !~ /^<none>$/i
3019 && $default !~ /^<script>$/i))
3021 $self->carp_bad_line("Unrecognized \@missing line: $_. Assuming no missing entries");
3025 # If the property is missing from the line, it should
3026 # be the one for the whole file
3027 $property = $property{$addr} if ! defined $property;
3029 # Change <none> to the null string, which is what it
3030 # really means. If the default is the code point
3031 # itself, set it to <code point>, which is what
3032 # Unicode uses (but sometimes they've forgotten the
3034 if ($default =~ /^<none>$/i) {
3037 elsif ($default =~ /^<code *point>$/i) {
3038 $default = $CODE_POINT;
3040 elsif ($default =~ /^<script>$/i) {
3042 # Special case this one. Currently is from
3043 # ScriptExtensions.txt, and means for all unlisted
3044 # code points, use their Script property values.
3045 # For the code points not listed in that file, the
3046 # default value is 'Unknown'.
3047 $default = "Unknown";
3050 # Store them as a sub-arrays with both components.
3051 push @{$missings{$addr}}, [ $default, $property ];
3055 # There is nothing for the caller to process on this comment
3060 # Unless to keep, remove comments. If to keep, ignore
3061 # comment-only lines
3062 if ($retain_trailing_comments{$addr}) {
3063 next if / ^ \s* \# /x;
3065 # But escape any single quotes (done in both the comment and
3066 # non-comment portion; this could be a bug someday, but not
3074 # Remove trailing space, and skip this line if the result is empty
3078 # Call any handlers for this line, and skip further processing of
3079 # the line if the handler sets the line to null.
3080 foreach my $sub_ref (@{$each_line_handler{$addr}}) {
3085 # Here the line is ok. return success.
3087 } # End of looping through lines.
3089 # If there are EOF handlers, call each (only once) and if it generates
3090 # more lines to process go back in the loop to handle them.
3091 while ($eof_handler{$addr}->@*) {
3092 &{$eof_handler{$addr}[0]}($self);
3093 shift $eof_handler{$addr}->@*; # Currently only get one shot at it.
3094 goto LINE if $added_lines{$addr};
3097 # Return failure -- no more lines.
3102 sub _next_line_with_remapped_range {
3104 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3106 # like _next_line(), but for use on non-ASCII platforms. It sets $_
3107 # to be the next logical input line, if any. Returns non-zero if such
3108 # a line exists. 'logical' means that any lines that have been added
3109 # via insert_lines() will be returned in $_ before the file is read
3112 # The difference from _next_line() is that this remaps the Unicode
3113 # code points in the input to those of the native platform. Each
3114 # input line contains a single code point, or a single contiguous
3115 # range of them This routine splits each range into its individual
3116 # code points and caches them. It returns the cached values,
3117 # translated into their native equivalents, one at a time, for each
3118 # call, before reading the next line. Since native values can only be
3119 # a single byte wide, no translation is needed for code points above
3120 # 0xFF, and ranges that are entirely above that number are not split.
3121 # If an input line contains the range 254-1000, it would be split into
3122 # three elements: 254, 255, and 256-1000. (The downstream table
3123 # insertion code will sort and coalesce the individual code points
3124 # into appropriate ranges.)
3126 my $addr = do { no overloading; pack 'J', $self; };
3130 # Look in cache before reading the next line. Return any cached
3132 my $inserted = shift @{$remapped_lines{$addr}};
3133 if (defined $inserted) {
3134 trace $inserted if main::DEBUG && $to_trace;
3135 $_ = $inserted =~ s/^ ( \d+ ) /sprintf("%04X", utf8::unicode_to_native($1))/xer;
3136 trace $_ if main::DEBUG && $to_trace;
3140 # Get the next line.
3141 return 0 unless _next_line($self);
3143 # If there is a special handler for it, return the line,
3144 # untranslated. This should happen only for files that are
3145 # special, not being code-point related, such as property names.
3146 return 1 if $handler{$addr}
3147 != \&main::process_generic_property_file;
3149 my ($range, $property_name, $map, @remainder)
3150 = split /\s*;\s*/, $_, -1; # -1 => retain trailing null fields
3153 || ! defined $property_name
3154 || $range !~ /^ ($code_point_re) (?:\.\. ($code_point_re) )? $/x)
3156 Carp::my_carp_bug("Unrecognized input line '$_'. Ignored");
3160 my $high = (defined $2) ? hex $2 : $low;
3162 # If the input maps the range to another code point, remap the
3163 # target if it is between 0 and 255.
3166 $map =~ s/\b 00 ( [0-9A-F]{2} ) \b/sprintf("%04X", utf8::unicode_to_native(hex $1))/gxe;
3167 $tail = "$property_name; $map";
3168 $_ = "$range; $tail";
3171 $tail = $property_name;
3174 # If entire range is above 255, just return it, unchanged (except
3175 # any mapped-to code point, already changed above)
3176 return 1 if $low > 255;
3178 # Cache an entry for every code point < 255. For those in the
3179 # range above 255, return a dummy entry for just that portion of
3180 # the range. Note that this will be out-of-order, but that is not
3182 foreach my $code_point ($low .. $high) {
3183 if ($code_point > 255) {
3184 $_ = sprintf "%04X..%04X; $tail", $code_point, $high;
3187 push @{$remapped_lines{$addr}}, "$code_point; $tail";
3189 } # End of looping through lines.
3194 # Not currently used, not fully tested.
3196 # # Non-destructive lookahead one non-adjusted, non-comment, non-blank
3197 # # record. Not callable from an each_line_handler(), nor does it call
3198 # # an each_line_handler() on the line.
3201 # my $addr = do { no overloading; pack 'J', $self; };
3203 # foreach my $inserted_ref (@{$added_lines{$addr}}) {
3204 # my ($adjusted, $line) = @{$inserted_ref};
3205 # next if $adjusted;
3207 # # Remove comments and trailing space, and return a non-empty
3210 # $line =~ s/\s+$//;
3211 # return $line if $line ne "";
3214 # return if ! ref $handle{$addr}; # Don't read unless is real file
3215 # while (1) { # Loop until find non-comment, non-empty line
3216 # local $to_trace = 1 if main::DEBUG;
3217 # trace $_ if main::DEBUG && $to_trace;
3218 # return if ! defined (my $line = readline $handle{$addr});
3220 # push @{$added_lines{$addr}}, [ 0, $line ];
3223 # $line =~ s/\s+$//;
3224 # return $line if $line ne "";
3232 # Lines can be inserted so that it looks like they were in the input
3233 # file at the place it was when this routine is called. See also
3234 # insert_adjusted_lines(). Lines inserted via this routine go through
3235 # any each_line_handler()
3239 # Each inserted line is an array, with the first element being 0 to
3240 # indicate that this line hasn't been adjusted, and needs to be
3243 push @{$added_lines{pack 'J', $self}}, map { [ 0, $_ ] } @_;
3247 sub insert_adjusted_lines {
3248 # Lines can be inserted so that it looks like they were in the input
3249 # file at the place it was when this routine is called. See also
3250 # insert_lines(). Lines inserted via this routine are already fully
3251 # adjusted, ready to be processed; each_line_handler()s handlers will
3252 # not be called. This means this is not a completely general
3253 # facility, as only the last each_line_handler on the stack should
3254 # call this. It could be made more general, by passing to each of the
3255 # line_handlers their position on the stack, which they would pass on
3256 # to this routine, and that would replace the boolean first element in
3257 # the anonymous array pushed here, so that the next_line routine could
3258 # use that to call only those handlers whose index is after it on the
3259 # stack. But this is overkill for what is needed now.
3262 trace $_[0] if main::DEBUG && $to_trace;
3264 # Each inserted line is an array, with the first element being 1 to
3265 # indicate that this line has been adjusted
3267 push @{$added_lines{pack 'J', $self}}, map { [ 1, $_ ] } @_;
3272 # Returns the stored up @missings lines' values, and clears the list.
3273 # The values are in an array, consisting of the default in the first
3274 # element, and the property in the 2nd. However, since these lines
3275 # can be stacked up, the return is an array of all these arrays.
3278 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3280 my $addr = do { no overloading; pack 'J', $self; };
3282 # If not accepting a list return, just return the first one.
3283 return shift @{$missings{$addr}} unless wantarray;
3285 my @return = @{$missings{$addr}};
3286 undef @{$missings{$addr}};
3290 sub _exclude_unassigned {
3292 # Takes the range in $_ and excludes code points that aren't assigned
3295 state $skip_inserted_count = 0;
3297 # Ignore recursive calls.
3298 if ($skip_inserted_count) {
3299 $skip_inserted_count--;
3303 # Find what code points are assigned in this release
3304 main::calculate_Assigned() if ! defined $Assigned;
3307 my $addr = do { no overloading; pack 'J', $self; };
3308 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3310 my ($range, @remainder)
3311 = split /\s*;\s*/, $_, -1; # -1 => retain trailing null fields
3313 # Examine the range.
3314 if ($range =~ /^ ($code_point_re) (?:\.\. ($code_point_re) )? $/x)
3317 my $high = (defined $2) ? hex $2 : $low;
3319 # Split the range into subranges of just those code points in it
3320 # that are assigned.
3321 my @ranges = (Range_List->new(Initialize
3322 => Range->new($low, $high)) & $Assigned)->ranges;
3324 # Do nothing if nothing in the original range is assigned in this
3325 # release; handle normally if everything is in this release.
3329 elsif (@ranges != 1) {
3331 # Here, some code points in the original range aren't in this
3332 # release; @ranges gives the ones that are. Create fake input
3333 # lines for each of the ranges, and set things up so that when
3334 # this routine is called on that fake input, it will do
3336 $skip_inserted_count = @ranges;
3337 my $remainder = join ";", @remainder;
3338 for my $range (@ranges) {
3339 $self->insert_lines(sprintf("%04X..%04X;%s",
3340 $range->start, $range->end, $remainder));
3342 $_ = ""; # The original range is now defunct.
3349 sub _fixup_obsolete_hanguls {
3351 # This is called only when compiling Unicode version 1. All Unicode
3352 # data for subsequent releases assumes that the code points that were
3353 # Hangul syllables in this release only are something else, so if
3354 # using such data, we have to override it
3357 my $addr = do { no overloading; pack 'J', $self; };
3358 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3360 my $object = main::property_ref($property{$addr});
3361 $object->add_map($FIRST_REMOVED_HANGUL_SYLLABLE,
3362 $FINAL_REMOVED_HANGUL_SYLLABLE,
3363 $early{$addr}[3], # Passed-in value for these
3364 Replace => $UNCONDITIONALLY);
3367 sub _insert_property_into_line {
3368 # Add a property field to $_, if this file requires it.
3371 my $addr = do { no overloading; pack 'J', $self; };
3372 my $property = $property{$addr};
3373 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3375 $_ =~ s/(;|$)/; $property$1/;
3380 # Output consistent error messages, using either a generic one, or the
3381 # one given by the optional parameter. To avoid gazillions of the
3382 # same message in case the syntax of a file is way off, this routine
3383 # only outputs the first instance of each message, incrementing a
3384 # count so the totals can be output at the end of the file.
3387 my $message = shift;
3388 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3390 my $addr = do { no overloading; pack 'J', $self; };
3392 $message = 'Unexpected line' unless $message;
3394 # No trailing punctuation so as to fit with our addenda.
3395 $message =~ s/[.:;,]$//;
3397 # If haven't seen this exact message before, output it now. Otherwise
3398 # increment the count of how many times it has occurred
3399 unless ($errors{$addr}->{$message}) {
3400 Carp::my_carp("$message in '$_' in "
3402 . " at line $.. Skipping this line;");
3403 $errors{$addr}->{$message} = 1;
3406 $errors{$addr}->{$message}++;
3409 # Clear the line to prevent any further (meaningful) processing of it.
3416 package Multi_Default;
3418 # Certain properties in early versions of Unicode had more than one possible
3419 # default for code points missing from the files. In these cases, one
3420 # default applies to everything left over after all the others are applied,
3421 # and for each of the others, there is a description of which class of code
3422 # points applies to it. This object helps implement this by storing the
3423 # defaults, and for all but that final default, an eval string that generates
3424 # the class that it applies to.
3429 main::setup_package();
3432 # The defaults structure for the classes
3433 main::set_access('class_defaults', \%class_defaults);
3436 # The default that applies to everything left over.
3437 main::set_access('other_default', \%other_default, 'r');
3441 # The constructor is called with default => eval pairs, terminated by
3442 # the left-over default. e.g.
3443 # Multi_Default->new(
3444 # 'T' => '$gc->table("Mn") + $gc->table("Cf") - 0x200C
3446 # 'R' => 'some other expression that evaluates to code points',
3451 # It is best to leave the final value be the one that matches the
3452 # above-Unicode code points.
3456 my $self = bless \do{my $anonymous_scalar}, $class;
3457 my $addr = do { no overloading; pack 'J', $self; };
3460 my $default = shift;
3462 $class_defaults{$addr}->{$default} = $eval;
3465 $other_default{$addr} = shift;
3470 sub get_next_defaults {
3471 # Iterates and returns the next class of defaults.
3473 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3475 my $addr = do { no overloading; pack 'J', $self; };
3477 return each %{$class_defaults{$addr}};
3483 # An alias is one of the names that a table goes by. This class defines them
3484 # including some attributes. Everything is currently setup in the
3490 main::setup_package();
3493 main::set_access('name', \%name, 'r');
3496 # Should this name match loosely or not.
3497 main::set_access('loose_match', \%loose_match, 'r');
3499 my %make_re_pod_entry;
3500 # Some aliases should not get their own entries in the re section of the
3501 # pod, because they are covered by a wild-card, and some we want to
3502 # discourage use of. Binary
3503 main::set_access('make_re_pod_entry', \%make_re_pod_entry, 'r', 's');
3506 # Is this documented to be accessible via Unicode::UCD
3507 main::set_access('ucd', \%ucd, 'r', 's');
3510 # Aliases have a status, like deprecated, or even suppressed (which means
3511 # they don't appear in documentation). Enum
3512 main::set_access('status', \%status, 'r');
3515 # Similarly, some aliases should not be considered as usable ones for
3516 # external use, such as file names, or we don't want documentation to
3517 # recommend them. Boolean
3518 main::set_access('ok_as_filename', \%ok_as_filename, 'r');
3523 my $self = bless \do { my $anonymous_scalar }, $class;
3524 my $addr = do { no overloading; pack 'J', $self; };
3526 $name{$addr} = shift;
3527 $loose_match{$addr} = shift;
3528 $make_re_pod_entry{$addr} = shift;
3529 $ok_as_filename{$addr} = shift;
3530 $status{$addr} = shift;
3531 $ucd{$addr} = shift;
3533 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3535 # Null names are never ok externally
3536 $ok_as_filename{$addr} = 0 if $name{$addr} eq "";
3544 # A range is the basic unit for storing code points, and is described in the
3545 # comments at the beginning of the program. Each range has a starting code
3546 # point; an ending code point (not less than the starting one); a value
3547 # that applies to every code point in between the two end-points, inclusive;
3548 # and an enum type that applies to the value. The type is for the user's
3549 # convenience, and has no meaning here, except that a non-zero type is
3550 # considered to not obey the normal Unicode rules for having standard forms.
3552 # The same structure is used for both map and match tables, even though in the
3553 # latter, the value (and hence type) is irrelevant and could be used as a
3554 # comment. In map tables, the value is what all the code points in the range
3555 # map to. Type 0 values have the standardized version of the value stored as
3556 # well, so as to not have to recalculate it a lot.
3558 sub trace { return main::trace(@_); }
3562 main::setup_package();
3565 main::set_access('start', \%start, 'r', 's');
3568 main::set_access('end', \%end, 'r', 's');
3571 main::set_access('value', \%value, 'r', 's');
3574 main::set_access('type', \%type, 'r');
3577 # The value in internal standard form. Defined only if the type is 0.
3578 main::set_access('standard_form', \%standard_form);
3580 # Note that if these fields change, the dump() method should as well
3583 return Carp::carp_too_few_args(\@_, 3) if main::DEBUG && @_ < 3;
3586 my $self = bless \do { my $anonymous_scalar }, $class;
3587 my $addr = do { no overloading; pack 'J', $self; };
3589 $start{$addr} = shift;
3590 $end{$addr} = shift;
3594 my $value = delete $args{'Value'}; # Can be 0
3595 $value = "" unless defined $value;
3596 $value{$addr} = $value;
3598 $type{$addr} = delete $args{'Type'} || 0;
3600 Carp::carp_extra_args(\%args) if main::DEBUG && %args;
3607 qw("") => "_operator_stringify",
3608 "." => \&main::_operator_dot,
3609 ".=" => \&main::_operator_dot_equal,
3612 sub _operator_stringify {
3614 my $addr = do { no overloading; pack 'J', $self; };
3616 # Output it like '0041..0065 (value)'
3617 my $return = sprintf("%04X", $start{$addr})
3619 . sprintf("%04X", $end{$addr});
3620 my $value = $value{$addr};
3621 my $type = $type{$addr};
3623 $return .= "$value";
3624 $return .= ", Type=$type" if $type != 0;
3631 # Calculate the standard form only if needed, and cache the result.
3632 # The standard form is the value itself if the type is special.
3633 # This represents a considerable CPU and memory saving - at the time
3634 # of writing there are 368676 non-special objects, but the standard
3635 # form is only requested for 22047 of them - ie about 6%.
3638 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3640 my $addr = do { no overloading; pack 'J', $self; };
3642 return $standard_form{$addr} if defined $standard_form{$addr};
3644 my $value = $value{$addr};
3645 return $value if $type{$addr};
3646 return $standard_form{$addr} = main::standardize($value);
3650 # Human, not machine readable. For machine readable, comment out this
3651 # entire routine and let the standard one take effect.
3654 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3656 my $addr = do { no overloading; pack 'J', $self; };
3658 my $return = $indent
3659 . sprintf("%04X", $start{$addr})
3661 . sprintf("%04X", $end{$addr})
3662 . " '$value{$addr}';";
3663 if (! defined $standard_form{$addr}) {
3664 $return .= "(type=$type{$addr})";
3666 elsif ($standard_form{$addr} ne $value{$addr}) {
3667 $return .= "(standard '$standard_form{$addr}')";
3673 package _Range_List_Base;
3675 # Base class for range lists. A range list is simply an ordered list of
3676 # ranges, so that the ranges with the lowest starting numbers are first in it.
3678 # When a new range is added that is adjacent to an existing range that has the
3679 # same value and type, it merges with it to form a larger range.
3681 # Ranges generally do not overlap, except that there can be multiple entries
3682 # of single code point ranges. This is because of NameAliases.txt.
3684 # In this program, there is a standard value such that if two different
3685 # values, have the same standard value, they are considered equivalent. This
3686 # value was chosen so that it gives correct results on Unicode data
3688 # There are a number of methods to manipulate range lists, and some operators
3689 # are overloaded to handle them.
3691 sub trace { return main::trace(@_); }
3697 # Max is initialized to a negative value that isn't adjacent to 0, for
3701 main::setup_package();
3704 # The list of ranges
3705 main::set_access('ranges', \%ranges, 'readable_array');
3708 # The highest code point in the list. This was originally a method, but
3709 # actual measurements said it was used a lot.
3710 main::set_access('max', \%max, 'r');
3712 my %each_range_iterator;
3713 # Iterator position for each_range()
3714 main::set_access('each_range_iterator', \%each_range_iterator);
3717 # Name of parent this is attached to, if any. Solely for better error
3719 main::set_access('owner_name_of', \%owner_name_of, 'p_r');
3721 my %_search_ranges_cache;
3722 # A cache of the previous result from _search_ranges(), for better
3724 main::set_access('_search_ranges_cache', \%_search_ranges_cache);
3730 # Optional initialization data for the range list.
3731 my $initialize = delete $args{'Initialize'};
3735 # Use _union() to initialize. _union() returns an object of this
3736 # class, which means that it will call this constructor recursively.
3737 # But it won't have this $initialize parameter so that it won't
3738 # infinitely loop on this.
3739 return _union($class, $initialize, %args) if defined $initialize;
3741 $self = bless \do { my $anonymous_scalar }, $class;
3742 my $addr = do { no overloading; pack 'J', $self; };
3744 # Optional parent object, only for debug info.
3745 $owner_name_of{$addr} = delete $args{'Owner'};
3746 $owner_name_of{$addr} = "" if ! defined $owner_name_of{$addr};
3748 # Stringify, in case it is an object.
3749 $owner_name_of{$addr} = "$owner_name_of{$addr}";
3751 # This is used only for error messages, and so a colon is added
3752 $owner_name_of{$addr} .= ": " if $owner_name_of{$addr} ne "";
3754 Carp::carp_extra_args(\%args) if main::DEBUG && %args;
3756 $max{$addr} = $max_init;
3758 $_search_ranges_cache{$addr} = 0;
3759 $ranges{$addr} = [];
3766 qw("") => "_operator_stringify",
3767 "." => \&main::_operator_dot,
3768 ".=" => \&main::_operator_dot_equal,
3771 sub _operator_stringify {
3773 my $addr = do { no overloading; pack 'J', $self; };
3775 return "Range_List attached to '$owner_name_of{$addr}'"
3776 if $owner_name_of{$addr};
3777 return "anonymous Range_List " . \$self;
3781 # Returns the union of the input code points. It can be called as
3782 # either a constructor or a method. If called as a method, the result
3783 # will be a new() instance of the calling object, containing the union
3784 # of that object with the other parameter's code points; if called as
3785 # a constructor, the first parameter gives the class that the new object
3786 # should be, and the second parameter gives the code points to go into
3788 # In either case, there are two parameters looked at by this routine;
3789 # any additional parameters are passed to the new() constructor.
3791 # The code points can come in the form of some object that contains
3792 # ranges, and has a conventionally named method to access them; or
3793 # they can be an array of individual code points (as integers); or
3794 # just a single code point.
3796 # If they are ranges, this routine doesn't make any effort to preserve
3797 # the range values and types of one input over the other. Therefore
3798 # this base class should not allow _union to be called from other than
3799 # initialization code, so as to prevent two tables from being added
3800 # together where the range values matter. The general form of this
3801 # routine therefore belongs in a derived class, but it was moved here
3802 # to avoid duplication of code. The failure to overload this in this
3803 # class keeps it safe.
3805 # It does make the effort during initialization to accept tables with
3806 # multiple values for the same code point, and to preserve the order
3807 # of these. If there is only one input range or range set, it doesn't
3808 # sort (as it should already be sorted to the desired order), and will
3809 # accept multiple values per code point. Otherwise it will merge
3810 # multiple values into a single one.
3813 my @args; # Arguments to pass to the constructor
3817 # If a method call, will start the union with the object itself, and
3818 # the class of the new object will be the same as self.
3825 # Add the other required parameter.
3827 # Rest of parameters are passed on to the constructor
3829 # Accumulate all records from both lists.
3831 my $input_count = 0;
3832 for my $arg (@args) {
3833 #local $to_trace = 0 if main::DEBUG;
3834 trace "argument = $arg" if main::DEBUG && $to_trace;
3835 if (! defined $arg) {
3837 if (defined $self) {
3839 $message .= $owner_name_of{pack 'J', $self};
3841 Carp::my_carp_bug($message . "Undefined argument to _union. No union done.");
3845 $arg = [ $arg ] if ! ref $arg;
3846 my $type = ref $arg;
3847 if ($type eq 'ARRAY') {
3848 foreach my $element (@$arg) {
3849 push @records, Range->new($element, $element);
3853 elsif ($arg->isa('Range')) {
3854 push @records, $arg;
3857 elsif ($arg->can('ranges')) {
3858 push @records, $arg->ranges;
3863 if (defined $self) {
3865 $message .= $owner_name_of{pack 'J', $self};
3867 Carp::my_carp_bug($message . "Cannot take the union of a $type. No union done.");
3872 # Sort with the range containing the lowest ordinal first, but if
3873 # two ranges start at the same code point, sort with the bigger range
3874 # of the two first, because it takes fewer cycles.
3875 if ($input_count > 1) {
3876 @records = sort { ($a->start <=> $b->start)
3878 # if b is shorter than a, b->end will be
3879 # less than a->end, and we want to select
3880 # a, so want to return -1
3881 ($b->end <=> $a->end)
3885 my $new = $class->new(@_);
3887 # Fold in records so long as they add new information.
3888 for my $set (@records) {
3889 my $start = $set->start;
3890 my $end = $set->end;
3891 my $value = $set->value;
3892 my $type = $set->type;
3893 if ($start > $new->max) {
3894 $new->_add_delete('+', $start, $end, $value, Type => $type);
3896 elsif ($end > $new->max) {
3897 $new->_add_delete('+', $new->max +1, $end, $value,
3900 elsif ($input_count == 1) {
3901 # Here, overlaps existing range, but is from a single input,
3902 # so preserve the multiple values from that input.
3903 $new->_add_delete('+', $start, $end, $value, Type => $type,
3904 Replace => $MULTIPLE_AFTER);
3911 sub range_count { # Return the number of ranges in the range list
3913 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3916 return scalar @{$ranges{pack 'J', $self}};
3920 # Returns the minimum code point currently in the range list, or if
3921 # the range list is empty, 2 beyond the max possible. This is a
3922 # method because used so rarely, that not worth saving between calls,
3923 # and having to worry about changing it as ranges are added and
3927 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3929 my $addr = do { no overloading; pack 'J', $self; };
3931 # If the range list is empty, return a large value that isn't adjacent
3932 # to any that could be in the range list, for simpler tests
3933 return $MAX_WORKING_CODEPOINT + 2 unless scalar @{$ranges{$addr}};
3934 return $ranges{$addr}->[0]->start;
3938 # Boolean: Is argument in the range list? If so returns $i such that:
3939 # range[$i]->end < $codepoint <= range[$i+1]->end
3940 # which is one beyond what you want; this is so that the 0th range
3941 # doesn't return false
3943 my $codepoint = shift;
3944 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3946 my $i = $self->_search_ranges($codepoint);
3947 return 0 unless defined $i;
3949 # The search returns $i, such that
3950 # range[$i-1]->end < $codepoint <= range[$i]->end
3951 # So is in the table if and only iff it is at least the start position
3954 return 0 if $ranges{pack 'J', $self}->[$i]->start > $codepoint;
3958 sub containing_range {
3959 # Returns the range object that contains the code point, undef if none
3962 my $codepoint = shift;
3963 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3965 my $i = $self->contains($codepoint);
3968 # contains() returns 1 beyond where we should look
3970 return $ranges{pack 'J', $self}->[$i-1];
3974 # Returns the value associated with the code point, undef if none
3977 my $codepoint = shift;
3978 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3980 my $range = $self->containing_range($codepoint);
3981 return unless defined $range;
3983 return $range->value;
3987 # Returns the type of the range containing the code point, undef if
3988 # the code point is not in the table
3991 my $codepoint = shift;
3992 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
3994 my $range = $self->containing_range($codepoint);
3995 return unless defined $range;
3997 return $range->type;
4000 sub _search_ranges {
4001 # Find the range in the list which contains a code point, or where it
4002 # should go if were to add it. That is, it returns $i, such that:
4003 # range[$i-1]->end < $codepoint <= range[$i]->end
4004 # Returns undef if no such $i is possible (e.g. at end of table), or
4005 # if there is an error.
4008 my $code_point = shift;
4009 Carp::carp_extra_args(\@_) if main::DEBUG && @_;
4011 my $addr = do { no overloading; pack 'J', $self; };
4013 return if $code_point > $max{$addr};
4014 my $r = $ranges{$addr}; # The current list of ranges
4015 my $range_list_size = scalar @$r;
4018 use integer; # want integer division
4020 # Use the cached result as the starting guess for this one, because,
4021 # an experiment on 5.1 showed that 90% of the time the cache was the
4022 # same as the result on the next call (and 7% it was one less).
4023 $i = $_search_ranges_cache{$addr};
4024 $i = 0 if $i >= $range_list_size; # Reset if no longer valid (prob.
4025 # from an intervening deletion
4026 #local $to_trace = 1 if main::DEBUG;
4027 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);
4028 return $i if $code_point <= $r->[$i]->end
4029 && ($i == 0 || $r->[$i-1]->end < $code_point);
4031 # Here the cache doesn't yield the correct $i. Try adding 1.
4032 if ($i < $range_list_size - 1
4033 && $r->[$i]->end < $code_point &&
4034 $code_point <= $r->[$i+1]->end)