/[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 27 by dpavlin, Tue Jul 10 00:22:00 2007 UTC revision 33 by dpavlin, Mon Jul 16 07:41:55 2007 UTC
# Line 16  use Getopt::Long; Line 16  use Getopt::Long;
16    
17  my $debug = 0;  my $debug = 0;
18  my $fuse_debug = 0;  my $fuse_debug = 0;
19    my $stats = 1;
20    
21  GetOptions(  GetOptions(
22          'debug+' => \$debug,          'debug+' => \$debug,
23          'fuse-debug+' => \$fuse_debug,          'fuse-debug+' => \$fuse_debug,
24            'stats!' => \$stats,
25  );  );
26    
27  my $mount = {  my $mount = {
# Line 45  my $pending; Line 47  my $pending;
47  sub real_name {  sub real_name {
48          my ( $dir, $name ) = @_;          my ( $dir, $name ) = @_;
49          if ( -e "$dir/${name}.gz" ) {          if ( -e "$dir/${name}.gz" ) {
50                    confess "ASSERT: unexpected $dir/$name exists" if -e "$dir/$name";
51                  return "${name}.gz";                  return "${name}.gz";
52          }          }
53          return $name;          return $name;
# Line 121  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 in ",dump( $pending );
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" if $debug;
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";
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 $dest\n";
207                            unlink $comp || confess "can't remove: $comp: $!";
208                            file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
209                    } else {
210                            warn ">>> compressed $size_path -> $size_comp ",int(($size_comp * 100) / $size_path),"% $comp\n";
211    
212                            # FIXME add timeout to remove uncompressed version?
213                            unlink $path || confess "can't remove $path: $!";
214    
215                            if ( -e $dest ) {
216                                    warn "## cleanup uncompressed $dest\n" if $debug;
217                                    unlink $dest || confess "can't remove $dest: $!";
218                            }
219                    }
220    
221            }
222    }
223    
224  sub x_open {  sub x_open {
225          my ($file) = shift;          my ($file) = shift;
226          my ($mode) = shift;          my ($mode) = shift;
# Line 136  sub x_open { Line 236  sub x_open {
236                  return 0;                  return 0;
237          }          }
238    
         $pending->{$file}->{open}++;  
   
239          my $mode_desc = {          my $mode_desc = {
240                  rdonly => $mode && O_RDONLY,                  rdonly => $mode && O_RDONLY,
241                  rdwr => $mode && O_RDWR,                  rdwr => $mode && O_RDWR,
# Line 145  sub x_open { Line 243  sub x_open {
243                  create => $mode && O_CREAT,                  create => $mode && O_CREAT,
244                  trunc => $mode && O_TRUNC,                  trunc => $mode && O_TRUNC,
245          };          };
246          my $path = fixup($file);  
247            my $path = tmp_path( $file );
248    
249          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;
         my $fh;  
250    
251          my $tmp = $mount->{tmp} . '/' . $file;          my $fh;
         if ( -e $tmp ) {  
                 $path = $tmp;  
         } elsif ( $path =~ m/\.gz$/ ) {  
                 my $dest_path = $tmp;  
                 $dest_path =~ s!/[^/]+$!!;      #!vim-fix  
                 mkpath $dest_path unless -e $dest_path;  
                 if ( -s $path ) {  
                         file_copy( '<:gzip', $path, '>', $tmp )  
                 } else {  
                         warn "ERROR: filesystem corruption, $path is zero size\n";  
                 }  
                 $path = $tmp;  
         }  
252    
253          if ( sysopen($fh , $path, $mode) ) {          if ( sysopen($fh , $path, $mode) ) {
254                  close($fh) || confess "can't close $path: $!";                  close($fh) || confess "can't close $path: $!";
255                  warn "<<< open $path [", -e $path ? -s $path : 'new' , "]\n";                  warn "<<< sysopen $path [", -e $path ? -s $path : 'new' , "]\n";
256                  $pending->{$file}->{path} = $path;                  $pending->{$file}->{open}++;
257                  return 0;                  return 0;
258          } else {          } else {
259                  warn "ERROR: can't open $path -- $!";                  warn "ERROR: can't open $path -- $!";
# Line 190  sub x_read { Line 276  sub x_read {
276    
277          if(seek($fh,$off,SEEK_SET)) {          if(seek($fh,$off,SEEK_SET)) {
278                  read($fh,$rv,$bufsize);                  read($fh,$rv,$bufsize);
279                    $pending->{$file}->{read} += length($rv) if $stats;
280          }          }
281    
282          return $rv;          return $rv;
# Line 206  sub x_write { Line 293  sub x_write {
293          return -ENOENT() unless -e $path;          return -ENOENT() unless -e $path;
294    
295          $path = $pending->{$file}->{path} || confess "no path for $file in ", dump( $pending );          $path = $pending->{$file}->{path} || confess "no path for $file in ", dump( $pending );
296          confess "write into non-existant $path for $file: $!" unless -e $path;          confess "write into non-existant $path for $file" unless -e $path;
297    
298          my $fh = new IO::File;          my $fh = new IO::File;
299          return -ENOSYS() unless open($fh,'+<',$path);          return -ENOSYS() unless open($fh,'+<',$path);
300          if($rv = seek( $fh ,$off,SEEK_SET)) {          if($rv = seek( $fh ,$off,SEEK_SET)) {
301                  $rv = print( $fh $buf );                  $rv = print( $fh $buf );
302                  warn "## write $path offset $off [",length( $buf ), "]\n" if $debug;                  my $size = length($buf);
303                  $pending->{$file}->{write}++;                  warn "## write $path offset $off [$size]\n" if $debug;
304                    $pending->{$file}->{write} += $size;
305          }          }
306          $rv = -ENOSYS() unless $rv;          $rv = -ENOSYS() unless $rv;
307          close($fh) || warn "can't close $path: $!";          close($fh) || warn "can't close $path: $!";
# Line 286  sub x_rename { Line 374  sub x_rename {
374          my $tmp = $mount->{tmp} . '/' . $old;          my $tmp = $mount->{tmp} . '/' . $old;
375          if ( -e $tmp ) {          if ( -e $tmp ) {
376                  if ( $new =~ m#\Q/.fuse_hidden\E# ) {                  if ( $new =~ m#\Q/.fuse_hidden\E# ) {
377                          unlink $tmp || confess "can't unlink $tmp for $new\n";                          unlink $tmp || confess "can't unlink $tmp for $new";
378                  } else {                  } else {
379                          my $new_tmp = $mount->{tmp} . '/' . $new;                          my $new_tmp = $mount->{tmp} . '/' . $new;
380                          rename $tmp, $new_tmp || confess "can't rename $tmp -> $new_tmp : $!";                          rename $tmp, $new_tmp || confess "can't rename $tmp -> $new_tmp : $!";
# Line 332  sub x_chmod { Line 420  sub x_chmod {
420    
421  sub x_truncate {  sub x_truncate {
422          my ( $file,$size ) = @_;          my ( $file,$size ) = @_;
423          my $path = fixup($file);  
424            #confess "no pending file $file to truncate in ", dump( $pending ) unless defined( $pending->{$file} );
425    
426            my $path = tmp_path( $file );
427          my $rv = truncate( $path, $size ) ? 0 : -$! ;          my $rv = truncate( $path, $size ) ? 0 : -$! ;
         if ( $path =~ m/\.gz$/ ) {  
                 my $no_gz = $path;  
                 $no_gz =~ s/\.gz$//;  
                 rename $path, $no_gz || confess "can't rename $path -> $no_gz: $!";  
         }  
428          warn "## truncate( $file $size ) $path [", -s $path, "] = $rv\n" if $debug;          warn "## truncate( $file $size ) $path [", -s $path, "] = $rv\n" if $debug;
429          $pending->{$file}->{write}++;          compress_file2path( $file, $path );
   
         my $tmp = $mount->{tmp} . '/' . $file;  
         truncate( $tmp, $size ) if -e $tmp;  
430    
431          return $rv;          return $rv;
432  }  }
433    
434  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }
435    
436  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 365  sub x_mknod { Line 449  sub x_mknod {
449  sub x_release {  sub x_release {
450          my ( $file, $mode ) = @_;          my ( $file, $mode ) = @_;
451    
         if ( $file =~ m#\Q/.fuse_hidden\E# ) {  
                 warn "release internal $file\n" if $debug;  
                 delete( $pending->{$file} );  
                 return 0;  
         }  
   
452          if ( ! defined( $pending->{$file} ) ) {          if ( ! defined( $pending->{$file} ) ) {
453                  warn "release $file, NO PENDING DATA\n";                  warn "release $file, NO PENDING DATA\n";
454                  return 0;                  return 0;
455          } elsif ( ! defined( $pending->{$file}->{write} ) ) {          } elsif ( ! defined( $pending->{$file}->{write} ) ) {
456                  warn "release $file, not written into\n";                  warn "release $file, not written into\n";
457          } elsif ( defined( $pending->{$file}->{open} ) && $pending->{$file}->{open} == 1 ) {          } elsif ( $file =~ m#\Q/.fuse_hidden\E# ) {
458                  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 $path [",-s $path,"] skipped compression\n";  
                         file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );  
                 } elsif ( -s $path < $min_compress_size ) {  
                         warn "release $path [",-s $path,"] uncompressed, too small\n";  
                         file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );  
                 } else {  
                         warn "release $path [",-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 || confess "can't remove: $comp: $!";  
                         } else {  
                                 warn ">>> compressed $size_path -> $size_comp ",int(($size_comp * 100) / $size_path),"%\n";  
                                 # FIXME add timeout to remove uncompressed version?  
                                 unlink $path || confess "can't remove $path: $!";  
                         }  
                 }  
459          } else {          } else {
460                  warn "release $file, but still used ", $pending->{$file}->{open} , " times, delaying compression\n";                  compress_file2path( $file );
461          }          }
462    
463          $pending->{$file}->{open}--;          $pending->{$file}->{open}--;
464          if ( $pending->{$file}->{open} == 0 ) {          if ( $pending->{$file}->{open} == 0 ) {
465                  warn "## cleanup pending $file [", -s fixup($file), "]\n" if $debug;                  warn "## cleanup pending $file [", -s fixup($file), "]\n" if $debug;
466                  delete( $pending->{$file} );                  delete( $pending->{$file} );
467          }          }
468    
469          return 0;          return 0;
470  }  }
471    

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

  ViewVC Help
Powered by ViewVC 1.1.26