To avoid the race condition
CountZero mentions, maybe try storing the unique ids of all the messages in your mailbox and check for new messages by calling Uidl and comparing the results with what you have stored (I'm not sure if this gets unreasonably slow with a large message queue). Something like:
my %msg_uid_hash = ();
...
sub daemon {
...
$new_msg_cnt = 0;
# check current uid list against our last one
my @msg_uid_list = $pop->Uidl();
foreach my $uid (@msg_uid_list) {
$new_msg_cnt++ if !$msg_uid_hash{$uid};
}
# replace the old uid list with the current one
%msg_uid_hash = map {$_ => 1} @msg_uid_list;
...
}
Update: actually, using the message count isn't so much a race condition as a flawed model; messages can easily be deleted, making the message count a poor indicator of new messages.
Brad
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.