1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
|
#
# $Id: Jcode.pm,v 0.88 2004/12/03 12:04:12 dankogai Exp $
#
=head1 NAME
Jcode - Japanese Charset Handler
=head1 SYNOPSIS
use Jcode;
#
# traditional
Jcode::convert(\$str, $ocode, $icode, "z");
# or OOP!
print Jcode->new($str)->h2z->tr($from, $to)->utf8;
=cut
=head1 DESCRIPTION
Jcode.pm supports both object and traditional approach.
With object approach, you can go like;
$iso_2022_jp = Jcode->new($str)->h2z->jis;
Which is more elegant than;
$iso_2022_jp = &jcode::convert(\$str,'jis',jcode::getcode(\str), "z");
For those unfamiliar with objects, Jcode.pm still supports getcode()
and convert().
=cut
package Jcode;
use 5.004;
use Carp;
use strict;
use vars qw($RCSID $VERSION $DEBUG);
$RCSID = q$Id: Jcode.pm,v 0.88 2004/12/03 12:04:12 dankogai Exp $;
$VERSION = do { my @r = (q$Revision: 0.88 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
$DEBUG = 0;
use Exporter;
use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
@ISA = qw(Exporter);
@EXPORT = qw(jcode getcode);
@EXPORT_OK = qw($RCSID $VERSION $DEBUG);
%EXPORT_TAGS = ( all => [ @EXPORT_OK, @EXPORT ] );
use vars qw($USE_CACHE $NOXS);
$USE_CACHE = 1;
$NOXS = 0;
print $RCSID, "\n" if $DEBUG;
use Jcode::Constants qw(:all);
use overload
q("") => sub { ${$_[0]->[0]} },
q(==) => sub {overload::StrVal($_[0]) eq overload::StrVal($_[1])},
q(=) => sub { $_[0]->set( $_[1] ) },
q(.=) => sub { $_[0]->append( $_[1] ) },
fallback => 1,
;
=head1 Methods
Methods mentioned here all return Jcode object unless otherwise mentioned.
=over 4
=item $j = Jcode-E<gt>new($str [, $icode]);
Creates Jcode object $j from $str. Input code is automatically checked
unless you explicitly set $icode. For available charset, see L<getcode>
below.
The object keeps the string in EUC format enternaly. When the object
itself is evaluated, it returns the EUC-converted string so you can
"print $j;" without calling access method if you are using EUC
(thanks to function overload).
=item Passing Reference
Instead of scalar value, You can use reference as
Jcode->new(\$str);
This saves time a little bit. In exchange of the value of $str being
converted. (In a way, $str is now "tied" to jcode object).
=item $j-E<gt>set($str [, $icode]);
Sets $j's internal string to $str. Handy when you use Jcode object repeatedly
(saves time and memory to create object).
# converts mailbox to SJIS format
my $jconv = new Jcode;
$/ = 00;
while(<>){
print $jconv->set(\$_)->mime_decode->sjis;
}
=item $j-E<gt>append($str [, $icode]);
Appends $str to $j's internal string.
=back
=cut
sub new {
my $class = shift;
my ($thingy, $icode) = @_;
my $r_str = ref $thingy ? $thingy : \$thingy;
my $nmatch;
($icode, $nmatch) = getcode($r_str) unless $icode;
convert($r_str, 'euc', $icode);
my $self = [
$r_str,
$icode,
$nmatch,
];
carp "Object of class $class created" if $DEBUG >= 2;
bless $self, $class;
}
sub r_str { $_[0]->[0] }
sub icode { $_[0]->[1] }
sub nmatch { $_[0]->[2] }
sub set {
my $self = shift;
my ($thingy, $icode) = @_;
my $r_str = ref $thingy ? $thingy : \$thingy;
my $nmatch;
($icode, $nmatch) = getcode($r_str) unless $icode;
convert($r_str, 'euc', $icode);
$self->[0] = $r_str;
$self->[1] = $icode;
$self->[2] = $nmatch;
return $self;
}
sub append {
my $self = shift;
my ($thingy, $icode) = @_;
my $r_str = ref $thingy ? $thingy : \$thingy;
my $nmatch;
($icode, $nmatch) = getcode($r_str) unless $icode;
convert($r_str, 'euc', $icode);
${$self->[0]} .= $$r_str;
$self->[1] = $icode;
$self->[2] = $nmatch;
return $self;
}
=over 4
=item $j = jcode($str [, $icode]);
shortcut for Jcode->new() so you can go like;
$sjis = jcode($str)->sjis;
=item $euc = $j-E<gt>euc;
=item $jis = $j-E<gt>jis;
=item $sjis = $j-E<gt>sjis;
What you code is what you get :)
=item $iso_2022_jp = $j-E<gt>iso_2022_jp
Same as $j->h2z->jis.
Hankaku Kanas are forcibly converted to Zenkaku.
=back
=cut
sub jcode { return Jcode->new(@_) }
sub euc { return ${$_[0]->[0]} }
sub jis { return &euc_jis(${$_[0]->[0]})}
sub sjis { return &euc_sjis(${$_[0]->[0]})}
sub iso_2022_jp{return $_[0]->h2z->jis}
=over 4
=item [@lines =] $jcode-E<gt>jfold([$bytes_per_line, $newline_str]);
folds lines in jcode string every $bytes_per_line (default: 72)
in a way that does not clobber the multibyte string.
(Sorry, no Kinsoku done!)
with a newline string spified by $newline_str (default: \n).
=back
=cut
sub jfold{
my $self = shift;
my ($bpl, $nl) = @_;
$bpl ||= 72;
$nl ||= "\n";
my $r_str = $self->[0];
my @lines = (); my $len = 0; my $i = 0;
while ($$r_str =~
m/($RE{EUC_0212}|$RE{EUC_KANA}|$RE{EUC_C}|[\x00-\xff])/sgo)
{
if ($len + length($1) > $bpl){ # fold!
$i++;
$len = 0;
}
$lines[$i] .= $1;
$len += length($1);
}
defined($lines[$i]) or pop @lines;
$$r_str = join($nl, @lines);
return wantarray ? @lines : $self;
}
=pod
=over 4
=item $length = $jcode-E<gt>jlength();
returns character length properly, rather than byte length.
=back
=cut
sub jlength {
my $self = shift;
my $r_str = $self->[0];
return scalar (my @char = $$r_str =~ m/($RE{EUC_0212}|$RE{EUC_KANA}|$RE{EUC_C}|[\x00-\xff])/sgo);
}
=head2 Methods that use MIME::Base64
To use methods below, you need MIME::Base64. To install, simply
perl -MCPAN -e 'CPAN::Shell->install("MIME::Base64")'
=over 4
=item $mime_header = $j-E<gt>mime_encode([$lf, $bpl]);
Converts $str to MIME-Header documented in RFC1522.
When $lf is specified, it uses $lf to fold line (default: \n).
When $bpl is specified, it uses $bpl for the number of bytes (default: 76;
this number must be smaller than 76).
=item $j-E<gt>mime_decode;
Decodes MIME-Header in Jcode object.
You can retrieve the number of matches via $j->nmatch;
=back
=cut
sub mime_encode{
my $self = shift;
my $r_str = $self->[0];
my $lf = shift || "\n";
my $bpl = shift || 76;
my ($trailing_crlf) = ($$r_str =~ /(\n|\r|\x0d\x0a)$/o);
my $str = _mime_unstructured_header($$r_str, $lf, $bpl);
not $trailing_crlf and $str =~ s/(\n|\r|\x0d\x0a)$//o;
$str;
}
#
# shamelessly stolen from
# http://www.din.or.jp/~ohzaki/perl.htm#JP_Base64
#
sub _add_encoded_word {
require MIME::Base64;
my($str, $line, $bpl) = @_;
my $result = '';
while (length($str)) {
my $target = $str;
$str = '';
if (length($line) + 22 +
($target =~ /^(?:$RE{EUC_0212}|$RE{EUC_C})/o) * 8 > $bpl) {
$line =~ s/[ \t\n\r]*$/\n/;
$result .= $line;
$line = ' ';
}
while (1) {
my $iso_2022_jp = jcode($target, 'euc')->iso_2022_jp;
if (my $count = ($iso_2022_jp =~ tr/\x80-\xff//d)){
$DEBUG and warn $count;
$target = jcode($iso_2022_jp, 'iso_2022_jp')->euc;
}
my $encoded = '=?ISO-2022-JP?B?' .
MIME::Base64::encode_base64($iso_2022_jp, '')
. '?=';
if (length($encoded) + length($line) > $bpl) {
$target =~
s/($RE{EUC_0212}|$RE{EUC_KANA}|$RE{EUC_C}|$RE{ASCII})$//o;
$str = $1 . $str;
} else {
$line .= $encoded;
last;
}
}
}
return $result . $line;
}
sub _mime_unstructured_header {
my ($oldheader, $lf, $bpl) = @_;
my(@words, @wordstmp, $i);
my $header = '';
$oldheader =~ s/\s+$//;
@wordstmp = split /\s+/, $oldheader;
for ($i = 0; $i < $#wordstmp; $i++) {
if ($wordstmp[$i] !~ /^[\x21-\x7E]+$/ and
$wordstmp[$i + 1] !~ /^[\x21-\x7E]+$/) {
$wordstmp[$i + 1] = "$wordstmp[$i] $wordstmp[$i + 1]";
} else {
push(@words, $wordstmp[$i]);
}
}
push(@words, $wordstmp[-1]);
for my $word (@words) {
if ($word =~ /^[\x21-\x7E]+$/) {
$header =~ /(?:.*\n)*(.*)/;
if (length($1) + length($word) > $bpl) {
$header .= "$lf $word";
} else {
$header .= $word;
}
} else {
$header = _add_encoded_word($word, $header, $bpl);
}
$header =~ /(?:.*\n)*(.*)/;
if (length($1) == $bpl) {
$header .= "$lf ";
} else {
$header .= ' ';
}
}
$header =~ s/\n? $/\n/;
$header;
}
# see http://www.din.or.jp/~ohzaki/perl.htm#JP_Base64
#$lws = '(?:(?:\x0d\x0a)?[ \t])+';
#$ew_regex = '=\?ISO-2022-JP\?B\?([A-Za-z0-9+/]+=*)\?=';
#$str =~ s/($ew_regex)$lws(?=$ew_regex)/$1/gio;
#$str =~ s/$lws/ /go; $str =~ s/$ew_regex/decode_base64($1)/egio;
sub mime_decode{
require MIME::Base64; # not use
my $self = shift;
my $r_str = $self->[0];
my $re_lws = '(?:(?:\r|\n|\x0d\x0a)?[ \t])+';
my $re_ew = '=\?[Ii][Ss][Oo]-2022-[Jj][Pp]\?[Bb]\?([A-Za-z0-9+/]+=*)\?=';
$$r_str =~ s/($re_ew)$re_lws(?=$re_ew)/$1/sgo;
$$r_str =~ s/$re_lws/ /go;
$self->[2] =
($$r_str =~
s/$re_ew/jis_euc(MIME::Base64::decode_base64($1))/ego
);
$self;
}
=head2 Methods implemented by Jcode::H2Z
Methods below are actually implemented in Jcode::H2Z.
=over 4
=item $j-E<gt>h2z([$keep_dakuten]);
Converts X201 kana (Hankaku) to X208 kana (Zenkaku).
When $keep_dakuten is set, it leaves dakuten as is
(That is, "ka + dakuten" is left as is instead of
being converted to "ga")
You can retrieve the number of matches via $j->nmatch;
=item $j-E<gt>z2h;
Converts X208 kana (Zenkaku) to X201 kana (Hankaku).
You can retrieve the number of matches via $j->nmatch;
=back
=cut
sub h2z {
require Jcode::H2Z; # not use
my $self = shift;
$self->[2] = Jcode::H2Z::h2z($self->[0], @_);
return $self;
}
sub z2h {
require Jcode::H2Z; # not use
my $self = shift;
$self->[2] = &Jcode::H2Z::z2h($self->[0], @_);
return $self;
}
=head2 Methods implemented in Jcode::Tr
Methods here are actually implemented in Jcode::Tr.
=over 4
=item $j-E<gt>tr($from, $to);
Applies tr on Jcode object. $from and $to can contain EUC Japanese.
You can retrieve the number of matches via $j->nmatch;
=back
=cut
sub tr{
require Jcode::Tr; # not use
my $self = shift;
$self->[2] = Jcode::Tr::tr($self->[0], @_);
return $self;
}
#
# load needed module depending on the configuration just once!
#
use vars qw(%PKG_LOADED);
sub load_module{
my $pkg = shift;
return $pkg if $PKG_LOADED{$pkg}++;
unless ($NOXS){
eval qq( require $pkg; );
unless ($@){
carp "$pkg loaded." if $DEBUG;
return $pkg;
}
}
$pkg .= "::NoXS";
eval qq( require $pkg; );
unless ($@){
carp "$pkg loaded" if $DEBUG;
}else{
croak "Loading $pkg failed!";
}
$pkg;
}
=head2 Methods implemented in Jcode::Unicode
If your perl does not support XS (or you can't C<perl Makefile.PL>,
Jcode::Unicode::NoXS will be used.
See L<Jcode::Unicode> and L<Jcode::Unicode::NoXS> for details
=over 4
=item $ucs2 = $j-E<gt>ucs2;
Returns UCS2 (Raw Unicode) string.
=item $ucs2 = $j-E<gt>utf8;
Returns utf8 String.
=back
=cut
sub ucs2{
load_module("Jcode::Unicode");
euc_ucs2(${$_[0]->[0]});
}
sub utf8{
load_module("Jcode::Unicode");
euc_utf8(${$_[0]->[0]});
}
=head2 Instance Variables
If you need to access instance variables of Jcode object, use access
methods below instead of directly accessing them (That's what OOP
is all about)
FYI, Jcode uses a ref to array instead of ref to hash (common way) to
optimize speed (Actually you don't have to know as long as you use
access methods instead; Once again, that's OOP)
=over 4
=item $j-E<gt>r_str
Reference to the EUC-coded String.
=item $j-E<gt>icode
Input charcode in recent operation.
=item $j-E<gt>nmatch
Number of matches (Used in $j->tr, etc.)
=back
=cut
=head1 Subroutines
=over 4
=item ($code, [$nmatch]) = getcode($str);
Returns char code of $str. Return codes are as follows
ascii Ascii (Contains no Japanese Code)
binary Binary (Not Text File)
euc EUC-JP
sjis SHIFT_JIS
jis JIS (ISO-2022-JP)
ucs2 UCS2 (Raw Unicode)
utf8 UTF8
When array context is used instead of scaler, it also returns how many
character codes are found. As mentioned above, $str can be \$str
instead.
B<jcode.pl Users:> This function is 100% upper-conpatible with
jcode::getcode() -- well, almost;
* When its return value is an array, the order is the opposite;
jcode::getcode() returns $nmatch first.
* jcode::getcode() returns 'undef' when the number of EUC characters
is equal to that of SJIS. Jcode::getcode() returns EUC. for
Jcode.pm there is no in-betweens.
=item Jcode::convert($str, [$ocode, $icode, $opt]);
Converts $str to char code specified by $ocode. When $icode is specified
also, it assumes $icode for input string instead of the one checked by
getcode(). As mentioned above, $str can be \$str instead.
B<jcode.pl Users:> This function is 100% upper-conpatible with
jcode::convert() !
=back
=cut
sub getcode {
my $thingy = shift;
my $r_str = ref $thingy ? $thingy : \$thingy;
my ($code, $nmatch, $sjis, $euc, $utf8) = ("", 0, 0, 0, 0);
if ($$r_str =~ /$RE{BIN}/o) { # 'binary'
my $ucs2;
$ucs2 += length($1)
while $$r_str =~ /(\x00$RE{ASCII})+/go;
if ($ucs2){ # smells like raw unicode
($code, $nmatch) = ('ucs2', $ucs2);
}else{
($code, $nmatch) = ('binary', 0);
}
}
elsif ($$r_str !~ /[\e\x80-\xff]/o) { # not Japanese
($code, $nmatch) = ('ascii', 1);
} # 'jis'
elsif ($$r_str =~
m[
$RE{JIS_0208}|$RE{JIS_0212}|$RE{JIS_ASC}|$RE{JIS_KANA}
]ox)
{
($code, $nmatch) = ('jis', 1);
}
else { # should be euc|sjis|utf8
# use of (?:) by Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp>
$sjis += length($1)
while $$r_str =~ /((?:$RE{SJIS_C})+)/go;
$euc += length($1)
while $$r_str =~ /((?:$RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212})+)/go;
$utf8 += length($1)
while $$r_str =~ /((?:$RE{UTF8})+)/go;
# $utf8 *= 1.5; # M. Takahashi's suggestion
$nmatch = _max($utf8, $sjis, $euc);
carp ">DEBUG:sjis = $sjis, euc = $euc, utf8 = $utf8" if $DEBUG >= 3;
$code =
($euc > $sjis and $euc > $utf8) ? 'euc' :
($sjis > $euc and $sjis > $utf8) ? 'sjis' :
($utf8 > $euc and $utf8 > $sjis) ? 'utf8' : undef;
}
return wantarray ? ($code, $nmatch) : $code;
}
sub convert{
my $thingy = shift;
my $r_str = ref $thingy ? $thingy : \$thingy;
my ($ocode, $icode, $opt) = @_;
my $nmatch;
($icode, $nmatch) = getcode($r_str) unless $icode;
return $$r_str if $icode eq $ocode and !defined $opt; # do nothin'
no strict qw(refs);
my $method;
# convert to EUC
load_module("Jcode::Unicode") if $icode =~ /ucs2|utf8/o;
if ($icode and defined &{$method = $icode . "_euc"}){
carp "Dispatching \&$method" if $DEBUG >= 2;
&{$method}($r_str) ;
}
# h2z or z2h
if ($opt){
my $cmd = ($opt =~ /^z/o) ? "h2z" : ($opt =~ /^h/o) ? "z2h" : undef;
if ($cmd){
require Jcode::H2Z;
&{'Jcode::H2Z::' . $cmd}($r_str);
}
}
# convert to $ocode
load_module("Jcode::Unicode") if $ocode =~ /ucs2|utf8/o;
if ($ocode and defined &{$method = "euc_" . $ocode}){
carp "Dispatching \&$method" if $DEBUG >= 2;
&{$method}($r_str) ;
}
$$r_str;
}
# JIS<->EUC
sub jis_euc {
my $thingy = shift;
my $r_str = ref $thingy ? $thingy : \$thingy;
$$r_str =~ s(
($RE{JIS_0212}|$RE{JIS_0208}|$RE{JIS_ASC}|$RE{JIS_KANA})
([^\e]*)
)
{
my ($esc, $str) = ($1, $2);
if ($esc !~ /$RE{JIS_ASC}/o) {
$str =~ tr/\x21-\x7e/\xa1-\xfe/;
if ($esc =~ /$RE{JIS_KANA}/o) {
$str =~ s/([\xa1-\xdf])/\x8e$1/og;
}
elsif ($esc =~ /$RE{JIS_0212}/o) {
$str =~ s/([\xa1-\xfe][\xa1-\xfe])/\x8f$1/og;
}
}
$str;
}geox;
$$r_str;
}
#
# euc_jis
#
# Based upon the contribution of
# Kazuto Ichimura <ichimura@shimada.nuee.nagoya-u.ac.jp>
# optimized by <ohzaki@iod.ricoh.co.jp>
sub euc_jis{
my $thingy = shift;
my $r_str = ref $thingy ? $thingy : \$thingy;
$$r_str =~ s{
((?:$RE{EUC_C})+|(?:$RE{EUC_KANA})+|(?:$RE{EUC_0212})+)
}{
my $str = $1;
my $esc =
( $str =~ tr/\x8E//d ) ? $ESC{KANA} :
( $str =~ tr/\x8F//d ) ? $ESC{JIS_0212} :
$ESC{JIS_0208};
$str =~ tr/\xA1-\xFE/\x21-\x7E/;
$esc . $str . $ESC{ASC};
}geox;
$$r_str =~
s/\Q$ESC{ASC}\E
(\Q$ESC{KANA}\E|\Q$ESC{JIS_0212}\E|\Q$ESC{JIS_0208}\E)/$1/gox;
$$r_str;
}
# EUC<->SJIS
my %_S2E = ();
my %_E2S = ();
sub sjis_euc {
my $thingy = shift;
my $r_str = ref $thingy ? $thingy : \$thingy;
$$r_str =~ s(
($RE{SJIS_C}|$RE{SJIS_KANA})
)
{
my $str = $1;
unless ($_S2E{$1}){
my ($c1, $c2) = unpack('CC', $str);
if (0xa1 <= $c1 && $c1 <= 0xdf) {
$c2 = $c1;
$c1 = 0x8e;
} elsif (0x9f <= $c2) {
$c1 = $c1 * 2 - ($c1 >= 0xe0 ? 0xe0 : 0x60);
$c2 += 2;
} else {
$c1 = $c1 * 2 - ($c1 >= 0xe0 ? 0xe1 : 0x61);
$c2 += 0x60 + ($c2 < 0x7f);
}
$_S2E{$str} = pack('CC', $c1, $c2);
}
$_S2E{$str};
}geox;
$$r_str;
}
#
sub euc_sjis {
my $thingy = shift;
my $r_str = ref $thingy ? $thingy : \$thingy;
$$r_str =~ s(
($RE{EUC_C}|$RE{EUC_KANA}|$RE{EUC_0212})
)
{
my $str = $1;
unless ($_E2S{$str}){
my ($c1, $c2) = unpack('CC', $str);
if ($c1 == 0x8e) { # SS2
$_E2S{$str} = chr($c2);
} elsif ($c1 == 0x8f) { # SS3
$_E2S{$str} = $CHARCODE{UNDEF_SJIS};
}else { #SS1 or X0208
if ($c1 % 2) {
$c1 = ($c1>>1) + ($c1 < 0xdf ? 0x31 : 0x71);
$c2 -= 0x60 + ($c2 < 0xe0);
} else {
$c1 = ($c1>>1) + ($c1 < 0xdf ? 0x30 : 0x70);
$c2 -= 2;
}
$_E2S{$str} = pack('CC', $c1, $c2);
}
}
$_E2S{$str};
}geox;
$$r_str;
}
#
# Util. Functions
#
sub _max {
my $result = shift;
for my $n (@_){
$result = $n if $n > $result;
}
return $result;
}
1;
__END__
=head1 BUGS
Unicode support by Jcode is far from efficient!
=head1 IN FUTURE
Hopefully Jcode will be superceded by Encode module that is part of
the standard module on Perl 5.7 and up
=head1 ACKNOWLEDGEMENTS
This package owes a lot in motivation, design, and code, to the jcode.pl
for Perl4 by Kazumasa Utashiro <utashiro@iij.ad.jp>.
Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp> has helped me polish regexp from the
very first stage of development.
And folks at Jcode Mailing list <jcode5@ring.gr.jp>. Without them, I
couldn't have coded this far.
=head1 SEE ALSO
L<Jcode::Unicode>
L<Jcode::Unicode::NoXS>
http://www.iana.org/assignments/character-sets
L<Encode>
=head1 COPYRIGHT
Copyright 1999 Dan Kogai <dankogai@dan.co.jp>
This library is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
=cut
|