As I wrote the title, an idea came to me.
At the unix shell, anything other than 0 is an error and the number is the error code.
Likewise, if I return an error string, then something went wrong in the function. Otherwise, just issue C<return> at the end of the function and Perl will promote the argument-less return to the appropriate form of nothingness based on caller context.
Anyway, before I had my inspiration (written about above), I decided to use
Date::Manip error return conventions.
Please critique this sub and tell me if you would do it differently.
sub ok {
my $self = shift;
my $email = shift or confess "where's the email?!";
my $err_ref = shift or confess "where's the err_ref?!";
if ( $self->{email}{$email} )
{
$$err_ref = "duplicate";
return
}
if ( profane ($email, 'definite'))
{
$$err_ref = 'profanite/definite';
return
}
if ( $self->{blacklist}->optout($email) )
{
$$err_ref = 'optout';
return
}
$self->{email}{$email}++;
return 1;
}
Carter's compass: I know I'm on the right track when by deleting something, I'm adding functionality
The Emacs Code Browser
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.