package XML::All; use 5.006001; use strict; use warnings; use XML::Twig (); use Tie::Simple (); use Exporter::Lite (); use Class::InsideOut (); our @EXPORT = qw( xml ); our $VERSION = '0.02'; Class::InsideOut::private(twig => my %twig); Class::InsideOut::private(sv => my %sv); Class::InsideOut::private(av => my %av); Class::InsideOut::private(cv => my %cv); use XML::Literal sub { my $obj = Class::InsideOut::register( bless \(my $s), __PACKAGE__ ); my $xml = XML::Twig->new; $xml->parse($_[0]); $twig{ Class::InsideOut::id($obj) } = $xml->root; bless($obj); }; my $id = \&Class::InsideOut::id; my $xmlify = sub { my $xml = XML::Twig->new; $xml->parse($_[0]); return $xml->root; }; my $wrap = sub { my $res = Class::InsideOut::register( bless \(my $s), __PACKAGE__ ); $twig{ $id->($res) } = $_[0]; bless($res); }; my $unwrap = sub { $twig{$id->($_[0]) || do { my $elt = XML::Twig::Elt->new(XML::Twig::PCDATA); $elt->_set_pcdata($_[0]); return $elt; }}; }; sub xml { if (ref($_[0]) and ref($_[0])->isa(__PACKAGE__)) { my $obj = $twig{$id->(shift(@_))}; my @children = map { $wrap->($_) } $obj->children(join('', 'xml', map { "[$_]" } @_ )); wantarray ? @children : $children[0]; } elsif ($_[0] =~ /^\s*new; $xml->parse($_[0]); return $wrap->($xml); } else { my $xml = XML::Twig->new; $xml->parsefile($_[0]); return $wrap->($xml); } } sub AUTOLOAD :lvalue { my $meth = our $AUTOLOAD; $meth =~ s/.*:://; return if $meth eq 'DEMOLISH' or $meth eq 'DESTROY'; my $xml = shift; my $obj = $twig{$id->($xml)}; my @children = $obj->children(join('', $meth, map { "[$_]" } @_ )); if (wantarray and @children != 1) { @children = map { $wrap->($_) } @children; return @children; } else { $children[0] or return undef; my $res = Class::InsideOut::register( bless \(my $s), __PACKAGE__ ); $twig{ $id->($res) } = $children[0]; bless($res); return $res; } } my $op; BEGIN { $op = sub { my ($sym, $call) = @_; return ( $sym => sub { my $obj = $twig{$id->($_[0])} || $xmlify->($_[0]); my $tgt = $twig{$id->($_[1])} || $xmlify->($_[1]); ($obj, $tgt) = ($tgt, $obj) if $_[2]; my $cpy = $obj->copy; $call->($cpy, $tgt); $wrap->($cpy); }, "$sym=" => sub { my $obj = $twig{$id->($_[0])} || $xmlify->($_[0]); my $tgt = $twig{$id->($_[1])} || $xmlify->($_[1]); ($obj, $tgt) = ($tgt, $obj) if $_[2]; $call->($obj, $tgt); $wrap->($obj); }, ); } }; use overload ( '${}' => sub { $sv{$id->($_[0])} ||= do { my $obj = $twig{$id->($_[0])}; tie my $res, 'Tie::Simple', undef, FETCH => sub { $obj->tag }, STORE => sub { no warnings 'uninitialized'; length($_[1]) ? $obj->set_tag($_[1]) : $obj->erase }; \$res; }; }, '@{}' => sub { $av{$id->($_[0])} ||= do { my $obj = $twig{$id->($_[0])}; tie my @res, 'Tie::Simple', undef, FETCH => sub { $wrap->($obj->child($_[1])) }, STORE => sub { my $tgt = $unwrap->($_[2]); if (my $src = $obj->child($_[1])) { $src->replace_with($tgt); } elsif ($_[1] == $obj->children_count) { $tgt->paste_last_child($obj); } else { die "Index out of bounds"; } }, FETCHSIZE => sub { $obj->children_count }, DELETE => sub { $obj->child($_[1])->delete }, CLEAR => sub { $obj->cut_children }, PUSH => sub { shift; foreach my $xml (@_) { my $tgt = $twig{$id->($xml)}; $tgt->paste_last_child($obj); } }, POP => sub { my $tgt = $obj->last_child or return undef; $tgt->cut; $wrap->($tgt); }, SHIFT => sub { my $tgt = $obj->first_child or return undef; $tgt->cut; $wrap->($tgt); }, UNSHIFT => sub { shift; foreach my $xml (reverse @_) { my $tgt = $twig{$id->($xml)}; $tgt->paste_first_child($obj); } }; \@res; }; }, '%{}' => sub { my $obj = $twig{$id->($_[0])}; $obj->atts; }, '&{}' => sub { my $obj_id = $id->($_[0]); $cv{$obj_id} ||= do { my $obj = $twig{$obj_id}; sub { if (@_) { my $xml = XML::Twig->new; my %args = @_; foreach my $key (keys %args) { my $code = $args{$key}; $args{$key} = sub { my $res = Class::InsideOut::register( bless \(my $s), __PACKAGE__ ); $twig{ $id->($res) } = $_[1]; local $_ = bless($res); $code->(); } } $xml->setTwigHandlers( \%args ); $xml->parse($obj->sprint); $twig{ $obj_id } = $xml->root; } else { join '', map { $_->is_text ? $_->text : () } $obj->children } }; }; }, '0+' => sub { my $obj = $twig{$id->($_[0])}; $obj->text; }, '""' => sub { my $obj = $twig{$id->($_[0])}; $obj->sprint; }, 'bool' => sub { my $obj = $twig{$id->($_[0])}; $obj->is_text ? $obj->text : 1; }, $op->('+' => sub { $_[1]->paste_last_child($_[0])}), $op->('-' => sub { $_[0]->cut_children($_[1]->tag)}), ), fallback => 1; 1; __END__ =head1 NAME XML::All - Overloaded XML objects =head1 SYNOPSIS use XML::All;   my $xml = < 1 2 3 >;   print $$xml; # a print join ", ", @$xml; # 1, 2, 3 print join ", ", %$xml; # href, '/'   print $xml->b(); # 2 print $xml->b() * 10; # 20 print $xml->(); # 1   $$xml = 'link'; print $xml; # ...   my $em = $xml->em +
; print $em; # 3
$xml -= ; print $xml; # 1 2/b> $xml->( b => sub { $$_ = 'em' } ); print $xml; # 1 2/em> =head1 DESCRIPTION This module provides a handy wrapper around L and L to provide easy accessors to the XML structures. =head1 NOTES This is a I; all APIs are subject to change, and stream processing mode is not yet in place. Please be patient and don't depend on this module for your production code just now. :) =head1 AUTHORS Audrey Tang Ecpan@audreyt.orgE =head1 COPYRIGHT (The "MIT" License) Copyright 2006 by Audrey Tang . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is fur- nished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut