| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| our $VERSION = '1.125'; |
|
|
| my $The_OS; |
| BEGIN { $The_OS = $^O ? $^O : q// } |
| eval { require Mac::Files } if ($The_OS eq "MacOS"); |
|
|
| use Getopt::Std; |
| use Convert::BinHex; |
| use POSIX; |
| use Fcntl; |
| use File::Basename; |
| use Carp; |
|
|
| use strict; |
| use vars qw( |
| $opt_o |
| $opt_v |
| ); |
|
|
| my $DEBUG = 0; |
|
|
| |
| |
| |
| sub main { |
|
|
| |
| @ARGV or usage(); |
| getopts('o:v'); |
| $DEBUG = $opt_v; |
|
|
| |
| my $file; |
| foreach $file (@ARGV) { |
| debinhex($file); |
| } |
| } |
| exit(&main ? 0 : -1); |
|
|
| |
| |
| |
| |
|
|
| sub usage { |
| my $msg = shift || ''; |
| my $usage = ''; |
| if (open(USAGE, "<$0")) { |
| while (defined($_ = <USAGE>) and !/^=head1 USAGE/) {}; |
| while (defined($_ = <USAGE>) and !/^=head1/) {$usage .= $_}; |
| close USAGE; |
| } |
| else { |
| $usage = "Usage unavailable; please see the script itself."; |
| } |
| print STDERR "\n$msg$usage"; |
| exit -1; |
| } |
|
|
| |
| |
| |
| |
| |
| sub debinhex { |
| my $inpath = shift || croak("No filename given $!"); |
| local *BHEX; |
| my ($data, $testlength, $length, $fd); |
|
|
| print "DeBinHexing: $inpath\n"; |
|
|
| |
| open(BHEX,"<$inpath") || croak("Unable to open $inpath: $!"); |
| binmode BHEX; |
|
|
| |
| my $hqx = Convert::BinHex->open(FH => \*BHEX); |
|
|
| |
| $hqx->read_header; |
| print $hqx->header_as_string if $DEBUG; |
|
|
| |
| my ($inname, $indir) = fileparse($inpath); |
| my $outname = $hqx->filename || 'NONAME'; |
| my $outdir = $opt_o || $indir; |
| my $outpath = "$outdir/$outname"; $outpath =~ s{/+}{/}g; |
|
|
| |
| if ($The_OS eq "MacOS") { |
| Mac::Files::FSpCreate($outpath, $hqx->creator, $hqx->type) |
| or croak("Unable to create Mac file $outpath"); |
| } |
|
|
| |
| my $dlength = $hqx->data_length; |
| my $rlength = $hqx->resource_length; |
|
|
| |
| print "Writing: $outpath\n"; |
| $fd = POSIX::open($outpath, (&POSIX::O_WRONLY | &POSIX::O_CREAT | &Fcntl::O_BINARY), 0755); |
| $testlength = 0; |
| while (defined($data = $hqx->read_data)) { |
| $length = length($data); |
| POSIX::write($fd, $data, $length) |
| or croak("couldn't write $length bytes: $!"); |
| $testlength += $length; |
| } |
| POSIX::close($fd) or croak "Unable to close $outpath"; |
| croak("Data fork length mismatch: ". |
| "expected $dlength, wrote $testlength") |
| if $dlength != $testlength; |
|
|
| |
| if ($rlength) { |
|
|
| |
| my ($rpath, $rflags); |
| if ($The_OS eq "MacOS") { |
| $rpath = $outpath; |
| $rflags = (&POSIX::O_WRONLY | &POSIX::O_CREAT | &Fcntl::O_RSRC); |
| } |
| else { |
| $rpath = "$outpath.rsrc"; |
| $rflags = (&POSIX::O_WRONLY | &POSIX::O_CREAT | &Fcntl::O_BINARY); |
| } |
|
|
| |
| $fd = POSIX::open($rpath, $rflags, 0755); |
| $testlength = 0; |
| while (defined($data = $hqx->read_resource)) { |
| $length = length($data); |
| POSIX::write($fd,$data,$length) |
| or croak "Couldn't write $length bytes: $!"; |
| $testlength += $length; |
| } |
| POSIX::close($fd) or croak "Unable to close $rpath"; |
| croak("Resource fork length mismatch: ". |
| "expected $rlength, wrote $testlength") |
| if $testlength != $rlength; |
| } |
|
|
| |
| if ($The_OS eq "MacOS") { |
| my $has = Mac::Files::FSpGetCatInfo($outpath); |
| my $finfo = $has->{ioFlFndrInfo}; |
| $finfo->{fdFlags} = $hqx->flags & 0xfeff; |
| $finfo->{fdType} = $hqx->type || "????"; |
| $finfo->{fdCreator} = $hqx->creator || "????"; |
|
|
| |
| |
|
|
| if ($DEBUG) { |
| printf("%x\n",$finfo->{fdFlags}); |
| printf("%s\n",$finfo->{fdType}); |
| printf("%s\n",$finfo->{fdCreator}); |
| } |
| $has->{ioFlFndrInfo} = $finfo; |
| Mac::Files::FSpSetCatInfo($outpath, $has) |
| or croak "Unable to set catalog info $^E"; |
| if ($DEBUG) { |
| $has = Mac::Files::FSpGetCatInfo ($outpath); |
| printf("%x\n",$has->{ioFlFndrInfo}->{fdFlags}); |
| printf("%s\n",$has->{ioFlFndrInfo}->{fdType}); |
| printf("%s\n",$has->{ioFlFndrInfo}->{fdCreator}); |
| } |
| } |
| 1; |
| } |
|
|
| |
| __END__ |
| |
|
|