This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use DirHandle; | |
my %results; | |
foreach my $directory (@ARGV) | |
{ | |
my $dir = DirHandle->new($directory); | |
my @files = grep { /\.data/i } $dir->read(); | |
foreach my $file (@files) | |
{ | |
my $parameters = []; | |
open DATA, "code.exe $directory\\$file |" or die "Unable to run code.exe: $!\n"; | |
while (<DATA>) | |
{ | |
$parameters->[$1] = $2 if (/parameter\s*\[(\d+)\]\s*\=\s*(.+)/); | |
} | |
close DATA; | |
$results{$file} = $parameters; | |
} | |
} | |
my @sorted_correct_files = sort grep { /Correct/ } keys %results; | |
my @sorted_incorrect_files = sort grep { !/Correct/ } keys %results; | |
print "\nResults:\n"; | |
foreach my $file (@sorted_correct_files, @sorted_incorrect_files) | |
{ | |
format STDOUT = | |
@<<<<<<<<<<<<<<<<<< @#### @#### @#### @#### @#### @#### @#### @#### @#### | |
$file, $results{$file}->[1], $results{$file}->[2], $results{$file}->[3], $results{$file}->[4], $results{$file}->[5], $results{$file}->[6], $results{$file}->[7], $results{$file}->[8], $results{$file}->[9] | |
. | |
write; | |
} | |
There are a few ways this script is atypical for me. The brainwashing has worked -- for the first time I can remember, I actually started a script with
use strict
. I don't think it saved me this time, but it was simple enough to obey its strictures. This is the first time I've used the DirHandle module. Combined with
grep
, it proved an elegant way to get the filenames to work on.And actually, the use of
grep
to filter lists is a fairly new technique, which I think I picked up in my Perl 6 experiments.By the way, once the full table was generated, I had the bug's cause pinned down in about twenty seconds.
It would better to use lexical handles and 3+ arg open like
ReplyDeleteopen my $DATA, "-|", "code.exe", "$directory\\$file" or die "Unable to run code.exe: $!\n";
The bareword handles are package globals, it would be easy to end up clobbering them in a different part of the program.
The reasons for using the 3+ arg open is similar to using system(LIST) instead of system(STR) which is covered in perldoc -f system.
Text::Reform or Perl6::Form would be a better than using format for reasons similar to the bareword handles and also because it lets you store your formats in variables and reuse them with multiple handles.