X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny%2FXML.pm;h=ee5be5c67a968332c683c615ea36a8e78b4f1a41;hp=466033896e80ba1f120beac5f9f7a65ede1fe608;hb=d7eb7b5ca6dd18e740943079a1585661cec4d81f;hpb=f0e3c2214342d0d8a8839009b8b9c7e6bfbc7ab2 diff --git a/lib/Config/Any/XML.pm b/lib/Config/Any/XML.pm index 4660338..ee5be5c 100644 --- a/lib/Config/Any/XML.pm +++ b/lib/Config/Any/XML.pm @@ -3,6 +3,8 @@ package Config::Any::XML; use strict; use warnings; +use base 'Config::Any::Base'; + =head1 NAME Config::Any::XML - Load XML config files @@ -42,47 +44,64 @@ Attempts to load C<$file> as an XML file. sub load { my $class = shift; my $file = shift; + my $args = shift || {}; require XML::Simple; - XML::Simple->import; - my $config = XMLin( - $file, + my $config = XML::Simple::XMLin( + $file, ForceArray => [ qw( component model view controller ) ], + %$args ); - return $class->_coerce($config); + return $class->_coerce( $config ); } sub _coerce { # coerce the XML-parsed config into the correct format - my $class = shift; + my $class = shift; my $config = shift; my $out; - for my $k (keys %$config) { - my $ref = $config->{$k}; - my $name = ref $ref ? delete $ref->{name} : undef; - if (defined $name) { - $out->{$k}->{$name} = $ref; - } else { - $out->{$k} = $ref; + for my $k ( keys %$config ) { + my $ref = $config->{ $k }; + my $name = ref $ref eq 'HASH' ? delete $ref->{ name } : undef; + if ( defined $name ) { + $out->{ $k }->{ $name } = $ref; + } + else { + $out->{ $k } = $ref; } } $out; } -=head1 AUTHOR +=head2 requires_all_of( ) -=over 4 +Specifies that this module requires L in order to work. -=item * Brian Cassidy Ebricas@cpan.orgE +=cut -=item * Joel Bernstein Erataxis@cpan.orgE +sub requires_all_of { 'XML::Simple' } -=back +=head1 CAVEATS + +=head2 Strict Mode + +If, by some chance, L has already been loaded with the strict +flag turned on, then you will likely get errors as warnings will become +fatal exceptions and certain arguments to XMLin() will no longer be optional. + +See L for +more information. + +=head1 AUTHORS + +Brian Cassidy Ebricas@cpan.orgE + +Joel Bernstein Erataxis@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Brian Cassidy +Copyright 2006-2011 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.