debug reloading selfloaded stuff
[p5sagit/p5-mst-13.2.git] / lib / open.pm
CommitLineData
d1edabcf 1package open;
ac27b0f5 2use Carp;
16fe6d59 3$open::hint_bits = 0x20000;
4
0c4f7ff0 5our $VERSION = '1.01';
b75c8c73 6
58d53262 7my $locale_encoding;
8
9sub in_locale { $^H & $locale::hint_bits }
10
11sub _get_locale_encoding {
12 unless (defined $locale_encoding) {
ba6ce41c 13 eval {
14 # I18N::Langinfo isn't available everywhere
15 require I18N::Langinfo;
16 I18N::Langinfo->import('langinfo', 'CODESET');
17 };
58d53262 18 unless ($@) {
ba6ce41c 19 $locale_encoding = langinfo(CODESET());
58d53262 20 }
11fc5dc3 21 my $country_language;
58d53262 22 if (not $locale_encoding && in_locale()) {
11fc5dc3 23 if ($ENV{LC_ALL} =~ /^([^.]+)\.([^.]+)$/) {
24 ($country_language, $locale_encoding) = ($1, $2);
25 } elsif ($ENV{LANG} =~ /^([^.]+)\.([^.]+)$/) {
26 ($country_language, $locale_encoding) = ($1, $2);
58d53262 27 }
28 } else {
29 # Could do heuristics based on the country and language
30 # parts of LC_ALL and LANG (the parts before the dot (if any)),
31 # since we have Locale::Country and Locale::Language available.
32 # TODO: get a database of Language -> Encoding mappings
421e5dc3 33 # (the Estonian database at http://www.eki.ee/letter/
34 # would be excellent!) --jhi
58d53262 35 }
11fc5dc3 36 if (defined $locale_encoding &&
37 $locale_encoding eq 'euc' &&
38 defined $country_language) {
56fb2e42 39 if ($country_language =~ /^ja_JP|japan(?:ese)?$/i) {
11fc5dc3 40 $locale_encoding = 'eucjp';
5a192dee 41 } elsif ($country_language =~ /^ko_KR|korean?$/i) {
11fc5dc3 42 $locale_encoding = 'euckr';
56fb2e42 43 } elsif ($country_language =~ /^zh_TW|taiwan(?:ese)?$/i) {
11fc5dc3 44 $locale_encoding = 'euctw';
45 }
46 croak "Locale encoding 'euc' too ambiguous"
47 if $locale_encoding eq 'euc';
48 }
58d53262 49 }
50}
51
16fe6d59 52sub import {
dfebf958 53 my ($class,@args) = @_;
54 croak("`use open' needs explicit list of disciplines") unless @args;
16fe6d59 55 $^H |= $open::hint_bits;
ba6ce41c 56 my ($in,$out) = split(/\0/,(${^OPEN} || "\0"), -1);
dfebf958 57 while (@args) {
58 my $type = shift(@args);
59 my $discp = shift(@args);
ac27b0f5 60 my @val;
dfebf958 61 foreach my $layer (split(/\s+/,$discp)) {
62 $layer =~ s/^://;
58d53262 63 if ($layer eq 'locale') {
64 use Encode;
65 _get_locale_encoding()
66 unless defined $locale_encoding;
67 croak "Cannot figure out an encoding to use"
68 unless defined $locale_encoding;
11fc5dc3 69 if ($locale_encoding =~ /^utf-?8$/i) {
70 $layer = "utf8";
71 } else {
738b23dc 72 $layer = "encoding($locale_encoding)";
11fc5dc3 73 }
58d53262 74 }
0c4f7ff0 75 unless(PerlIO::Layer::->find($layer)) {
dfebf958 76 carp("Unknown discipline layer '$layer'");
ac27b0f5 77 }
78 push(@val,":$layer");
79 if ($layer =~ /^(crlf|raw)$/) {
80 $^H{"open_$type"} = $layer;
16fe6d59 81 }
ac27b0f5 82 }
738b23dc 83 # print "# type = $type, val = @val\n";
ac27b0f5 84 if ($type eq 'IN') {
85 $in = join(' ',@val);
86 }
87 elsif ($type eq 'OUT') {
88 $out = join(' ',@val);
16fe6d59 89 }
f3b00462 90 elsif ($type eq 'INOUT') {
91 $in = $out = join(' ',@val);
92 }
16fe6d59 93 else {
ac27b0f5 94 croak "Unknown discipline class '$type'";
16fe6d59 95 }
96 }
ac27b0f5 97 ${^OPEN} = join('\0',$in,$out);
16fe6d59 98}
99
1001;
101__END__
d1edabcf 102
103=head1 NAME
104
105open - perl pragma to set default disciplines for input and output
106
107=head1 SYNOPSIS
108
16fe6d59 109 use open IN => ":crlf", OUT => ":raw";
f3b00462 110 use open INOUT => ":utf8";
d1edabcf 111
112=head1 DESCRIPTION
113
d151aa0e 114Full-fledged support for I/O disciplines is now implemented provided
115Perl is configured to use PerlIO as its IO system (which is now the
116default).
16fe6d59 117
7d3b96bb 118The C<open> pragma serves as one of the interfaces to declare default
119"layers" (aka disciplines) for all I/O.
120
121The C<open> pragma is used to declare one or more default layers for
d151aa0e 122I/O operations. Any open(), readpipe() (aka qx//) and similar
123operators found within the lexical scope of this pragma will use the
124declared defaults.
7d3b96bb 125
d151aa0e 126When open() is given an explicit list of layers they are appended to
127the list declared using this pragma.
7d3b96bb 128
129Directory handles may also support disciplines in future.
130
131=head1 NONPERLIO FUNCTIONALITY
132
d151aa0e 133If Perl is not built to use PerlIO as its IO system then only the two
134pseudo-disciplines ":raw" and ":crlf" are available.
16fe6d59 135
136The ":raw" discipline corresponds to "binary mode" and the ":crlf"
137discipline corresponds to "text mode" on platforms that distinguish
138between the two modes when opening files (which is many DOS-like
d151aa0e 139platforms, including Windows). These two disciplines are no-ops on
140platforms where binmode() is a no-op, but perform their functions
141everywhere if PerlIO is enabled.
7d3b96bb 142
143=head1 IMPLEMENTATION DETAILS
d1edabcf 144
f3b00462 145There is a class method in C<PerlIO::Layer> C<find> which is
146implemented as XS code. It is called by C<import> to validate the
147layers:
0c4f7ff0 148
149 PerlIO::Layer::->find("perlio")
150
f3b00462 151The return value (if defined) is a Perl object, of class
152C<PerlIO::Layer> which is created by the C code in F<perlio.c>. As
153yet there is nothing useful you can do with the object at the perl
154level.
16fe6d59 155
d1edabcf 156=head1 SEE ALSO
157
7d3b96bb 158L<perlfunc/"binmode">, L<perlfunc/"open">, L<perlunicode>, L<PerlIO>
d1edabcf 159
160=cut