Seek isn't really for skipping forwards into unknown territory like this unless you know enough about the file format to be able to know exactly where you want to go to. In particular, you can't do a "skip the next 100 files" command.
However, if you do a
push(@tells, $dir->tell());
at the start of each page, it will allow you to use seek later to skip back to any of those particular points later using the values stored in the @tells array. E.G.
# have now read through all files once and stored every
# Nth position in @tells
my $dirpos = @tells / 2; # start in the middle
my $browsing = 1;
while ($browsing)
{
my $action = "";
$f = $dir->seek($tells[$dirpos]);
# code to go here to read next N files and display
# results to user.
# Come back here when we have an submit from the user
# and $action set to the result.
if ($action eq "pageforwards")
{
#should check for end
$dirpos++;
}
elsif ($action eq "pagebackwards")
{
#should check for start
$dirpos--;
}
else
{
# do other actions
$browsing = 0;
}
}
This way, you only have to store a value for every Nth file,
which is a big reduction in storage.
--
Brovnik.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.