/usr/share/perl5/ConfigReader/Simple.pm is in libconfigreader-simple-perl 1.291-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 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 | package ConfigReader::Simple;
use strict;
use warnings;
no warnings;
use subs qw(_init_errors);
use vars qw($VERSION $AUTOLOAD %ERROR $ERROR $Warn $Die);
use Carp qw(croak carp);
$ERROR = '';
$VERSION = '1.291';
$Warn = 0;
$Die = '';
our $DEBUG = 0;
my $Error = '';
sub SUCCESS() { 1 };
sub FAILURE() { 0 };
=encoding utf8
=head1 NAME
ConfigReader::Simple - A simple line-oriented configuration file parser
=head1 SYNOPSIS
use ConfigReader::Simple;
# parse one file
$config = ConfigReader::Simple->new("configrc", [qw(Foo Bar Baz Quux)]);
# parse multiple files, in order
$config = ConfigReader::Simple->new_multiple(
Files => [ "global", "configrc" ],
Keys => [qw(Foo Bar Baz Quux)]
);
my @directives = $config->directives;
$config->get( "Foo" );
if( $config->exists( "Bar" ) ) {
print "Bar was in the config file\n";
}
# copy an object to play with it separately
my $clone = $config->clone;
# only affects clone
$clone->set( "Foo", "Buster" );
# save the config to a single file
$clone->save( "configrc" )
# save the config to a single file, but only with
# certain directives
$clone->save( "configrc" => [qw(Foo Bar)] )
# save to multiple configuration files
$clone->save(
"configrc" => [qw(Foo Bar)],
"global" => [qw(Baz Quux)],
);
=head1 DESCRIPTION
C<ConfigReader::Simple> reads and parses simple configuration files.
It is designed to be smaller and simpler than the C<ConfigReader>
module and is more suited to simple configuration files.
=head2 The configuration file format
The configuration file uses a line-oriented format, meaning
that the directives do not have containers. The values can
be split across lines with a continuation character, but for
the most part everything ends up on the same line.
The first group of non-whitespace characters is the
"directive", or the name of the configuration item. The
linear whitespace after that separates the directive from
the "value", which is the rest of the line, including any
other whitespace.
In this example, the directive is "Camel" and the value is
"Dromedary".
Camel Dromedary
Optionally, you can use a equal sign to separate the directive
from the value.
Camel=Dromedary
The equal sign can also have whitespace on either or both
sides.
Camel = Dromedary
Camel= Dromedary
In the next example, the directive is "Llama" and the value
is "Live from Peru"
Llama Live from Peru
This is the same, to C<ConfigReader::Simple>, as the following
which has more whitespace between the directive and the value.
Llama Live from Peru
You can also enclose the value in single or double quotes.
Llama "Live from Peru"
Llama 'Live from Peru'
Llama='Live from Peru'
In some cases you may want to split the logical line across
two lines, perhaps to see it better in a terminal window.
For that, use a \ followed only by whitespace. To split the
last entry across two lines, we use the \ at the end of the
line. These three entries are the same:
Llama Live from Peru
Llama Live from \
Peru
Llama Live \
from \
Peru
If a line is only whitespace, or the first whitespace character is
a #, the Perl comment character, C<ConfigReader::Simple> ignores the
line unless it is the continuation of the previous line.
=head2 Methods
=over 4
=item new ( FILENAME, DIRECTIVES )
Creates a C<ConfigReader::Simple> object.
C<FILENAME> tells the instance where to look for the
configuration file. If FILENAME cannot be found, an error
message for the file is added to the %ERROR hash with the
FILENAME as a key, and a combined error message appears in
$ERROR.
C<DIRECTIVES> is an optional argument and is a reference to
an array. Each member of the array should contain one valid
directive. A directive is the name of a key that must occur
in the configuration file. If it is not found, the method
croaks. The directive list may contain all the keys in the
configuration file, a sub set of keys or no keys at all.
The C<new> method is really a wrapper around C<new_multiple>.
=cut
sub new {
my $class = shift;
my $filename = shift;
my $keyref = shift;
$keyref = [] unless defined $keyref;
my $self = $class->new_multiple(
Files => [ defined $filename ? $filename : () ],
Keys => $keyref
);
return $self;
}
=item new_multiple( Files => ARRAY_REF, Keys => ARRAY_REF )
Create a configuration object from several files listed
in the anonymous array value for the C<Files> key. The
module reads the files in the same order that they appear
in the array. Later values override earlier ones. This
allows you to specify global configurations which you
may override with more specific ones:
ConfigReader::Simple->new_multiple(
Files => [ qw( /etc/config /usr/local/etc/config /home/usr/config ) ],
);
This function croaks if the values are not array references.
If this method cannot read a file, an error message for that
file is added to the C<%ERROR> hash with the filename as a key,
and a combined error message appears in C<$ERROR>. Processing
the list of filenames continues if a file cannot be found,
which may produced undesired results. You can disable this
feature by setting the C<$ConfigReader::Simple::Die> variable
to a true value.
=cut
sub new_multiple {
_init_errors();
my $class = shift;
my %args = @_;
my $self = {};
$args{'Keys'} = [] unless defined $args{'Keys'};
croak( __PACKAGE__ . ': Files argument must be an array reference')
unless ref $args{'Files'} eq ref [];
croak( __PACKAGE__ . ': Keys argument must be an array reference')
unless ref $args{'Keys'} eq ref [];
$self->{"filenames"} = $args{'Files'};
$self->{"validkeys"} = $args{'Keys'};
bless $self, $class;
foreach my $file ( @{ $self->{"filenames"} } ) {
my $result = $self->parse( $file );
croak $Error if( not $result and $Die );
$ERROR{$file} = $Error unless $result;
}
$ERROR = join "\n", map { $ERROR{$_} } keys %ERROR;
return $self;
}
=item new_string( Strings => ARRAY_REF, Keys => ARRAY_REF )
Create a configuration object from several strings listed
in the anonymous array value for the C<Strings> key. The
module reads the strings in the same order that they appear
in the array. Later values override earlier ones. This
allows you to specify global configurations which you
may override with more specific ones:
ConfigReader::Simple->new_strings(
Strings => [ \$global, \$local ],
);
This function croaks if the values are not array references.
=cut
sub new_string {
_init_errors;
my $class = shift;
my %args = @_;
my $self = {};
$args{'Keys'} = [] unless defined $args{'Keys'};
croak( __PACKAGE__ . ': Strings argument must be an array reference')
unless ref $args{'Strings'} eq ref [];
croak( __PACKAGE__ . ': Keys argument must be an array reference')
unless ref $args{'Keys'} eq ref [];
bless $self, $class;
$self->{"strings"} = $args{'Strings'};
$self->{"validkeys"} = $args{'Keys'};
foreach my $string_ref ( @{ $self->{"strings"} } ) {
croak( __PACKAGE__ . ': Element of Strings is not a scalar reference' )
unless ref $string_ref eq ref \ '';
$self->parse_string( $string_ref );
}
return $self;
}
=item add_config_file( FILENAME )
Parse another configuration file and add its directives to the
current configuration object. Any directives already defined
will be replaced with the new values found in FILENAME.
=cut
sub add_config_file {
_init_errors;
my( $self, $filename ) = @_;
return unless $self->parse( $filename );
push @{ $self->{"filenames"} }, $filename;
return 1;
}
=item files
Return the list of configuration files associated with this
object. The order of the return values is the order of parsing,
so the first value is the first file parsed (and subsequent files may
mask it).
=cut
sub files { @{ $_[0]->{"filenames"} } }
=item new_from_prototype(
Create a clone object. This is the same thing as calling
clone().
=cut
sub new_from_prototype {
_init_errors;
my $self = shift;
my $clone = $self->clone;
return $clone;
}
sub AUTOLOAD {
my $self = shift;
my $method = $AUTOLOAD;
$method =~ s/.*:://;
$self->get( $method );
}
sub DESTROY {
return 1;
}
=item parse( FILENAME )
This does the actual work.
This is automatically called from C<new()>, although you can reparse
the configuration file by calling C<parse()> again.
=cut
sub parse {
my( $self, $file ) = @_;
$Error = '';
unless( open CONFIG, $file ) {
$Error = "Could not open configuration file [$file]: $!";
carp $Error if $Warn;
return;
}
$self->{"file_fields"}{$file} = [];
while( <CONFIG> ) {
if ( s/\\ \s* $//x ) {
$_ .= <CONFIG>;
redo unless eof CONFIG;
}
chomp;
next if /^\s*(#|$)/;
my ($key, $value) = &parse_line($_);
#carp "Key: '$key' Value: '$value'\n" if $DEBUG;
$self->{"config_data"}{$key} = $value;
push @{ $self->{"file_fields"}{$file} }, $key;
}
close(CONFIG);
$self->_validate_keys;
return 1;
}
=item parse_string( SCALAR_REF )
Parses the string inside the reference SCALAR_REF just as if
it found it in a file.
=cut
sub parse_string {
my $self = shift;
my $string = shift;
my @lines = split /\r?\n/, $$string;
chomp( @lines );
# carp "A: Found " . @lines . " lines" if $DEBUG;
while( my $line = shift @lines ) {
# carp "1: Line is $line" if $DEBUG;
CONT: {
if ( $line =~ s/\\ \s* $//x ) {
# carp "a: reading continuation line $lines[0]" if $DEBUG;
$line .= shift @lines;
# carp "b: Line is $line" if $DEBUG;
redo CONT unless @lines == 0;
}
}
# carp "2: Line is $line" if $DEBUG;
chomp $line;
next if $line =~ /^\s*(#|$)/;
# carp "3: Line is $line" if $DEBUG;
my ($key, $value) = &parse_line( $line );
# carp "Key: '$key' Value: '$value'" if $DEBUG;
$self->{"config_data"}{$key} = $value;
}
$self->_validate_keys;
return 1;
}
=item get( DIRECTIVE )
Returns the parsed value for that directive. For directives
which did not have a value in the configuration file, C<get>
returns the empty string.
=cut
sub get { $_[0]->{"config_data"}{$_[1]} }
=item set( DIRECTIVE, VALUE )
Sets the value for DIRECTIVE to VALUE. The DIRECTIVE
need not already exist. This overwrites previous
values.
The VALUE must be a simple scalar. It cannot be a reference.
If the VALUE is a reference, the function prints a warning
and returns false.
=cut
sub set {
my $self = shift;
my( $key, $value ) = @_;
if( ref $value ) {
$ERROR = "Second argument to set must be a simple scalar";
if( $Warn ) {
carp $ERROR;
return;
}
elsif( $Die ) {
croak $ERROR;
}
return;
}
$self->{"config_data"}{$key} = $value;
}
=item unset( DIRECTIVE )
Remove the value from DIRECTIVE, which will still exist. It's
value is undef. If the DIRECTIVE does not exist, it will not
be created. Returns FALSE if the DIRECTIVE does not already
exist, and TRUE otherwise.
=cut
sub unset {
my $self = shift;
my $key = shift;
return unless $self->exists( $key );
$self->{"config_data"}{$key} = undef;
return 1;
}
=item remove( DIRECTIVE )
Remove the DIRECTIVE. Returns TRUE is DIRECTIVE existed
and FALSE otherwise.
=cut
sub remove {
my $self = shift;
my $key = shift;
return unless $self->exists( $key );
delete $self->{"config_data"}{$key};
return 1;
}
=item directives()
Returns a list of all of the directive names found in the configuration
file. The keys are sorted ASCII-betically.
=cut
sub directives {
my $self = shift;
my @keys = sort keys %{ $self->{"config_data"} };
return @keys;
}
=item exists( DIRECTIVE )
Return TRUE if the specified directive exists, and FALSE
otherwise.
=cut
sub exists {
my $self = shift;
my $name = shift;
return CORE::exists $self->{"config_data"}{ $name };
}
=item clone
Return a copy of the object. The new object is distinct
from the original so you can make changes to the new object
without affecting the old one.
=cut
# this is only the first stab at this -- from 35,000
# feet in coach class
#
# I expect that the hash will be very simple. Some keys
# might have a reference value, but that reference value
# will be "flat", so it won't have references in it.
sub clone {
my $self = shift;
my $clone = bless {}, ref $self;
$clone->{"filenames"} = [ @{ $self->{"filenames"} } ];
$clone->{"validkeys"} = [ @{ $self->{"validkeys"} } ];
foreach my $file ( keys %{ $self->{"file_fields"} } ) {
$clone->{"file_fields"}{ $file }
= [ @{ $self->{"file_fields"}{ $file } } ];
}
foreach my $key ( $self->directives ) {
$clone->set( $key, $self->get( $key ) );
}
return $clone;
}
=item save( FILENAME [ => ARRAY_REF [, FILENAME => ARRAY_REF ] ] );
The save method works in three ways, depending on the argument list.
With a single argument, the save function attempts to save all of the
field-value pairs of the object to the file named by the argument.
$clone->save( "configrc" );
With two arguments, the method expects the second argument to be an
array reference which lists the directives to save in the file.
$clone->save( "configrc" => [qw(Foo Bar)] );
With more than two arguments, the method expects filename-list pairs.
The method will save in each file the values in their respective
array references.
$clone->save(
"configrc" => [qw(Foo Bar)],
"global" => [qw(Baz Quux)],
);
In the last two cases, the method checks that the value for each pair
is an array reference before it affects any files. It croaks if
any value is not an array reference.
Once the method starts writing files, it tries to write all of the
specified files. Even if it has a problem with one of them, it continues
onto the next one. The method does not necessarily write the files
in the order they appear in the argument list, and it does not check
if you specified the same file twice.
=cut
sub save {
my $self = shift;
my @args = @_;
if( @args == 0 ) { # no args!
carp "No arguments to method!";
return;
}
if( @args == 1 ) { # this is a single file
push @args, [ $self->directives ];
}
unless( @args % 2 == 0 ) { croak "Odd number of arguments" };
my %hash = @args;
foreach my $value ( values %hash ) {
croak "Argument is not an array reference"
unless ref $value eq ref [];
}
foreach my $file ( keys %hash ) {
carp $ERROR unless $self->_save( $file, $hash{$file} );
}
1;
}
sub _save {
my( $self, $file, $directives ) = @_;
unless( ref $directives eq ref [] ) {
$ERROR = 'Argument is not an array reference';
return;
}
my $fh;
unless( open $fh, ">", $file ) {
$ERROR = $!;
return;
}
foreach my $directive ( @$directives ) {
print $fh (
join( "\t", $directive, $self->get( $directive ) ),
"\n"
);
}
return SUCCESS;
}
=begin private
=item parse_line( STRING )
Internal method. Don't call this directly.
Takes a line of text and turns it into the directive and value.
=end private
=cut
sub parse_line {
return ( $1, $3 ) if $_[0] =~ /
^\s*
(
[^\s=]+
)
\s*
[=]?
\s*
(['"]?)
(.*?)
\2
\s*
$/x;
croak "Config: Can't parse line: $_[0]\n";
}
sub _init_errors {
%ERROR = ();
$Error = undef;
$ERROR = undef;
}
=begin private
=item _validate_keys
If any keys were declared when the object was constructed,
check that those keys actually occur in the configuration file.
This function croaks if a declared key does not exist.
=end private
=cut
sub _validate_keys {
my $self = shift;
return SUCCESS unless exists $self->{"validkeys"};
croak "validkeys was not an array reference!"
unless ref $self->{"validkeys"} eq ref [];
my @keys = eval { @{ $self->{"validkeys"} } };
my @missing = grep { ! exists $self->{"config_data"}{$_} }@keys;
croak "Config: required keys [@missing] do not occur in config"
if @missing;
return SUCCESS;
}
=back
=head2 Package variables
=over 4
=item $Die - DEPRECATED
If set to a true value, all errors are fatal.
=item $ERROR
The last error message.
=item %ERROR
The error messages from unreadable files. The key is
the filename and the value is the error message.
=item $Warn - DEPRECATED
If set to a true value, methods may output warnings.
=back
=head1 LIMITATIONS/BUGS
Directives are case-sensitive.
If a directive is repeated, the first instance will silently be
ignored.
=head1 CREDITS
Bek Oberin C<< <gossamer@tertius.net.au> >> wote the original module
Kim Ryan C<< <kimaryan@ozemail.com.au> >> adapted the module to make
declaring keys optional. Thanks Kim.
Alan W. Jurgensen C<< <jurgensen@berbee.com> >> added a change to allow
the NAME=VALUE format in the configuration file.
Andy Lester, C<< <petdance@cpan.org> >>, for maintaining the module
while brian was on active duty.
Adam Trickett, C<< <atrickett@cpan.org> >>, added multi-line support.
You might want to see his C<Config::Trivial> module.
Greg White has been a very patient user and tester.
=head1 SOURCE AVAILABILITY
The source is in Github:
http://github.com/briandfoy/ConfigReader-Simple/tree/master
=head1 AUTHORS
brian d foy, C<< <bdfoy@cpan.org> >>
=head1 COPYRIGHT AND LICENSE
Copyright © 2002-2015, brian d foy <bdfoy@cpan.org>. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|