=================================================================== RCS file: /cvs/todotxt/Text-Todo/lib/Text/Todo/Entry.pm,v retrieving revision 1.4 retrieving revision 1.10 diff -u -r1.4 -r1.10 --- todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2009/07/11 16:58:50 1.4 +++ todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2010/01/09 07:07:31 1.10 @@ -1,6 +1,6 @@ package Text::Todo::Entry; -# $RedRiver: Entry.pm,v 1.3 2009/07/10 22:52:08 andrew Exp $ +# $RedRiver: Entry.pm,v 1.9 2010/01/08 17:41:56 andrew Exp $ use warnings; use strict; @@ -16,12 +16,20 @@ my %tags_of; my %priority_of; + my %completion_status_of; my %tags = ( context => q{@}, project => q{+}, ); + # XXX Should the completion (x) be case sensitive? + my $priority_completion_regex = qr/ + ^ \s* + (?i: (x) \s+)? + (?i:\( ([A-Z]) \) \s+)? + /xms; + for my $tag ( keys %tags ) { ## no critic strict no strict 'refs'; # Violates use strict, but allows code generation @@ -38,6 +46,10 @@ }; } + sub replace { _update_entry(@_) } + sub depri { _set_priority( @_, '' ) } + sub pri { _set_priority(@_) } + sub new { my ( $class, $text ) = @_; @@ -59,10 +71,11 @@ foreach my $tag ( keys %tags ) { my $symbol = quotemeta $tags{$tag}; - $tags_of{$ident}{$tag} - = { map { $_ => q{} } $text =~ / $symbol (\S+)/gxms }; + $tags_of{$ident}{$tag} = { map { $_ => q{} } + $text =~ / (?:^|\s) $symbol (\S+)/gxms }; } - ( $priority_of{$ident} ) = $text =~ /^ \s* \( ([A-Z]) \)/ixms; + ( $completion_status_of{$ident}, $priority_of{$ident} ) + = $text =~ / $priority_completion_regex /xms; return 1; } @@ -76,10 +89,8 @@ } sub _is_in { - my ( $self, $type, $item ) = @_; - my $ident = ident($self); - - return defined first { $_ eq $item } $self->$type; + my ( $self, $tags, $item ) = @_; + return defined first { $_ eq $item } $self->$tags; } sub text { @@ -89,40 +100,75 @@ return $text_of{$ident}; } + sub _set_priority { + my ( $self, $new_pri ) = @_; + my $ident = ident($self); + + if ( $new_pri !~ /^[a-zA-Z]?$/xms ) { + croak "Invalid priority [$new_pri]"; + } + + $priority_of{$ident} = $new_pri; + + return $self->prepend(); + } + sub priority { - my ($self) = @_; + my ( $self, $new_pri ) = @_; my $ident = ident($self); return $priority_of{$ident}; } - sub change { - my ( $self, $text ) = @_; - return $self->_update_entry($text); - } - sub prepend { my ( $self, $addition ) = @_; my $new = $self->text; + my @new; - if ( my $priority = $self->priority ) { - $new =~ s/^( \s* \( $priority \))/$1 $addition/xms; + $new =~ s/$priority_completion_regex//xms; + + if ( $self->done ) { + push @new, $self->done; } - else { - $new = join q{ }, $addition, $new; + + if ( $self->priority ) { + push @new, '(' . $self->priority . ')'; } - return $self->change($new); + if ( defined $addition && length $addition ) { + push @new, $addition; + } + + return $self->_update_entry( join q{ }, @new, $new ); } sub append { my ( $self, $addition ) = @_; - return $self->change( join q{ }, $self->text, $addition ); + return $self->_update_entry( join q{ }, $self->text, $addition ); } -} + sub do { + my ($self) = @_; + my $ident = ident($self); + if ( $self->done ) { + return 1; + } + + $completion_status_of{$ident} = 'x'; + + return $self->prepend(); + } + + sub done { + my ($self) = @_; + my $ident = ident($self); + + return $completion_status_of{$ident}; + } + +} 1; # Magic true value required at end of module __END__ @@ -175,12 +221,19 @@ =head2 in_project -=head2 change +=head2 replace =head2 prepend =head2 append +=head2 do + +=head2 done + +=head2 pri + +=head2 depri =head1 DIAGNOSTICS