/[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 20 by dpavlin, Mon Jul 9 16:20:07 2007 UTC revision 30 by dpavlin, Tue Jul 10 10:48:21 2007 UTC
# Line 12  use File::Path; Line 12  use File::Path;
12  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
13  use Carp qw/confess/;  use Carp qw/confess/;
14  use IO::File;  use IO::File;
15    use Getopt::Long;
16    
17    my $debug = 0;
18    my $fuse_debug = 0;
19    my $stats = 1;
20    
21    GetOptions(
22            'debug+' => \$debug,
23            'fuse-debug+' => \$fuse_debug,
24            'stats!' => \$stats,
25    );
26    
27  my $mount = {  my $mount = {
28          from    => '/tmp/comp',          from    => '/tmp/comp',
# Line 19  my $mount = { Line 30  my $mount = {
30          tmp             => '/dev/shm/comp',          tmp             => '/dev/shm/comp',
31  };  };
32    
 my $debug = shift @ARGV;  
   
33  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;
34    
35  # don't compress files smaller than this  # don't compress files smaller than this
# Line 35  foreach my $dir ( keys %$mount ) { Line 44  foreach my $dir ( keys %$mount ) {
44    
45  my $pending;  my $pending;
46    
47    sub real_name {
48            my ( $dir, $name ) = @_;
49            if ( -e "$dir/${name}.gz" ) {
50                    confess "ASSERT: unexpected $dir/$name exists" if -e "$dir/$name";
51                    return "${name}.gz";
52            }
53            return $name;
54    }
55    
56  sub fixup {  sub fixup {
57          my ( $path ) = @_;          my ( $path ) = @_;
58          my $full = $mount->{from} . '/' . $path;          return $mount->{from} . '/' . real_name( $mount->{from}, $path );
         if ( -e $full . '.gz' ) {  
                 return $full . '.gz';  
         }  
         return $full;  
59  }  }
60    
61  sub original_name {  sub original_name {
# Line 69  sub gzip_original_size { Line 83  sub gzip_original_size {
83          return unpack("L", $buff);          return unpack("L", $buff);
84  }  }
85    
 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;  
 }  
   
86  sub x_getattr {  sub x_getattr {
87          my ($file) = fixup(shift);          my ($file) = fixup(shift);
88          my (@list) = lstat($file);          my (@list) = lstat($file);
# Line 124  sub file_copy { Line 124  sub file_copy {
124          undef $s;          undef $s;
125  }  }
126    
127    sub tmp_path {
128            my $file = shift;
129    
130            my $path = fixup( $file );
131    
132            my $op = 'UNKNOWN';
133    
134            if (defined( $pending->{$file} )) {
135                    $path = $pending->{$file}->{path} || confess "no path for $file in ",dump( $pending );
136                    $op = 'opened';
137            } else {
138                    my $tmp = $mount->{tmp} . '/' . $file;
139                    if ( -e $tmp ) {
140                            $path = $tmp;
141                            $op = 'existing';
142                    } elsif ( $path =~ m/\.gz$/ ) {
143                            my $dest_path = $tmp;
144                            $dest_path =~ s!/[^/]+$!!;      #!vim-fix
145                            mkpath $dest_path unless -e $dest_path;
146                            if ( -s $path ) {
147                                    file_copy( '<:gzip', $path, '>', $tmp )
148                            } else {
149                                    confess "ASSERT: filesystem corruption, $path is zero size\n";
150                            }
151                            $path = $tmp;
152                            $op = 'created';
153                    }
154                    confess "ASSERT: path shouldn't exist for $file in ", dump( $pending ) if defined( $pending->{$file}->{path} );
155                    confess "ASSERT: open shouldn't exist for $file in ", dump( $pending ) if defined( $pending->{$file}->{open} );
156                    $pending->{$file}->{path} = $path;
157                    $pending->{$file}->{open} = 0;  # not really opened, just uncompressed
158                    warn "## tmp_file( $file ) $op $path [", -s $path, "]\n";
159            }
160            return $path;
161    }
162    
163    sub compress_file2path {
164            my ( $file, $path ) = @_;
165    
166            my $dest = fixup( $file );
167    
168            if ( defined($pending->{$file}) ) {
169                    my $pending_path = $pending->{$file}->{path} || confess "no path for $file in ",dump( $pending );
170    
171                    if ( $pending->{$file}->{open} > 1 ) {
172                            warn "$file used ", $pending->{$file}->{open}, " times, delaying compression\n";
173                            return;
174                    } elsif ( ! $path ) {
175                            $path = $pending_path;
176                    } elsif ( $pending_path ne $path ) {
177                            confess "ASSERT: compressing into $path instead of $pending_path\n";
178                    }
179            }
180    
181            confess "need path" unless $path;
182    
183            # cleanup old compressed copy
184            if ( $dest =~ /\.gz$/ ) {
185                    warn "## remove old $dest\n";
186                    unlink $dest || confess "can't remove $dest: $!";
187                    $dest =~ s/\.gz$//;
188                    confess "ASSERT: uncompressed $dest shouldn't exist!" if -e $dest;
189            }
190    
191            if ( $path =~ $skip_extensions_regex ) {
192                    warn "$path [",-s $path,"] skipped compression\n";
193                    file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
194            } elsif ( -s $path < $min_compress_size ) {
195                    warn "$path [",-s $path,"] uncompressed, too small\n";
196                    file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
197            } else {
198                    warn "$path [",-s $path,"] compressing\n";
199    
200                    my $comp = $dest . '.gz';
201                    file_copy( '<', $path, '>:gzip', $comp );
202    
203                    my ( $size_path, $size_comp ) = ( -s $path, -s $comp );
204    
205                    if ( $size_path <= $size_comp ) {
206                            warn ">>> $size_path <= $size_comp leaving uncompressed\n";
207                            unlink $comp || confess "can't remove: $comp: $!";
208                    } else {
209                            warn ">>> compressed $size_path -> $size_comp ",int(($size_comp * 100) / $size_path),"% $comp\n";
210    
211                            # FIXME add timeout to remove uncompressed version?
212                            unlink $path || confess "can't remove $path: $!";
213    
214                            if ( -e $dest ) {
215                                    warn "## cleanup uncompressed $dest\n" if $debug;
216                                    unlink $dest || confess "can't remove $dest: $!";
217                            }
218                    }
219    
220            }
221    }
222    
223  sub x_open {  sub x_open {
224          my ($file) = shift;          my ($file) = shift;
225          my ($mode) = shift;          my ($mode) = shift;
# Line 139  sub x_open { Line 235  sub x_open {
235                  return 0;                  return 0;
236          }          }
237    
         $pending->{$file}->{open}++;  
   
238          my $mode_desc = {          my $mode_desc = {
239                  rdonly => $mode && O_RDONLY,                  rdonly => $mode && O_RDONLY,
240                  rdwr => $mode && O_RDWR,                  rdwr => $mode && O_RDWR,
# Line 148  sub x_open { Line 242  sub x_open {
242                  create => $mode && O_CREAT,                  create => $mode && O_CREAT,
243                  trunc => $mode && O_TRUNC,                  trunc => $mode && O_TRUNC,
244          };          };
245          my $path = fixup($file);  
246            my $path = tmp_path( $file );
247    
248          warn "## open( $file, $mode ) pending: ", $pending->{$file}->{open}, " mode $mode: ", dump( $mode_desc )," $path [", -s $path, "]\n" if $debug;          warn "## open( $file, $mode ) pending: ", $pending->{$file}->{open}, " mode $mode: ", dump( $mode_desc )," $path [", -s $path, "]\n" if $debug;
249    
250          my $fh;          my $fh;
251    
252          my $tmp = $mount->{tmp} . '/' . $file;          if ( sysopen($fh , $path, $mode) ) {
253          if ( -e $tmp ) {                  close($fh) || confess "can't close $path: $!";
254                  $path = $tmp;                  warn "<<< sysopen $path [", -e $path ? -s $path : 'new' , "]\n";
255          } elsif ( $path =~ m/\.gz$/ ) {                  $pending->{$file}->{open}++;
256                  my $dest_path = $tmp;                  return 0;
257                  $dest_path =~ s!/[^/]+$!!;      #!vim-fix          } else {
258                  mkpath $dest_path unless -e $dest_path;                  warn "ERROR: can't open $path -- $!";
259                  file_copy( '<:gzip', $path, '>', $tmp );                  return -$!;
                 $path = $tmp;  
260          }          }
         warn "<<< open abs path: $path [", -e $path ? -s $path : 'new' , "]\n";  
         return -$! unless sysopen($fh , $path, $mode);  
         close($fh);  
261    
         $pending->{$file}->{path} = $path;  
         return 0;  
262  }  }
263    
264  sub x_read {  sub x_read {
# Line 184  sub x_read { Line 275  sub x_read {
275    
276          if(seek($fh,$off,SEEK_SET)) {          if(seek($fh,$off,SEEK_SET)) {
277                  read($fh,$rv,$bufsize);                  read($fh,$rv,$bufsize);
278                    $pending->{$file}->{read} += length($rv) if $stats;
279          }          }
280    
281          return $rv;          return $rv;
# Line 191  sub x_read { Line 283  sub x_read {
283    
284  sub x_write {  sub x_write {
285          my ($file,$buf,$off) = @_;          my ($file,$buf,$off) = @_;
286          $pending->{$file}->{write}++;  
287          my $rv;          my $rv;
288          my $path = fixup($file);          my $path = fixup($file);
289    
# Line 199  sub x_write { Line 291  sub x_write {
291    
292          return -ENOENT() unless -e $path;          return -ENOENT() unless -e $path;
293    
294            $path = $pending->{$file}->{path} || confess "no path for $file in ", dump( $pending );
295            confess "write into non-existant $path for $file" unless -e $path;
296    
297          my $fh = new IO::File;          my $fh = new IO::File;
298          return -ENOSYS() unless open($fh,'+<',$pending->{$file}->{path});          return -ENOSYS() unless open($fh,'+<',$path);
299          if($rv = seek( $fh ,$off,SEEK_SET)) {          if($rv = seek( $fh ,$off,SEEK_SET)) {
300                  $rv = print( $fh $buf );                  $rv = print( $fh $buf );
301                  warn "## write ", $pending->{$file}->{path}, " $off ",length( $buf ), "\n" if $debug;                  my $size = length($buf);
302                    warn "## write $path offset $off [$size]\n" if $debug;
303                    $pending->{$file}->{write} += $size;
304          }          }
305          $rv = -ENOSYS() unless $rv;          $rv = -ENOSYS() unless $rv;
306          close($fh);          close($fh) || warn "can't close $path: $!";
307          return length($buf);          return length($buf);
308  }  }
309    
310  sub err { return (-shift || -$!) }  sub err { return (-shift || -$!) }
311    
312  sub x_readlink { return readlink(fixup(shift));         }  sub x_readlink { return readlink(fixup(shift)); }
313  sub x_unlink   { return unlink_all( shift ) ? 0 : -$! }  
314    sub x_unlink   {
315            my $file = shift;
316            my $path = fixup( $file );
317    
318            if ( $file =~ m#\Q/.fuse_hidden\E# ) {
319                    return unlink $path ? 0 : -$1;
320            }
321    
322            warn "# unlink( $file )\n";
323    
324            unlink $path || return 0;
325    
326            my $tmp = $mount->{tmp} . '/' . $file;
327            unlink $tmp if ( -e $tmp );
328    
329            delete( $pending->{$file} );
330            return 0;
331    }
332    
333    sub x_symlink {
334            my ($from,$to) = @_;
335    
336            my $from_path = $from;  #fixup( $from );
337            my $to_path = fixup( $to );
338    
339            my $rv = symlink( $from_path, $to_path ) ? 0 : -$!;
340            warn "# symlink( $from_path -> $to_path ) = $rv\n" if $debug;
341    
342            my $tmp = $mount->{tmp} . '/' . $from;
343            if ( -e $tmp ) {
344                    my $tmp_to = $mount->{$tmp} . '/' . $to;
345                    symlink( $tmp, $tmp_to ) || confess "can't symlink $tmp -> $tmp_to: $!";
346            }
347            return $rv;
348    }
349    
350    sub x_link {
351            my ($from,$to) = @_;
352    
353            my $from_path = fixup($from);
354            my $to_path = fixup($to);
355            $to_path .= '.gz' if ( $from_path =~ m/\.gz$/ && $to_path !~ m/\.gz$/ );
356    
357            my $rv = link( $from_path, $to_path ) ? 0 : -$!;
358    
359  sub x_symlink { return symlink(shift,fixup(shift)) ? 0 : -$!; }          warn "# link( $from_path -> $to_path ) = $rv\n" if $debug;
360    
361            return $rv;
362    }
363    
364  sub x_rename {  sub x_rename {
365          my ($old,$new) = @_;          my ($old,$new) = @_;
# Line 228  sub x_rename { Line 372  sub x_rename {
372    
373          my $tmp = $mount->{tmp} . '/' . $old;          my $tmp = $mount->{tmp} . '/' . $old;
374          if ( -e $tmp ) {          if ( -e $tmp ) {
375                  my $new_tmp = $mount->{tmp} . '/' . $new;                  if ( $new =~ m#\Q/.fuse_hidden\E# ) {
376                  rename $tmp, $new_tmp || confess "can't rename $tmp -> $new_tmp : $!";                          unlink $tmp || confess "can't unlink $tmp for $new\n";
377                    } else {
378                            my $new_tmp = $mount->{tmp} . '/' . $new;
379                            rename $tmp, $new_tmp || confess "can't rename $tmp -> $new_tmp : $!";
380                    }
381          }          }
382    
383          if (defined( $pending->{$old} )) {          if (defined( $pending->{$old} )) {
# Line 240  sub x_rename { Line 388  sub x_rename {
388                  $pending->{$new}->{path} = $path;                  $pending->{$new}->{path} = $path;
389    
390                  delete( $pending->{$old} );                  delete( $pending->{$old} );
391                    warn "## tweaking pending to ", dump( $pending ) if $debug;
392          }          }
393    
394          return $err;          return $err;
395  }  }
 sub x_link { return link(fixup(shift),fixup(shift)) ? 0 : -$! }  
396    
397  sub x_chown {  sub x_chown {
398          my ($path) = fixup(shift);          my ($file,$uid,$gid) = @_;
399            my $path = fixup($file);
400          print "nonexistent $path\n" unless -e $path;          print "nonexistent $path\n" unless -e $path;
         my ($uid,$gid) = @_;  
401          # perl's chown() does not chown symlinks, it chowns the symlink's          # perl's chown() does not chown symlinks, it chowns the symlink's
402          # target.  it fails when the link's target doesn't exist, because          # target.  it fails when the link's target doesn't exist, because
403          # the stat64() syscall fails.          # the stat64() syscall fails.
404          # this causes error messages when unpacking symlinks in tarballs.          # this causes error messages when unpacking symlinks in tarballs.
405          my ($err) = syscall(&SYS_lchown,$path,$uid,$gid,$path) ? -$! : 0;          my ($err) = syscall(&SYS_lchown,$path,$uid,$gid,$path) ? -$! : 0;
406    
407            my $tmp = $mount->{tmp} . '/' . $file;
408            syscall(&SYS_lchown,$file,$uid,$gid,$path) if -e $tmp;
409    
410          return $err;          return $err;
411  }  }
412    
# Line 267  sub x_chmod { Line 419  sub x_chmod {
419    
420  sub x_truncate {  sub x_truncate {
421          my ( $file,$size ) = @_;          my ( $file,$size ) = @_;
422          my $path = fixup($file);  
423            #confess "no pending file $file to truncate in ", dump( $pending ) unless defined( $pending->{$file} );
424    
425            my $path = tmp_path( $file );
426          my $rv = truncate( $path, $size ) ? 0 : -$! ;          my $rv = truncate( $path, $size ) ? 0 : -$! ;
427          if ( $path =~ m/\.gz$/ ) {          warn "## truncate( $file $size ) $path [", -s $path, "] = $rv\n" if $debug;
428                  my $no_gz = $path;          compress_file2path( $file, $path );
429                  $no_gz =~ s/\.gz$//;  
                 rename $path, $no_gz || confess "can't rename $path -> $no_gz: $!";  
         }  
         warn "## truncate( $file $size ) $path [", -s $path, "]\n";  
         $pending->{$file}->{write}++;  
430          return $rv;          return $rv;
431  }  }
432    
433  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }
434    
435  sub x_mkdir { my ($name, $perm) = @_; return 0 if mkdir(fixup($name),$perm); return -$!; }  sub x_mkdir { my ($name, $perm) = @_; return 0 if mkdir(fixup($name),$perm); return -$!; }
# Line 295  sub x_mknod { Line 447  sub x_mknod {
447    
448  sub x_release {  sub x_release {
449          my ( $file, $mode ) = @_;          my ( $file, $mode ) = @_;
450    
451          if ( ! defined( $pending->{$file} ) ) {          if ( ! defined( $pending->{$file} ) ) {
452                  warn "release $file, NO PENDING DATA\n";                  warn "release $file, NO PENDING DATA\n";
453                  return 0;                  return 0;
454          } elsif ( ! defined( $pending->{$file}->{write} ) ) {          } elsif ( ! defined( $pending->{$file}->{write} ) ) {
455                  warn "release $file, not written into\n";                  warn "release $file, not written into\n";
456          } elsif ( defined( $pending->{$file}->{open} ) && $pending->{$file}->{open} == 1 ) {          } elsif ( $file =~ m#\Q/.fuse_hidden\E# ) {
457                  my $path = $pending->{$file}->{path} || confess "no path for $file ? ", dump( $pending );                  warn "release internal $file\n" if $debug;
                 my $dest = fixup( $file );  
   
                 # cleanup old compressed copy  
                 if ( $dest =~ /\.gz$/ ) {  
                         warn "## remove old $dest\n";  
                         unlink $dest || confess "can't remove $dest: $!";  
                         $dest =~ s/\.gz$//;  
                 }  
   
                 if ( $file =~ $skip_extensions_regex ) {  
                         warn "release $file [",-s $path,"] skipped compression\n";  
                         file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );  
                 } elsif ( -s $path < $min_compress_size ) {  
                         warn "release $file [",-s $path,"] uncompressed, too small\n";  
                         file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );  
                 } else {  
                         warn "release $file [",-s $path,"] compressing\n";  
   
                         my $comp = $dest . '.gz';  
                         file_copy( '<', $path, '>:gzip', $comp );  
   
                         my ( $size_path, $size_comp ) = ( -s $path, -s $comp );  
   
                         if ( $size_path <= $size_comp ) {  
                                 warn ">>> $size_path <= $size_comp leaving uncompressed\n";  
                                 unlink $comp || warn "can't reamove: $comp: $!";  
                         } else {  
                                 warn ">>> compressed $size_path -> $size_comp ",int(($size_comp * 100) / $size_path),"%\n";  
                                 # FIXME add timeout to remove uncompressed version?  
                                 unlink $path || warn "can't remove $path: $!";  
                         }  
                 }  
458          } else {          } else {
459                  warn "release $file, but still used ", $pending->{$file}->{open} , " times, delaying compression\n";                  compress_file2path( $file );
460          }          }
461    
462          $pending->{$file}->{open}--;          $pending->{$file}->{open}--;
463          if ( $pending->{$file}->{open} == 0 ) {          if ( $pending->{$file}->{open} == 0 ) {
464                  warn "## cleanup pending $file [", -s fixup($file), "]\n" if $debug;                  warn "## cleanup pending $file [", -s fixup($file), "]\n" if $debug;
465                  delete( $pending->{$file} );                  delete( $pending->{$file} );
466          }          }
467    
468          return 0;          return 0;
469  }  }
470    
# Line 369  Fuse::main( Line 492  Fuse::main(
492          statfs  =>"main::x_statfs",          statfs  =>"main::x_statfs",
493          release =>"main::x_release",          release =>"main::x_release",
494  #       threaded=>1,  #       threaded=>1,
495  #       debug   => 1,          debug   => $fuse_debug,
496  );  );

Legend:
Removed from v.20  
changed lines
  Added in v.30

  ViewVC Help
Powered by ViewVC 1.1.26