da3b84ce810248ff09fba270ea00bd3f953b0a58
[p5sagit/p5-mst-13.2.git] / ext / Encode / lib / Encode / KR / 2022_KR.pm
1 package Encode::KR::2022_KR;
2 use Encode qw(:fallbacks);
3 use base 'Encode::Encoding';
4
5 use strict;
6
7 our $VERSION = do { my @r = (q$Revision: 1.4 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
8
9
10 my $canon = 'iso-2022-kr';
11 my $obj = bless {name => $canon}, __PACKAGE__;
12 $obj->Define($canon);
13
14 sub name { return $_[0]->{name}; }
15
16 sub needs_lines { 1 }
17
18 sub perlio_ok { 
19     return 0; # for the time being
20 }
21
22 sub decode
23 {
24     my ($obj, $str, $chk) = @_;
25     my $res = $str;
26     my $residue = iso_euc(\$res);
27     # This is for PerlIO
28     $_[1] = $residue if $chk;
29     return Encode::decode('euc-kr', $res, FB_PERLQQ);
30 }
31
32 sub encode
33 {
34     my ($obj, $utf8, $chk) = @_;
35     # empty the input string in the stack so perlio is ok
36     $_[1] = '' if $chk;
37     my $octet = Encode::encode('euc-jp', $utf8, FB_PERLQQ) ;
38     euc_iso(\$octet);
39     return $octet;
40 }
41
42 use Encode::CJKConstants qw(:all);
43
44 # ISO<->EUC
45
46 sub iso_euc{
47     my $r_str = shift;
48     $$r_str =~ s/$RE{'2022_KR'}//gox;  # remove the designator
49     $$r_str =~ s{                      # replace characters in GL
50      \x0e                              # between SO(\x0e) and SI(\x0f)
51      ([^\x0f]*)                        # with characters in GR
52      \x0f
53         }
54     {
55                         my $out= $1;
56       $out =~ tr/\x21-\x7e/\xa1-\xfe/;
57       $out;
58     }geox;
59     my ($residue) = ($$r_str =~ s/(\e.*)$//so);
60     return $residue;
61 }
62
63 sub euc_iso{
64     no warnings qw(uninitialized);
65     my $r_str = shift;
66     substr($$r_str,0,0)=$ESC{'2022_KR'};  # put the designator at the beg.
67     $$r_str =~ s{                         # move KS X 1001 characters in GR to GL
68         ($RE{EUC_C}+)                     # and enclose them with SO and SI
69         }{
70             my $str = $1;
71             $str =~ tr/\xA1-\xFE/\x21-\x7E/;
72             "\x0e" . $str . "\x0f";
73         }geox;
74     $$r_str;
75 }
76
77 1;
78 __END__
79
80 =head1 NAME
81
82 Encode::KR::2022_KR -- internally used by Encode::KR
83
84 =cut