This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: Make comment more accurate
[perl5.git] / lib / locale.pm
CommitLineData
bbce6d69 1package locale;
2
f36a3959 3our $VERSION = '1.01';
b75c8c73 4
66cbab2c
KW
5$Carp::Internal{ (__PACKAGE__) } = 1;
6
bbce6d69 7=head1 NAME
8
f36a3959 9locale - Perl pragma to use or avoid POSIX locales for built-in operations
bbce6d69 10
11=head1 SYNOPSIS
12
f36a3959 13 @x = sort @y; # Unicode sorting order
bbce6d69 14 {
15 use locale;
16 @x = sort @y; # Locale-defined sorting order
17 }
f36a3959 18 @x = sort @y; # Unicode sorting order again
bbce6d69 19
20=head1 DESCRIPTION
21
22This pragma tells the compiler to enable (or disable) the use of POSIX
f36a3959
KW
23locales for built-in operations (for example, LC_CTYPE for regular
24expressions, LC_COLLATE for string comparison, and LC_NUMERIC for number
25formatting). Each "use locale" or "no locale"
bbce6d69 26affects statements to the end of the enclosing BLOCK.
27
66cbab2c
KW
28Starting in Perl 5.16, a hybrid mode for this pragma is available,
29
30 use locale ':not_characters';
31
32which enables only the portions of locales that don't affect the character
33set (that is, all except LC_COLLATE and LC_CTYPE). This is useful when mixing
34Unicode and locales, including UTF-8 locales.
35
36 use locale ':not_characters';
37 use open ":locale"; # Convert I/O to/from Unicode
38 use POSIX qw(locale_h); # Import the LC_ALL constant
39 setlocale(LC_ALL, ""); # Required for the next statement
40 # to take effect
41 printf "%.2f\n", 12345.67' # Locale-defined formatting
42 @x = sort @y; # Unicode-defined sorting order.
43 # (Note that you will get better
44 # results using Unicode::Collate.)
45
b8bc843f
A
46See L<perllocale> for more detailed information on how Perl supports
47locales.
48
bbce6d69 49=cut
50
66cbab2c
KW
51# A separate bit is used for each of the two forms of the pragma, as they are
52# mostly independent, and interact with each other and the unicode_strings
53# feature. This allows for fast determination of which one(s) of the three
54# are to be used at any given point, and no code has to be written to deal
55# with coming in and out of scopes--it falls automatically out from the hint
56# handling
57
2de3dbcc 58$locale::hint_bits = 0x4;
66cbab2c 59$locale::not_chars_hint_bits = 0x10;
d5448623 60
bbce6d69 61sub import {
66cbab2c
KW
62 shift; # should be 'locale'; not checked
63 my $found_not_chars = 0;
64 while (defined (my $arg = shift)) {
65 if ($arg eq ":not_characters") {
66 $^H |= $locale::not_chars_hint_bits;
67
68 # This form of the pragma overrides the other
69 $^H &= ~$locale::hint_bits;
70 $found_not_chars = 1;
71 }
72 else {
73 require Carp;
74 Carp::croak("Unknown parameter '$arg' to 'use locale'");
75 }
76 }
77
78 # Use the plain form if not doing the :not_characters one.
79 $^H |= $locale::hint_bits unless $found_not_chars;
bbce6d69 80}
81
82sub unimport {
66cbab2c 83 $^H &= ~($locale::hint_bits|$locale::not_chars_hint_bits);
bbce6d69 84}
85
861;