/[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 28 by dpavlin, Tue Jul 10 01:10:49 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 122  sub file_copy { Line 124  sub file_copy {
124          undef $s;          undef $s;
125  }  }
126    
127  sub create_tmp_file {  sub tmp_path {
128          my $file = shift;          my $file = shift;
129    
130          my $path = fixup( $file );          my $path = fixup( $file );
131          my $tmp = $mount->{tmp} . '/' . $file;  
132          if ( -e $tmp ) {          my $op = 'UNKNOWN';
133                  $path = $tmp;  
134          } elsif ( $path =~ m/\.gz$/ ) {          if (defined( $pending->{$file} )) {
135                  my $dest_path = $tmp;                  $path = $pending->{$file}->{path} || confess "no path for $file in ",dump( $pending );
136                  $dest_path =~ s!/[^/]+$!!;      #!vim-fix                  $op = 'opened';
137                  mkpath $dest_path unless -e $dest_path;          } else {
138                  if ( -s $path ) {                  my $tmp = $mount->{tmp} . '/' . $file;
139                          file_copy( '<:gzip', $path, '>', $tmp )                  if ( -e $tmp ) {
140                  } else {                          $path = $tmp;
141                          warn "ERROR: filesystem corruption, $path is zero size\n";                          $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                  $path = $tmp;                  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          }          }
         warn "## create_temp_file( $file ) => $path [", -s $path, "]\n";  
160          return $path;          return $path;
161  }  }
162    
163  sub compress_path_dest {  sub compress_file2path {
164          my ( $path, $dest ) = @_;          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          # cleanup old compressed copy
184          if ( $dest =~ /\.gz$/ ) {          if ( $dest =~ /\.gz$/ ) {
185                  warn "## remove old $dest\n";                  warn "## remove old $dest\n";
186                  unlink $dest || confess "can't remove $dest: $!";                  unlink $dest || confess "can't remove $dest: $!";
187                  $dest =~ s/\.gz$//;                  $dest =~ s/\.gz$//;
188                    confess "ASSERT: uncompressed $dest shouldn't exist!" if -e $dest;
189          }          }
190    
191          if ( $path =~ $skip_extensions_regex ) {          if ( $path =~ $skip_extensions_regex ) {
# Line 169  sub compress_path_dest { Line 203  sub compress_path_dest {
203                  my ( $size_path, $size_comp ) = ( -s $path, -s $comp );                  my ( $size_path, $size_comp ) = ( -s $path, -s $comp );
204    
205                  if ( $size_path <= $size_comp ) {                  if ( $size_path <= $size_comp ) {
206                          warn ">>> $size_path <= $size_comp leaving uncompressed\n";                          warn ">>> $size_path <= $size_comp leaving uncompressed $dest\n";
207                          unlink $comp || confess "can't remove: $comp: $!";                          unlink $comp || confess "can't remove: $comp: $!";
208                            file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
209                  } else {                  } else {
210                          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),"% $comp\n";
211    
212                          # FIXME add timeout to remove uncompressed version?                          # FIXME add timeout to remove uncompressed version?
213                          unlink $path || confess "can't remove $path: $!";                          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    
# Line 194  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 204  sub x_open { Line 244  sub x_open {
244                  trunc => $mode && O_TRUNC,                  trunc => $mode && O_TRUNC,
245          };          };
246    
247          my $path = create_tmp_file( $file );          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;
250    
# Line 212  sub x_open { Line 252  sub x_open {
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 236  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 252  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 332  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 381  sub x_truncate { Line 423  sub x_truncate {
423    
424          #confess "no pending file $file to truncate in ", dump( $pending ) unless defined( $pending->{$file} );          #confess "no pending file $file to truncate in ", dump( $pending ) unless defined( $pending->{$file} );
425    
426          my $path;          my $path = tmp_path( $file );
   
         if (defined( $pending->{$file} )) {  
                 $pending->{$file}->{write}++;  
                 $path = fixup( $file );  
         } else {  
                 $path = create_tmp_file( $file );  
                 compress_path_dest( $path, fixup( $file ) );  
         }  
427          my $rv = truncate( $path, $size ) ? 0 : -$! ;          my $rv = truncate( $path, $size ) ? 0 : -$! ;
428          warn "## truncate( $file $size ) $path [", -s $path, "] = $rv\n" if $debug;          warn "## truncate( $file $size ) $path [", -s $path, "] = $rv\n" if $debug;
429            compress_file2path( $file, $path );
430    
431          return $rv;          return $rv;
432  }  }
# Line 414  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 );  
                 compress_path_dest( $path, $dest );  
   
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.28  
changed lines
  Added in v.33

  ViewVC Help
Powered by ViewVC 1.1.26