=================================================================== RCS file: /cvs/todotxt/Text-Todo/lib/Text/Todo/Entry.pm,v retrieving revision 1.15 retrieving revision 1.25 diff -u -r1.15 -r1.25 --- todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2010/01/10 01:45:52 1.15 +++ todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2010/01/20 21:53:01 1.25 @@ -1,29 +1,31 @@ package Text::Todo::Entry; -# $RedRiver: Entry.pm,v 1.14 2010/01/10 01:41:40 andrew Exp $ +# $AFresh1: Entry.pm,v 1.24 2010/01/19 18:53:36 andrew Exp $ use warnings; use strict; use Carp; use Class::Std::Utils; -use List::Util qw/ first /; -use version; our $VERSION = qv('0.0.1'); +use version; our $VERSION = qv('0.1.0'); { - my %text_of; - my %tags_of; - my %priority_of; - my %completion_status_of; - my %known_tags_of; + my @attr_refs = \( + my %text_of, + my %tags_of, + my %priority_of, + my %completion_status_of, + my %known_tags_of, + ); + # XXX Should the completion (x) be case sensitive? my $priority_completion_regex = qr{ ^ \s* - (?i: (x) \s*)? - (?i:\( ([A-Z]) \) \s*)? + (?i:(x \s* [\d-]* ) \s*)? + (?i:\( ([A-Z]) \) \s*)? }xms; sub new { @@ -87,14 +89,40 @@ foreach my $tag ( keys %{ $known_tags_of{$ident} } ) { my $symbol = quotemeta $known_tags_of{$ident}{$tag}; $tags_of{$ident}{$tag} = { map { $_ => q{} } - $text =~ / (?:^|\s) $symbol (\S+)/gxms }; + $text =~ / (?:^|\s) $symbol (\S*)/gxms }; } - ( $completion_status_of{$ident}, $priority_of{$ident} ) + my ( $completed, $priority ) = $text =~ / $priority_completion_regex /xms; + $completion_status_of{$ident} = _clean_completed($completed); + $priority_of{$ident} = $priority; + return 1; } + sub _clean_completed { + my ($completed) = @_; + + $completed ||= q{}; + $completed =~ s/^\s+|\s+$//gxms; + + if ( !$completed ) { + return; + } + + if ( $completed =~ s/(x)\s*//ixms ) { + my $status = $1; + if ($completed) { + return $completed; + } + else { + return $status; + } + } + + return; + } + sub _tags { my ( $self, $tag ) = @_; my $ident = ident($self); @@ -105,7 +133,10 @@ sub _is_in { my ( $self, $tags, $item ) = @_; - return defined first { $_ eq $item } $self->$tags; + foreach ($self->$tags) { + return 1 if $_ eq $item; + } + return 0; } sub text { @@ -146,6 +177,9 @@ $new =~ s/$priority_completion_regex//xms; if ( $self->done ) { + if ( $self->done !~ /^x/ixms ) { + push @new, 'x'; + } push @new, $self->done; } @@ -175,7 +209,10 @@ return 1; } - $completion_status_of{$ident} = 'x'; + $completion_status_of{$ident} = sprintf "%04d-%02d-%02d", + ( (localtime)[5] + 1900 ), + ( (localtime)[4] + 1 ), + ( (localtime)[3] ); return $self->prepend(); } @@ -187,6 +224,13 @@ return $completion_status_of{$ident}; } + sub DESTROY { + my ($self) = @_; + my $ident = ident $self; + foreach my $attr_ref (@attr_refs) { + delete $attr_ref->{$ident}; + } + } } 1; # Magic true value required at end of module __END__ @@ -201,7 +245,7 @@ Since the $VERSION can't be automatically included, here is the RCS Id instead, you'll have to look up $VERSION. - $Id: Entry.pm,v 1.15 2010/01/10 01:45:52 andrew Exp $ + $Id: Entry.pm,v 1.25 2010/01/20 21:53:01 andrew Exp $ =head1 SYNOPSIS @@ -360,16 +404,19 @@ $entry->do; -Does this by prepending an 'x' to the beginning of the entry. +Does this by prepending "x `date '%Y-%m-%d'`" to the beginning of the entry. =head2 done Returns true if an entry is marked complete and false if not. - - if (!$entry->done) { + + if (!my $status = $entry->done) { # remind me to do it } +If the entry starts as 'x date', for example 'x 2010-01-01', $status is now +'2010-01-01'. +If the entry just starts with 'x', then $status will be 'x'. =head1 DIAGNOSTICS