Down with C++ reserved names
[p5sagit/p5-mst-13.2.git] / ext / Unicode / Normalize / Normalize.pm
CommitLineData
ac5ea531 1package Unicode::Normalize;
2
4a2e806c 3BEGIN {
1efaba7f 4 unless ("A" eq pack('U', 0x41)) {
9f1f04a1 5 die "Unicode::Normalize cannot stringify a Unicode code point\n";
4a2e806c 6 }
7}
8
ac5ea531 9use 5.006;
10use strict;
11use warnings;
12use Carp;
13
e524f5b2 14no warnings 'utf8';
15
a092bcfd 16our $VERSION = '0.30';
ac5ea531 17our $PACKAGE = __PACKAGE__;
18
19require Exporter;
20require DynaLoader;
ac5ea531 21
22our @ISA = qw(Exporter DynaLoader);
23our @EXPORT = qw( NFC NFD NFKC NFKD );
2a204b45 24our @EXPORT_OK = qw(
25 normalize decompose reorder compose
8f118dcd 26 checkNFD checkNFKD checkNFC checkNFKC check
27 getCanon getCompat getComposite getCombinClass
28 isExclusion isSingleton isNonStDecomp isComp2nd isComp_Ex
29 isNFD_NO isNFC_NO isNFC_MAYBE isNFKD_NO isNFKC_NO isNFKC_MAYBE
82e740b6 30 FCD checkFCD FCC checkFCC composeContiguous
31 splitOnLastStarter
8f118dcd 32);
33our %EXPORT_TAGS = (
34 all => [ @EXPORT, @EXPORT_OK ],
35 normalize => [ @EXPORT, qw/normalize decompose reorder compose/ ],
36 check => [ qw/checkNFD checkNFKD checkNFC checkNFKC check/ ],
82e740b6 37 fast => [ qw/FCD checkFCD FCC checkFCC composeContiguous/ ],
2a204b45 38);
ac5ea531 39
82e740b6 40######
41
ac5ea531 42bootstrap Unicode::Normalize $VERSION;
43
82e740b6 44######
45
9f1f04a1 46sub pack_U {
b8d10bc1 47 return pack('U*', @_);
9f1f04a1 48}
49
50sub unpack_U {
b8d10bc1 51 return unpack('U*', pack('U*').shift);
9f1f04a1 52}
53
82e740b6 54
55##
56## normalization forms
57##
58
ac5ea531 59use constant COMPAT => 1;
60
d85850a7 61sub NFD ($) { reorder(decompose($_[0])) }
ac5ea531 62sub NFKD ($) { reorder(decompose($_[0], COMPAT)) }
d85850a7 63sub NFC ($) { compose(reorder(decompose($_[0]))) }
ac5ea531 64sub NFKC ($) { compose(reorder(decompose($_[0], COMPAT))) }
65
82e740b6 66sub FCD ($) {
67 my $str = shift;
68 return checkFCD($str) ? $str : NFD($str);
69}
70sub FCC ($) { composeContiguous(reorder(decompose($_[0]))) }
71
72our %formNorm = (
73 NFC => \&NFC, C => \&NFC,
74 NFD => \&NFD, D => \&NFD,
75 NFKC => \&NFKC, KC => \&NFKC,
76 NFKD => \&NFKD, KD => \&NFKD,
77 FCD => \&FCD, FCC => \&FCC,
78);
79
ac5ea531 80sub normalize($$)
81{
d85850a7 82 my $form = shift;
f027f502 83 my $str = shift;
82e740b6 84 return exists $formNorm{$form}
85 ? $formNorm{$form}->($str)
86 : croak $PACKAGE."::normalize: invalid form name: $form";
ac5ea531 87}
88
82e740b6 89
90##
91## quick check
92##
93
94our %formCheck = (
95 NFC => \&checkNFC, C => \&checkNFC,
96 NFD => \&checkNFD, D => \&checkNFD,
97 NFKC => \&checkNFKC, KC => \&checkNFKC,
98 NFKD => \&checkNFKD, KD => \&checkNFKD,
99 FCD => \&checkFCD, FCC => \&checkFCC,
100);
101
8f118dcd 102sub check($$)
103{
104 my $form = shift;
f027f502 105 my $str = shift;
82e740b6 106 return exists $formCheck{$form}
107 ? $formCheck{$form}->($str)
108 : croak $PACKAGE."::check: invalid form name: $form";
8f118dcd 109}
110
ac5ea531 1111;
112__END__
2a204b45 113
114=head1 NAME
115
f027f502 116Unicode::Normalize - Unicode Normalization Forms
2a204b45 117
118=head1 SYNOPSIS
119
a092bcfd 120(1) using function names exported by default:
121
2a204b45 122 use Unicode::Normalize;
123
8f118dcd 124 $NFD_string = NFD($string); # Normalization Form D
125 $NFC_string = NFC($string); # Normalization Form C
126 $NFKD_string = NFKD($string); # Normalization Form KD
127 $NFKC_string = NFKC($string); # Normalization Form KC
2a204b45 128
a092bcfd 129(2) using function names exported on request:
2a204b45 130
131 use Unicode::Normalize 'normalize';
132
8f118dcd 133 $NFD_string = normalize('D', $string); # Normalization Form D
134 $NFC_string = normalize('C', $string); # Normalization Form C
135 $NFKD_string = normalize('KD', $string); # Normalization Form KD
136 $NFKC_string = normalize('KC', $string); # Normalization Form KC
2a204b45 137
138=head1 DESCRIPTION
139
00f2676f 140Parameters:
141
142C<$string> is used as a string under character semantics
143(see F<perlunicode>).
144
145C<$codepoint> should be an unsigned integer
146representing a Unicode code point.
147
148Note: Between XS edition and pure Perl edition,
149interpretation of C<$codepoint> as a decimal number has incompatibility.
150XS converts C<$codepoint> to an unsigned integer, but pure Perl does not.
151Do not use a floating point nor a negative sign in C<$codepoint>.
152
d85850a7 153=head2 Normalization Forms
2a204b45 154
155=over 4
156
8f118dcd 157=item C<$NFD_string = NFD($string)>
2a204b45 158
159returns the Normalization Form D (formed by canonical decomposition).
160
8f118dcd 161=item C<$NFC_string = NFC($string)>
2a204b45 162
163returns the Normalization Form C (formed by canonical decomposition
164followed by canonical composition).
165
8f118dcd 166=item C<$NFKD_string = NFKD($string)>
2a204b45 167
168returns the Normalization Form KD (formed by compatibility decomposition).
169
8f118dcd 170=item C<$NFKC_string = NFKC($string)>
2a204b45 171
172returns the Normalization Form KC (formed by compatibility decomposition
173followed by B<canonical> composition).
174
82e740b6 175=item C<$FCD_string = FCD($string)>
176
177If the given string is in FCD ("Fast C or D" form; cf. UTN #5),
178returns it without modification; otherwise returns an FCD string.
179
180Note: FCD is not always unique, then plural forms may be equivalent
181each other. C<FCD()> will return one of these equivalent forms.
182
183=item C<$FCC_string = FCC($string)>
184
185returns the FCC form ("Fast C Contiguous"; cf. UTN #5).
186
e524f5b2 187Note: FCC is unique, as well as four normalization forms (NF*).
82e740b6 188
8f118dcd 189=item C<$normalized_string = normalize($form_name, $string)>
2a204b45 190
191As C<$form_name>, one of the following names must be given.
192
82e740b6 193 'C' or 'NFC' for Normalization Form C (UAX #15)
194 'D' or 'NFD' for Normalization Form D (UAX #15)
195 'KC' or 'NFKC' for Normalization Form KC (UAX #15)
196 'KD' or 'NFKD' for Normalization Form KD (UAX #15)
197
198 'FCD' for "Fast C or D" Form (UTN #5)
199 'FCC' for "Fast C Contiguous" (UTN #5)
2a204b45 200
201=back
202
8f118dcd 203=head2 Decomposition and Composition
204
205=over 4
206
207=item C<$decomposed_string = decompose($string)>
208
209=item C<$decomposed_string = decompose($string, $useCompatMapping)>
210
9f1f04a1 211Decomposes the specified string and returns the result.
8f118dcd 212
213If the second parameter (a boolean) is omitted or false, decomposes it
214using the Canonical Decomposition Mapping.
215If true, decomposes it using the Compatibility Decomposition Mapping.
216
217The string returned is not always in NFD/NFKD.
218Reordering may be required.
219
220 $NFD_string = reorder(decompose($string)); # eq. to NFD()
221 $NFKD_string = reorder(decompose($string, TRUE)); # eq. to NFKD()
222
223=item C<$reordered_string = reorder($string)>
224
9f1f04a1 225Reorders the combining characters and the like in the canonical ordering
8f118dcd 226and returns the result.
227
228E.g., when you have a list of NFD/NFKD strings,
229you can get the concatenated NFD/NFKD string from them, saying
230
231 $concat_NFD = reorder(join '', @NFD_strings);
232 $concat_NFKD = reorder(join '', @NFKD_strings);
233
234=item C<$composed_string = compose($string)>
235
236Returns the string where composable pairs are composed.
237
238E.g., when you have a NFD/NFKD string,
239you can get its NFC/NFKC string, saying
240
241 $NFC_string = compose($NFD_string);
242 $NFKC_string = compose($NFKD_string);
243
244=back
245
246=head2 Quick Check
247
82e740b6 248(see Annex 8, UAX #15; and F<DerivedNormalizationProps.txt>)
8f118dcd 249
250The following functions check whether the string is in that normalization form.
251
252The result returned will be:
253
254 YES The string is in that normalization form.
255 NO The string is not in that normalization form.
256 MAYBE Dubious. Maybe yes, maybe no.
257
258=over 4
259
260=item C<$result = checkNFD($string)>
261
f027f502 262returns C<YES> (C<1>) or C<NO> (C<empty string>).
8f118dcd 263
264=item C<$result = checkNFC($string)>
265
f027f502 266returns C<YES> (C<1>), C<NO> (C<empty string>), or C<MAYBE> (C<undef>).
8f118dcd 267
268=item C<$result = checkNFKD($string)>
269
f027f502 270returns C<YES> (C<1>) or C<NO> (C<empty string>).
8f118dcd 271
272=item C<$result = checkNFKC($string)>
273
f027f502 274returns C<YES> (C<1>), C<NO> (C<empty string>), or C<MAYBE> (C<undef>).
8f118dcd 275
82e740b6 276=item C<$result = checkFCD($string)>
277
278returns C<YES> (C<1>) or C<NO> (C<empty string>).
279
280=item C<$result = checkFCC($string)>
281
282returns C<YES> (C<1>), C<NO> (C<empty string>), or C<MAYBE> (C<undef>).
283
e524f5b2 284If a string is not in FCD, it must not be in FCC.
82e740b6 285So C<checkFCC($not_FCD_string)> should return C<NO>.
286
8f118dcd 287=item C<$result = check($form_name, $string)>
288
f027f502 289returns C<YES> (C<1>), C<NO> (C<empty string>), or C<MAYBE> (C<undef>).
8f118dcd 290
291C<$form_name> is alike to that for C<normalize()>.
292
293=back
294
295B<Note>
296
82e740b6 297In the cases of NFD, NFKD, and FCD, the answer must be
298either C<YES> or C<NO>. The answer C<MAYBE> may be returned
299in the cases of NFC, NFKC, and FCC.
8f118dcd 300
82e740b6 301A C<MAYBE> string should contain at least one combining character
302or the like. For example, C<COMBINING ACUTE ACCENT> has
8f118dcd 303the MAYBE_NFC/MAYBE_NFKC property.
82e740b6 304
8f118dcd 305Both C<checkNFC("A\N{COMBINING ACUTE ACCENT}")>
306and C<checkNFC("B\N{COMBINING ACUTE ACCENT}")> will return C<MAYBE>.
f027f502 307C<"A\N{COMBINING ACUTE ACCENT}"> is not in NFC
8f118dcd 308(its NFC is C<"\N{LATIN CAPITAL LETTER A WITH ACUTE}">),
309while C<"B\N{COMBINING ACUTE ACCENT}"> is in NFC.
310
82e740b6 311If you want to check exactly, compare the string with its NFC/NFKC/FCC;
312i.e.,
8f118dcd 313
82e740b6 314 $string eq NFC($string) # thorough than checkNFC($string)
315 $string eq NFKC($string) # thorough than checkNFKC($string)
316 $string eq FCC($string) # thorough than checkFCC($string)
8f118dcd 317
2a204b45 318=head2 Character Data
319
320These functions are interface of character data used internally.
d0ed0342 321If you want only to get Unicode normalization forms, you don't need
322call them yourself.
2a204b45 323
324=over 4
325
326=item C<$canonical_decomposed = getCanon($codepoint)>
327
8f118dcd 328If the character of the specified codepoint is canonically
329decomposable (including Hangul Syllables),
330returns the B<completely decomposed> string canonically equivalent to it.
331
f027f502 332If it is not decomposable, returns C<undef>.
8f118dcd 333
2a204b45 334=item C<$compatibility_decomposed = getCompat($codepoint)>
335
8f118dcd 336If the character of the specified codepoint is compatibility
337decomposable (including Hangul Syllables),
338returns the B<completely decomposed> string compatibility equivalent to it.
2a204b45 339
f027f502 340If it is not decomposable, returns C<undef>.
2a204b45 341
8f118dcd 342=item C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>
2a204b45 343
d85850a7 344If two characters here and next (as codepoints) are composable
8f118dcd 345(including Hangul Jamo/Syllables and Composition Exclusions),
2a204b45 346returns the codepoint of the composite.
347
f027f502 348If they are not composable, returns C<undef>.
2a204b45 349
350=item C<$combining_class = getCombinClass($codepoint)>
351
8f118dcd 352Returns the combining class of the character as an integer.
2a204b45 353
354=item C<$is_exclusion = isExclusion($codepoint)>
355
8f118dcd 356Returns a boolean whether the character of the specified codepoint
357is a composition exclusion.
358
359=item C<$is_singleton = isSingleton($codepoint)>
360
2a204b45 361Returns a boolean whether the character of the specified codepoint is
8f118dcd 362a singleton.
363
6c941e0c 364=item C<$is_non_starter_decomposition = isNonStDecomp($codepoint)>
8f118dcd 365
366Returns a boolean whether the canonical decomposition
367of the character of the specified codepoint
368is a Non-Starter Decomposition.
369
370=item C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
371
372Returns a boolean whether the character of the specified codepoint
373may be composed with the previous one in a certain composition
374(including Hangul Compositions, but excluding
375Composition Exclusions and Non-Starter Decompositions).
2a204b45 376
377=back
378
379=head2 EXPORT
380
381C<NFC>, C<NFD>, C<NFKC>, C<NFKD>: by default.
382
383C<normalize> and other some functions: on request.
384
385=head1 AUTHOR
386
a092bcfd 387SADAHIRO Tomoyuki <SADAHIRO@cpan.org>
2a204b45 388
389 http://homepage1.nifty.com/nomenclator/perl/
390
a092bcfd 391 Copyright(C) 2001-2004, SADAHIRO Tomoyuki. Japan. All rights reserved.
2a204b45 392
6c941e0c 393 This module is free software; you can redistribute it
394 and/or modify it under the same terms as Perl itself.
2a204b45 395
396=head1 SEE ALSO
397
398=over 4
399
e524f5b2 400=item http://www.unicode.org/reports/tr15/
2a204b45 401
402Unicode Normalization Forms - UAX #15
403
14e6b36c 404=item http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
8f118dcd 405
406Derived Normalization Properties
407
82e740b6 408=item http://www.unicode.org/notes/tn5/
409
410Canonical Equivalence in Applications - UTN #5
411
2a204b45 412=back
413
414=cut
415