Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: Struggling with XML

by agentorange (Sexton)
on Oct 08, 2012 at 11:18 UTC ( [id://997797]=note: print w/replies, xml ) Need Help??


in reply to Re: Struggling with XML
in thread Struggling with XML

This I like though due to the fixed stack we have to work with I cannot use Perl later than 5.8.8 and also cannot use LibXML 1.70. I appreciate that is a whole topic of conversation in itself but those are the boundaries. I do appreciate the help though as this is very helpful in getting me going with Perl.

However, I've done a little bit with the code to make it work with 5.8.8 and I'm almost there but currently only outputting subnet and I need gateway, cidr and netmask too.

... my $ua = LWP::UserAgent->new(); my $req = HTTP::Request->new('GET', $url); my $res = $ua->request($req); my $parser = XML::LibXML->new(); sub smart_match { my ($target, $param) = @_; if (ref $param eq 'Regexp') { return ($target =~ qr/$param/); } else { return ($target eq $param); } } my $xml = $parser->parse_string( $res->content() ); my @results; foreach my $dict ($xml->findnodes('//dict')) { my $key = $dict->getAttribute('key'); #next unless $key eq [qw( 'subnet', 'gateway', 'cidr', 'netmas +k' ) ]; next unless smart_match( $key, qw( subnet gateway cidr netmask + ) ); print Dumper($key); push @results, {} if $key eq 'subnet'; my $value = $dict->findvalue('.//value'); $results[-1]{ $key } = "$value"; } print Dumper \@results;
Which outputs:
$VAR1 = 'subnet'; $VAR1 = 'subnet'; $VAR1 = 'subnet'; $VAR1 = 'subnet'; $VAR1 = 'subnet'; $VAR1 = [ { 'subnet' => '10.11.14.0' }, { 'subnet' => '10.11.15.0' }, { 'subnet' => '10.15.8.0' }, { 'subnet' => '10.7.17.224' }, { 'subnet' => '10.11.24.0' } ];

Replies are listed 'Best First'.
Re^3: Struggling with XML
by tobyink (Canon) on Oct 08, 2012 at 12:59 UTC

    Meh... I replied to the wrong node. See Re^2: Struggling with XML.

    perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://997797]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-25 11:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found