[BACK]Return to Entry.pm CVS log [TXT][DIR] Up to [local] / todotxt / Text-Todo / lib / Text / Todo

Diff for /todotxt/Text-Todo/lib/Text/Todo/Entry.pm between version 1.1 and 1.7

version 1.1, 2009/07/10 23:26:14 version 1.7, 2009/07/13 19:05:50
Line 1 
Line 1 
 package Text::Todo::Entry;  package Text::Todo::Entry;
   
 # $RedRiver$  # $RedRiver: Entry.pm,v 1.6 2009/07/13 17:50:37 andrew Exp $
   
 use warnings;  use warnings;
 use strict;  use strict;
Line 14 
Line 14 
 {  {
     my %text_of;      my %text_of;
   
     my %contexts_of;      my %tags_of;
     my %projects_of;  
     my %priority_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 {      sub new {
         my ( $class, $text ) = @_;          my ( $class, $text ) = @_;
   
Line 37 
Line 58 
   
         $text_of{$ident} = $text;          $text_of{$ident} = $text;
   
         %{ $contexts_of{$ident} } = map { $_ => q{} } $text =~ /\@ (\S+)/gxms;          foreach my $tag ( keys %tags ) {
         %{ $projects_of{$ident} } = map { $_ => q{} } $text =~ /\+ (\S+)/gxms;              my $symbol = quotemeta $tags{$tag};
         ( $priority_of{$ident} ) = $text =~ /\( ([A-Z]) \)/ixms;              $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;          return 1;
     }      }
   
     sub text {      sub _tags {
         my ($self) = @_;          my ( $self, $tag ) = @_;
         my $ident = ident($self);          my $ident = ident($self);
   
         return $text_of{$ident};          my @tags = sort keys %{ $tags_of{$ident}{$tag} };
           return wantarray ? @tags : \@tags;
     }      }
   
     sub contexts {      sub _is_in {
         my ($self) = @_;          my ( $self, $tags, $item ) = @_;
         my $ident = ident($self);          return defined first { $_ eq $item } $self->$tags;
   
         return sort keys %{ $contexts_of{$ident} };  
     }      }
   
     sub in_context {      sub text {
         my ( $self, $context ) = @_;  
         return $self->_is_in( $context, 'contexts' );  
     }  
   
     sub projects {  
         my ($self) = @_;          my ($self) = @_;
         my $ident = ident($self);          my $ident = ident($self);
   
         return sort keys %{ $projects_of{$ident} };          return $text_of{$ident};
     }      }
   
     sub in_project {  
         my ( $self, $project ) = @_;  
         return $self->_is_in( $project, 'projects' );  
     }  
   
     sub priority {      sub priority {
         my ($self) = @_;          my ($self) = @_;
         my $ident = ident($self);          my $ident = ident($self);
Line 82 
Line 97 
         return $priority_of{$ident};          return $priority_of{$ident};
     }      }
   
     sub _is_in {      sub completed {
         my ( $self, $item, $type ) = @_;          my ($self) = @_;
         my $ident = ident($self);          my $ident = ident($self);
   
         return defined first { $_ eq $item } $self->$type;          return $completion_status_of{$ident};
     }      }
   
     sub change {      sub change {
Line 114 
Line 129 
         return $self->change( join q{ }, $self->text, $addition );          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  1;    # Magic true value required at end of module
 __END__  __END__
   
Line 173 
Line 197 
 =head2 prepend  =head2 prepend
   
 =head2 append  =head2 append
   
   =head2 complete
   
   =head2 completed
   
   
 =head1 DIAGNOSTICS  =head1 DIAGNOSTICS

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.7

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>