Method 1

Pass 1: Build a hash using the path + size as the key and a count of the number of time you saw that combination as the value.

Pass 2: Iterate over the keys extracting the path and use stat or -s to get the real size. If when the size doesn't match, delete that entry from the hash.

Pass 3: Sum the sizes extracted from the remaining keys, * the associated counts. You have the total downloaded.

Method 2

Build a hash containing path as the key and size as the value of all the files available for download. Save this in a file using Storable or similar.

Reload this hash at the start of the program and then as you parse the log, compare the size from the log from that in the hash and skip those where the size is disimilar.

The latter method is good if the list of files available is fixed or only changes infrequently. Just re-run the indexer script each time an new or modified file is made available. If the list is huge and the indexer takes a long time to run, have a third script that allows you to manually update the stroed hash with a new or modified entry.


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"When I'm working on a problem, I never think about beauty. I think only how to solve the problem. But when I have finished, if the solution is not beautiful, I know it is wrong." -Richard Buckminster Fuller
If I understand your problem, I can solve it! Of course, the same can be said for you.


In reply to Re: File download statistics parsing by BrowserUk
in thread File download statistics parsing by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.