| 5 |
|
|
| 6 |
=head1 ENCODINGS |
=head1 ENCODINGS |
| 7 |
|
|
| 8 |
This module defines only two basic version of shift JIS. |
This module defines encoding engine for Shift JIS coding systems. |
| 9 |
Other variants are defined in Encode::SJIS::* modules. |
This module only provides general en/decoding parts. Actual profiles |
| 10 |
|
for Shift JISes are included in Encode::SJIS::*. |
| 11 |
|
|
| 12 |
=over 4 |
=over 4 |
| 13 |
|
|
| 18 |
use strict; |
use strict; |
| 19 |
our $VERSION=do{my @r=(q$Revision$=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
our $VERSION=do{my @r=(q$Revision$=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
| 20 |
require Encode::Charset; |
require Encode::Charset; |
| 21 |
|
use base qw(Encode::Encoding); |
| 22 |
|
|
|
### --- Perl Encode module common functions |
|
|
|
|
|
sub encode ($$;$) { |
|
|
my ($obj, $str, $chk) = @_; |
|
|
$_[1] = '' if $chk; |
|
|
if (!defined $obj->{_encode_mapping} || $obj->{_encode_mapping}) { |
|
|
require Encode::Table; |
|
|
$str = Encode::Table::convert ($str, $obj->__encode_map, |
|
|
-autoload => defined $obj->{_encode_mapping_autoload} ? |
|
|
$obj->{_encode_mapping_autoload} : 1); |
|
|
} |
|
|
$str = &internal_to_sjis ($str, $obj->__2022_encode); |
|
|
$str; |
|
|
} |
|
|
|
|
|
sub decode ($$;$) { |
|
|
my ($obj, $str, $chk) = @_; |
|
|
$_[1] = '' if $chk; |
|
|
$str = &sjis_to_internal ($str, $obj->__2022_decode); |
|
|
if (!defined $obj->{_decode_mapping} || $obj->{_decode_mapping}) { |
|
|
require Encode::Table; |
|
|
$str = Encode::Table::convert ($str, $obj->__decode_map, |
|
|
-autoload => defined $obj->{_decode_mapping_autoload} ? |
|
|
$obj->{_decode_mapping_autoload} : 1); |
|
|
} |
|
|
$str; |
|
|
} |
|
|
|
|
|
### --- Encode::SJIS unique functions |
|
| 23 |
*new_object = \&Encode::Charset::new_object_sjis; |
*new_object = \&Encode::Charset::new_object_sjis; |
| 24 |
|
|
| 25 |
|
## Code extention escape sequence defined by ISO/IEC 2022 is |
| 26 |
|
## not supported in this version of this module. |
| 27 |
|
|
| 28 |
sub sjis_to_internal ($$) { |
sub sjis_to_internal ($$) { |
| 29 |
my ($s, $C) = @_; |
my ($s, $C) = @_; |
| 30 |
$C ||= &new_object; |
$C ||= &new_object; |
| 72 |
$s; |
$s; |
| 73 |
} |
} |
| 74 |
|
|
| 75 |
sub __clone ($) { |
sub internal_to_sjis ($\%) { |
| 76 |
my $self = shift; |
use integer; |
| 77 |
bless {%$self}, ref $self; |
my ($s, $C) = @_; |
| 78 |
}; |
$C ||= &new_object; |
| 79 |
|
|
| 80 |
use base qw(Encode::Encoding); |
my $r = ''; |
| 81 |
__PACKAGE__->Define (qw!shift_jisx0213 japanese-shift-jisx0213 |
my @c = split //, $s; |
| 82 |
shift-jisx0213 x-shift_jisx0213 shift-jis-3 |
for my $i (0..$#c) { |
| 83 |
sjis shift-jis x-sjis x_sjis x-sjis-jp shiftjis x-shiftjis |
my $c = $c[$i]; my $cc = ord $c; Encode::_utf8_off ($c); |
| 84 |
x-shift-jis shift.jis!); |
my $t; |
| 85 |
|
## CL = C0 control characters |
| 86 |
=item sjis |
if ($cc <= 0x1F) { |
| 87 |
|
$t = $c if $C->{ $C->{CL} } eq $Encode::Charset::CHARSET{C0}->{"\x40"}; |
| 88 |
"Shift JIS" coding system. (Alias: shift-jis, shiftjis, |
## 0x20 == SP and 0x7E == DEL |
| 89 |
shift.jis, x-shiftjis, x-shift-jis, x-sjis, x_sjis, |
} elsif ($cc == 0x20 || $cc == 0x7F) { |
| 90 |
x-sjis-jp) |
$t = $c; |
| 91 |
|
## GL = G0 = ISO/IEC 646 graphic character set |
| 92 |
Since this name is ambiguous (it can now refer all or any |
} elsif ($cc < 0x7F) { |
| 93 |
of shift JIS coding system family), this name should not |
$t = $c if $C->{ $C->{GL} } eq $Encode::Charset::CHARSET{G94}->{"\x42"}; |
| 94 |
be used to address specific coding system. In this module, |
## 0x80 |
| 95 |
this is considered as an alias name to the shift JIS with |
} elsif ($C->{option}->{C1invoke_to_right} && $cc == 0x80) { |
| 96 |
latest official definition, currently of JIS X 0213:2000 |
$t = "\x80" |
| 97 |
Appendix 1 (with implemention level 4). |
if $C->{ $C->{CR} } eq $Encode::Charset::CHARSET{C1}->{'64291991C1'}; |
| 98 |
|
## ESC Fe = C1 control characters |
| 99 |
Note that the name "Shift_JIS" is not associated with |
} elsif ($cc <= 0x9F) { |
| 100 |
this name, because IANA registry [IANAREG] assignes |
$t = "\x1B".pack 'C', ($cc - 0x40) |
| 101 |
it to a shift JIS defined by JIS X 0208:1997. |
if $C->{ $C->{ESC_Fe} } eq $Encode::Charset::CHARSET{C1}->{'64291991C1'}; |
| 102 |
|
## G1 or G3 = 94^2 graphic character set from ISO-IR |
| 103 |
=item shift_jisx0213 |
} elsif (0xE9F6C0 <= $cc && $cc <= 0xF06F80) { |
| 104 |
|
my $c = $cc - 0xE9F6C0; my $F = chr (($c / 8836)+0x30); |
| 105 |
Shift_JISX0213 coded representation, defined by |
if ($C->{G1} eq $Encode::Charset::CHARSET{G94n}->{ $F }) { |
| 106 |
JIS X 0213:2000 Appendix 1 (implemention level 4). |
my ($c1, $c2) = ((($c % 8836) / 94)+0x21, ($c % 94)+0x21); |
| 107 |
(Alias: shift-jisx0213, x-shift_jisx0213, japanese-shift-jisx0213 (emacsen), |
$t = pack ('CC', (($c1 - 1) >> 1) + ($c1 < 0x5F ? 0x71 : 0xB1), |
| 108 |
shift-jis-3 (Yudit)) |
$c2 + (($c1 & 1) ? ($c2 < 0x60 ? 0x1F : 0x20) : 0x7E)); |
| 109 |
|
} elsif ($C->{G3} eq $Encode::Charset::CHARSET{G94n}->{ $F }) { |
| 110 |
=cut |
my ($c1, $c2) = ((($c % 8836) / 94)+0x21, ($c % 94)+0x21); |
| 111 |
|
if ($C->{G3}->{Csjis_first}) { |
| 112 |
sub __2022__common ($) { |
my $fb = $C->{G3}->{Csjis_first}->{ ($c % 8836) / 94 }; |
| 113 |
my $C = Encode::SJIS->new_object; |
$t = pack ('CC', $fb, $c2 + (($c1 & 1) ? ($c2 < 0x60 ? 0x1F : 0x20) : 0x7E)) if $fb; |
| 114 |
$C->{G0} = $Encode::Charset::CHARSET{G94}->{J}; ## JIS X 0201:1997 Latin |
} else { |
| 115 |
$C->{G1} = $Encode::Charset::CHARSET{G94n}->{"\x4F"}; ## JIS X 0213:2000 plane 1 |
$t = pack ('CC', ($c / 188) + 0xF0, |
| 116 |
$C->{G2} = $Encode::Charset::CHARSET{G94}->{I}; ## JIS X 0201:1997 Katakana |
$c2 + (($c1 & 1) ? ($c2 < 0x60 ? 0x1F : 0x20) : 0x7E)) |
| 117 |
$C->{G3} = $Encode::Charset::CHARSET{G94n}->{"\x50"}; ## JIS X 0213:2000 plane 2 |
if ($c / 188) + 0xF0 < 0xFD; |
| 118 |
$C; |
} |
| 119 |
} |
} |
| 120 |
sub __2022_encode ($) { |
## G1 = JIS X 0208-1990/:1997 |
| 121 |
my $C = shift->__2022__common; |
} elsif (0xF49D7C <= $cc && $cc <= 0xF4BFFF) { |
| 122 |
$C; |
my $c = $cc - 0xF49D7C; |
| 123 |
} |
if ($C->{G1} eq $Encode::Charset::CHARSET{G94n}->{'B@'}) { |
| 124 |
sub __2022_decode ($) { |
my ($c1, $c2) = ((($c % 8836) / 94)+0x21, ($c % 94)+0x21); |
| 125 |
my $C = shift->__2022__common; |
$t = pack ('CC', (($c1 - 1) >> 1) + ($c1 < 0x5F ? 0x71 : 0xB1), |
| 126 |
$C; |
$c2 + (($c1 & 1) ? ($c2 < 0x60 ? 0x1F : 0x20) : 0x7E)); |
| 127 |
} |
} |
| 128 |
sub __encode_map ($) { |
## GL = G0 = ISO/IEC 646 graphic character set / GR = G2 = JIS X 0201 Katakana set |
| 129 |
[qw/ucs_to_jisx0201_latin ucs_to_jisx0213_2000_1 ucs_to_jisx0213_2000_2 ucs_to_jisx0201_katakana/]; |
} elsif (0xE90940 <= $cc && $cc <= 0xE92641) { |
| 130 |
} |
my $c = $cc - 0xE90940; my $F = chr (($c / 94)+0x30); |
| 131 |
sub __decode_map ($) { |
if ($C->{ $C->{GL} } eq $Encode::Charset::CHARSET{G94}->{ $F }) { |
| 132 |
[qw/jisx0201_latin_to_ucs jisx0213_2000_1_to_ucs jisx0213_2000_2_to_ucs jisx0201_katakana_to_ucs/]; |
$t = pack 'C', (($c % 94) + 0x21); |
| 133 |
} |
} elsif ($C->{ $C->{GR} } eq $Encode::Charset::CHARSET{G94}->{ $F }) { |
| 134 |
|
$t = pack 'C', (($c % 94) + 0xA1) if ($c % 94) < 0x3F; |
| 135 |
package Encode::SJIS::X0213ASCII; |
} |
| 136 |
use vars qw/@ISA/; |
## G1 / G3 = 94^2 graphic character set |
| 137 |
push @ISA, 'Encode::SJIS'; |
} elsif (0x70420000 <= $cc && $cc <= 0x7046F19B) { |
| 138 |
__PACKAGE__->Define (qw/shift_jisx0213-ascii sjis-ascii shift-jis-ascii/); |
my $c = $cc % 0x10000; |
| 139 |
|
my $F0=$C->{option}->{private_set}->{G94n}->[($cc/0x10000)-0x7042]->[$c/8836]; |
| 140 |
=item sjis-ascii |
my $F1 = 'P'.(($cc / 0x10000) - 0x7042).'_'.($c / 8836); |
| 141 |
|
if ($C->{G3} eq $Encode::Charset::CHARSET{G94n}->{ $F0 } |
| 142 |
Same as sjis but ASCII (ISO/IEC 646 IRV) instead of |
|| $C->{G3} eq $Encode::Charset::CHARSET{G94n}->{ $F1 }) { |
| 143 |
JIS X 0201 Roman (or Latin) set. (Alias: shift-jis-ascii) |
my ($c1, $c2) = ((($c % 8836) / 94)+0x21, ($c % 94)+0x21); |
| 144 |
|
if ($C->{G3}->{Csjis_first}) { |
| 145 |
In spite of the history of shift JIS, ASCII is sometimes |
my $fb = $C->{G3}->{Csjis_first}->{ ($c % 8836) / 94 }; |
| 146 |
used instead of JIS X 0201 Roman set, because of compatibility |
$t = pack ('CC', $fb, $c2 + (($c1 & 1) ? ($c2 < 0x60 ? 0x1F : 0x20) : 0x7E)) if $fb; |
| 147 |
with ASCII world. |
} else { |
| 148 |
|
$t = pack ('CC', ($c / 188) + 0xF0, |
| 149 |
Note that this name is now an alias of shift_jisx0213-ascii, |
$c2 + (($c1 & 1) ? ($c2 < 0x60 ? 0x1F : 0x20) : 0x7E)) |
| 150 |
as sjis is of shift_jisx0213. |
if ($c / 188) + 0xF0 < 0xFD; |
| 151 |
|
} |
| 152 |
=item shift_jisx0213-ascii |
} |
| 153 |
|
## Other character sets are not supported now (and there is no plan to implement them). |
| 154 |
Same as Shift_JISX0213 but ASCII (ISO/IEC 646 IRV) |
} |
| 155 |
instead of JIS X 0201:1997 Latin character set. |
|
| 156 |
|
## Output the character itself |
| 157 |
=cut |
if (defined $t) { |
| 158 |
|
$r .= $t; |
| 159 |
sub __2022__common ($) { |
## Output the character itself with mapping table of special code positions |
| 160 |
my $C = shift->SUPER::__2022__common; |
} elsif ($C->{GsmapR}->{ $c }) { |
| 161 |
$C->{G0} = $Encode::Charset::CHARSET{G94}->{B}; ## ASCII |
$r .= $C->{GsmapR}->{ $c }; |
| 162 |
$C; |
} elsif ($C->{option}->{fallback_from_ucs} =~ /quiet/) { |
| 163 |
} |
return ($r, halfway => 1, converted_length => $i, |
| 164 |
sub __encode_map ($) { |
warn => $C->{option}->{fallback_from_ucs} =~ /warn/ ? 1 : 0, |
| 165 |
[qw/ucs_to_ascii ucs_to_jisx0213_2000_1 ucs_to_jisx0213_2000_2 ucs_to_jisx0201_katakana/]; |
reason => sprintf (q(U+%04X: There is no character mapped to), $cc)); |
| 166 |
} |
} elsif ($C->{option}->{fallback_from_ucs} eq 'croak') { |
| 167 |
sub __decode_map ($) { |
return ($r, halfway => 1, die => 1, |
| 168 |
[qw/jisx0213_2000_1_to_ucs jisx0213_2000_2_to_ucs jisx0201_katakana_to_ucs/]; |
reason => sprintf (q(U+%04X: There is no character mapped to), $cc)); |
| 169 |
|
## |
| 170 |
|
} else { |
| 171 |
|
## Try to output with fallback escape sequence (if specified) |
| 172 |
|
my $t = Encode::Charset::fallback_escape ($C, $c); |
| 173 |
|
if (defined $t) { |
| 174 |
|
my %D = (fallback => $C->{option}->{fallback_from_ucs}, reset => $C->{option}->{reset}); |
| 175 |
|
$C->{option}->{fallback_from_ucs} = 'croak'; |
| 176 |
|
$C->{option}->{reset} = {Gdesignation => 0, Ginvoke => 0}; |
| 177 |
|
eval q{$t = $C->{_encoder}->_encode_internal ($t, $C)} or undef $t; |
| 178 |
|
$C->{option}->{fallback_from_ucs} = $D{fallback}; |
| 179 |
|
$C->{option}->{reset} = $D{reset}; |
| 180 |
|
} |
| 181 |
|
if (defined $t) { |
| 182 |
|
$r .= $t; |
| 183 |
|
} else { ## Replacement character specified in charset definition |
| 184 |
|
$r .= $C->{option}->{undef_char_sjis} || "\x3F"; |
| 185 |
|
} |
| 186 |
|
} |
| 187 |
|
} |
| 188 |
|
$r; |
| 189 |
} |
} |
| 190 |
|
|
| 191 |
1; |
=back |
|
__END__ |
|
| 192 |
|
|
| 193 |
=head1 SEE ALSO |
=head1 SEE ALSO |
| 194 |
|
|
| 200 |
sets for information interchange", Japan Industrial Standards |
sets for information interchange", Japan Industrial Standards |
| 201 |
Committee (JISC) <http://www.jisc.go.jp/>, 2000. |
Committee (JISC) <http://www.jisc.go.jp/>, 2000. |
| 202 |
|
|
| 203 |
Encode, perlunicode |
L<Encode::SJIS::JIS> |
| 204 |
|
|
| 205 |
|
L<Encode>, L<perlunicode> |
| 206 |
|
|
| 207 |
[IANAREG] "CHARACTER SETS", IANA <http://www.iana.org/>, |
L<Encode::Charset>, L<Encode::ISO2022> |
|
<http://www.iana.org/assignments/character-sets>. |
|
|
The charset registry for IETF <http://www.ietf.org/> standards. |
|
|
(Note that in this registry two shift JISes are registered, |
|
|
"Shift_JIS" and "Windows-31j". Former is JIS X 0208:1997's |
|
|
definition and later is the Windows standard character set.) |
|
| 208 |
|
|
| 209 |
=head1 LICENSE |
=head1 LICENSE |
| 210 |
|
|
| 211 |
Copyright 2002 Nanashi-san |
Copyright 2002 Nanashi-san <[email protected]> |
| 212 |
|
|
| 213 |
This library is free software; you can redistribute it |
This library is free software; you can redistribute it |
| 214 |
and/or modify it under the same terms as Perl itself. |
and/or modify it under the same terms as Perl itself. |
| 215 |
|
|
| 216 |
=cut |
=cut |
| 217 |
|
|
| 218 |
# $Date$ |
1; # $Date$ |
|
### SJIS.pm ends here |
|