pastebin - collaborative debugging tool
kpaste.net RSS


md5db script (threaded, ram-only version) with flac and large file support
Posted by Anonymous on Sat 22nd Sep 2012 13:05
raw | new post
view followups (newest first): md5db script (threaded, ram-only version) with flac and large file support by Anonymous
modification of post by Anonymous (view diff)

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

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