/[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 10 by dpavlin, Sun Jul 8 21:03:26 2007 UTC revision 15 by dpavlin, Mon Jul 9 13:33:13 2007 UTC
# Line 103  sub x_getdir { Line 103  sub x_getdir {
103    
104  sub file_copy {  sub file_copy {
105          my ( $s_opt, $s_path, $d_opt, $d_path ) = @_;          my ( $s_opt, $s_path, $d_opt, $d_path ) = @_;
106          warn "## file_copy( $s_opt $s_path $d_opt $d_path )\n";          warn "## file_copy( $s_opt $s_path [",-s $s_path,"] $d_opt $d_path [",-e $d_path ? -s $d_path : 'new',"])\n";
107          open(my $s, $s_opt, $s_path ) || confess "can't open $s_path: $!\npending = ", dump( $pending );          open(my $s, $s_opt, $s_path ) || confess "can't open $s_path: $!\npending = ", dump( $pending );
108          open(my $d, $d_opt, $d_path ) || confess "can't open $d_path: $!";          open(my $d, $d_opt, $d_path ) || confess "can't open $d_path: $!";
109          my $buff;          my $buff;
110          while( read( $s, $buff, 65535 ) ) {          while( read( $s, $buff, 65535 ) ) {
111                  print $d $buff || confess "can't write into $d_path: $!";                  print $d $buff || confess "can't write into $d_path: $!";
112                  warn ">> ", length($buff), " bytes, offset ", tell($s), " -> ", tell($d), "\n" if $debug;                  warn ">> [", length($buff), "] offset ", tell($s), " -> ", tell($d), "\n" if $debug;
113          }          }
114          close($d) || warn "can't close $d_path: $!";          close($d) || warn "can't close $d_path: $!";
115          close($s) || warn "can't close $s_path: $!";          close($s) || warn "can't close $s_path: $!";
# Line 127  sub file_copy { Line 127  sub file_copy {
127  sub x_open {  sub x_open {
128          my ($file) = shift;          my ($file) = shift;
129          my ($mode) = shift;          my ($mode) = shift;
130    
131            if ( $file eq '/.debug' ) {
132                    my $path = $mount->{from} . '/.debug';
133                    open( my $debug, '>', $path ) || die "can't open $path: $!";
134                    my $dump = dump( $pending );
135                    print $debug "pending = $dump\n";
136                    close($debug);
137                    $pending->{'/.debug'}->{path} = $path;
138                    warn "## created dump $path $dump\n";
139                    return 0;
140            }
141    
142          $pending->{$file}->{open}++;          $pending->{$file}->{open}++;
143    
144          my $mode_desc = {          my $mode_desc = {
# Line 134  sub x_open { Line 146  sub x_open {
146                  rdwr => $mode && O_RDWR,                  rdwr => $mode && O_RDWR,
147                  append => $mode && O_APPEND,                  append => $mode && O_APPEND,
148                  create => $mode && O_CREAT,                  create => $mode && O_CREAT,
149                    trunc => $mode && O_TRUNC,
150          };          };
151          warn "# open( $file, $mode ) pending: ", $pending->{$file}->{open}, " mode: ", dump( $mode_desc ),"\n";          my $path = fixup($file);
152            warn "# open( $file, $mode ) pending: ", $pending->{$file}->{open}, " mode $mode: ", dump( $mode_desc )," $path [", -s $path, "]\n";
153          my $fh;          my $fh;
154    
         my $path = fixup($file);  
155          my $tmp = $mount->{tmp} . '/' . $file;          my $tmp = $mount->{tmp} . '/' . $file;
156          if ( -e $tmp ) {          if ( -e $tmp ) {
157                  $path = $tmp;                  $path = $tmp;
# Line 149  sub x_open { Line 162  sub x_open {
162                  file_copy( '<:gzip', $path, '>', $tmp );                  file_copy( '<:gzip', $path, '>', $tmp );
163                  $path = $tmp;                  $path = $tmp;
164          }          }
165          warn ">>> open abs path: $path ", -s $path, " bytes\n";          warn ">>> open abs path: $path [", -e $path ? -s $path : 'new' , "]\n";
166          return -$! unless sysopen($fh , $path, $mode);          return -$! unless sysopen($fh , $path, $mode);
167            warn ">>> after open [",-s $path, "]\n";
168            close($fh);
169    
170          $pending->{$file}->{path} = $path;          $pending->{$file}->{path} = $path;
171          return 0;          return 0;
# Line 161  sub x_read { Line 176  sub x_read {
176          my ($rv) = -ENOSYS();          my ($rv) = -ENOSYS();
177          my $path = fixup( $file );          my $path = fixup( $file );
178    
179            confess "no pending file $file ", dump( $pending ) unless defined( $pending->{$file} );
180    
181          return -ENOENT() unless -e $path;          return -ENOENT() unless -e $path;
182    
183          my $fh = new IO::File;          my $fh = new IO::File;
# Line 179  sub x_write { Line 196  sub x_write {
196          my $rv;          my $rv;
197          my $path = fixup($file);          my $path = fixup($file);
198    
199            confess "no pending file $file ", dump( $pending ) unless defined( $pending->{$file} );
200    
201          return -ENOENT() unless -e $path;          return -ENOENT() unless -e $path;
202    
203          my $fh = new IO::File;          my $fh = new IO::File;
# Line 188  sub x_write { Line 207  sub x_write {
207                  warn "## ", $pending->{$file}->{path}, " $off ",length( $buf ), "\n" if $debug;                  warn "## ", $pending->{$file}->{path}, " $off ",length( $buf ), "\n" if $debug;
208          }          }
209          $rv = -ENOSYS() unless $rv;          $rv = -ENOSYS() unless $rv;
210            close($fh);
211          return length($buf);          return length($buf);
212  }  }
213    
# Line 225  sub x_chmod { Line 245  sub x_chmod {
245          return $err;          return $err;
246  }  }
247    
248  sub x_truncate { return truncate(fixup(shift),shift) ? 0 : -$! ; }  sub x_truncate {
249            my ( $file,$size ) = @_;
250            my $path = fixup($file);
251            my $rv = truncate( $path, $size ) ? 0 : -$! ;
252            if ( $path =~ m/\.gz$/ ) {
253                    my $no_gz = $path;
254                    $no_gz =~ s/\.gz$//;
255                    rename $path, $no_gz || confess "can't rename $path -> $no_gz: $!";
256            }
257            warn "## truncate( $file $size ) $path [", -s $path, "]\n";
258            $pending->{$file}->{write}++;
259            return $rv;
260    }
261  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }  sub x_utime { return utime($_[1],$_[2],fixup($_[0])) ? 0:-$!; }
262    
263  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 263  sub x_release { Line 295  sub x_release {
295                          warn "release $file $mode -- uncompressed\n";                          warn "release $file $mode -- uncompressed\n";
296                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
297                  } elsif ( -s $path < $min_compress_size ) {                  } elsif ( -s $path < $min_compress_size ) {
298                          warn "release $file -- uncompressed, too small ", -s $path, " bytes\n";                          warn "release $file -- uncompressed, too small [", -s $path, "]\n";
299                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );                          file_copy( '<', $path, '>', $dest ) if ( $path ne $dest );
300                  } else {                  } else {
301                          warn "release $file $mode -- compressing\n";                          warn "release $file $mode -- compressing\n";
# Line 272  sub x_release { Line 304  sub x_release {
304                          file_copy( '<', $path, '>:gzip', $dest . '.gz' );                          file_copy( '<', $path, '>:gzip', $dest . '.gz' );
305    
306                          # FIXME add timeout to remove uncompressed version?                          # FIXME add timeout to remove uncompressed version?
307                            # FIXME leave uncompressed file if smaller than compressed
308                          unlink $path || warn "can't remove $path: $!";                          unlink $path || warn "can't remove $path: $!";
309                  }                  }
310          } else {          } else {
311                  warn "release $file, but still used ", $pending->{$file}->{open} , " times, delaying compression\n";                  warn "release $file, but still used ", $pending->{$file}->{open} , " times, delaying compression\n";
                 $pending->{$file}->{open}--;  
                 return 0;  
312          }          }
313          delete( $pending->{$file} );          $pending->{$file}->{open}--;
314            if ( $pending->{$file}->{open} == 0 ) {
315                    warn "## cleanup pending $file [", -s fixup($file), "]\n" if $debug;
316                    delete( $pending->{$file} );
317            }
318          return 0;          return 0;
319  }  }
320    

Legend:
Removed from v.10  
changed lines
  Added in v.15

  ViewVC Help
Powered by ViewVC 1.1.26