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
|
package Unicode::MapUTF8;
use strict;
use Carp qw(confess croak carp);
use Exporter;
use Unicode::String;
use Unicode::Map;
use Unicode::Map8;
use Jcode;
use vars qw ($VERSION @EXPORT @EXPORT_OK @EXPORT_TAGS @ISA);
use subs qw (utf8_supported_charset to_utf8 from_utf8 utf8_charset_alias _init_charsets);
BEGIN {
@ISA = qw(Exporter);
@EXPORT = qw ();
@EXPORT_OK = qw (utf8_supported_charset to_utf8 from_utf8 utf8_charset_alias);
@EXPORT_TAGS = qw ();
$VERSION = "1.09";
}
############################
# File level package globals (class variables)
my $_Supported_Charsets;
my $_Charset_Names;
my $_Charset_Aliases;
_init_charsets;
=head1 NAME
Unicode::MapUTF8 - Conversions to and from arbitrary character sets and UTF8
=head1 SYNOPSIS
use Unicode::MapUTF8 qw(to_utf8 from_utf8 utf8_supported_charset);
# Convert a string in 'ISO-8859-1' to 'UTF8'
my $output = to_utf8({ -string => 'An example', -charset => 'ISO-8859-1' });
# Convert a string in 'UTF8' encoding to encoding 'ISO-8859-1'
my $other = from_utf8({ -string => 'Other text', -charset => 'ISO-8859-1' });
# List available character set encodings
my @character_sets = utf8_supported_charset;
# Add a character set alias
utf8_charset_alias({ 'ms-japanese' => 'sjis' });
# Convert between two arbitrary (but largely compatible) charset encodings
# (SJIS to EUC-JP)
my $utf8_string = to_utf8({ -string =>$sjis_string, -charset => 'sjis'});
my $euc_jp_string = from_utf8({ -string => $utf8_string, -charset => 'euc-jp' })
# Verify that a specific character set is supported
if (utf8_supported_charset('ISO-8859-1') {
# Yes
}
=head1 DESCRIPTION
Provides an adapter layer between core routines for converting
to and from UTF8 and other encodings. In essence, a way to give multiple
existing Unicode modules a single common interface so you don't have to know
the underlaying implementations to do simple UTF8 to-from other character set
encoding conversions. As such, it wraps the Unicode::String, Unicode::Map8,
Unicode::Map and Jcode modules in a standardized and simple API.
This also provides general character set conversion operation based on UTF8 - it is
possible to convert between any two compatible and supported character sets
via a simple two step chaining of conversions.
As with most things Perlish - if you give it a few big chunks of text to chew on
instead of lots of small ones it will handle many more characters per second.
By design, it can be easily extended to encompass any new charset encoding
conversion modules that arrive on the scene.
=head1 CHANGES
1.09 2001.08.22 - Fixed multiple typo occurances of 'uft'
where 'utf' was meant in code. Problem affected
utf16 and utf7 encodings. Problem found
by devon smith <devon@taller.PSCL.cwru.edu>
1.08 2000.11.06 - Added 'utf8_charset_alias' function to
allow for runtime setting of character
set aliases. Added several alternate
names for 'sjis' (shiftjis, shift-jis,
shift_jis, s-jis, and s_jis).
Corrected 'croak' messages for
'from_utf8' functions to appropriate
function name.
Tightened up initialization encapsulation
Corrected fatal problem in jcode from
unicode internals. Problem and fix
found by Brian Wisti <wbrian2@uswest.net>.
1.07 2000.11.01 - Added 'croak' to use Carp declaration to
fix error messages. Problem and fix
found by Brian Wisti
<wbrian2@uswest.net>.
1.06 2000.10.30 - Fix to handle change in stringification
of overloaded objects between Perl 5.005
and 5.6. Problem noticed by Brian Wisti
<wbrian2@uswest.net>.
1.05 2000.10.23 - Error in conversions from UTF8 to
multibyte encodings corrected
1.04 2000.10.23 - Additional diagnostic messages added
for internal error conditions
1.03 2000.10.22 - Bug fix for load time autodetction of
Unicode::Map8 encodings
1.02 2000.10.22 - Added load time autodetection of
Unicode::Map8 supported character set
encodings.
Fixed internal calling error for some
character sets with 'from_utf8'. Thanks
goes to Ilia Lobsanov
<ilia@lobsanov.com> for reporting this
problem.
1.01 2000.10.02 - Fixed handling of empty strings and
added more identification for error
messages.
1.00 2000.09.29 - Pre-release version
=head1 FUNCTIONS
=cut
######################################################################
=over 4
=item utf8_charset_alias({ $alias => $charset });
Used for runtime assignment of character set aliases.
Called with no parameters, returns a hash of defined aliases and the character sets
they map to.
Example:
my $aliases = utf8_charset_alias;
my @alias_names = keys %$aliases;
If called with ONE parameter, returns the name of the 'real' charset
if the alias is defined. Returns undef if it is not found in the aliases.
Example:
if (! utf8_charset_alias('VISCII')) {
# No alias for this
}
If called with a list of 'alias' => 'charset' pairs, defines those aliases for use.
Example:
utf8_charset_alias({ 'japanese' => 'sjis', 'japan' => 'sjis' });
Note: It will croak if a passed pair does not map to a character set
defined in the predefined set of character encoding. It is NOT
allowed to alias something to another alias.
Multiple character set aliases can be set with a single call.
To clear an alias, pass a character set mapping of undef.
Example:
utf8_charset_alias({ 'japanese' => undef });
While an alias is set, the 'utf8_supported_charset' function
will return the alias as if it were a predefined charset.
Overriding a base defined character encoding with an alias
will generate a warning message to STDERR.
=back
=cut
sub utf8_charset_alias {
if ($#_ == -1) {
my $aliases = {};
%$aliases = %$_Charset_Aliases;
return $aliases;
}
my $parms;
my @parms_list = @_;
if (($#parms_list == 0) && (ref ($parms_list[0]) eq 'HASH')) {
_set_utf8_charset_alias($parms_list[0]);
return;
} elsif (($#parms_list > 0) && (($#parms_list % 2) == 1)) {
_set_utf8_charset_alias({ @parms_list });
return;
} elsif ($#parms_list == 0) {
my $lc_charset = lc($parms_list[0]);
my $result = $_Charset_Aliases->{$lc_charset};
return $result;
}
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::utf8_charset_alias() - invalid parameters passed\n");
}
######################################################################
# Sets (or clears ;-) ) a runtime character set alias.
sub _set_utf8_charset_alias {
my ($parms) = @_;
my @alias_names = keys %$parms;
foreach my $alias (@alias_names) {
my $lc_alias = lc ($alias);
my $charset = $parms->{$alias};
if (! defined $charset) {
if (exists ($_Charset_Aliases->{$lc_alias})) {
delete $_Charset_Aliases->{$lc_alias};
}
next;
}
my $lc_charset = lc ($charset);
if (! exists ($_Charset_Names->{$lc_charset})) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::utf8_charset_alias() - attempted to set alias '$alias' to point to unknown charset encoding of '$charset'\n");
}
if (exists ($_Charset_Names->{$lc_alias})) {
carp('[' . localtime(time) . '] [warning] ' . __PACKAGE__ . "::utf8_charset_alias() - Aliased base defined charset name '$alias' to '$charset'.");
}
$_Charset_Aliases->{$lc_alias} = $lc_charset;
}
}
######################################################################
=over 4
=item utf8_supported_charset($charset_name);
Returns true if the named charset is supported (including
user defiend aliases).
Returns false if it is not.
Example:
if (! utf8_supported_charset('VISCII')) {
# No support yet
}
If called in a list context with no parameters, it will return
a list of all supported character set names (including user
defined aliases).
Example:
my @charsets = utf8_supported_charset;
=back
=cut
sub utf8_supported_charset {
if ($#_ == -1 && wantarray) {
my %all_charsets = (%$_Supported_Charsets, %$_Charset_Aliases);
my @charsets = sort keys %all_charsets;
return @charsets;
}
my $charset = shift;
if (not defined $charset) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::utf8_supported_charset() - no character set specified\n");
}
my $lc_charset = lc($charset);
return 1 if (exists ($_Charset_Names->{$lc_charset}));
return 1 if (exists ($_Charset_Aliases->{$lc_charset}));
return 0;
}
######################################################################
=over 4
=item to_utf8({ -string => $string, -charset => $source_charset });
Returns the string converted to UTF8 from the specified source charset.
=back
=cut
sub to_utf8 {
my @parm_list = @_;
my $parms = {};
if (($#parm_list > 0) && (($#parm_list % 2) == 1)) {
$parms = { @parm_list };
} elsif ($#parm_list == 0) {
$parms = $parm_list[0];
if (! ref($parms)) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::to_utf8() - invalid parameters passed\n");
}
} else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::to_utf8() - bad parameters passed\n");
}
if (! (exists $parms->{-string})) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::to_utf8() - missing '-string' parameter\n");
}
my $string = $parms->{-string};
my $charset = $parms->{-charset};
if (! defined ($charset)) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::to_utf8() - missing '-charset' parameter value\n");
}
my $lc_charset = lc ($charset);
my $alias_charset = $_Charset_Aliases->{$lc_charset};
my $true_charset = defined($alias_charset) ? $_Charset_Names->{$alias_charset} : $_Charset_Names->{$lc_charset};
if (! defined $true_charset) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::to_utf8() - character set '$charset' is not supported\n");
}
$string = '' if (! defined ($string));
my $converter = $_Supported_Charsets->{$true_charset};
if ($converter eq 'map8') { return _unicode_map8_to_utf8 ($string,$true_charset); }
if ($converter eq 'unicode-map'){ return _unicode_map_to_utf8 ($string,$true_charset); }
elsif ($converter eq 'string') { return _unicode_string_to_utf8 ($string,$true_charset); }
elsif ($converter eq 'jcode') { return _jcode_to_utf8 ($string,$true_charset); }
else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::to_utf8() - charset '$charset' is not supported\n");
}
}
######################################################################
=over 4
=item from_utf8({ -string => $string, -charset => $target_charset});
Returns the string converted from UTF8 to the specified target charset.
=back
=cut
sub from_utf8 {
my @parm_list = @_;
my $parms;
if (($#parm_list > 0) && (($#parm_list % 2) == 1)) {
$parms = { @parm_list };
} elsif ($#parm_list == 0) {
$parms = $parm_list[0];
if (! ref($parms)) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::from_utf8() - invalid parameters passed\n");
}
} else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::from_utf8() - bad parameters passed\n");
}
if (! (exists $parms->{-string})) {
; croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::from_utf8() - missing '-string' parameter\n");
}
my $string = $parms->{-string};
my $charset = $parms->{-charset};
if (! defined ($charset)) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::from_utf8() - missing '-charset' parameter value\n");
}
my $lc_charset = lc ($charset);
my $alias_charset = $_Charset_Aliases->{$lc_charset};
my $true_charset = defined($alias_charset) ? $_Charset_Names->{$alias_charset} : $_Charset_Names->{$lc_charset};
if (! defined $true_charset) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::from_utf8() - character set '$charset' is not supported\n");
}
$string = '' if (! defined ($string));
my $converter = $_Supported_Charsets->{$true_charset};
my $result;
if ($converter eq 'map8') { $result = _unicode_map8_from_utf8 ($string,$true_charset); }
elsif ($converter eq 'unicode-map') { $result = _unicode_map_from_utf8 ($string,$true_charset); }
elsif ($converter eq 'string') { $result = _unicode_string_from_utf8 ($string,$true_charset); }
elsif ($converter eq 'jcode') { $result = _jcode_from_utf8 ($string,$true_charset); }
else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::from_utf8() - charset '$charset' is not supported\n");
}
return $result;
}
######################################################################
#
# _unicode_map_from_utf8($string,$target_charset);
#
# Returns the string converted from UTF8 to the specified target multibyte charset.
#
sub _unicode_map_from_utf8 {
my ($string,$target_charset) = @_;
if (! defined $target_charset) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . '::_unicode_map_from_utf8() - (line ' . __LINE__ . ") No target character set specified\n");
}
my $ucs2 = from_utf8 ({ -string => $string, -charset => 'ucs2' });
my $target = Unicode::Map->new($target_charset);
if (! defined $target) {
confess( '[' . localtime(time) . '] ' . __PACKAGE__ . '::_unicode_map_from_utf8() - (line ' . __LINE__ . ") failed to instantate Unicode::Map object for charset '$target_charset': $!\n");
}
my $result = $target->from_unicode($ucs2);
return $result;
}
######################################################################
#
# _unicode_map_to_utf8($string,$source_charset);
#
# Returns the string converted the specified target multibyte charset to UTF8.
#
sub _unicode_map_to_utf8 {
my ($string,$source_charset) = @_;
if (! defined $source_charset) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . '::_unicode_map_to_utf8() - (line ' . __LINE__ . ") No source character set specified\n");
}
my $source = Unicode::Map->new($source_charset);
if (! defined $source) {
confess('[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_map_to_utf8() - (line " . __LINE__ . ") failed to instantate a Unicode::Map object: $!\n");
}
my $ucs2 = $source->to_unicode($string);
my $result = to_utf8({ -string => $ucs2, -charset => 'ucs2' });
return $result;
}
######################################################################
#
# _unicode_map8_from_utf8($string,$target_charset);
#
# Returns the string converted from UTF8 to the specified target 8bit charset.
#
sub _unicode_map8_from_utf8 {
my ($string,$target_charset) = @_;
if (! defined $target_charset) {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . '::_unicode_map8_from_utf8() - (line ' . __LINE__ . ") No target character set specified\n");
}
my $u = Unicode::String::utf8($string);
if (! defined $u) {
confess( '[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_map8_from_utf8() - (line " . __LINE__ . ") failed to instantate Unicode::String::utf8 object: $!\n");
}
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
my $ucs2_string = $u->ucs2;
my $target = Unicode::Map8->new($target_charset);
if (! defined $target) {
confess( '[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_map8_from_utf8() - (line " . __LINE__ . ") ailed to instantate Unicode::Map8 object for character set '$target_charset': $!\n");
}
my $result = $target->to8($ucs2_string);
return $result;
}
######################################################################
#
# _unicode_map8_to_utf8($string,$source_charset);
#
# Returns the string converted the specified target 8bit charset to UTF8.
#
#
sub _unicode_map8_to_utf8 {
my ($string,$source_charset) = @_;
my $source = Unicode::Map8->new($source_charset);
if (! defined $source) {
confess('[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_map8_to_utf8() - (line " . __LINE__ . ") failed to instantate a Unicode::Map8 object for character set '$source_charset': $!\n");
}
my $ucs2_string = $source->tou($string);
if (! defined $ucs2_string) {
confess('[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_map8_to_utf8() - (line " . __LINE__ . ") failed to instantate a Unicode::String::utf16 object: $!\n");
}
my $utf8_string = $ucs2_string->utf8;
return $utf8_string;
}
######################################################################
#
# _unicode_string_from_utf8($string,$target_charset);
#
# Returns the string converted from UTF8 to the specified unicode encoding.
#
sub _unicode_string_from_utf8 {
my ($string,$target_charset) = @_;
$target_charset = lc ($target_charset);
my $final;
if ($target_charset eq 'utf8') {
$final = $string;
} elsif ($target_charset eq 'ucs2') {
my $u = Unicode::String::utf8($string);
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->ucs2;
} elsif ($target_charset eq 'ucs4') {
my $u = Unicode::String::utf8($string);
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->ucs4;
} elsif ($target_charset eq 'utf16') {
my $u = Unicode::String::utf8($string);
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->utf16;
} elsif ($target_charset eq 'utf7') {
my $u = Unicode::String::utf8($string);
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->utf7;
} else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_string_from_utf8() - charset '$target_charset' is not supported\n");
}
return $final;
}
######################################################################
#
# _unicode_string_to_utf8($string,$source_charset);
#
# Returns the string converted the specified unicode encoding to UTF8.
#
sub _unicode_string_to_utf8 {
my ($string,$source_charset) = @_;
$source_charset = lc ($source_charset);
my $final;
if ($source_charset eq 'utf8') {
$final = $string;
} elsif ($source_charset eq 'ucs2') {
my $u = Unicode::String::utf16($string);
if (! defined $u) {
confess('[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_string_to_utf8() - (line " . __LINE__ . ") failed to instantate a Unicode::String::utf16 object: $!\n");
}
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->utf8;
} elsif ($source_charset eq 'ucs4') {
my $u = Unicode::String::ucs4($string);
if (! defined $u) {
confess('[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_string_to_utf8() - (line " . __LINE__ . ") failed to instantate a Unicode::String::ucs4 object: $!\n");
}
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->utf8;
} elsif ($source_charset eq 'utf16') {
my $u = Unicode::String::utf16($string);
if (! defined $u) {
confess('[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_string_to_utf8() - (line " . __LINE__ . ") failed to instantate a Unicode::String::utf16 object: $!\n");
}
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->utf8;
} elsif ($source_charset eq 'utf7') {
my $u = Unicode::String::utf7($string);
if (! defined $u) {
confess('[' . localtime(time) . '] ' . __PACKAGE__ . "::_unicode_string_to_utf8() - (line " . __LINE__ . ") failed to instantate a Unicode::String::utf7 object: $!\n");
}
my $ordering = $u->ord;
$u->byteswap if (defined($ordering) && ($ordering == 0xFFFE));
$final = $u->utf8;
} else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . ":: _unicode_string_to_utf8() - charset '$source_charset' is not supported\n");
}
return $final;
}
######################################################################
#
# _jcode_from_utf8($string,$target_charset);
#
# Returns the string converted from UTF8 to the specified Jcode encoding.
#
sub _jcode_from_utf8 {
my ($string,$target_charset) = @_;
my $j = Jcode->new($string,'utf8');
$target_charset = lc ($target_charset);
my $final;
if ($target_charset eq 'iso-2022-jp') {
$final = $j->iso_2022_jp;
} elsif ($target_charset eq 'sjis') {
$final = $j->sjis;
} elsif ($target_charset eq 'euc-jp') {
$final = $j->euc;
} elsif ($target_charset eq 'jis') {
$final = $j->jis;
} else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::_jcode_from_utf8() - charset '$target_charset' is not supported\n");
}
return $final;
}
######################################################################
#
# _jcode_to_utf8($string,$source_charset);
#
# Returns the string converted from the specified Jcode encoding to UTF8.
#
sub _jcode_to_utf8 {
my ($string,$source_charset) = @_;
$source_charset = lc ($source_charset);
my $final;
if ($source_charset eq 'iso-2022-jp') {
my $j = Jcode->new($string,$source_charset);
$final = $j->utf8;
} elsif ($source_charset =~m/^(s[-_]?jis|shift[-_]?jis)$/) {
my $j = Jcode->new($string,$source_charset);
$final = $j->utf8;
} elsif ($source_charset eq 'euc-jp') {
my $j = Jcode->new($string,$source_charset);
$final = $j->utf8;
} elsif ($source_charset eq 'jis') {
my $j = Jcode->new($string,$source_charset);
$final = $j->utf8;
} else {
croak( '[' . localtime(time) . '] ' . __PACKAGE__ . "::_jcode_to_utf8() - charset '$source_charset' is not supported\n");
}
return $final;
}
#######################################################################
#
# Character set handlers maps
#
sub _init_charsets {
$_Charset_Aliases = {};
$_Supported_Charsets = {
'utf8' => 'string',
'ucs2' => 'string',
'ucs4' => 'string',
'utf7' => 'string',
'utf16' => 'string',
'sjis' => 'jcode',
's-jis' => 'jcode',
's_jis' => 'jcode',
'shiftjis' => 'jcode',
'shift-jis' => 'jcode',
'shift_jis' => 'jcode',
'iso-2022-jp' => 'jcode',
'jis' => 'jcode',
'euc-jp' => 'jcode',
};
$_Charset_Names = { map { lc ($_) => $_ } keys %$_Supported_Charsets };
# All the Unicode::Map8 charsets
{
my @map_ids = &_list_unicode_map8_charsets;
foreach my $id (@map_ids) {
my $lc_id = lc ($id);
next if (exists ($_Charset_Names->{$lc_id}));
$_Supported_Charsets->{$id} = 'map8';
$_Charset_Names->{$lc_id} = $id;
}
}
$_Charset_Names = { map { lc ($_) => $_ } keys %$_Supported_Charsets };
# Add any charsets not already listed from Unicode::Map
{
my $unicode_map = Unicode::Map->new;
my @map_ids = $unicode_map->ids;
foreach my $id (@map_ids) {
my $lc_id = lc ($id);
next if (exists ($_Charset_Names->{$lc_id}));
$_Supported_Charsets->{$id} = 'unicode-map';
$_Charset_Names->{$lc_id} = $id;
}
}
}
######################################################################
#
# Code taken and modified from the 'usr/bin/umap' code distributed
# with Unicode::Map8. It wouldn't be necessary if Unicode::Map8
# had a direct method for this....
#
sub _list_unicode_map8_charsets {
my %set = (
ucs4 => {},
ucs2 => {utf16 => 1},
utf7 => {},
utf8 => {},
);
if (opendir(DIR, $Unicode::Map8::MAPS_DIR)) {
my @files = grep(!/^\.\.?$/,readdir(DIR));
foreach my $f (@files) {
next unless -f "$Unicode::Map8::MAPS_DIR/$f";
$f =~ s/\.(?:bin|txt)$//;
my $supported =
$set{$f} = {} if Unicode::Map8->new($f);
}
}
my $avoid_warning = keys %Unicode::Map8::ALIASES;
while ( my($alias, $charset) = each %Unicode::Map8::ALIASES) {
if (exists $set{$charset}) {
$set{$charset}{$alias} = 1;
}
}
my %merged_set = ();
foreach my $encoding (keys %set) {
$merged_set{$encoding} = 1;
my $set_item = $set{$encoding};
while (my ($key,$value) = each (%$set_item)) {
$merged_set{$key} = $value;
}
}
my @final_charsets = sort keys %merged_set;
return @final_charsets;
}
######################################################################
=head1 VERSION
1.09 2001.08.22
=head1 COPYRIGHT
Copyright September, 2000 Benjamin Franz. All rights reserved.
This software is free software. You can redistribute it
and/or modify it under the same terms as Perl itself.
=head1 AUTHOR
Benjamin Franz <snowhare@nihongo.org>
=head1 TODO
Regression tests for Jcode, 2-byte encodings and encoding aliases
=head1 SEE ALSO
Unicode::String Unicode::Map8 Unicode::Map Jcode
=cut
1;
|