/usr/share/perl5/Config/MVP/Assembler.pm is in libconfig-mvp-perl 2.200010-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 | package Config::MVP::Assembler;
# ABSTRACT: multivalue-property config-loading state machine
$Config::MVP::Assembler::VERSION = '2.200010';
use Moose;
use Config::MVP::Error;
use Config::MVP::Sequence;
use Config::MVP::Section;
#pod =head1 DESCRIPTION
#pod
#pod First, you should probably read the L<example of using
#pod Config::MVP|Config::MVP/EXAMPLE>. If you already know how it works, keep
#pod going.
#pod
#pod Config::MVP::Assembler is a helper for constructing a Config::MVP::Sequence
#pod object. It's a very simple state machine that lets you signal what kind of
#pod events you've encountered while reading configuration.
#pod
#pod =head1 TYPICAL USE
#pod
#pod my $assembler = Config::MVP::Assembler->new;
#pod
#pod # Maybe you want a starting section:
#pod my $starting_section = $assembler->section_class->new({ name => '_' });
#pod $assembler->sequence->add_section($section_starting);
#pod
#pod # We'll add some values, which will go to the starting section:
#pod $assembler->add_value(x => 10);
#pod $assembler->add_value(y => 20);
#pod
#pod # Change to a new section...
#pod $assembler->change_section($moniker);
#pod
#pod # ...and add values to that section.
#pod $assembler->add_value(x => 100);
#pod $assembler->add_value(y => 200);
#pod
#pod The code above creates an assembler and populates it step by step. In the end,
#pod to get values, you could do something like this:
#pod
#pod my @output;
#pod
#pod for my $section ($assembler->sequence->sections) {
#pod push @output, [ $section->name, $section->package, $section->payload ];
#pod }
#pod
#pod When changing sections, the given section "moniker" is used for the new section
#pod name. The result of passing that moniker to the assembler's
#pod C<L</expand_package>> method is used as the section's package name. (By
#pod default, this method does nothing.) The new section's C<multivalue_args> and
#pod C<aliases> are determined by calling the C<mvp_multivalue_args> and
#pod C<mvp_aliases> methods on the package.
#pod
#pod =attr sequence_class
#pod
#pod This attribute stores the name of the class to be used for the assembler's
#pod sequence. It defaults to Config::MVP::Sequence.
#pod
#pod =cut
has sequence_class => (
is => 'ro',
isa => 'ClassName',
lazy => 1,
default => 'Config::MVP::Sequence',
);
#pod =attr section_class
#pod
#pod This attribute stores the name of the class to be used for sections created by
#pod the assembler. It defaults to Config::MVP::Section.
#pod
#pod =cut
has section_class => (
is => 'ro',
isa => 'ClassName',
lazy => 1,
default => 'Config::MVP::Section',
);
#pod =attr sequence
#pod
#pod This is the sequence that the assembler is assembling. It defaults to a new
#pod instance of the assembler's C<sequence_class>.
#pod
#pod =cut
has sequence => (
is => 'ro',
isa => 'Config::MVP::Sequence',
default => sub { $_[0]->sequence_class->new({ assembler => $_[0] }) },
init_arg => undef,
handles => [ qw(is_finalized finalize) ],
);
before finalize => sub {
my ($self) = @_;
$self->end_section if $self->current_section;
};
#pod =method begin_section
#pod
#pod $assembler->begin_section($package_moniker, $name);
#pod
#pod $assembler->begin_section($package_moniker);
#pod
#pod $assembler->begin_section( \$package );
#pod
#pod This method tells the assembler that it should begin work on a new section with
#pod the given identifier. If it is already working on a section, an error will be
#pod raised. See C<L</change_section>> for a method to begin a new section, ending
#pod the current one if needed.
#pod
#pod The package moniker is expanded by the C<L</expand_package>> method. The name,
#pod if not given, defaults to the package moniker. These data are used to create a
#pod new section and the section is added to the end of the sequence. If the
#pod package argument is a reference, it is used as the literal value for the
#pod package, and no expansion is performed. If it is a reference to undef, a
#pod section with no package is created.
#pod
#pod =cut
has _between_sections => (
is => 'rw',
isa => 'Bool',
default => 0,
);
sub begin_section {
my ($self, $package_moniker, $name) = @_;
Config::MVP::Error->throw("can't begin a new section while a section is open")
if $self->current_section;
$name = $package_moniker unless defined $name and length $name;
my $package = ref($package_moniker)
? $$package_moniker
: $self->expand_package($package_moniker);
my $section = $self->section_class->new({
name => $name,
(defined $package ? (package => $package) : ()),
});
$self->_between_sections(0);
$self->sequence->add_section($section);
}
#pod =method end_section
#pod
#pod $assembler->end_section;
#pod
#pod This ends the current section. If there is no current section, an exception is
#pod raised.
#pod
#pod =cut
sub end_section {
my ($self) = @_;
Config::MVP::Error->throw("can't end a section when no section is active")
unless $self->current_section;
$self->current_section->finalize;
$self->_between_sections(1);
}
#pod =method change_section
#pod
#pod $assembler->change_section($package_moniker, $name);
#pod
#pod $assembler->change_section($package_moniker);
#pod
#pod This method calls C<begin_section>, first calling C<end_section> if needed.
#pod
#pod =cut
sub change_section {
my $self = shift;
$self->end_section if $self->current_section;
$self->begin_section(@_);
}
#pod =method add_value
#pod
#pod $assembler->add_value( $name => $value );
#pod
#pod This method tells the assembler that it has encountered a named value and
#pod should add it to the current section. If there is no current section, an
#pod exception is raised. (If this is not the first time we've seen the name in the
#pod section and it's not a multivalue property, the section class will raise an
#pod exception on its own.)
#pod
#pod =cut
sub add_value {
my ($self, $name, $value) = @_;
Config::MVP::Error->throw("can't set value when no section is active")
unless my $section = $self->current_section;
$section->add_value($name => $value);
}
#pod =method expand_package
#pod
#pod This method is passed a short identifier for a package and is expected to
#pod return the full name of the module to load and package to interrogate. By
#pod default it simply returns the name it was passed, meaning that package names
#pod must be given whole to the C<change_section> method.
#pod
#pod =cut
sub expand_package { $_[1] }
#pod =method current_section
#pod
#pod This returns the section object onto which the assembler is currently adding
#pod values. If no section has yet been created, this method will return false.
#pod
#pod =cut
sub current_section {
my ($self) = @_;
return if $self->_between_sections;
my (@sections) = $self->sequence->sections;
return $sections[ -1 ] if @sections;
return;
}
no Moose;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Config::MVP::Assembler - multivalue-property config-loading state machine
=head1 VERSION
version 2.200010
=head1 DESCRIPTION
First, you should probably read the L<example of using
Config::MVP|Config::MVP/EXAMPLE>. If you already know how it works, keep
going.
Config::MVP::Assembler is a helper for constructing a Config::MVP::Sequence
object. It's a very simple state machine that lets you signal what kind of
events you've encountered while reading configuration.
=head1 ATTRIBUTES
=head2 sequence_class
This attribute stores the name of the class to be used for the assembler's
sequence. It defaults to Config::MVP::Sequence.
=head2 section_class
This attribute stores the name of the class to be used for sections created by
the assembler. It defaults to Config::MVP::Section.
=head2 sequence
This is the sequence that the assembler is assembling. It defaults to a new
instance of the assembler's C<sequence_class>.
=head1 METHODS
=head2 begin_section
$assembler->begin_section($package_moniker, $name);
$assembler->begin_section($package_moniker);
$assembler->begin_section( \$package );
This method tells the assembler that it should begin work on a new section with
the given identifier. If it is already working on a section, an error will be
raised. See C<L</change_section>> for a method to begin a new section, ending
the current one if needed.
The package moniker is expanded by the C<L</expand_package>> method. The name,
if not given, defaults to the package moniker. These data are used to create a
new section and the section is added to the end of the sequence. If the
package argument is a reference, it is used as the literal value for the
package, and no expansion is performed. If it is a reference to undef, a
section with no package is created.
=head2 end_section
$assembler->end_section;
This ends the current section. If there is no current section, an exception is
raised.
=head2 change_section
$assembler->change_section($package_moniker, $name);
$assembler->change_section($package_moniker);
This method calls C<begin_section>, first calling C<end_section> if needed.
=head2 add_value
$assembler->add_value( $name => $value );
This method tells the assembler that it has encountered a named value and
should add it to the current section. If there is no current section, an
exception is raised. (If this is not the first time we've seen the name in the
section and it's not a multivalue property, the section class will raise an
exception on its own.)
=head2 expand_package
This method is passed a short identifier for a package and is expected to
return the full name of the module to load and package to interrogate. By
default it simply returns the name it was passed, meaning that package names
must be given whole to the C<change_section> method.
=head2 current_section
This returns the section object onto which the assembler is currently adding
values. If no section has yet been created, this method will return false.
=head1 TYPICAL USE
my $assembler = Config::MVP::Assembler->new;
# Maybe you want a starting section:
my $starting_section = $assembler->section_class->new({ name => '_' });
$assembler->sequence->add_section($section_starting);
# We'll add some values, which will go to the starting section:
$assembler->add_value(x => 10);
$assembler->add_value(y => 20);
# Change to a new section...
$assembler->change_section($moniker);
# ...and add values to that section.
$assembler->add_value(x => 100);
$assembler->add_value(y => 200);
The code above creates an assembler and populates it step by step. In the end,
to get values, you could do something like this:
my @output;
for my $section ($assembler->sequence->sections) {
push @output, [ $section->name, $section->package, $section->payload ];
}
When changing sections, the given section "moniker" is used for the new section
name. The result of passing that moniker to the assembler's
C<L</expand_package>> method is used as the section's package name. (By
default, this method does nothing.) The new section's C<multivalue_args> and
C<aliases> are determined by calling the C<mvp_multivalue_args> and
C<mvp_aliases> methods on the package.
=head1 AUTHOR
Ricardo Signes <rjbs@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015 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
|