/usr/share/perl5/Config/INI/Reader.pm is in libconfig-ini-perl 1:0.021-2.
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 | use strict;
use warnings;
package Config::INI::Reader;
{
$Config::INI::Reader::VERSION = '0.021';
}
use Mixin::Linewise::Readers;
# ABSTRACT: a subclassable .ini-file parser
use Carp ();
use IO::File 1.14;
use IO::String;
our @CARP_NOT = qw(Mixin::Linewise::Readers);
sub read_handle {
my ($invocant, $handle) = @_;
my $self = ref $invocant ? $invocant : $invocant->new;
# parse the file
LINE: while (my $line = $handle->getline) {
if ($handle->input_line_number == 1 && $line =~ /\A\x{FEFF}/) {
Carp::confess("input handle appears to start with a BOM");
}
next LINE if $self->can_ignore($line);
$self->preprocess_line(\$line);
# Handle section headers
if (defined (my $name = $self->parse_section_header($line))) {
# Create the sub-hash if it doesn't exist.
# Without this sections without keys will not
# appear at all in the completed struct.
$self->change_section($name);
next LINE;
}
if (my ($name, $value) = $self->parse_value_assignment($line)) {
$self->set_value($name, $value);
next LINE;
}
$self->handle_unparsed_line($handle, $line);
}
$self->finalize;
return $self->{data};
}
sub current_section {
defined $_[0]->{section} ? $_[0]->{section} : $_[0]->starting_section;
}
sub parse_section_header {
return $1 if $_[1] =~ /^\s*\[\s*(.+?)\s*\]\s*$/;
return;
}
sub change_section {
my ($self, $section) = @_;
$self->{section} = $section;
if (!exists $self->{data}{$section}) {
$self->{data}{$section} = {};
}
}
sub parse_value_assignment {
return ($1, $2) if $_[1] =~ /^\s*([^=\s][^=]*?)\s*=\s*(.*?)\s*$/;
return;
}
sub set_value {
my ($self, $name, $value) = @_;
$self->{data}{ $self->current_section }{$name} = $value;
}
sub starting_section { q{_} }
sub can_ignore {
my ($self, $line) = @_;
# Skip comments and empty lines
return $line =~ /\A\s*(?:;|$)/ ? 1 : 0;
}
sub preprocess_line {
my ($self, $line) = @_;
# Remove inline comments
${$line} =~ s/\s+;.*$//g;
}
sub handle_unparsed_line {
my ($self, $handle, $line) = @_;
my $lineno = $handle->input_line_number;
Carp::croak "Syntax error at line $lineno: '$line'";
}
sub finalize { }
sub new {
my ($class) = @_;
my $self = { data => {}, };
bless $self => $class;
}
1;
__END__
=pod
=head1 NAME
Config::INI::Reader - a subclassable .ini-file parser
=head1 VERSION
version 0.021
=head1 SYNOPSIS
If F<family.ini> contains:
admin = rjbs
[rjbs]
awesome = yes
height = 5' 10"
[mj]
awesome = totally
height = 23"
Then when your program contains:
my $hash = Config::INI::Reader->read_file('family.ini');
C<$hash> will contain:
{
'_' => { admin => 'rjbs' },
rjbs => {
awesome => 'yes',
height => q{5' 10"},
},
mj => {
awesome => 'totally',
height => '23"',
},
}
=head1 DESCRIPTION
Config::INI::Reader is I<yet another> config module implementing I<yet another>
slightly different take on the undeniably easy to read L<".ini" file
format|Config::INI>. Its default behavior is quite similar to that of
L<Config::Tiny>, on which it is based.
The chief difference is that Config::INI::Reader is designed to be subclassed
to allow for side-effects and self-reconfiguration to occur during the course
of reading its input.
=head1 METHODS FOR READING CONFIG
These methods are all that most users will need: they read configuration from a
source of input, then they return the data extracted from that input. There
are three reader methods, C<read_string>, C<read_file>, and C<read_handle>.
The first two are implemented in terms of the third. It iterates over lines in
a file, calling methods on the reader when events occur. Those events are
detailed below in the L</METHODS FOR SUBCLASSING> section.
All of the reader methods return an unblessed reference to a hash.
All throw an exception when they encounter an error.
=head2 read_file
my $hash_ref = Config::INI::Reader->read_file($filename);
Given a filename, this method returns a hashref of the contents of that file.
=head2 read_string
my $hash_ref = Config::INI::Reader->read_string($string);
Given a string, this method returns a hashref of the contents of that string.
=head2 read_handle
my $hash_ref = Config::INI::Reader->read_handle($io_handle);
Given an IO::Handle, this method returns a hashref of the contents of that
handle.
=head1 METHODS FOR SUBCLASSING
These are the methods you need to understand and possibly change when
subclassing Config::INI::Reader to handle a different format of input.
=head2 current_section
my $section_name = $reader->current_section;
This method returns the name of the current section. If no section has yet
been set, it returns the result of calling the C<starting_section> method.
=head2 parse_section_header
my $name = $reader->parse_section_header($line);
Given a line of input, this method decides whether the line is a section-change
declaration. If it is, it returns the name of the section to which to change.
If the line is not a section-change, the method returns false.
=head2 change_section
$reader->change_section($section_name);
This method is called whenever a section change occurs in the file.
The default implementation is to change the current section into which data is
being read and to initialize that section to an empty hashref.
=head2 parse_value_assignment
my ($name, $value) = $reader->parse_value_assignment($line);
Given a line of input, this method decides whether the line is a property
value assignment. If it is, it returns the name of the property and the value
being assigned to it. If the line is not a property assignment, the method
returns false.
=head2 set_value
$reader->set_value($name, $value);
This method is called whenever an assignment occurs in the file. The default
behavior is to change the value of the named property to the given value.
=head2 starting_section
my $section = Config::INI::Reader->starting_section;
This method returns the name of the starting section. The default is: C<_>
=head2 can_ignore
do_nothing if $reader->can_ignore($line)
This method returns true if the given line of input is safe to ignore. The
default implementation ignores lines that contain only whitespace or comments.
=head2 preprocess_line
$reader->preprocess_line(\$line);
This method is called to preprocess each line after it's read but before it's
parsed. The default implementation just strips inline comments. Alterations
to the line are made in place.
=head2 handle_unparsed_line
$reader->handle_unparsed_line( $io, $line );
This method is called when the reader encounters a line that doesn't look like
anything it recognizes. By default, it throws an exception.
=head2 finalize
$reader->finalize;
This method is called when the reader has finished reading in every line of the
file.
=head2 new
my $reader = Config::INI::Reader->new;
This method returns a new reader. This generally does not need to be called by
anything but the various C<read_*> methods, which create a reader object only
ephemerally.
=head1 ORIGIN
Originaly derived from L<Config::Tiny>, by Adam Kennedy.
=head1 AUTHOR
Ricardo Signes <rjbs@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2007 by Ricardo Signes.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|