/[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 23 by dpavlin, Mon Jul 9 21:41:58 2007 UTC revision 27 by dpavlin, Tue Jul 10 00:22:00 2007 UTC
# Line 28  my $mount = { Line 28  my $mount = {
28          tmp             => '/dev/shm/comp',          tmp             => '/dev/shm/comp',
29  };  };
30    
 my $debug = shift @ARGV;  
   
31  my $skip_extensions_regex = qr/\.(?:sw[a-z]|gif|png|jpeg|jpg|avi|rar|zip|bz2|gz|tgz|avi|mpeg|mpg|tmp|temp)$/i;  my $skip_extensions_regex = qr/\.(?:sw[a-z]|gif|png|jpeg|jpg|avi|rar|zip|bz2|gz|tgz|avi|mpeg|mpg|tmp|temp)$/i;
32    
33  # don't compress files smaller than this  # don't compress files smaller than this
# Line 44  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 78  sub gzip_original_size { Line 80  sub gzip_original_size {
80          return unpack("L", $buff);          return unpack("L", $buff);
81  }  }
82    
 sub unlink_all {  
         my $file = shift;  
         warn "# unlink_all( $file )\n";  
   
         my $path = fixup( $file );  
         unlink $path || return 0;  
   
         my $tmp = $mount->{tmp} . '/' . $file;  
         unlink $tmp if ( -e $tmp );  
   
         delete( $pending->{$file} );  
         return 1;  
 }  
   
83  sub x_getattr {  sub x_getattr {
84          my ($file) = fixup(shift);          my ($file) = fixup(shift);
85          my (@list) = lstat($file);          my (@list) = lstat($file);
# Line 182  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 209  sub x_read { Line 197  sub x_read {
197    
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 217  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  sub x_unlink   { return unlink_all( shift ) ? 0 : -$! }  
227    sub x_unlink   {
228            my $file = shift;
229            my $path = fixup( $file );
230    
231            if ( $file =~ m#\Q/.fuse_hidden\E# ) {
232                    return unlink $path ? 0 : -$1;
233            }
234    
235            warn "# unlink( $file )\n";
236    
237            unlink $path || return 0;
238    
239            my $tmp = $mount->{tmp} . '/' . $file;
240            unlink $tmp if ( -e $tmp );
241    
242            delete( $pending->{$file} );
243            return 0;
244    }
245    
246    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  sub x_symlink { return symlink(shift,fixup(shift)) ? 0 : -$!; }          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 246  sub x_rename { Line 285  sub x_rename {
285    
286          my $tmp = $mount->{tmp} . '/' . $old;          my $tmp = $mount->{tmp} . '/' . $old;
287          if ( -e $tmp ) {          if ( -e $tmp ) {
288                  my $new_tmp = $mount->{tmp} . '/' . $new;                  if ( $new =~ m#\Q/.fuse_hidden\E# ) {
289                  rename $tmp, $new_tmp || confess "can't rename $tmp -> $new_tmp : $!";                          unlink $tmp || confess "can't unlink $tmp for $new\n";
290                    } else {
291                            my $new_tmp = $mount->{tmp} . '/' . $new;
292                            rename $tmp, $new_tmp || confess "can't rename $tmp -> $new_tmp : $!";
293                    }
294          }          }
295    
296          if (defined( $pending->{$old} )) {          if (defined( $pending->{$old} )) {
# Line 256  sub x_rename { Line 299  sub x_rename {
299                  my $path = $pending->{$old}->{path};                  my $path = $pending->{$old}->{path};
300                  $path =~ s/\Q$old\E/$new/;                  $path =~ s/\Q$old\E/$new/;
301                  $pending->{$new}->{path} = $path;                  $pending->{$new}->{path} = $path;
                 $pending->{$old}->{path} = $path;  
302    
303                  #delete( $pending->{$old} );                  delete( $pending->{$old} );
304                    warn "## tweaking pending to ", dump( $pending ) if $debug;
305          }          }
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 295  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 314  sub x_mknod { Line 364  sub x_mknod {
364    
365  sub x_release {  sub x_release {
366          my ( $file, $mode ) = @_;          my ( $file, $mode ) = @_;
367    
368            if ( $file =~ m#\Q/.fuse_hidden\E# ) {
369                    warn "release internal $file\n" if $debug;
370                    delete( $pending->{$file} );
371                    return 0;
372            }
373    
374          if ( ! defined( $pending->{$file} ) ) {          if ( ! defined( $pending->{$file} ) ) {
375                  warn "release $file, NO PENDING DATA\n";                  warn "release $file, NO PENDING DATA\n";
376                  return 0;                  return 0;
# Line 331  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 346  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.23  
changed lines
  Added in v.27

  ViewVC Help
Powered by ViewVC 1.1.26