walkingthecow has asked for the wisdom of the Perl Monks concerning the following question:
And below is the code that I have. It's not finished, but it's what I have thus far:<host id="bobjones" root-directory="."> <host-alias>www.foo.com</host-alias> <host-alias>www.bar.com</host-alias> <host-alias>www.dj.com</host-alias> </host>
#!/usr/bin/perl use strict; use warnings; use Getopt::Long; use Pod::Usage; my %alias_hash; my %host_hash; my %host_contents; my %seen; my $host_id; my $dbh; my $file1; my $file2; GetOptions( 'h|help' => sub { pod2usage( { -verbose => 1, -input = +> \*DATA, } ); exit; }, 'm|man' => sub { pod2usage( { -verbose => 2, -input = +> \*DATA, } ); exit; }, 'f1|file1=s' => \$file1, 'f2|file2=s' => \$file2, ); pod2usage( -verbose => 1 ) unless $file1 and $file2; open(my $file1_handle, '<', $file1) or die "Could not open $file1 ($!) +\n"; while (my $line=<$file1_handle>) { chomp $line; if ($line =~ /host id="(.*?)"/) { $host_id = $1; $host_hash{$host_id} = -1; } if ($line =~ m{<host-alias>(.*?)</host-alias>}) { $alias_hash{$host_id}{$1} = -1; } } close $file1_handle; open(my $file2_handle, '<', $file2) or die "Could not open $file2 ($!) +\n"; while (my $line=<$file2_handle>) { chomp $line; if ($line =~ /host id="(.*?)"/) { $host_id = $1; $host_hash{$host_id}++; } if ($line =~ m{<host-alias>(.*?)</host-alias>}) { $alias_hash{$host_id}{$1}++; } } close $file1_handle; for my $k1 ( keys %host_hash ) { if ($host_hash{$k1} == -1) { print "$k1\n"; } } for my $k1 ( keys %alias_hash ) { for my $k2 ( keys %{ $alias_hash{$k1} } ) { if ($alias_hash{$k1}{$k2} == -1) { print "$k2\n"; } } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Difficulty Mapping Data
by BrowserUk (Patriarch) on Sep 07, 2010 at 20:43 UTC | |
Re: Difficulty Mapping Data
by ikegami (Patriarch) on Sep 07, 2010 at 20:12 UTC | |
by walkingthecow (Friar) on Sep 07, 2010 at 20:22 UTC | |
by ikegami (Patriarch) on Sep 07, 2010 at 20:48 UTC | |
by ikegami (Patriarch) on Sep 08, 2010 at 02:29 UTC | |
Re: Difficulty Mapping Data
by dasgar (Priest) on Sep 08, 2010 at 07:08 UTC | |
Re: Difficulty Mapping Data
by murugu (Curate) on Sep 08, 2010 at 14:42 UTC |