/usr/share/perl5/Parse/PlainConfig/Settings.pm is in libparse-plainconfig-perl 3.03-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 | # Parse::PlainConfig::Settings -- Settings Class
#
# (c) 2015, Arthur Corliss <corliss@digitalmages.com>
#
# $Id: lib/Parse/PlainConfig/Settings.pm, 3.03 2016/08/09 16:11:12 acorliss Exp $
#
# This software is licensed under the same terms as Perl, itself.
# Please see http://dev.perl.org/licenses/ for more information.
#
#####################################################################
#####################################################################
#
# Environment definitions
#
#####################################################################
package Parse::PlainConfig::Settings;
use 5.008;
use strict;
use warnings;
use vars qw($VERSION);
($VERSION) = ( q$Revision: 3.03 $ =~ /(\d+(?:\.\d+)+)/sm );
use Paranoid;
use Paranoid::Debug;
use Parse::PlainConfig::Constants qw(:all);
use Class::EHierarchy qw(:all);
use vars qw(@ISA @_properties @_methods);
@ISA = qw(Class::EHierarchy);
@_properties = (
[ CEH_PUB | CEH_SCALAR, 'tab stop', DEFAULT_TAB ],
[ CEH_PUB | CEH_SCALAR, 'subindentation', DEFAULT_SUBI ],
[ CEH_PUB | CEH_SCALAR, 'comment', DEFAULT_CMMT ],
[ CEH_PUB | CEH_SCALAR, 'delimiter', DEFAULT_PDLM ],
[ CEH_PUB | CEH_SCALAR, 'list delimiter', DEFAULT_LDLM ],
[ CEH_PUB | CEH_SCALAR, 'hash delimiter', DEFAULT_HDLM ],
[ CEH_PUB | CEH_SCALAR, 'here doc', DEFAULT_HDOC ],
[ CEH_PUB | CEH_HASH, 'property types' ],
[ CEH_PUB | CEH_HASH, 'property regexes' ],
[ CEH_PUB | CEH_HASH, 'prototypes' ],
[ CEH_PUB | CEH_HASH, 'prototype regexes' ],
[ CEH_PUB | CEH_HASH, 'prototype registry' ],
[ CEH_PUB | CEH_SCALAR, 'error' ],
);
#####################################################################
#
# Module code follows
#
#####################################################################
sub tabStop {
my $obj = shift;
return $obj->property('tab stop');
}
sub subindentation {
my $obj = shift;
return $obj->property('subindentation');
}
sub comment {
my $obj = shift;
return $obj->property('comment');
}
sub delimiter {
my $obj = shift;
return $obj->property('delimiter');
}
sub listDelimiter {
my $obj = shift;
return $obj->property('list delimiter');
}
sub hashDelimiter {
my $obj = shift;
return $obj->property('hash delimiter');
}
sub hereDoc {
my $obj = shift;
return $obj->property('here doc');
}
sub propertyTypes {
my $obj = shift;
return $obj->property('property types');
}
sub propertyRegexes {
my $obj = shift;
return $obj->property('property regexes');
}
sub prototypes {
my $obj = shift;
return $obj->property('prototypes');
}
sub prototypeRegexes {
my $obj = shift;
return $obj->property('prototype regexes');
}
1;
__END__
=head1 NAME
Parse::PlainConfig::Settings - Settings Class
=head1 VERSION
$Id: lib/Parse/PlainConfig/Settings.pm, 3.03 2016/08/09 16:11:12 acorliss Exp $
=head1 SYNOPSIS
use Parse::PlainConfig::Settings;
my $settings = new Parse::PlainConfig::Settings;
$ts = $settings->tabStop;
$subindent = $settings->subindentation;
$comment = $settings->comment;
$delim = $settings->delimiter;
$ldelim = $settings->listDelimiter;
$hdelim = $settings->hashDelimiter;
$hdoc = $settings->hereDoc;
%propTypes = $settings->propertyTypes;
%propRegex = $settings->propertyRegexes;
%prototypes = $settings->prototypes;
%protoRegex = $settings->prototypeRegexes;
=head1 DESCRIPTION
The settings object is created and initialized automatically by
L<Parse::PlainConfig>.
=head1 SUBROUTINES/METHODS
=head2 tabStop
$ts = $settings->tabStop;
Default column width for tab stops.
=head2 subindentation
$subindent = $settings->subindentation;
Default columns for indentation on line continuations.
=head2 comment
$comment = $settings->comment;
Default character sequence for comments.
=head2 delimiter
$delim = $settings->delimiter;
Default character sequence used as the delimiter between the parameter name
and the parameter value.
=head2 listDelimiter
$ldelim = $settings->listDelimiter;
Default character sequence used as the delimiter between array elements.
=head2 hashDelimiter
$hdelim = $settings->hashDelimiter;
Default character sequence used as the delimiter between key/value pairs.
=head2 hereDoc
$hdoc = $settings->hereDoc;
Default character sequence used as the token marking the end of here docs.
=head2 propertyTypes
%propTypes = $settings->propertyTypes;
Hash of property names => data types.
=head2 propertyRegexes
%propRegex = $settings->propertyRegexes;
Hash of property names to regular expression to extract data from the line.
=head2 prototypes
%prototypes = $settings->prototypes;
Hash of prototype names => data types.
=head2 prototypeRegexes
%protoRegex = $settings->prototypeRegexes;
Hash of prototype names to regular expression to extract data from the line.
=head1 DEPENDENCIES
=over
=item o
L<Class::EHierarchy>
=item o
L<Paranoid>
=item o
L<Paranoid::Debug>
=item o
L<Parse::PlainConfig::Constants>
=back
=head1 BUGS AND LIMITATIONS
=head1 AUTHOR
Arthur Corliss (corliss@digitalmages.com)
=head1 LICENSE AND COPYRIGHT
This software is licensed under the same terms as Perl, itself.
Please see http://dev.perl.org/licenses/ for more information.
(c) 2015, Arthur Corliss (corliss@digitalmages.com)
|