Going through a Hash of Hash in Perl?
When I try to deference the stored reference (which is set up in the extract Tripwire/get Data subroutines) and convert it back to a hash(in the Compare subroutine), ie %hash = %{$DataHash{$key}};, and I try to print the keys. I run into these problems:
Use of uninitialized values $hash{"ElementName"} in array dereference at line... This is at @hashItems = @{$hash{ElementName}}; line
Use of uninitialized value in print at .... print "Data: ", $hash{ElementName}, "\n"; line
sub extract_tripwire{
foreach $server (@servers){
$server = lc $server;
my $xlfile = "";
$xlfile .= "";
# Open the provided Excel sheet
my $book = $xl->Workbooks->Open($xlfile);
# Setip active worksheet
my $sheet = $book->Worksheets(1);
# Finds the Last row that has data in it
my $LastRow = $sheet->UsedRange->Find({What=>"*",
SearchDirection=>xlPrevious,
SearchOrder=>xlByRows})->{Row};
my $LastCol = $sheet->UsedRange->Find({What=>"*",
SearchDirection=>xlPrevious,
SearchOrder=>xlByColumns})->{Column};
print "Last Row: $LastRow, Last Column: $LastCol\n";
#This will be a reference to a hash
if($LastRow > 1){
my %Data = %{&get_Data($LastRow,$LastCol,$sheet)};
}
else{
print "No program Changes\n";
}
# Close the workbook when done
$xl->ActiveWorkbook->Close(0);
#Maybe Store a reference to the hash?
$DataHash{$server} = \%Data;
}
# Get the names of the columns from the given excel file
sub get_Data{
# Initialization of variables
my @header;
my @data;
my %Data;
# Print out all the data
开发者_JAVA技巧 my $array = $_[2]->Range("A1:I1")->{'Value'};
# Cycle through A1->I1 , A1->B1->C1->D1...
foreach my $ref_array (@$array){
foreach my $scalar(@$ref_array){
push @header, $scalar;
}
}
#The letters that are associated with the columns of the excel file
my @letters = ('A','B','C','D','E','F','G','H','I');
my $counter = 0;
# Loop through all the columns and store the data within a hash with the specific header as its key
for($index = 0; $index < scalar @letters; $index++,$counter++){
# The range of the column
my $array = $_[2]->Range("$letters[$index]2:$letters[$index]$_[0]")->{'Value'};
# Cycle through A2->I4 , A2->A3->A4->...->I2->...
foreach my $ref_array (@$array){
foreach my $scalar(@$ref_array){
if(defined($scalar)){
push @data, $scalar;
}
else{
$scalar = " ";
}
}
}
$Data{$header[$counter]} = @data;
@data = ();
}
# Return the data hash
return \%Data;
}
&Compare(\%DataHash);
}
sub Compare{
# Get the hash of a has that was created from the tripwire reports
my %Datahash = %{$_[0]};
# Get the keys of that file
@keys = sort keys %DataHash;
foreach(@keys){
print "Keys: $_\n";
}
#Loop through the keys
foreach my $key (@keys){
----------> #This is the Main PROBLEM in the code
----------> %hash = %{$DataHash{$key}};
# Get all the keys of that hash
@hashKeys = keys %hash;
print "Data: ", $hash{ElementName}, "\n";
#Get the items Programs that has been implemented
@hashItems = @{$hash{ElementName}};
#Try and match them up against the Task from Alfresco
for($i = 0; $i < scalar @hashItems;$i++){
for($j = 0; $j < scalar @promoCode; $j++){
#Split up the PromoCode Here!!!! 0- File name, 1- Task #
#If a match has been found
if($hashItems[$i] ~~ $promoCode[$j]){
# Extract the row that match
foreach (@hashKeys){
@array = @{$hash{$_}};
#And store it in this array
push @pass, $array[$i];
}
# So that the information can be passed to the Reconcile routine to be added to the Details and Summary reports + Task #
&Reconcile(@pass,$i);
#Need insert and empty row
$sheet->Range("A$lastRow:G$LastRow")->Select;
$xl->Selection->Interior->{ColorIndex} = 15;
$xl->Selection->Interior->{Pattern} = xlSolid;
}
}
}
}
}'
Is there a problem with how i'm creating the hash of hash? How i'm reading it?
If this is about debugging your code, might I suggest using Data::Dumper to print your hash? It should provide you with enough information to sort out the kinks.
use Data::Dumper;
print Dumper \%hash;
Well for one thing this statement:
$Data{$header[$counter]} = @data;
will assign the size of the array @data to the hash value, probably not what you intended!
to assign the array you need to do this:
@{ $Data{$header[$counter]} } = @data
This is needless:
foreach my $scalar(@$ref_array){
push @header, $scalar;
}
as it is more simply stated:
push @header, @$ref_array;
But as for your big problem, line 88 (by my count):
&Compare(\%DataHash);
Because %DataHash
is not defined--you probably don't have strict
on. Which means that it creates a package variable %main::DataHash
, which is an empty hash and passes a reference to that empty hash. So it only figures that $DataHash{ElementName}
would be undef
.
Since you've been dealing with %Data
, you probably wanted to do this:
Compare( \%Data );
You don't need the ampersands the way you're calling the sub.
So this is a USUW - use strict; use warnings;
精彩评论