/[fuse-comp]/fuse-comp.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /fuse-comp.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 25 by dpavlin, Mon Jul 9 22:44:20 2007 UTC revision 27 by dpavlin, Tue Jul 10 00:22:00 2007 UTC
# Line 42  foreach my $dir ( keys %$mount ) { Line 42  foreach my $dir ( keys %$mount ) {
42    
43  my $pending;  my $pending;
44    
45    sub real_name {
46            my ( $dir, $name ) = @_;
47            if ( -e "$dir/${name}.gz" ) {
48                    return "${name}.gz";
49            }
50            return $name;
51    }
52    
53  sub fixup {  sub fixup {
54          my ( $path ) = @_;          my ( $path ) = @_;
55          my $full = $mount->{from} . '/' . $path;          return $mount->{from} . '/' . real_name( $mount->{from}, $path );
         if ( -e $full . '.gz' ) {  
                 return $full . '.gz';  
         }  
         return $full;  
56  }  }
57    
58  sub original_name {  sub original_name {
# Line 166  sub x_open { Line 170  sub x_open {
170                  $pending->{$file}->{path} = $path;                  $pending->{$file}->{path} = $path;
171                  return 0;                  return 0;
172          } else {          } else {
173                  warn "ERROR: can't open $path : $!";                  warn "ERROR: can't open $path -- $!";
174                  return -$!;                  return -$!;
175          }          }
176    
# Line 194  sub x_read { Line 198  sub x_read {
198  sub x_write {  sub x_write {
199          my ($file,$buf,$off) = @_;          my ($file,$buf,$off) = @_;
200    
         $pending->{$file}->{write}++;  
201          my $rv;          my $rv;
202          my $path = fixup($file);          my $path = fixup($file);
203    
# Line 202  sub x_write { Line 205  sub x_write {
205    
206          return -ENOENT() unless -e $path;          return -ENOENT() unless -e $path;
207    
208            $path = $pending->{$file}->{path} || confess "no path for $file in ", dump( $pending );
209            confess "write into non-existant $path for $file: $!" unless -e $path;
210    
211          my $fh = new IO::File;          my $fh = new IO::File;
212          return -ENOSYS() unless open($fh,'+<',$pending->{$file}->{path});          return -ENOSYS() unless open($fh,'+<',$path);
213          if($rv = seek( $fh ,$off,SEEK_SET)) {          if($rv = seek( $fh ,$off,SEEK_SET)) {
214                  $rv = print( $fh $buf );                  $rv = print( $fh $buf );
215                  warn "## write ", $pending->{$file}->{path}, " $off ",length( $buf ), "\n" if $debug;                  warn "## write $path offset $off [",length( $buf ), "]\n" if $debug;
216                    $pending->{$file}->{write}++;
217          }          }
218          $rv = -ENOSYS() unless $rv;          $rv = -ENOSYS() unless $rv;
219          close($fh);          close($fh) || warn "can't close $path: $!";
220          return length($buf);          return length($buf);
221  }  }
222    
223  sub err { return (-shift || -$!) }  sub err { return (-shift || -$!) }
224    
225  sub x_readlink { return readlink(fixup(shift));         }  sub x_readlink { return readlink(fixup(shift)); }
226    
227  sub x_unlink   {  sub x_unlink   {
228          my $file = shift;          my $file = shift;
229          my $path = fixup( $file );          my $path = fixup( $file );
# Line 235  sub x_unlink   { Line 243  sub x_unlink   {
243          return 0;          return 0;
244  }  }
245    
246  sub x_symlink { return symlink(shift,fixup(shift)) ? 0 : -$!; }  sub x_symlink {
247            my ($from,$to) = @_;
248    
249            my $from_path = $from;  #fixup( $from );
250            my $to_path = fixup( $to );
251    
252            my $rv = symlink( $from_path, $to_path ) ? 0 : -$!;
253            warn "# symlink( $from_path -> $to_path ) = $rv\n" if $debug;
254    
255            my $tmp = $mount->{tmp} . '/' . $from;
256            if ( -e $tmp ) {
257                    my $tmp_to = $mount->{$tmp} . '/' . $to;
258                    symlink( $tmp, $tmp_to ) || confess "can't symlink $tmp -> $tmp_to: $!";
259            }
260            return $rv;
261    }
262    
263    sub x_link {
264            my ($from,$to) = @_;
265    
266            my $from_path = fixup($from);
267            my $to_path = fixup($to);
268            $to_path .= '.gz' if ( $from_path =~ m/\.gz$/ && $to_path !~ m/\.gz$/ );
269    
270            my $rv = link( $from_path, $to_path ) ? 0 : -$!;
271    
272            warn "# link( $from_path -> $to_path ) = $rv\n" if $debug;
273    
274            return $rv;
275    }
276    
277  sub x_rename {  sub x_rename {
278          my ($old,$new) = @_;          my ($old,$new) = @_;
# Line 269  sub x_rename { Line 306  sub x_rename {
306    
307          return $err;          return $err;
308  }  }
 sub x_link { return link(fixup(shift),fixup(shift)) ? 0 : -$! }  
309    
310  sub x_chown {  sub x_chown {
311          my ($path) = fixup(shift);          my ($file,$uid,$gid) = @_;
312            my $path = fixup($file);
313          print "nonexistent $path\n" unless -e $path;          print "nonexistent $path\n" unless -e $path;
         my ($uid,$gid) = @_;  
314          # perl's chown() does not chown symlinks, it chowns the symlink's          # perl's chown() does not chown symlinks, it chowns the symlink's
315          # target.  it fails when the link's target doesn't exist, because          # target.  it fails when the link's target doesn't exist, because
316          # the stat64() syscall fails.          # the stat64() syscall fails.
317          # this causes error messages when unpacking symlinks in tarballs.          # this causes error messages when unpacking symlinks in tarballs.
318          my ($err) = syscall(&SYS_lchown,$path,$uid,$gid,$path) ? -$! : 0;          my ($err) = syscall(&SYS_lchown,$path,$uid,$gid,$path) ? -$! : 0;
319    
320            my $tmp = $mount->{tmp} . '/' . $file;
321            syscall(&SYS_lchown,$file,$uid,$gid,$path) if -e $tmp;
322    
323          return $err;          return $err;
324  }  }
325    
# Line 301  sub x_truncate { Line 341  sub x_truncate {
341          }          }
342          warn "## truncate( $file $size ) $path [", -s $path, "] = $rv\n" if $debug;          warn "## truncate( $file $size ) $path [", -s $path, "] = $rv\n" if $debug;
343          $pending->{$file}->{write}++;          $pending->{$file}->{write}++;
344    
345            my $tmp = $mount->{tmp} . '/' . $file;
346            truncate( $tmp, $size ) if -e $tmp;
347    
348          return $rv;          return $rv;
349  }  }
350  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }
# Line 344  sub x_release { Line 388  sub x_release {
388                  }                  }
389    
390                  if ( $file =~ $skip_extensions_regex ) {                  if ( $file =~ $skip_extensions_regex ) {
391                          warn "release $file [",-s $path,"] skipped compression\n";                          warn "release $path [",-s $path,"] skipped compression\n";
392                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
393                  } elsif ( -s $path < $min_compress_size ) {                  } elsif ( -s $path < $min_compress_size ) {
394                          warn "release $file [",-s $path,"] uncompressed, too small\n";                          warn "release $path [",-s $path,"] uncompressed, too small\n";
395                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
396                  } else {                  } else {
397                          warn "release $file [",-s $path,"] compressing\n";                          warn "release $path [",-s $path,"] compressing\n";
398    
399                          my $comp = $dest . '.gz';                          my $comp = $dest . '.gz';
400                          file_copy( '<', $path, '>:gzip', $comp );                          file_copy( '<', $path, '>:gzip', $comp );
# Line 359  sub x_release { Line 403  sub x_release {
403    
404                          if ( $size_path <= $size_comp ) {                          if ( $size_path <= $size_comp ) {
405                                  warn ">>> $size_path <= $size_comp leaving uncompressed\n";                                  warn ">>> $size_path <= $size_comp leaving uncompressed\n";
406                                  unlink $comp || warn "can't reamove: $comp: $!";                                  unlink $comp || confess "can't remove: $comp: $!";
407                          } else {                          } else {
408                                  warn ">>> compressed $size_path -> $size_comp ",int(($size_comp * 100) / $size_path),"%\n";                                  warn ">>> compressed $size_path -> $size_comp ",int(($size_comp * 100) / $size_path),"%\n";
409                                  # FIXME add timeout to remove uncompressed version?                                  # FIXME add timeout to remove uncompressed version?
410                                  unlink $path || warn "can't remove $path: $!";                                  unlink $path || confess "can't remove $path: $!";
411                          }                          }
412                  }                  }
413          } else {          } else {

Legend:
Removed from v.25  
changed lines
  Added in v.27

  ViewVC Help
Powered by ViewVC 1.1.26