=================================================================== RCS file: /cvs/todotxt/Text-Todo-REST-API/lib/Text/Todo/REST/API.pm,v retrieving revision 1.3 retrieving revision 1.6 diff -u -r1.3 -r1.6 --- todotxt/Text-Todo-REST-API/lib/Text/Todo/REST/API.pm 2010/01/17 23:48:06 1.3 +++ todotxt/Text-Todo-REST-API/lib/Text/Todo/REST/API.pm 2010/01/18 03:51:40 1.6 @@ -1,6 +1,6 @@ package Text::Todo::REST::API; -# $AFresh1: API.pm,v 1.2 2010/01/17 23:15:00 andrew Exp $ +# $AFresh1: API.pm,v 1.5 2010/01/18 03:10:42 andrew Exp $ use warnings; use strict; @@ -9,7 +9,11 @@ use Data::Dumper; use Text::Todo; -use Class::Std; +use Class::Std::Utils; +use Module::Pluggable + require => 1, + search_path => __PACKAGE__ . '::Representations', + sub_name => 'representations'; use Digest::MD5 qw/ md5_hex /; use File::Spec; @@ -24,15 +28,26 @@ ); { - my (%todo_of, %basedir_of, %subdir_of, - %suffix_of, %file_regex_of, %user_of, - %list_of, %action_of, %args_of, - %action_handlers, %format_handlers, - ) : ATTRS; + my @attr_refs = \( + my %todo_of, - sub BUILD { - my ( $self, $ident, $options ) = @_; + my %basedir_of, + my %subdir_of, + my %suffix_of, + my %file_regex_of, + + my %user_of, + my %list_of, + my %action_of, + my %args_of, + + my %action_handlers, + ); + + sub new { + my ( $class, $options ) = @_; + my $format = $options->{default_format}; if ( $options->{format} ) { $format = $options->{format}; @@ -43,11 +58,19 @@ $format = $1; } + my $self = bless anon_scalar(), $class; + my $ident = ident($self); + if ( ref $self eq __PACKAGE__ && $format ) { - if ( $format_handlers{$format} ) { - bless $self, $format_handlers{$format}; + my $found_handler = 0; + REP: foreach my $rep ( $self->representations ) { + if ( $rep->_handles($format) ) { + $self = $rep->new($options); + $found_handler = 1; + last REP; + } } - else { + if ( !$found_handler ) { croak("Unable to find handler for [$format]\n"); } } @@ -107,19 +130,9 @@ $todo_of{$ident}->load('todo_file') or $self->fail('Unable to create Text::Todo object'); - return; + return $self; } - sub RegisterFormatHandler { - my ( $handler, @types ) = @_; - - foreach my $type (@types) { - $format_handlers{$type} = $handler; - } - - return 1; - } - sub RegisterActionHandler { my ( $handler, @types ) = @_; @@ -130,6 +143,8 @@ return 1; } + sub content_type {return} + sub Dump { my ($self) = @_; return $self->fail( 'Unable to Dump [' . $self->_action . ']' ); @@ -231,12 +246,12 @@ return $todo_of{$ident}->listtag($tag); } - sub POST { + sub POST { my ( $self, @args ) = @_; return $self->_handle_action( 'POST', @args ); } - sub PUT { + sub PUT { my ( $self, @args ) = @_; return $self->_handle_action( 'PUT', @args ); } @@ -261,6 +276,13 @@ sub _action { my ($self) = @_; return $action_of{ ident $self}; } sub _args { my ($self) = @_; return $args_of{ ident $self}; } + 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__