=================================================================== RCS file: /cvs/todotxt/Text-Todo/lib/Text/Todo/Entry.pm,v retrieving revision 1.2 retrieving revision 1.7 diff -u -r1.2 -r1.7 --- todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2009/07/10 23:28:28 1.2 +++ todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2009/07/13 19:05:50 1.7 @@ -1,6 +1,6 @@ package Text::Todo::Entry; -# $RedRiver: Entry.pm,v 1.1 2009/07/10 22:26:14 andrew Exp $ +# $RedRiver: Entry.pm,v 1.6 2009/07/13 17:50:37 andrew Exp $ use warnings; use strict; @@ -14,10 +14,31 @@ { my %text_of; - my %contexts_of; - my %projects_of; + my %tags_of; my %priority_of; + my %completion_status_of; + my %tags = ( + context => q{@}, + project => q{+}, + ); + + for my $tag ( keys %tags ) { + ## no critic strict + no strict 'refs'; # Violates use strict, but allows code generation + ## use critic + + *{ $tag . 's' } = sub { + my ($self) = @_; + return $self->_tags($tag); + }; + + *{ 'in_' . $tag } = sub { + my ( $self, $item ) = @_; + return $self->_is_in( $tag . 's', $item ); + }; + } + sub new { my ( $class, $text ) = @_; @@ -37,46 +58,38 @@ $text_of{$ident} = $text; - %{ $contexts_of{$ident} } = map { $_ => q{} } $text =~ /\@ (\S+)/gxms; - %{ $projects_of{$ident} } = map { $_ => q{} } $text =~ /\+ (\S+)/gxms; - ( $priority_of{$ident} ) = $text =~ /\( ([A-Z]) \)/ixms; + foreach my $tag ( keys %tags ) { + my $symbol = quotemeta $tags{$tag}; + $tags_of{$ident}{$tag} = { map { $_ => q{} } + $text =~ / (?:^|\s) $symbol (\S+)/gxms }; + } + ( $completion_status_of{$ident} ) = $text =~ /^ \s*(x) /ixms; + ( $priority_of{$ident} ) + = $text =~ /^ (?:\s*x)? \s* \( ([A-Z]) \)/ixms; return 1; } - sub text { - my ($self) = @_; + sub _tags { + my ( $self, $tag ) = @_; my $ident = ident($self); - return $text_of{$ident}; + my @tags = sort keys %{ $tags_of{$ident}{$tag} }; + return wantarray ? @tags : \@tags; } - sub contexts { - my ($self) = @_; - my $ident = ident($self); - - my @contexts = sort keys %{ $contexts_of{$ident} }; - return wantarray ? @contexts : \@contexts; + sub _is_in { + my ( $self, $tags, $item ) = @_; + return defined first { $_ eq $item } $self->$tags; } - sub in_context { - my ( $self, $context ) = @_; - return $self->_is_in( $context, 'contexts' ); - } - - sub projects { + sub text { my ($self) = @_; my $ident = ident($self); - my @projects = sort keys %{ $projects_of{$ident} }; - return wantarray ? @projects : \@projects; + return $text_of{$ident}; } - sub in_project { - my ( $self, $project ) = @_; - return $self->_is_in( $project, 'projects' ); - } - sub priority { my ($self) = @_; my $ident = ident($self); @@ -84,11 +97,11 @@ return $priority_of{$ident}; } - sub _is_in { - my ( $self, $item, $type ) = @_; + sub completed { + my ($self) = @_; my $ident = ident($self); - return defined first { $_ eq $item } $self->$type; + return $completion_status_of{$ident}; } sub change { @@ -116,8 +129,17 @@ return $self->change( join q{ }, $self->text, $addition ); } -} + sub complete { + my ($self) = @_; + if ( $self->completed ) { + return 1; + } + + return $self->change( join q{ }, 'x', $self->text ); + } + +} 1; # Magic true value required at end of module __END__ @@ -175,6 +197,10 @@ =head2 prepend =head2 append + +=head2 complete + +=head2 completed =head1 DIAGNOSTICS