This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
I18N::Langinfo: clarify POD with a list
[perl5.git] / ext / I18N-Langinfo / Langinfo.pm
1 package I18N::Langinfo;
2
3 use 5.006;
4 use strict;
5 use warnings;
6 use Carp;
7
8 require Exporter;
9 require XSLoader;
10
11 our @ISA = qw(Exporter);
12
13 our @EXPORT = qw(langinfo);
14
15 our @EXPORT_OK = qw(
16         ABDAY_1
17         ABDAY_2
18         ABDAY_3
19         ABDAY_4
20         ABDAY_5
21         ABDAY_6
22         ABDAY_7
23         ABMON_1
24         ABMON_10
25         ABMON_11
26         ABMON_12
27         ABMON_2
28         ABMON_3
29         ABMON_4
30         ABMON_5
31         ABMON_6
32         ABMON_7
33         ABMON_8
34         ABMON_9
35         ALT_DIGITS
36         AM_STR
37         CODESET
38         CRNCYSTR
39         DAY_1
40         DAY_2
41         DAY_3
42         DAY_4
43         DAY_5
44         DAY_6
45         DAY_7
46         D_FMT
47         D_T_FMT
48         ERA
49         ERA_D_FMT
50         ERA_D_T_FMT
51         ERA_T_FMT
52         MON_1
53         MON_10
54         MON_11
55         MON_12
56         MON_2
57         MON_3
58         MON_4
59         MON_5
60         MON_6
61         MON_7
62         MON_8
63         MON_9
64         NOEXPR
65         NOSTR
66         PM_STR
67         RADIXCHAR
68         THOUSEP
69         T_FMT
70         T_FMT_AMPM
71         YESEXPR
72         YESSTR
73 );
74
75 our $VERSION = '0.17';
76
77 XSLoader::load();
78
79 1;
80 __END__
81
82 =head1 NAME
83
84 I18N::Langinfo - query locale information
85
86 =head1 SYNOPSIS
87
88   use I18N::Langinfo;
89
90 =head1 DESCRIPTION
91
92 The langinfo() function queries various locale information that can be
93 used to localize output and user interfaces.  It uses the current underlying
94 locale, regardless of whether or not it was called from within the scope of
95 S<C<use locale>>.  The langinfo() requires
96 one numeric argument that identifies the locale constant to query:
97 if no argument is supplied, C<$_> is used.  The numeric constants
98 appropriate to be used as arguments are exportable from I18N::Langinfo.
99
100 The following example will import the langinfo() function itself and
101 three constants to be used as arguments to langinfo(): a constant for
102 the abbreviated first day of the week (the numbering starts from
103 Sunday = 1) and two more constants for the affirmative and negative
104 answers for a yes/no question in the current locale.
105
106     use I18N::Langinfo qw(langinfo ABDAY_1 YESSTR NOSTR);
107
108     my ($abday_1, $yesstr, $nostr) =
109         map { langinfo($_) } (ABDAY_1, YESSTR, NOSTR);
110
111     print "$abday_1? [$yesstr/$nostr] ";
112
113 In other words, in the "C" (or English) locale the above will probably
114 print something like:
115
116     Sun? [yes/no]
117
118 but under a French locale
119
120     dim? [oui/non]
121
122 The usually available constants are as follows.
123
124 =over 4
125
126 =item *
127
128     ABDAY_1 ABDAY_2 ABDAY_3 ABDAY_4 ABDAY_5 ABDAY_6 ABDAY_7
129     ABMON_1 ABMON_2 ABMON_3 ABMON_4 ABMON_5 ABMON_6
130     ABMON_7 ABMON_8 ABMON_9 ABMON_10 ABMON_11 ABMON_12
131     DAY_1 DAY_2 DAY_3 DAY_4 DAY_5 DAY_6 DAY_7
132     MON_1 MON_2 MON_3 MON_4 MON_5 MON_6
133     MON_7 MON_8 MON_9 MON_10 MON_11 MON_12
134
135 for abbreviated and full length days of the week and months of the year,
136
137 =item *
138
139     D_T_FMT D_FMT T_FMT
140
141 for the date-time, date, and time formats used by the strftime() function
142 (see L<POSIX>)
143
144 =item *
145
146     AM_STR PM_STR T_FMT_AMPM
147
148 for the locales for which it makes sense to have ante meridiem and post
149 meridiem time formats,
150
151 =item *
152
153     CODESET CRNCYSTR
154
155 for the character code set being used (such as "ISO8859-1", "cp850",
156 "koi8-r", "sjis", "utf8", etc.), for the currency string
157
158 =item *
159
160     ALT_DIGITS RADIXCHAR THOUSEP
161
162 for an alternate representation of digits, for the
163 radix character used between the integer and the fractional part
164 of decimal numbers, the group separator string for large-ish floating point
165 numbers  (yes, the final two are redundant with POSIX::localeconv())
166
167 =item *
168
169     YESSTR YESEXPR NOSTR NOEXPR
170
171 for the affirmative and negative responses and expressions, and
172
173 =item *
174
175     ERA ERA_D_FMT ERA_D_T_FMT ERA_T_FMT
176
177 for the eras based on typically some ruler, such as the Japanese Emperor
178 (naturally only defined in the appropriate locales).
179
180 =back
181
182 Starting in Perl 5.28, this module is available even on systems that lack a
183 native C<nl_langinfo>.  On such systems, it uses various methods to construct
184 what that function, if present, would return.  But there are potential
185 glitches.  These are the items that could be different:
186
187 =over
188
189 =item C<ERA>
190
191 Unimplemented, so returns C<"">.
192
193 =item C<CODESET>
194
195 Unimplemented, except on Windows, due to the vagaries of vendor locale names,
196 returning C<""> on non-Windows.
197
198 =item C<YESEXPR>
199
200 =item C<YESSTR>
201
202 =item C<NOEXPR>
203
204 =item C<NOSTR>
205
206 Only the values for English are returned.  C<YESSTR> and C<NOSTR> have been
207 removed from POSIX 2008, and are retained here for backwards compatibility.
208 Your platform's C<nl_langinfo> may not support them.
209
210 =item C<D_FMT>
211
212 Always evaluates to C<%x>, the locale's appropriate date representation.
213
214 =item C<T_FMT>
215
216 Always evaluates to C<%X>, the locale's appropriate time representation.
217
218 =item C<D_T_FMT>
219
220 Always evaluates to C<%c>, the locale's appropriate date and time
221 representation.
222
223 =item C<CRNCYSTR>
224
225 The return may be incorrect for those rare locales where the currency symbol
226 replaces the radix character.
227 Send email to L<mailto:perlbug@perl.org> if you have examples of it needing
228 to work differently.
229
230 =item C<ALT_DIGITS>
231
232 Currently this gives the same results as Linux does.
233 Send email to L<mailto:perlbug@perl.org> if you have examples of it needing
234 to work differently.
235
236 =item C<ERA_D_FMT>
237
238 =item C<ERA_T_FMT>
239
240 =item C<ERA_D_T_FMT>
241
242 =item C<T_FMT_AMPM>
243
244 These are derived by using C<strftime()>, and not all versions of that function
245 know about them.  C<""> is returned for these on such systems.
246
247 =back
248
249 See your L<nl_langinfo(3)> for more information about the available
250 constants.  (Often this means having to look directly at the
251 F<langinfo.h> C header file.)
252
253 =head2 EXPORT
254
255 By default only the C<langinfo()> function is exported.
256
257 =head1 BUGS
258
259 Before Perl 5.28, the returned values are unreliable for the C<RADIXCHAR> and
260 C<THOUSEP> locale constants.
261
262 Starting in 5.28, changing locales on threaded builds is supported on systems
263 that offer thread-safe locale functions.  These include POSIX 2008 systems and
264 Windows starting with Visual Studio 2005, and this module will work properly
265 in such situations.  However, on threaded builds on Windows prior to Visual
266 Studio 2015, retrieving the items C<CRNCYSTR> and C<THOUSEP> can result in a
267 race with a thread that has converted to use the global locale.  It is quite
268 uncommon for a thread to have done this.  It would be possible to construct a
269 workaround for this; patches welcome: see L<perlapi/switch_to_global_locale>.
270
271 =head1 SEE ALSO
272
273 L<perllocale>, L<POSIX/localeconv>, L<POSIX/setlocale>, L<nl_langinfo(3)>.
274
275 The langinfo() is just a wrapper for the C nl_langinfo() interface.
276
277 =head1 AUTHOR
278
279 Jarkko Hietaniemi, E<lt>jhi@hut.fiE<gt>.  Now maintained by Perl 5 porters.
280
281 =head1 COPYRIGHT AND LICENSE
282
283 Copyright 2001 by Jarkko Hietaniemi
284
285 This library is free software; you can redistribute it and/or modify
286 it under the same terms as Perl itself.
287
288 =cut