pastebin - collaborative debugging tool
kpaste.net RSS


md5db script (threaded)
Posted by Anonymous on Sat 6th Oct 2012 03:42
raw | new post

  1. #!/usr/bin/perl
  2.  
  3. use 5.12.3;
  4. use strict;
  5. use warnings;
  6. use Cwd qw(abs_path cwd);
  7. use Digest::MD5 qw(md5_hex);
  8. use IO::Handle qw(autoflush);
  9. use File::Basename qw(basename dirname);
  10. #use File::Slurp qw(read_file);
  11. use diagnostics;
  12.  
  13. use threads qw(yield);
  14. use threads::shared;
  15. use Thread::Queue;
  16. use Thread::Semaphore;
  17. #use Fcntl qw(:flock);
  18. use POSIX qw(SIGINT);
  19. use POSIX qw(ceil);
  20.  
  21. chomp(my $cores = `grep -c ^processor /proc/cpuinfo`);
  22.  
  23. my (@lib, $mode);
  24.  
  25. # Path to and name of log file to be used for logging.
  26. my $logf = "$ENV{HOME}/md5db.log";
  27.  
  28. # Delimiter used for database
  29. my $delim = "\t\*\t";
  30.  
  31. # Array for storing the actual arguments used by the script internally.
  32. # Might be useful for debugging.
  33. my @cmd = (basename($0));
  34.  
  35. # Name of database file.
  36. my $db = 'md5.db';
  37.  
  38. # Clear screen command.
  39. my $clear = `clear && echo`;
  40.  
  41. # Creating a hash that will store the names of files that are
  42. # too big to fit into RAM. We'll process them last.
  43. my %large :shared;
  44.  
  45. # Creating a few shared variables.
  46. # %err will be used for errors
  47. # $n will be used to count the number of files processed
  48. # %md5h is the database hash
  49. my %err :shared;
  50. my $n :shared = 0;
  51. my %md5h :shared;
  52. my %file_contents :shared;
  53. my $stopping :shared = 0;
  54. my $file_stack :shared = 0;
  55. my $busy :shared = 0;
  56.  
  57. my $disk_size = 1000000000;
  58.  
  59. # This will be used to control access to the logger subroutine.
  60. my $semaphore = Thread::Semaphore->new();
  61.  
  62. POSIX::sigaction(SIGINT, POSIX::SigAction->new(\&handler))
  63. || die "Error setting SIGINT handler: $!\n";
  64.  
  65. # Creating a custom POSIX signal handler.
  66. # First we create a shared variable that will work as a SIGINT switch.
  67. # Then we define the handler subroutine.
  68. # Each subroutine to be used for starting threads will have to
  69. # take notice of the state of the $saw_sigint variable.
  70. my $saw_sigint :shared = 0;
  71. sub handler { $saw_sigint = 1; }
  72.  
  73. # Open file handle for the log file
  74. open(my $LOG, '>>', $logf) or die "Can't open '$logf': $!";
  75.  
  76. # Make the $LOG file handle unbuffered for instant logging.
  77. $LOG->autoflush(1);
  78.  
  79. # Duplicate STDERR as a regular file handle
  80. open(my $SE, ">&STDERR") or die "Can't duplicate STDERR: $!";
  81.  
  82. ### Subroutine for printing usage instructions
  83. sub usage {
  84.  
  85.         my $s = basename($0);
  86.  
  87.         say <<"HELP"
  88. Usage: $s [options] [directory 1] .. [directory N]
  89.  
  90.         -help Print this help message.
  91.  
  92.         -double Check database for files that have identical
  93.         hashes.
  94.  
  95.         -import Import MD5 sums to the database from already existing
  96.         \*.MD5 files in each directory.
  97.  
  98.         -index Index new files in each directory.
  99.  
  100.         -test Test the MD5 sums of the files in the database to see if
  101.         they've changed.
  102.  
  103. HELP
  104. }
  105.  
  106. # This loop goes through the argument list as passed to the script
  107. # by the user when ran.
  108. foreach my $arg (@ARGV) {
  109.  
  110.         # If argument starts with a dash '-', interprete it as an option
  111.         if ($arg =~ /^-/) {
  112.  
  113.                 given ($arg) {
  114.                         # When '-double', set script mode to 'double', and call
  115.                         # the md5double subroutine later.
  116.                         when (/^-double$/) {
  117.                                 if (!$mode) { push(@cmd, $arg); $mode = 'double'; }
  118.                         }
  119.  
  120.                         # When '-import', set script mode to 'import', and call
  121.                         # the md5import subroutine later.
  122.                         when (/^-import$/) {
  123.                                 if (!$mode) { push(@cmd, $arg); $mode = 'import'; }
  124.                         }
  125.  
  126.                         # When '-help', set script mode to 'help', and print
  127.                         # usage instructions later.
  128.                         when (/^-help$/) {
  129.                                 if (!$mode) { push(@cmd, $arg); $mode = 'help'; }
  130.                         }
  131.  
  132.                         # When '-index', set script mode to 'index', and call
  133.                         # the md5index subroutine later.
  134.                         when (/^-index$/) {
  135.                                 if (!$mode) { push(@cmd, $arg); $mode = 'index'; }
  136.                         }
  137.  
  138.                         # When '-test', set the script mode to 'test', and call
  139.                         # the md5test subroutine later.
  140.                         when (/^-test$/) {
  141.                                 if (!$mode) { push(@cmd, $arg); $mode = 'test'; }
  142.                         }
  143.                 }
  144.         # If argument is a directory, include it in the @lib array
  145.         } elsif (-d $arg) {
  146.                 my $dn = abs_path($arg);
  147.                 push(@lib, $dn); push(@cmd, $dn); }
  148. }
  149.  
  150. # If no switches were used, print usage instructions
  151. if (!@lib || !$mode || $mode eq 'help')
  152.         { usage; exit; }
  153.  
  154. #say "@cmd\n";
  155.  
  156. # This routine is called if something goes wrong and the script needs
  157. # to quit prematurely.
  158. sub iquit {
  159.         my $tid = threads->tid();
  160.         if ($tid == 1) {
  161.  
  162.                 # Set the $stopping variable to let the threads know it's time
  163.                 # to stop, and sleep for 1 second so they'll have time to quit.
  164.                 $stopping = 1;
  165.                 sleep(1);
  166.  
  167.                 # Write the hash to the database file and write to the log.
  168.                 hash2file();
  169.                 logger('int', $n);
  170.  
  171.                 # Detaching the threads so Perl will clean up after us.
  172.                 foreach my $t (threads->list()) { $t->detach(); }
  173.                 exit;
  174.         }
  175. }
  176.  
  177. # Subroutine for controlling the log file
  178. # Applying a semaphore so multiple threads won't try to
  179. # access it at once, just in case ;-)
  180. sub logger {
  181.  
  182.         $semaphore->down();
  183.  
  184.         my($arg, $sw, @fn, $n);
  185.  
  186.         # Creating a variable to hold the current time.
  187.         my $now = localtime(time);
  188.  
  189.         # Array of accepted switches to this subroutine
  190.         my @larg = qw{start int gone corr diff end};
  191.  
  192.         # Loop through all the arguments passed to this subroutine
  193.         # Perform checks that decide which variable the arguments are to
  194.         # be assigned to.
  195.         CHECK: while (@_) {
  196.                         $arg = shift(@_);
  197.  
  198.                         # If $arg is a switch, set the $sw variable and start
  199.                         # the next iteration of the CHECK loop.
  200.                         foreach (@larg) {
  201.                                 if ($_ eq $arg) { $sw = $arg; next CHECK; }
  202.                         }
  203.  
  204.                         # If $arg is a number assign it to $n, if it's a file
  205.                         # add it to @fn.
  206.                         if ($arg =~ /^[0-9]*$/) { $n = $arg; }
  207.                         else { push(@fn, $arg); }
  208.         }
  209.         given ($sw) {
  210.                 # Starts writing the log.
  211.                 when ('start') {
  212.                         say $LOG "\n**** Logging started on $now ****\n";
  213.                         say $LOG "Running script in '$mode' mode.\n";
  214.                 }
  215.                 # When the script is interrupted by user pressing ^C,
  216.                 # say so in STDOUT, close the log.
  217.                 when ('int') {
  218.                         say "\nInterrupted by user!\n";
  219.                         say $LOG $n . " file(s) were tested.";
  220.                         say $LOG "\n**** Logging ended on $now ****\n";
  221.                         close $LOG or die "Can't close '$LOG': $!";
  222.                 }
  223.                 # Called when file has been deleted or moved.
  224.                 when ('gone') {
  225.                         say $LOG $fn[0] . "\n\t" . "has been (re)moved.\n";
  226.                         $err{$fn[0]} = "has been (re)moved.\n";
  227.                 }
  228.                 # Called when file has been corrupted.
  229.                 when ('corr') {
  230.                         say $LOG $fn[0] . "\n\t" .
  231.                         "has been corrupted.\n";
  232.                         $err{$fn[0]} = "has been corrupted.\n";
  233.                 }
  234.                 when ('diff') {
  235.                         say $LOG $fn[0] . "\n\t" .
  236.                                 "doesn't match the hash in database.\n";
  237.                         $err{$fn[0]} = "doesn't match the hash in database.\n";
  238.                 }
  239.                 # Called when done, and to close the log.
  240.                 # If no errors occurred write "Everything is OK!" to the log.
  241.                 # If errors occurred print the %err hash.
  242.                 # Either way, print number of files processed.
  243.                 when ('end') {
  244.                         if (!%err) {
  245.                                 say $LOG "\nEverything is OK!\n";
  246.                         } else {
  247.                                 say "\n**** Errors Occurred ****\n";
  248.                                 foreach my $fn (sort keys %err) {
  249.                                         say $SE $fn . "\n\t" . $err{$fn};
  250.                                 }
  251.                         }
  252.  
  253.                         say $LOG $n . " file(s) were tested.\n" if ($n);
  254.                         say $LOG "\n**** Logging ended on $now ****\n";
  255.                         close $LOG or die "Can't close '$LOG': $!";
  256.                 }
  257.         }
  258.         $semaphore->up();
  259. }
  260.  
  261.  
  262. # Subroutine for reading a database file into the database hash.
  263. # This is the first subroutine that will be executed and all others
  264. # depend upon it, cause without it we don't have a
  265. # database hash to work with.
  266. sub file2hash {
  267.  
  268.         # The format string which is used for parsing the database file
  269.         my $format = qr/^.*\t\*\t[[:alnum:]]{32}$/;
  270.         my (@dbfile, @gone);
  271.  
  272.         # Open the database file and read it into the @dbfile variable
  273.         open(MD5DB, '<', $db) or die "Can't open '$db': $!";
  274.         chomp (@dbfile = (<MD5DB>));
  275.         close(MD5DB) or die "Can't close '$db': $!";
  276.  
  277.         # Loop through all the lines in the database file and split
  278.         # them before storing in the database hash.
  279.         # Also, print each line to STDOUT for debug purposes
  280.         foreach my $line (@dbfile) {
  281.  
  282.                 # If current line matches the proper database file format,
  283.                 # continue.
  284.                 if ($line =~ /$format/) {
  285.  
  286.                         my ($fn, $hash) = (split(/\Q$delim/, $line));
  287.  
  288.                         # If $fn is a real file and not already in the hash,
  289.                         # continue.
  290.                         if (-f $fn && ! $md5h{$fn}) {
  291.                                         $md5h{$fn} = $hash;
  292.                                         say "$fn". "$delim" . "$hash";
  293.  
  294.                         # Saves the names of deleted or moved files in '@gone'
  295.                         # for printing at the end of this subroutine.
  296.                         } else { push(@gone, $fn); }
  297.                 }
  298.         }
  299.  
  300.         # Clears the screen, thereby scrolling past the database file print
  301.         print $clear;
  302.  
  303.         # Loops through the @gone array and logs every file name
  304.         # that's been deleted or moved.
  305.         foreach my $fn (@gone) { logger('gone', $fn); }
  306. }
  307.  
  308. # Subroutine for printing the database hash to the database file
  309. sub hash2file {
  310.  
  311.         open(MD5DB, '>', $db) or die "Can't open '$db': $!";
  312.         # Loops through all the keys in the database hash and prints
  313.         # the entries (divided by the $delim variable) to the database file.
  314.         foreach my $k (sort keys %md5h) {
  315.                 say MD5DB $k . $delim . $md5h{$k};
  316.         }
  317.         close(MD5DB) or die "Can't close '$db': $!";
  318. }
  319.  
  320. # Subroutine for finding files
  321. # Finds all the files inside the directory name passed to it,
  322. # and sorts the output before storing it in the @files array.
  323. sub getfiles {
  324.  
  325.         my $dn = shift;
  326.         my @files;
  327.  
  328.         open(FIND, '-|', 'find', $dn, '-type', 'f', '-name', '*', '-nowarn')
  329.         or die "Can\'t run 'find': $!";
  330.         while (my $fn = (<FIND>)) {
  331.                         chomp($fn);
  332.                         $fn =~ s($dn/)();
  333.                         push(@files, $fn) if (-f $fn && $fn ne basename($db));
  334.         }
  335.         close(FIND) or die "Can't close 'find': $!";
  336.         return @files;
  337. }
  338.  
  339. sub md5double {
  340.  
  341.         if (!keys(%md5h)) {
  342.                 say "No database file. Run the script in 'index' mode first\n" .
  343.                 "to index the files.";
  344.                 exit;
  345.         }
  346.  
  347.         # Loop through the %md5h hash and save the checksums as keys in a
  348.         # new hash called %exists. Each of those keys will hold an
  349.         # anonymous array with the matching file names.
  350.         my %exists;
  351.         foreach my $fn (keys(%md5h)) {
  352.                 my $hash = $md5h{$fn};
  353.                 if (!$exists{${hash}}) {
  354.                         $exists{${hash}}->[0] = $fn;
  355.                 } else {
  356.                         push(@{$exists{${hash}}}, $fn);
  357.                 }
  358.         }
  359.  
  360.         # Loop through the %exists hash and print files that are identical,
  361.         # if any.
  362.         foreach my $hash (keys(%exists)) {
  363.                 if (scalar(@{$exists{${hash}}}) > 1) {
  364.                         say "These files have the same hash (${hash}):";
  365.                         foreach my $fn (@{$exists{${hash}}}) {
  366.                                 say $fn;
  367.                         }
  368.                         say "";
  369.                 }
  370.         }
  371. }
  372.  
  373. # Subroutine for finding and parsing *.MD5 files, adding the hashes
  374. # to the database hash and thereby also to the file.
  375. # It takes 1 argument:
  376. # (1) the thread queue
  377. sub md5import {
  378.  
  379.         my $md5fn = shift;
  380.  
  381.         my ($fn, $hash, @fields, @lines);
  382.  
  383.         # The format string which is used for parsing the *.MD5 files.
  384.         my $format = qr/^[[:alnum:]]{32}\s\*.*/;
  385.  
  386.         # If the file extension is *.MD5 in either upper- or
  387.         # lowercase, continue.
  388.         if ($md5fn =~ /.md5$/i) {
  389.  
  390.                 # Open the *.MD5 file and read its contents to the
  391.                 # @lines array.
  392.                 open(MD5, '<', $md5fn) or die "Can't open '$md5fn': $!";
  393.                 chomp(@lines = (<MD5>));
  394.                 close(MD5) or die "Can't close '$md5fn': $!";
  395.  
  396.                 # Loop to check that the format of the *.MD5 file really
  397.                 # is correct before proceeding.
  398.                 foreach my $line (@lines) {
  399.  
  400.                         # If format string matches the line(s) in the *.MD5
  401.                         # file, continue.
  402.                         if ($line =~ /$format/) {
  403.  
  404.                                 # Split the line so that the hash and file name go
  405.                                 # into @fields array.
  406.                                 # After that strip the path (if any) of the file
  407.                                 # name, and prepend the path of the *.MD5 file to
  408.                                 # it instead.
  409.                                 # Store hash and file name in the $hash and $fn
  410.                                 # variables for readability.
  411.                                 @fields = split(/\s\Q*/, $line, 2);
  412.                                 my $path = dirname($md5fn);
  413.                                 $hash = $fields[0];
  414.  
  415.                                 if ($path eq '.') { $fn = basename($fields[1]); }
  416.                                 else { $fn = dirname($md5fn)
  417.                                 . '/' . basename($fields[1]); }
  418.  
  419.                                 # Convert CR+LF newlines to proper LF to avoid
  420.                                 # identical file names from being interpreted as
  421.                                 # different.
  422.                                 $fn =~ s/\r//;
  423.  
  424.                                 # Unless file name already is in the database hash,
  425.                                 # print a message, add it to the hash.
  426.                                 if (! $md5h{$fn} && -f $fn) {
  427.  
  428.                                         say "$fn" . "\n\t" .
  429.                                         "Imported MD5 sum from '" .
  430.                                         basename($md5fn) .
  431.                                         "'.\n";
  432.  
  433.                                         $md5h{$fn} = $hash;
  434.  
  435.                                         # If file name is not a real file, write to
  436.                                         # the log.
  437.                                         # If file name is in database hash but the
  438.                                         # MD5 sum from the MD5 file doesn't match,
  439.                                         # print to the log.
  440.                                 } elsif (! -f $fn) { logger('gone', $fn); }
  441.                                 elsif ($md5h{$fn} ne $hash)
  442.                                 { logger('diff', $md5fn); }
  443.                         }
  444.                 }
  445.         }
  446. }
  447.  
  448.  
  449. sub md5sum {
  450.         my $fn = shift;
  451.  
  452.         while ($busy) { yield(); }
  453.  
  454.         if ($large{$fn}) {
  455.                 lock($busy);
  456.                 $busy = 1;
  457.                 open(FILE, '<:raw', $fn) or die "Can't open '$fn': $!";
  458.                 my $hash = Digest::MD5->new->addfile("FILE")->hexdigest;
  459.                 close(FILE) or die "Can't close '$fn': $!";
  460.                 $busy = 0;
  461.                 return $hash;
  462.         } else {
  463.                 my $hash = md5_hex($file_contents{$fn});
  464.                 lock($file_stack);
  465.                 $file_stack -= length($file_contents{$fn});
  466.                 lock(%file_contents);
  467.                 delete($file_contents{$fn});
  468.                 return $hash;
  469.         }
  470. }
  471.  
  472. # Subroutine to index the files
  473. # i.e calculate and store the MD5 sums in the database hash/file.
  474. # It takes 1 argument:
  475. # (1) the thread queue
  476. sub md5index {
  477.         my $q = shift;
  478.         my $tid = threads->tid();
  479.  
  480.         # Loop through the thread que.
  481.         LOOP2: while ((my $fn = $q->dequeue_nb()) || !$stopping) {
  482.                         if (!$fn) { yield(); next; }
  483.  
  484.                         $md5h{$fn} = md5sum($fn);
  485.                         say "$tid $fn: done indexing (${file_stack})";
  486.  
  487.                         { lock($n);
  488.                         $n++; }
  489.  
  490.                         # If the $saw_sigint variable has been tripped.
  491.                         # Quit this 'while' loop, thereby closing the thread.
  492.                         if ($saw_sigint == 1) {
  493.                                 say "Closing thread: " . $tid;
  494.                                 iquit();
  495.                         }
  496.         }
  497.  
  498.         while (!$q->pending() && !$stopping) {
  499.                 yield();
  500.                 goto(LOOP2);
  501.         }
  502. }
  503.  
  504. # Subroutine for testing to see if the MD5 sums
  505. # in the database file are correct (i.e. have changed or not).
  506. # It takes 1 argument:
  507. # (1) the thread queue
  508. sub md5test {
  509.         my $q = shift;
  510.         my $tid = threads->tid();
  511.         my ($oldmd5, $newmd5);
  512.  
  513.         # Loop through the thread queue.
  514.         LOOP: while ((my $fn = $q->dequeue_nb()) || !$stopping) {
  515.                                 if (!$fn) { yield(); next; }
  516.  
  517.                                 $newmd5 = md5sum($fn);
  518.                                 say "$tid $fn: done testing (${file_stack})";
  519.                                 $oldmd5 = $md5h{$fn};
  520.  
  521.                                 # If the new MD5 sum doesn't match the one in the hash,
  522.                                 # and file doesn't already exist in the %err hash,
  523.                                 # log it and replace the old MD5 sum in the hash with
  524.                                 # the new one.
  525.                                 if ($newmd5 ne $oldmd5 && ! $err{$fn}) {
  526.                                         logger('diff', $fn);
  527.                                         $md5h{$fn} = $newmd5;
  528.                                 }
  529.  
  530.                                 { lock($n);
  531.                                 $n++; }
  532.  
  533.                                 # If the $saw_sigint variable has been tripped.
  534.                                 # Quit this 'while' loop, thereby closing the thread.
  535.                                 if ($saw_sigint == 1) {
  536.                                         say "Closing thread: " . $tid;
  537.                                         iquit();
  538.                                 }
  539.         }
  540.  
  541.         while (!$q->pending() && !$stopping) {
  542.                 yield();
  543.                 goto(LOOP);
  544.         }
  545. }
  546.  
  547. sub md5flac {
  548.         my $fn = shift;
  549.         my (@req, $hash);
  550.  
  551.         if ($fn =~ /.flac$/i) {
  552.  
  553.                 if (! @req) {
  554.                         chomp(@req = ( `which flac metaflac 2>&-` ));
  555.  
  556.                         if (! $req[0] || ! $req[1]) {
  557.                                 say "You need both 'flac' and 'metaflac' to test FLAC files!\n" .
  558.                                 "Using normal test method...\n";
  559.                                 @req = '0';
  560.                                 return;
  561.                         }
  562.                 }
  563.  
  564.                 unless ($req[0] = '0') {
  565.                         chomp($hash = `metaflac --show-md5sum "$fn" 2>&-`);
  566.                         if ($? != 0 && $? != 2) { logger('corr', $fn); return; }
  567.  
  568.                         system('flac', '--totally-silent', '--test', "$fn");
  569.                         if ($? != 0 && $? != 2) { logger('corr', $fn); return; }
  570.  
  571.                         return $hash;
  572.                 }
  573.         }
  574. }
  575.  
  576. # Create the thread queue.
  577. my $q = Thread::Queue->new();
  578.  
  579. # Depending on which script mode is active,
  580. # set the @run array to the correct arguments.
  581. # This will be used to start the threads later.
  582. my @run;
  583. given ($mode) {
  584.         when ('index') {
  585.                 @run = (\&md5index, $q);
  586.         }
  587.         when ('test') {
  588.                 @run = (\&md5test, $q);
  589.         }
  590. }
  591.  
  592. # If script mode is either 'import' or 'double' we'll start only
  593. # one thread, else we'll start as many as the available number of CPUs.
  594. my @threads;
  595. if ($mode ne 'import' && $mode ne 'double') {
  596.         foreach (1 .. $cores) {
  597.                 push(@threads, threads->create(@run));
  598.         }
  599. }
  600.  
  601. # This loop is where the actual action takes place
  602. # (i.e. where all the subroutines get called from)
  603. foreach my $dn (@lib) {
  604.         if (-d $dn) {
  605.  
  606.                 # Adding the current PATH to the $db variable.
  607.                 $db = "$dn/$db";
  608.  
  609.                 # Change directory to $dn.
  610.                 chdir($dn)
  611.                         or die "Can't change directory to '$dn': $!";
  612.  
  613.                 # Start logging.
  614.                 logger('start');
  615.  
  616.                 # If the database file is a real file,
  617.                 # store it in the database hash.
  618.                 file2hash() if (-f $db);
  619.  
  620.                 given ($mode) {
  621.                         when ('double') {
  622.                                 # Find identical files in database.
  623.                                 md5double();
  624.                         }
  625.                         when ('import') {
  626.                                 # For all the files in $dn, run md5import.
  627.                                 foreach my $fn (getfiles($dn)) { md5import($fn); }
  628.                         }
  629.                         when ('index') {
  630.                                 #say("Enqueueing files");
  631.                                 # Get all the file names and put them in the queue.
  632.                                 foreach my $fn (getfiles($dn)) {
  633.                                         if ($saw_sigint) { iquit(); }
  634.                                         while ($file_stack >= $disk_size) {
  635.                                                 my $active = threads->running();
  636.                                                 say("${active}: $file_stack > $disk_size");
  637.                                                 yield();
  638.                                         }
  639.                                         # Unless file name exists in the database hash,
  640.                                         # continue.
  641.                                         unless ($md5h{$fn}) {
  642.                                                 my $size = (stat($fn))[7];
  643.                                                 if ($size && $size < $disk_size) {
  644.  
  645.                                                         #say("${fn}: reading");
  646.                                                         open(FILE, '<:raw', $fn) or die "Can't open '$fn': $!";
  647.                                                         sysread(FILE, $file_contents{$fn}, $size);
  648.                                                         close(FILE) or die "Can't close '$fn': $!";
  649.  
  650.                                                         #say("${fn}: queueing");
  651.                                                         lock($file_stack);
  652.                                                         $file_stack += length($file_contents{$fn});
  653.                                                         $q->enqueue($fn);
  654.                                                 } elsif ($size) {
  655.                                                         $large{$fn} = 1;
  656.                                                 }
  657.                                         }
  658.                                 }
  659.                         }
  660.                         when ('test') {
  661.                                 #say("Enqueueing files");
  662.                                 # Fetch all the keys for the database hash and put
  663.                                 # them in the queue.
  664.                                 foreach my $fn (sort(keys(%md5h))) {
  665.                                         if ($saw_sigint) { iquit(); }
  666.                                         while ($file_stack >= $disk_size) {
  667.                                                 say("$file_stack > $disk_size");
  668.                                                 yield();
  669.                                         }
  670.  
  671.                                         my $size = (stat($fn))[7];
  672.                                         if ($size && $size < $disk_size) {
  673.  
  674.                                                 #say("${fn}: reading");
  675.                                                 open(FILE, '<:raw', $fn) or die "Can't open '$fn': $!";
  676.                                                 sysread(FILE, $file_contents{$fn}, $size);
  677.                                                 close(FILE) or die "Can't close '$fn': $!";
  678.  
  679.                                                 #say("${fn}: queueing");
  680.                                                 lock($file_stack);
  681.                                                 $file_stack += length($file_contents{$fn});
  682.                                                 $q->enqueue($fn);
  683.                                         } elsif ($size) {
  684.                                                 $large{$fn} = 1;
  685.                                         }
  686.                                 }
  687.                         }
  688.                 }
  689.  
  690.                 if (%large) {
  691.                         while ($file_stack > 0) {
  692.                                 say("$file_stack > 0");
  693.                                 yield();
  694.                         }
  695.                         foreach my $fn (sort(keys(%large))) {
  696.                                 #say("${fn}: queueing");
  697.                                 $q->enqueue($fn);
  698.                         }
  699.                 }
  700.  
  701. #     use Digest::MD5;
  702. #    $md5 = Digest::MD5->new;
  703. #    $md5->add('foo', 'bar');
  704. #    $md5->add('baz');
  705. #    $digest = $md5->hexdigest;
  706. #    print "Digest is $digest\n";
  707.  
  708.  
  709.                 $stopping = 1;
  710.                 foreach my $t (threads->list()) { $t->join(); }
  711.                 #say("All threads joined");
  712.  
  713.                 # Print the hash to the database file and close the log
  714.                 hash2file();
  715.                 logger('end', $n);
  716.         }
  717. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at