1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
use PDL::LiteF;
use PDL::IO::FlexRaw;
use PDL::Config;
use Config;
use Test::More;
use strict;
$|=1;
my $ndata = 10;
my $Verbose = 0;
my $DEBUG = 0;
$PDL::Verbose = 0;
$Verbose |= $PDL::Verbose;
my $exec = $^O =~ /win32/i ? '.exe' : '';
my $null = $^O =~ /win32/i ? ' 2>nul' : ' 2>/dev/null';
BEGIN{
my $ntests = 29;
unless ( $PDL::Config{WITH_SLATEC} ) {
plan skip_all => "Skipped tests as F77 compiler not found";
} elsif ($Config{archname} =~ /(x86_64|ia64)/) {
plan skip_all => "Skipped tests for 64 bit architecture: $1";
} else {
plan tests => $ntests;
}
# Configuration
# Get ExtUtils::F77 if run in either PDL/t/ or PDL/
#
if(-e 'flexraw.t') {
unshift @INC, '../Lib/Slatec/' if -e 'flexraw.t';
} elsif(-e 'Changes') {
unshift @INC, 'Lib/Slatec/' if -e 'Changes';
} else {
print "I'm not in PDL now, right? Still trying\n";
}
eval " use ExtUtils::F77; ";
if ( $@ ) {
for ( 1..$ntests ) { skip( "Skip tests as ExtUtils::F77 not found" ); }
exit 0;
}
}
# use ExtUtils::F77;
my $F77;
my $F77flags;
if ($ExtUtils::F77::VERSION > 1.03) {
$F77 = ExtUtils::F77::compiler();
$F77flags = ExtUtils::F77::cflags();
} else {
$F77 = 'f77';
$F77flags = '';
}
sub tapprox {
my ($a,$b) = @_;
my $c = abs($a->clump(-1)-$b->clump(-1));
my $d = max($c);
$d < 0.01;
}
sub byte4swap {
my ($file) = @_;
my ($ofile) = $file.'~';
my ($word);
my $ifh = IO::File->new( "<$file" )
or die "Can't open $file to read";
my $ofh = IO::File->new( ">$ofile" )
or die "Can't open $ofile to write";
binmode $ifh;
binmode $ofh;
while ( !$ifh->eof ) {
$ifh->read( $word, 4 );
$word = pack 'c4',reverse unpack 'c4',$word;
$ofh->print( $word );
}
$ofh->close;
$ifh->close;
rename $ofile, $file;
}
sub byte8swap {
my ($file) = @_;
my ($ofile) = $file.'~';
my ($word);
my $ifh = IO::File->new( "<$file" )
or die "Can't open $file to read";
my $ofh = IO::File->new( ">$ofile" )
or die "Can't open $ofile to write";
binmode $ifh;
binmode $ofh;
while ( !$ifh->eof ) {
$ifh->read( $word, 8 );
$word = pack 'c8',reverse unpack 'c8',$word;
$ofh->print( $word );
}
$ofh->close;
$ifh->close;
rename $ofile, $file;
}
# utility to fold long lines preventing problems with 72
# char limit and long text parameters (e.g. filenames)
sub codefold {
my $oldcode = shift;
my $newcode = '';
eval {
# to simplify loop processing, introduces dependence
require IO::String;
my $in = IO::String->new($oldcode);
my $out = IO::String->new($newcode);
# find non-comment lines longer than 72 columns and fold
my $line = '';
while ($line = <$in>) {
# clean off line-feed stuff
chomp $line;
# pass comments to output
print $out "$line\n" if $line =~ /^\S/;
# output code lines (by 72-char chunks if needed)
while ($line ne '') {
# output first 72 columns of the line
print $out substr($line,0,72) . "\n"; # print first 72 cols
if ( length($line) > 72 ) {
# make continuation line of the rest of the line
substr($line,0,72) = ' $';
} else {
$line = '';
}
}
}
# close "files" and return folded code
close($in);
close($out);
};
$newcode = $oldcode if $@;
return $newcode;
}
sub inpath {
my ($prog) = @_;
my $pathsep = $^O =~ /win32/i ? ';' : ':';
my $exe = $^O =~ /win32/i ? '.exe' : '';
for(split $pathsep,$ENV{PATH}){return 1 if -x "$_/$prog$exe"}
return 0;
}
# createData $head, $code
#
# given a F77 program (in $code), compile and run it.
# It is expected to create a data file called
# "${head}data"
# The executable and code are cleaned up but NOT the
# data file.
#
# Requires the global variables
# $F77
# $F77flags
# $Verbose
# $DEBUG
#
sub createData {
my $head = shift;
my $code = shift;
# try and provide a modicum of safety, since we call
# system with $head as the argument
#
if($^O =~ /mswin32/i) {
die '$head [' . $head . '] should match /^[A-Z]:\\/'
unless $head =~ /^[A-Z]:\\/;
}
else {
die '$head [' . $head . '] must start with a / or ./'
unless $head =~ /^(\/|\.\/)/;
}
my $file = "${head}.f";
my $prog = $head;
my $data = "${head}data";
my $fh = IO::File->new( "> $file" )
or die "ERROR: Unable to write F77 code to $file\n";
$fh->print( $code );
$fh->close;
system("$F77 $F77flags -o $prog$exec $file".
(($Verbose || $DEBUG)?'': $null));
unlink $data if -f $data;
system( $prog );
die "ERROR: code did not create data file $data\n"
unless -e $data;
unlink $prog.$exec, $file;
} # sub: createData()
# Types to test the translation for, perl + f77 forms
my %types = ( 'float' => 'real*4', 'double' => 'real*8', 'long' => 'integer*4',
'short' => 'integer*2', 'byte' => 'character' );
# Perl and f77 functions should be have the same net effect...
my $exprf = '100.*sin(0.01* i)';
my $exprp = '100.*sin(0.01*$i)';
#$exprf = 'i';
#$exprp = '$i';
# Two dimensional functions
my $expr2f = '100.*sin(0.01* i)*cos(0.01* j)';
# no output autocreation means have this mess...
my $expr2p = '(outer(sin(0.01*$i),cos(0.01*$j),$c=null),$c*100.)';
# need to define/declare variables used in the expressions above
my $j = sequence($ndata)+1;
my $i = $j;
my $c;
my $tmpdir = $PDL::Config{TEMPDIR};
$tmpdir =~ s/\\/\\\\/g;
my $head;
if($^O =~ /mswin32/i) {$head = $tmpdir . "\\\\tmpraw"}
else {$head = $tmpdir . "/tmpraw"}
my $data = $head . "data";
my $hdr = $data . ".hdr";
# 1 dimensional --
#
# f77, implied & explicit swapping for 4 byte types, with 2 separate
# writes; and header array as well as header file
#
foreach my $pdltype ('float', 'long') {
print STDERR "Type $pdltype swapped\n" if $Verbose;
my $f77type = $types{$pdltype};
my $val = $exprf;
$val = "char(int($val))" if $pdltype eq 'byte';
my $code = <<"EOT";
c Program to test i/o of F77 unformatted files
program rawtest
implicit none
integer i
$f77type a($ndata)
do i = 1, $ndata
a(i) = $val
enddo
open(8,file='$data'
\$,status='new',form='unformatted')
i = $ndata
write (8) i
write (8) a
close(8)
end
EOT
createData $head, codefold($code);
byte4swap($data);
open(FILE, "> $hdr");
print FILE <<"EOT";
# FlexRaw file header
f77
long 1 1
# Data
$pdltype 1 $ndata
EOT
close(FILE);
my @a = readflex($data);
# print "@a\n";
my $ok = ($a[0]->at(0) == $ndata);
my $res = eval "$pdltype $exprp";
ok( $ok && tapprox($res,$a[1]) );
open(FILE,">$hdr");
print FILE <<"EOT";
# FlexRaw file header
swap
f77
# now for data specifiers
long 1 1
# Data
$pdltype 1 $ndata
EOT
close(FILE);
@a = readflex($data);
#print "@a\n";
unlink $hdr;
$ok = ($a[0]->at(0) == $ndata);
$res = eval "$pdltype $exprp";
ok( $ok && tapprox($res,$a[1]) );
# Now try header array
$ok = 1;
my $header = [ {Type => 'f77'},
{Type => 'long', NDims => 1, Dims => [ 1 ] },
{Type => $pdltype, NDims => 1, Dims => [ $ndata ] } ];
@a = readflex($data,$header);
unlink $data;
$ok = ($a[0]->at(0) == $ndata);
$res = eval "$pdltype $exprp";
ok( $ok && tapprox($res,$a[1]) );
# print $a[1]->getndims()," [",$a[1]->dims,"]\n";
} # foreach: $pdltype == 'float', 'double'
# 1d, all types, normal way round, f77 specifier
foreach my $pdltype (keys %types) {
print STDERR "Type $pdltype\n" if $Verbose;
my $f77type = $types{$pdltype};
my $val = $exprf;
$val = "char(int($val))" if $pdltype eq 'byte';
my $code = <<"EOT";
c Program to test i/o of F77 unformatted files
program rawtest
implicit none
integer i
$f77type a($ndata)
do i = 1, $ndata
a(i) = $val
enddo
open(8,file='$data'
\$,status='new',form='unformatted')
i = $ndata
write (8) i,a
close(8)
end
EOT
createData $head, codefold($code);
open(FILE, ">$hdr" );
print FILE <<"EOT";
# FlexRaw file header
f77
long 1 1
# Data
$pdltype 1 $ndata
EOT
close(FILE);
my @a = readflex($data);
# print "@a\n";
unlink $data, $hdr;
my $ok = ($a[0]->at(0) == $ndata);
my $res = eval "$pdltype $exprp";
ok($ok && tapprox($res,$a[1]));
# print $a[1]->getndims()," [",$a[1]->dims,"]\n";
} # foreach: $pdltype ( keys %types )
# 1 dimensional, no f77 specifier (format words explicitly ignored)
foreach my $pdltype (keys %types) {
print STDERR "Type $pdltype\n" if $Verbose;
my $f77type = $types{$pdltype};
my $val = $exprf;
$val = "char(int($val))" if $pdltype eq 'byte';
my $code = <<"EOT";
c Program to test i/o of F77 unformatted files
program rawtest
implicit none
integer i
$f77type a($ndata)
do i = 1, $ndata
a(i) = $val
enddo
open(8,file='$data'
\$,status='new',form='unformatted')
i = $ndata
write (8) i,a
close(8)
end
EOT
createData $head, codefold($code);
open(FILE,">$hdr");
print FILE <<"EOT";
# FlexRaw header file
byte 1 4
long 1 # Test comments
1 Tricky comment
# Data
$pdltype 1 $ndata
byte 1 4
# and hanging EOF
EOT
close(FILE);
my @a = readflex($data);
# print "@a\n";
unlink $data, $hdr;
my $ok = ($a[1]->at(0) == $ndata);
my $res = eval "$pdltype $exprp";
ok( $ok && tapprox($res,$a[2]));
# print $a[2]->getndims()," [",$a[2]->dims,"]\n";
}
# 2 dimensional
foreach my $pdltype (keys %types) {
print STDERR "Type $pdltype\n" if $Verbose;
my $f77type = $types{$pdltype};
my $val = $expr2f;
$val = "char(int($val))" if $pdltype eq 'byte';
my $code = <<"EOT";
c Program to test i/o of F77 unformatted files
program rawtest
implicit none
integer i, j
$f77type a($ndata, $ndata)
do i = 1, $ndata
do j = 1, $ndata
a(i,j) = $val
enddo
enddo
open(8,file='$data'
\$,status='new',form='unformatted')
i = $ndata
write (8) i,a
close(8)
end
EOT
createData $head, codefold($code);
open(FILE,">$hdr");
print FILE <<"EOT";
# FlexRaw file header
f77
long 1 1
# Data
$pdltype 2 $ndata $ndata
EOT
close(FILE);
my @a = readflex($data);
# if ($pdltype eq 'byte') {
# print "$pdltype @a\n";
# system("ls -l $data");
# }
unlink $data, $hdr;
my $ok = ($a[0]->at(0) == $ndata);
my $res = eval "$pdltype $expr2p";
ok( $ok && tapprox($res,$a[1]));
# print $a[1]->getndims()," [",$a[1]->dims,"]\n";
}
print STDERR "Combined types case\n" if $Verbose;
my $code = <<"EOT";
c Program to test i/o of F77 unformatted files
program rawtest
implicit none
character a
integer*2 i
integer*4 l
real*4 f
real*8 d
d = 4*atan(1.)
f = d
l = 10**d
i = l
a = ' '
open(8,file='$data'
\$,status='new',form='unformatted')
c Choose bad boundaries...
write (8) a,i,l,f,d
close(8)
end
EOT
createData $head, codefold($code);
open(FILE,">$hdr");
print FILE <<"EOT";
# FlexRaw file header
byte 1 4
byte 0
short 0
long 0
float 0
double 0
byte 1 4
EOT
close(FILE);
my @a = readflex($data);
#print "@a\n";
shift @a;
my $d = double pdl (4*atan2(1,1));
my $f = float ($d);
my $l = long (10**$f);
$i = short ($l);
my $a = byte (32);
my @req = ($a,$i,$l,$f,$d);
my $ok = 1;
foreach (@req) {
my $h = shift @a;
$ok &&= tapprox($_,$h);
}
ok( $ok );
SKIP: {
my $compress = inpath('compress') ? 'compress' : 'gzip'; # some linuxes don't have compress
$compress = 'gzip' if $^O eq 'cygwin'; # fix bogus compress script prob
if ( $^O eq 'MSWin32' ) { # fix for ASPerl + MinGW, needs to be more general
skip "No compress or gzip command on MSWin32", 1 unless inpath($compress) and $^O;
}
# Try compressed data
$ok = 1;
system "$compress -c $data > ${data}.Z";
unlink( $data );
@a = readflex($data);
$ok &&= $#a==6;
@a = readflex("${data}.Z");
$ok &&= $#a==6;
system "gunzip -q ${data}.Z";
system "gzip -q $data";
@a = readflex($data);
$ok &&= $#a==6;
@a = readflex("${data}.gz");
$ok &&= $#a==6;
shift @a;
unlink "${data}.gz", $hdr;
$d = double pdl (4*atan2(1,1));
$f = float ($d);
$l = long (10**$f);
$i = short ($l);
$a = byte (32);
@req = ($a,$i,$l,$f,$d);
foreach (@req) {
my $h = shift @a;
$ok &&= tapprox($_,$h);
}
ok( $ok );
}
# Try writing data
my $flexhdr = writeflex($data,@req);
writeflexhdr($data,$flexhdr);
@a = readflex($data);
unlink $hdr;
$ok = 1;
foreach (@req) {
# print "$_ vs ",@a[0],"\n";
$ok &&= tapprox($_,shift @a);
}
ok( $ok);
@a = readflex($data, $flexhdr);
$ok = 1;
foreach (@req) {
# print "$_ vs ",@a[0],"\n";
$ok &&= tapprox($_,shift @a);
}
ok( $ok);
unlink $data;
$#a = -1;
foreach (@req) {
push @a,$_->dummy(0,10);
}
$flexhdr = writeflex($data,@a);
$flexhdr = [ {Type => 'byte', NDims => 1, Dims => 10},
{Type => 'short', NDims => 1, Dims => 10},
{Type => 'long', NDims => 1, Dims => 10},
{Type => 'float', NDims => 1, Dims => 10},
{Type => 'double', NDims => 1, Dims => 10} ];
@a = readflex($data, $flexhdr);
$ok = 1;
foreach (@req) {
# print "$_ vs ",@a[0],"\n";
$ok &&= tapprox($_,slice(shift @a,"(0)"));
}
ok( $ok);
unlink $data;
# Writing multidimensional data
map {$_ = $_->dummy(0,10)} @req;
$flexhdr = writeflex($data,@req);
writeflexhdr($data,$flexhdr);
@a = readflex($data);
unlink $data, $hdr;
$ok = 1;
foreach (@req) {
# print "$_ vs ",@a[0],"\n";
$ok &&= tapprox($_,shift @a);
}
ok( $ok);
# Use readflex with an open file handle
@req = (byte(1..3),
long(5..10),
float(10..15)->reshape(3,2)/100,
double(0..99)/1e8);
$flexhdr = writeflex($data, @req);
open(IN, $data);
@a = readflex(\*IN, $flexhdr);
$ok = 1;
foreach (@req) {
# print "$_ vs ",@a[0],"\n";
$ok &&= tapprox($_,shift @a);
}
close(IN);
unlink $data;
ok( $ok);
# use writeflex with an open file handle
open(OUT, ">$data");
$flexhdr = writeflex(\*OUT, @req);
close(OUT);
@a = readflex($data, $flexhdr);
$ok = 1;
foreach (@req) {
# print "$_ vs ",@a[0],"\n";
$ok &&= tapprox($_,shift @a);
}
unlink $data;
ok( $ok);
|