/usr/share/perl/5.14.2/Locale/Codes.pm is in perl-modules 5.14.2-6ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Locale::Codes;
# Copyright (C) 2001 Canon Research Centre Europe (CRE).
# Copyright (C) 2002-2009 Neil Bowers
# Copyright (c) 2010-2011 Sullivan Beck
# This program is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
use strict;
use warnings;
require 5.002;
use Carp;
#=======================================================================
# Public Global Variables
#=======================================================================
# This module is not called directly... %Data is filled in by the
# calling modules.
our($VERSION,%Data);
# $Data{ TYPE }{ code2id }{ CODESET } { CODE } = [ ID, I ]
# { id2code }{ CODESET } { ID } = CODE
# { id2names }{ ID } = [ NAME, NAME, ... ]
# { alias2id }{ NAME } = [ ID, I ]
# { id } = FIRST_UNUSED_ID
# { codealias }{ CODESET } { ALIAS } = CODE
$VERSION='3.16';
#=======================================================================
#
# _code2name ( TYPE,CODE,CODESET )
#
#=======================================================================
sub _code2name {
my($type,$code,$codeset) = @_;
$code = $Data{$type}{'codealias'}{$codeset}{$code}
if (exists $Data{$type}{'codealias'}{$codeset}{$code});
if (exists $Data{$type}{'code2id'}{$codeset} &&
exists $Data{$type}{'code2id'}{$codeset}{$code}) {
my ($id,$i) = @{ $Data{$type}{'code2id'}{$codeset}{$code} };
my $name = $Data{$type}{'id2names'}{$id}[$i];
return $name;
} else {
#---------------------------------------------------------------
# no such code!
#---------------------------------------------------------------
return undef;
}
}
#=======================================================================
#
# _name2code ( TYPE,NAME,CODESET )
#
#=======================================================================
sub _name2code {
my($type,$name,$codeset) = @_;
$name = "" if (! $name);
$name = lc($name);
if (exists $Data{$type}{'alias2id'}{$name}) {
my $id = $Data{$type}{'alias2id'}{$name}[0];
if (exists $Data{$type}{'id2code'}{$codeset}{$id}) {
return $Data{$type}{'id2code'}{$codeset}{$id};
}
}
#---------------------------------------------------------------
# no such name!
#---------------------------------------------------------------
return undef;
}
#=======================================================================
#
# _code2code ( TYPE,CODE,CODESET )
#
#=======================================================================
sub _code2code {
my($type,$code,$inset,$outset) = @_;
my $name = _code2name($type,$code,$inset);
my $outcode = _name2code($type,$name,$outset);
return $outcode;
}
#=======================================================================
#
# _all_codes ( TYPE,CODESET )
#
#=======================================================================
sub _all_codes {
my($type,$codeset) = @_;
if (! exists $Data{$type}{'code2id'}{$codeset}) {
return ();
}
my @codes = keys %{ $Data{$type}{'code2id'}{$codeset} };
return (sort @codes);
}
#=======================================================================
#
# _all_names ( TYPE,CODESET )
#
#=======================================================================
sub _all_names {
my($type,$codeset) = @_;
my @codes = _all_codes($type,$codeset);
return () if (! @codes);
my @names;
foreach my $code (@codes) {
my($id,$i) = @{ $Data{$type}{'code2id'}{$codeset}{$code} };
my $name = $Data{$type}{'id2names'}{$id}[$i];
push(@names,$name);
}
return (sort @names);
}
#=======================================================================
#
# _rename ( TYPE,CODE,NAME,CODESET )
#
# Change the official name for a code. The original is retained
# as an alias, but the new name will be returned if you lookup the
# name from code.
#
#=======================================================================
sub _rename {
my($type,$code,$new_name,$codeset,$nowarn) = @_;
if (! $codeset) {
carp "rename_$type(): unknown codeset\n" unless ($nowarn);
return 0;
}
$code = $Data{$type}{'codealias'}{$codeset}{$code}
if (exists $Data{$type}{'codealias'}{$codeset}{$code});
# Check that $code exists in the codeset.
my $id;
if (exists $Data{$type}{'code2id'}{$codeset}{$code}) {
$id = $Data{$type}{'code2id'}{$codeset}{$code}[0];
} else {
carp "rename_$type(): unknown code: $code\n" unless ($nowarn);
return 0;
}
# Cases:
# 1. Renaming to a name which exists with a different ID
# Error
#
# 2. Renaming to a name which exists with the same ID
# Just change code2id (I value)
#
# 3. Renaming to a new name
# Create a new alias
# Change code2id (I value)
if (exists $Data{$type}{'alias2id'}{lc($new_name)}) {
# Existing name (case 1 and 2)
my ($new_id,$i) = @{ $Data{$type}{'alias2id'}{lc($new_name)} };
if ($new_id != $id) {
# Case 1
carp "rename_$type(): rename to an existing $type not allowed\n"
unless ($nowarn);
return 0;
}
# Case 2
$Data{$type}{'code2id'}{$codeset}{$code}[1] = $i;
} else {
# Case 3
push @{ $Data{$type}{'id2names'}{$id} },$new_name;
my $i = $#{ $Data{$type}{'id2names'}{$id} };
$Data{$type}{'alias2id'}{lc($new_name)} = [ $id,$i ];
$Data{$type}{'code2id'}{$codeset}{$code}[1] = $i;
}
return 1;
}
#=======================================================================
#
# _add_code ( TYPE,CODE,NAME,CODESET )
#
# Add a new code to the codeset. Both CODE and NAME must be
# unused in the code set.
#
#=======================================================================
sub _add_code {
my($type,$code,$name,$codeset,$nowarn) = @_;
if (! $codeset) {
carp "add_$type(): unknown codeset\n" unless ($nowarn);
return 0;
}
# Check that $code is unused.
if (exists $Data{$type}{'code2id'}{$codeset}{$code} ||
exists $Data{$type}{'codealias'}{$codeset}{$code}) {
carp "add_$type(): code already in use: $code\n" unless ($nowarn);
return 0;
}
# Check to see that $name is unused in this code set. If it is
# used (but not in this code set), we'll use that ID. Otherwise,
# we'll need to get the next available ID.
my ($id,$i);
if (exists $Data{$type}{'alias2id'}{lc($name)}) {
($id,$i) = @{ $Data{$type}{'alias2id'}{lc($name)} };
if (exists $Data{$type}{'id2code'}{$codeset}{$id}) {
carp "add_$type(): name already in use: $name\n" unless ($nowarn);
return 0;
}
} else {
$id = $Data{$type}{'id'}++;
$i = 0;
$Data{$type}{'alias2id'}{lc($name)} = [ $id,$i ];
$Data{$type}{'id2names'}{$id} = [ $name ];
}
# Add the new code
$Data{$type}{'code2id'}{$codeset}{$code} = [ $id,$i ];
$Data{$type}{'id2code'}{$codeset}{$id} = $code;
return 1;
}
#=======================================================================
#
# _delete_code ( TYPE,CODE,CODESET )
#
# Delete a code from the codeset.
#
#=======================================================================
sub _delete_code {
my($type,$code,$codeset,$nowarn) = @_;
if (! $codeset) {
carp "delete_$type(): unknown codeset\n" unless ($nowarn);
return 0;
}
$code = $Data{$type}{'codealias'}{$codeset}{$code}
if (exists $Data{$type}{'codealias'}{$codeset}{$code});
# Check that $code is valid.
if (! exists $Data{$type}{'code2id'}{$codeset}{$code}) {
carp "delete_$type(): code does not exist: $code\n" unless ($nowarn);
return 0;
}
# Delete the code
my $id = $Data{$type}{'code2id'}{$codeset}{$code}[0];
delete $Data{$type}{'code2id'}{$codeset}{$code};
delete $Data{$type}{'id2code'}{$codeset}{$id};
# Delete any aliases that are linked to this code
foreach my $alias (keys %{ $Data{$type}{'codealias'}{$codeset} }) {
next if ($Data{$type}{'codealias'}{$codeset}{$alias} ne $code);
delete $Data{$type}{'codealias'}{$codeset}{$alias};
}
# If this ID is not used in any other codeset, delete it completely.
foreach my $c (keys %{ $Data{$type}{'id2code'} }) {
return 1 if (exists $Data{$type}{'id2code'}{$c}{$id});
}
my @names = @{ $Data{$type}{'id2names'}{$id} };
delete $Data{$type}{'id2names'}{$id};
foreach my $name (@names) {
delete $Data{$type}{'alias2id'}{lc($name)};
}
return 1;
}
#=======================================================================
#
# _add_alias ( TYPE,NAME,NEW_NAME )
#
# Add a new alias. NAME must exist, and NEW_NAME must be unused.
#
#=======================================================================
sub _add_alias {
my($type,$name,$new_name,$nowarn) = @_;
# Check that $name is used and $new_name is new.
my($id);
if (exists $Data{$type}{'alias2id'}{lc($name)}) {
$id = $Data{$type}{'alias2id'}{lc($name)}[0];
} else {
carp "add_${type}_alias(): name does not exist: $name\n" unless ($nowarn);
return 0;
}
if (exists $Data{$type}{'alias2id'}{lc($new_name)}) {
carp "add_${type}_alias(): alias already in use: $new_name\n" unless ($nowarn);
return 0;
}
# Add the new alias
push @{ $Data{$type}{'id2names'}{$id} },$new_name;
my $i = $#{ $Data{$type}{'id2names'}{$id} };
$Data{$type}{'alias2id'}{lc($new_name)} = [ $id,$i ];
return 1;
}
#=======================================================================
#
# _delete_alias ( TYPE,NAME )
#
# This deletes a name from the list of names used by an element.
# NAME must be used, but must NOT be the only name in the list.
#
# Any id2name that references this name will be changed to
# refer to the first name in the list.
#
#=======================================================================
sub _delete_alias {
my($type,$name,$nowarn) = @_;
# Check that $name is used.
my($id,$i);
if (exists $Data{$type}{'alias2id'}{lc($name)}) {
($id,$i) = @{ $Data{$type}{'alias2id'}{lc($name)} };
} else {
carp "delete_${type}_alias(): name does not exist: $name\n" unless ($nowarn);
return 0;
}
my $n = $#{ $Data{$type}{'id2names'}{$id} };
if ($n == 1) {
carp "delete_${type}_alias(): only one name defined (use _delete_${type} instead)\n"
unless ($nowarn);
return 0;
}
# Delete the alias.
splice (@{ $Data{$type}{'id2names'}{$id} },$i,1);
delete $Data{$type}{'alias2id'}{lc($name)};
# Every element that refers to this ID:
# Ignore if I < $i
# Set to 0 if I = $i
# Decrement if I > $i
foreach my $codeset (keys %{ $Data{'code2id'} }) {
foreach my $code (keys %{ $Data{'code2id'}{$codeset} }) {
my($jd,$j) = @{ $Data{'code2id'}{$codeset}{$code} };
next if ($jd ne $id ||
$j < $i);
if ($i == $j) {
$Data{'code2id'}{$codeset}{$code}[1] = 0;
} else {
$Data{'code2id'}{$codeset}{$code}[1]--;
}
}
}
return 1;
}
#=======================================================================
#
# _rename_code ( TYPE,CODE,NEW_CODE,CODESET )
#
# Change the official code. The original is retained as an alias, but
# the new name will be returned if you lookup the code from name.
#
#=======================================================================
sub _rename_code {
my($type,$code,$new_code,$codeset,$nowarn) = @_;
if (! $codeset) {
carp "rename_$type(): unknown codeset\n" unless ($nowarn);
return 0;
}
$code = $Data{$type}{'codealias'}{$codeset}{$code}
if (exists $Data{$type}{'codealias'}{$codeset}{$code});
# Check that $code exists in the codeset.
if (! exists $Data{$type}{'code2id'}{$codeset}{$code}) {
carp "rename_$type(): unknown code: $code\n" unless ($nowarn);
return 0;
}
# Cases:
# 1. Renaming code to an existing alias of this code:
# Make the alias real and the code an alias
#
# 2. Renaming code to some other existing alias:
# Error
#
# 3. Renaming code to some other code:
# Error (
#
# 4. Renaming code to a new code:
# Make code into an alias
# Replace code with new_code.
if (exists $Data{$type}{'codealias'}{$codeset}{$new_code}) {
# Cases 1 and 2
if ($Data{$type}{'codealias'}{$codeset}{$new_code} eq $code) {
# Case 1
delete $Data{$type}{'codealias'}{$codeset}{$new_code};
} else {
# Case 2
carp "rename_$type(): new code already in use: $new_code\n" unless ($nowarn);
return 0;
}
} elsif (exists $Data{$type}{'code2id'}{$codeset}{$new_code}) {
# Case 3
carp "rename_$type(): new code already in use: $new_code\n" unless ($nowarn);
return 0;
}
# Cases 1 and 4
$Data{$type}{'codealias'}{$codeset}{$code} = $new_code;
my $id = $Data{$type}{'code2id'}{$codeset}{$code}[0];
$Data{$type}{'code2id'}{$codeset}{$new_code} = $Data{$type}{'code2id'}{$codeset}{$code};
delete $Data{$type}{'code2id'}{$codeset}{$code};
$Data{$type}{'id2code'}{$codeset}{$id} = $new_code;
return 1;
}
#=======================================================================
#
# _add_code_alias ( TYPE,CODE,NEW_CODE,CODESET )
#
# Adds an alias for the code.
#
#=======================================================================
sub _add_code_alias {
my($type,$code,$new_code,$codeset,$nowarn) = @_;
if (! $codeset) {
carp "add_${type}_code_alias(): unknown codeset\n" unless ($nowarn);
return 0;
}
$code = $Data{$type}{'codealias'}{$codeset}{$code}
if (exists $Data{$type}{'codealias'}{$codeset}{$code});
# Check that $code exists in the codeset and that $new_code
# does not exist.
if (! exists $Data{$type}{'code2id'}{$codeset}{$code}) {
carp "add_${type}_code_alias(): unknown code: $code\n" unless ($nowarn);
return 0;
}
if (exists $Data{$type}{'code2id'}{$codeset}{$new_code} ||
exists $Data{$type}{'codealias'}{$codeset}{$new_code}) {
carp "add_${type}_code_alias(): code already in use: $new_code\n" unless ($nowarn);
return 0;
}
# Add the alias
$Data{$type}{'codealias'}{$codeset}{$new_code} = $code;
return 1;
}
#=======================================================================
#
# _delete_code_alias ( TYPE,CODE,CODESET )
#
# Deletes an alias for the code.
#
#=======================================================================
sub _delete_code_alias {
my($type,$code,$codeset,$nowarn) = @_;
if (! $codeset) {
carp "delete_${type}_code_alias(): unknown codeset\n" unless ($nowarn);
return 0;
}
# Check that $code exists in the codeset as an alias.
if (! exists $Data{$type}{'codealias'}{$codeset}{$code}) {
carp "delete_${type}_code_alias(): no alias defined: $code\n" unless ($nowarn);
return 0;
}
# Delete the alias
delete $Data{$type}{'codealias'}{$codeset}{$code};
return 1;
}
#=======================================================================
#
# alias_code ( ALIAS => CODE [ , CODESET ] )
#
# Add an alias for an existing code. If the CODESET isn't specified,
# then we use the default (currently the alpha-2 codeset).
#
# Locale::Country::alias_code('uk' => 'gb');
#
#=======================================================================
# sub alias_code {
# my $nowarn = 0;
# $nowarn = 1, pop if ($_[$#_] eq "nowarn");
# my $alias = shift;
# my $code = shift;
# my $codeset = @_ > 0 ? shift : LOCALE_CODE_DEFAULT;
# return 0 if ($codeset !~ /^\d+$/);
# if ($codeset == LOCALE_CODE_ALPHA_2) {
# $codeset = "alpha2";
# $alias = lc($alias);
# } elsif ($codeset == LOCALE_CODE_ALPHA_3) {
# $codeset = "alpha3";
# $alias = lc($alias);
# } elsif ($codeset == LOCALE_CODE_FIPS) {
# $codeset = "fips";
# $alias = uc($alias);
# } elsif ($codeset == LOCALE_CODE_NUMERIC) {
# $codeset = "num";
# return undef if ($alias =~ /\D/);
# $alias = sprintf("%.3d", $alias);
# } else {
# carp "rename_country(): unknown codeset\n" unless ($nowarn);
# return 0;
# }
# # Check that $code exists in the codeset.
# my ($id,$i);
# if (exists $Data{$type}{'code2id'}{$codeset}{$code}) {
# ($id,$i) = @{ $Data{$type}{'code2id'}{$codeset}{$code} };
# } else {
# carp "alias_code: attempt to alias \"$alias\" to unknown country code \"$code\"\n"
# unless ($nowarn);
# return 0;
# }
# # Cases:
# # The alias already exists.
# # Error
# #
# # It's new
# # Create a new entry in Code2CountryID
# # Replace the entiry in CountryID2Code
# # Regenerate %Codes
# if (exists $Data{$type}{'code2id'}{$codeset}{$alias}) {
# carp "alias_code: attempt to alias \"$alias\" which is already in use\n"
# unless ($nowarn);
# return 0;
# }
# $Data{$type}{'code2id'}{$codeset}{$alias} = [ $id, $i ];
# $Data{$type}{'id2names'}ID2Code{$codeset}{$id} = $alias;
# my @codes = keys %{ $Data{$type}{'code2id'}{$codeset} };
# $Locale::CountryCodes::Codes{$codeset} = [ sort @codes ];
# return $alias;
# }
1;
# Local Variables:
# mode: cperl
# indent-tabs-mode: nil
# cperl-indent-level: 3
# cperl-continued-statement-offset: 2
# cperl-continued-brace-offset: 0
# cperl-brace-offset: 0
# cperl-brace-imaginary-offset: 0
# cperl-label-offset: -2
# End:
|