/usr/share/perl5/Rose/DB/Oracle.pm is in librose-db-perl 0.775-1.
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 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 | package Rose::DB::Oracle;
use strict;
use Carp();
use SQL::ReservedWords::Oracle();
use Rose::DB;
our $Debug = 0;
our $VERSION = '0.767';
use Rose::Class::MakeMethods::Generic
(
inheritable_scalar => '_default_post_connect_sql',
);
__PACKAGE__->_default_post_connect_sql
(
[
q(ALTER SESSION SET NLS_DATE_FORMAT = ') .
($ENV{'NLS_DATE_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS') . q('),
q(ALTER SESSION SET NLS_TIMESTAMP_FORMAT = ') .
($ENV{'NLS_TIMESTAMP_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS.FF') . q('),
q(ALTER SESSION SET NLS_TIMESTAMP_TZ_FORMAT = ') .
($ENV{'NLS_TIMESTAMP_TZ_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS.FF TZHTZM') . q('),
]
);
sub default_post_connect_sql
{
my($class) = shift;
if(@_)
{
if(@_ == 1 && ref $_[0] eq 'ARRAY')
{
$class->_default_post_connect_sql(@_);
}
else
{
$class->_default_post_connect_sql([ @_ ]);
}
}
return $class->_default_post_connect_sql;
}
sub post_connect_sql
{
my($self) = shift;
unless(@_)
{
return wantarray ?
( @{ $self->default_post_connect_sql || [] }, @{$self->{'post_connect_sql'} || [] } ) :
[ @{ $self->default_post_connect_sql || [] }, @{$self->{'post_connect_sql'} || [] } ];
}
if(@_ == 1 && ref $_[0] eq 'ARRAY')
{
$self->{'post_connect_sql'} = $_[0];
}
else
{
$self->{'post_connect_sql'} = [ @_ ];
}
return wantarray ?
( @{ $self->default_post_connect_sql || [] }, @{$self->{'post_connect_sql'} || [] } ) :
[ @{ $self->default_post_connect_sql || [] }, @{$self->{'post_connect_sql'} || [] } ];
}
sub schema
{
my($self) = shift;
$self->{'schema'} = shift if(@_);
return $self->{'schema'} || $self->username;
}
sub use_auto_sequence_name { 1 }
sub auto_sequence_name
{
my($self, %args) = @_;
my($table) = $args{'table'};
Carp::croak 'Missing table argument' unless(defined $table);
my($column) = $args{'column'};
Carp::croak 'Missing column argument' unless(defined $column);
return uc "${table}_${column}_SEQ";
}
sub build_dsn
{
my($self_or_class, %args) = @_;
my $database = $args{'db'} || $args{'database'};
if($args{'host'} || $args{'port'})
{
$args{'sid'} = $database;
return 'dbi:Oracle:' .
join(';', map { "$_=$args{$_}" } grep { $args{$_} } qw(sid host port));
}
return "dbi:Oracle:$database";
}
sub init_date_handler { Rose::DB::Oracle::DateHandler->new }
sub database_version
{
my($self) = shift;
return $self->{'database_version'} if (defined $self->{'database_version'});
my($version) = $self->dbh->get_info(18); # SQL_DBMS_VER.
# Convert to an integer, e.g., 10.02.0100 -> 100020100
if($version =~ /^(\d+)\.(\d+)(?:\.(\d+))?/)
{
$version = sprintf('%d%03d%04d', $1, $2, $3);
}
return $self->{'database_version'} = $version;
}
sub dbi_driver { 'Oracle' }
sub likes_uppercase_table_names { 1 }
sub likes_uppercase_schema_names { 1 }
sub likes_uppercase_catalog_names { 1 }
sub likes_uppercase_sequence_names { 1 }
sub insertid_param { '' }
sub list_tables
{
my($self, %args) = @_;
my $types = $args{'include_views'} ? "'TABLE','VIEW'" : 'TABLE';
my($error, @tables);
TRY:
{
local $@;
eval
{
my($dbh) = $self->dbh or die $self->error;
local $dbh->{'RaiseError'} = 1;
local $dbh->{'FetchHashKeyName'} = 'NAME';
my $sth = $dbh->table_info($self->catalog, uc $self->schema, '%', $types);
my $info = $sth->fetchall_arrayref({}); # The {} are mandatory.
for my $table (@$info)
{
push @tables, $$table{'TABLE_NAME'} if ($$table{'TABLE_NAME'} !~ /^BIN\$.+\$.+/);
}
};
$error = $@;
}
if($error)
{
Carp::croak 'Could not list tables from ', $self->dsn, " - $error";
}
return wantarray ? @tables : \@tables;
}
sub next_value_in_sequence
{
my($self, $sequence_name) = @_;
my $dbh = $self->dbh or return undef;
my($error, $value);
TRY:
{
local $@;
eval
{
local $dbh->{'PrintError'} = 0;
local $dbh->{'RaiseError'} = 1;
my $sth = $dbh->prepare("SELECT $sequence_name.NEXTVAL FROM DUAL");
$sth->execute;
$value = ${$sth->fetch}[0];
$sth->finish;
};
$error = $@;
}
if($error)
{
$self->error("Could not get the next value in the sequence $sequence_name - $error");
return undef;
}
return $value;
}
# Tried to execute a CURRVAL command on a sequence before the
# NEXTVAL command was executed at least once.
use constant ORA_08002 => 8002;
sub current_value_in_sequence
{
my($self, $sequence_name) = @_;
my $dbh = $self->dbh or return undef;
my($error, $value);
TRY:
{
local $@;
eval
{
local $dbh->{'PrintError'} = 0;
local $dbh->{'RaiseError'} = 1;
my $sth = $dbh->prepare("SELECT $sequence_name.CURRVAL FROM DUAL");
$sth->execute;
$value = ${$sth->fetch}[0];
$sth->finish;
};
$error = $@;
}
if($error)
{
if(DBI->err == ORA_08002)
{
if(defined $self->next_value_in_sequence($sequence_name))
{
return $self->current_value_in_sequence($sequence_name);
}
}
$self->error("Could not get the current value in the sequence $sequence_name - $error");
return undef;
}
return $value;
}
# Sequence does not exist, or the user does not have the required
# privilege to perform this operation.
use constant ORA_02289 => 2289;
sub sequence_exists
{
my($self, $sequence_name) = @_;
my $dbh = $self->dbh or return undef;
my $error;
TRY:
{
local $@;
eval
{
local $dbh->{'PrintError'} = 0;
local $dbh->{'RaiseError'} = 1;
my $sth = $dbh->prepare("SELECT $sequence_name.CURRVAL FROM DUAL");
$sth->execute;
$sth->fetch;
$sth->finish;
};
$error = $@;
}
if($error)
{
my $dbi_error = DBI->err;
if($dbi_error == ORA_08002)
{
if(defined $self->next_value_in_sequence($sequence_name))
{
return $self->sequence_exists($sequence_name);
}
}
elsif($dbi_error == ORA_02289)
{
return 0;
}
$self->error("Could not check if sequence $sequence_name exists - $error");
return undef;
}
return 1;
}
sub parse_dbi_column_info_default
{
my($self, $default, $col_info) = @_;
# For some reason, given a default value like this:
#
# MYCOLUMN VARCHAR(128) DEFAULT 'foo' NOT NULL
#
# DBD::Oracle hands back a COLUMN_DEF value of:
#
# $col_info->{'COLUMN_DEF'} = "'foo' "; # WTF?
#
# I have no idea why. Anyway, we just want the value beteen the quotes.
return undef unless (defined $default);
$default =~ s/^\s*'(.+)'\s*$/$1/;
return $default;
}
*is_reserved_word = \&SQL::ReservedWords::Oracle::is_reserved;
sub quote_identifier_for_sequence
{
my($self, $catalog, $schema, $table) = @_;
return join('.', map { uc } grep { defined } ($schema, $table));
}
# sub auto_quote_column_name
# {
# my($self, $name) = @_;
#
# if($name =~ /[^\w#]/ || $self->is_reserved_word($name))
# {
# return $self->quote_column_name($name, @_);
# }
#
# return $name;
# }
sub supports_schema { 1 }
sub max_column_name_length { 30 }
sub max_column_alias_length { 30 }
sub quote_column_name
{
my $name = uc $_[1];
$name =~ s/"/""/g;
return qq("$name");
}
sub quote_table_name
{
my $name = uc $_[1];
$name =~ s/"/""/g;
return qq("$name");
}
sub quote_identifier {
my($self) = shift;
my $method = ref($self)->parent_class . '::quote_identifier';
no strict 'refs';
return uc $self->$method(@_);
}
sub primary_key_column_names
{
my($self) = shift;
my %args = @_ == 1 ? (table => @_) : @_;
my $table = $args{'table'} or Carp::croak "Missing table name parameter";
my $schema = $args{'schema'} || $self->schema;
my $catalog = $args{'catalog'} || $self->catalog;
no warnings 'uninitialized';
$table = uc $table;
$schema = uc $schema;
$catalog = uc $catalog;
my $table_unquoted = $self->unquote_table_name($table);
my($error, $columns);
TRY:
{
local $@;
eval
{
$columns =
$self->_get_primary_key_column_names($catalog, $schema, $table_unquoted);
};
$error = $@;
}
if($error || !$columns)
{
no warnings 'uninitialized'; # undef strings okay
$error = 'no primary key columns found' unless(defined $error);
Carp::croak "Could not get primary key columns for catalog '" .
$catalog . "' schema '" . $schema . "' table '" .
$table_unquoted . "' - " . $error;
}
return wantarray ? @$columns : $columns;
}
sub format_limit_with_offset
{
my($self, $limit, $offset, $args) = @_;
delete $args->{'limit'};
delete $args->{'offset'};
if($offset)
{
# http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html
# select *
# from ( select /*+ FIRST_ROWS(n) */
# a.*, ROWNUM rnum
# from ( your_query_goes_here,
# with order by ) a
# where ROWNUM <=
# :MAX_ROW_TO_FETCH )
# where rnum >= :MIN_ROW_TO_FETCH;
my $size = $limit;
my $start = $offset + 1;
my $end = $start + $size - 1;
my $n = $offset + $limit;
$args->{'limit_prefix'} =
"SELECT * FROM (SELECT /*+ FIRST_ROWS($n) */\na.*, ROWNUM oracle_rownum FROM (";
#"SELECT * FROM (SELECT a.*, ROWNUM oracle_rownum FROM (";
$args->{'limit_suffix'} =
") a WHERE ROWNUM <= $end) WHERE oracle_rownum >= $start";
}
else
{
$args->{'limit_prefix'} = "SELECT /*+ FIRST_ROWS($limit) */ a.* FROM (";
#$args->{'limit_prefix'} = "SELECT a.* FROM (";
$args->{'limit_suffix'} = ") a WHERE ROWNUM <= $limit";
}
}
sub format_select_lock
{
my($self, $class, $lock, $tables) = @_;
$lock = { type => $lock } unless(ref $lock);
$lock->{'type'} ||= 'for update' if($lock->{'for_update'});
unless($lock->{'type'} eq 'for update')
{
Carp::croak "Invalid lock type: $lock->{'type'}";
}
my $sql = 'FOR UPDATE';
my @columns;
if(my $on = $lock->{'on'})
{
@columns = map { $self->column_sql_from_lock_on_value($class, $_, $tables) } @$on;
}
elsif(my $columns = $lock->{'columns'})
{
my %map;
if($tables)
{
my $tn = 1;
foreach my $table (@$tables)
{
(my $table_key = $table) =~ s/^(["']?)[^.]+\1\.//;
$map{$table_key} = 't' . $tn++;
}
}
@columns = map
{
ref $_ eq 'SCALAR' ? $$_ :
/^([^.]+)\.([^.]+)$/ ?
$self->auto_quote_column_with_table($2, defined $map{$1} ? $map{$1} : $1) :
$self->auto_quote_column_name($_)
}
@$columns;
}
if(@columns)
{
$sql .= ' OF ' . join(', ', @columns);
}
if($lock->{'nowait'})
{
$sql .= ' NOWAIT';
}
elsif(my $wait = $lock->{'wait'})
{
$sql .= " WAIT $wait";
}
if($lock->{'skip_locked'})
{
$sql .= ' SKIP LOCKED';
}
return $sql;
}
sub format_boolean { $_[1] ? 't' : 'f' }
#
# Date/time keywords and inlining
#
sub validate_date_keyword
{
no warnings;
$_[1] =~ /^(?:CURRENT_|SYS|LOCAL)(?:TIMESTAMP|DATE)$/i ||
($_[0]->keyword_function_calls && $_[1] =~ /^\w+\(.*\)$/);
}
*validate_time_keyword = \&validate_date_keyword;
*validate_timestamp_keyword = \&validate_date_keyword;
*validate_datetime_keyword = \&validate_date_keyword;
sub should_inline_date_keyword { 1 }
sub should_inline_datetime_keyword { 1 }
sub should_inline_time_keyword { 1 }
sub should_inline_timestamp_keyword { 1 }
package Rose::DB::Oracle::DateHandler;
use Rose::Object;
our @ISA = qw(Rose::Object);
use DateTime::Format::Oracle;
sub parse_date
{
my($self, $value) = @_;
local $DateTime::Format::Oracle::nls_date_format = $ENV{'NLS_DATE_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS';
# Add or extend the time to appease DateTime::Format::Oracle
if($value =~ /\d\d:/)
{
$value =~ s/( \d\d:\d\d)([^:]|$)/$1:00$2/;
}
else
{
$value .= ' 00:00:00';
}
return DateTime::Format::Oracle->parse_date($value);
}
*parse_datetime = \&parse_date;
sub parse_timestamp
{
my($self, $value) = @_;
local $DateTime::Format::Oracle::nls_timestamp_format =
$ENV{'NLS_TIMESTAMP_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS.FF';
# Add, extend, or truncate fractional seconds to appease DateTime::Format::Oracle
for($value)
{
s/( \d\d:\d\d:\d\d)(?!\.)/$1.000000/ ||
s/( \d\d:\d\d:\d\d\.)(\d{1,5})(\D|$)/ "$1$2" . ('0' x (6 - length($2))) . $3/e ||
s/( \d\d:\d\d:\d\d\.\d{6})\d+/$1/;
}
return DateTime::Format::Oracle->parse_timestamp($value);
}
sub parse_timestamp_with_time_zone
{
my($self, $value) = @_;
local $DateTime::Format::Oracle::nls_timestamp_tz_format =
$ENV{'NLS_TIMESTAMP_TZ_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS.FF TZHTZM';
# Add, extend, or truncate fractional seconds to appease DateTime::Format::Oracle
for($value)
{
s/( \d\d:\d\d:\d\d)(?!\.)/$1.000000/ ||
s/( \d\d:\d\d:\d\d\.)(\d{1,5})(\D|$)/ "$1$2" . ('0' x (6 - length($2))) . $3/e ||
s/( \d\d:\d\d:\d\d\.\d{6})\d+/$1/;
}
return DateTime::Format::Oracle->parse_timestamp_with_time_zone($value);
}
sub format_date
{
my($self) = shift;
local $DateTime::Format::Oracle::nls_date_format =
$ENV{'NLS_DATE_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS';
return DateTime::Format::Oracle->format_date(@_);
}
*format_datetime = \&format_date;
sub format_timestamp
{
my($self) = shift;
local $DateTime::Format::Oracle::nls_timestamp_format =
$ENV{'NLS_TIMESTAMP_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS.FF';
return DateTime::Format::Oracle->format_timestamp(@_);
}
sub format_timestamp_with_time_zone
{
my($self) = shift;
local $DateTime::Format::Oracle::nls_timestamp_tz_format =
$ENV{'NLS_TIMESTAMP_TZ_FORMAT'} || 'YYYY-MM-DD HH24:MI:SS.FF TZHTZM';
return DateTime::Format::Oracle->format_timestamp_with_time_zone(@_);
}
1;
__END__
=head1 NAME
Rose::DB::Oracle - Oracle driver class for Rose::DB.
=head1 SYNOPSIS
use Rose::DB;
Rose::DB->register_db
(
domain => 'development',
type => 'main',
driver => 'Oracle',
database => 'dev_db',
host => 'localhost',
username => 'devuser',
password => 'mysecret',
);
Rose::DB->default_domain('development');
Rose::DB->default_type('main');
...
$db = Rose::DB->new; # $db is really a Rose::DB::Oracle-derived object
...
=head1 DESCRIPTION
L<Rose::DB> blesses objects into a class derived from L<Rose::DB::Oracle> when the L<driver|Rose::DB/driver> is "oracle". This mapping of driver names to class names is configurable. See the documentation for L<Rose::DB>'s L<new()|Rose::DB/new> and L<driver_class()|Rose::DB/driver_class> methods for more information.
This class cannot be used directly. You must use L<Rose::DB> and let its L<new()|Rose::DB/new> method return an object blessed into the appropriate class for you, according to its L<driver_class()|Rose::DB/driver_class> mappings.
Only the methods that are new or have different behaviors than those in L<Rose::DB> are documented here. See the L<Rose::DB> documentation for the full list of methods.
B<Oracle 9 or later is required.>
B<Note:> This class is a work in progress. Support for Oracle databases is not yet complete. If you would like to help, please contact John Siracusa at siracusa@gmail.com or post to the L<mailing list|Rose::DB/SUPPORT>.
=head1 CLASS METHODS
=over 4
=item B<default_post_connect_sql [STATEMENTS]>
Get or set the default list of SQL statements that will be run immediately after connecting to the database. STATEMENTS should be a list or reference to an array of SQL statements. Returns a reference to the array of SQL statements in scalar context, or a list of SQL statements in list context.
The L<default_post_connect_sql|/default_post_connect_sql> statements will be run before any statements set using the L<post_connect_sql|/post_connect_sql> method. The default list contains the following:
ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
ALTER SESSION SET NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS.FF'
ALTER SESSION SET NLS_TIMESTAMP_TZ_FORMAT = 'YYYY-MM-DD HH24:MI:SS.FF TZHTZM'
If one or more C<NLS_*_FORMAT> environment variables are set, the format strings above are replaced by the values that these environment variables have I<at the time this module is loaded>.
=back
=head1 OBJECT METHODS
=over 4
=item B<post_connect_sql [STATEMENTS]>
Get or set the SQL statements that will be run immediately after connecting to the database. STATEMENTS should be a list or reference to an array of SQL statements. Returns a reference to an array (in scalar) or a list of the L<default_post_connect_sql|/default_post_connect_sql> statements and the L<post_connect_sql|/post_connect_sql> statements. Example:
$db->post_connect_sql('UPDATE mytable SET num = num + 1');
print join("\n", $db->post_connect_sql);
ALTER SESSION SET NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS'
ALTER SESSION SET NLS_TIMESTAMP_FORMAT='YYYY-MM-DD HH24:MI:SSxFF'
UPDATE mytable SET num = num + 1
=item B<schema [SCHEMA]>
Get or set the database schema name. In Oracle, every user has a corresponding schema. The schema is comprised of all objects that user owns, and has the same name as that user. Therefore, this attribute defaults to the L<username|Rose::DB/username> if it is not set explicitly.
=back
=head2 Value Parsing and Formatting
=over 4
=item B<validate_date_keyword STRING>
Returns true if STRING is a valid keyword for the PostgreSQL "date" data type. Valid (case-insensitive) date keywords are:
current_date
current_timestamp
localtimestamp
months_between
sysdate
systimestamp
The keywords are case sensitive. Any string that looks like a function call (matches C</^\w+\(.*\)$/>) is also considered a valid date keyword if L<keyword_function_calls|Rose::DB/keyword_function_calls> is true.
=item B<validate_timestamp_keyword STRING>
Returns true if STRING is a valid keyword for the Oracle "timestamp" data type, false otherwise. Valid timestamp keywords are:
current_date
current_timestamp
localtimestamp
months_between
sysdate
systimestamp
The keywords are case sensitive. Any string that looks like a function call (matches C</^\w+\(.*\)$/>) is also considered a valid timestamp keyword if L<keyword_function_calls|Rose::DB/keyword_function_calls> is true.
=back
=head1 AUTHORS
John C. Siracusa (siracusa@gmail.com), Ron Savage (ron@savage.net.au)
=head1 LICENSE
Copyright (c) 2008 by John Siracusa and Ron Savage. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|