X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine.pm;h=2cbc0f4223f98563df77bfa355520bee848f9f3b;hb=0169d3a8a5beb8e9642ceb5a6bef9db0aee5c6b7;hp=38d8aeffbaa6fe99c25269b702c32e4b00584f68;hpb=0556eb49954590b794221ed3a033565c85dbeb32;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index 38d8aef..2cbc0f4 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -6,7 +6,10 @@ use UNIVERSAL::require; use Data::Dumper; use HTML::Entities; use HTTP::Headers; +use Memoize; use Time::HiRes qw/gettimeofday tv_interval/; +use Tree::Simple; +use Tree::Simple::Visitor::FindByPath; use Catalyst::Request; use Catalyst::Response; @@ -14,11 +17,13 @@ require Module::Pluggable::Fast; $Data::Dumper::Terse = 1; -__PACKAGE__->mk_classdata($_) for qw/actions components/; -__PACKAGE__->mk_accessors(qw/request response/); +__PACKAGE__->mk_classdata($_) for qw/actions components tree/; +__PACKAGE__->mk_accessors(qw/request response state/); __PACKAGE__->actions( - { plain => {}, regex => {}, compiled => {}, reverse => {} } ); + { plain => {}, private => {}, regex => {}, compiled => {}, reverse => {} } +); +__PACKAGE__->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) ); *comp = \&component; *req = \&request; @@ -27,6 +32,8 @@ __PACKAGE__->actions( our $COUNT = 1; our $START = time; +memoize('_class2prefix'); + =head1 NAME Catalyst::Engine - The Catalyst Engine @@ -43,22 +50,10 @@ See L. =item $c->action( $name => $coderef, ... ) -=item $c->action( $name ) - -=item $c->action - Add one or more actions. $c->action( '!foo' => sub { $_[1]->res->output('Foo!') } ); -Get an action's class and coderef. - - my ($class, $code) = @{ $c->action('foo') }; - -Get a list of available actions. - - my @actions = $c->action; - It also automatically calls setup() if needed. See L for more informations about actions. @@ -73,55 +68,109 @@ sub action { $_[1] ? ( $action = {@_} ) : ( $action = shift ); if ( ref $action eq 'HASH' ) { while ( my ( $name, $code ) = each %$action ) { - my $class = caller(0); - if ( $name =~ /^\/(.*)\/$/ ) { - my $regex = $1; - $self->actions->{compiled}->{qr/$regex/} = $name; - $self->actions->{regex}->{$name} = [ $class, $code ]; - } - elsif ( $name =~ /^\?(.*)$/ ) { - $name = $1; - $name = _prefix( $class, $name ); - $self->actions->{plain}->{$name} = [ $class, $code ]; - } - elsif ( $name =~ /^\!\?(.*)$/ ) { - $name = $1; - $name = _prefix( $class, $name ); - $name = "\!$name"; - $self->actions->{plain}->{$name} = [ $class, $code ]; - } - else { $self->actions->{plain}->{$name} = [ $class, $code ] } - $self->actions->{reverse}->{"$code"} = $name; - $self->log->debug(qq/"$class" defined "$name" as "$code"/) - if $self->debug; + $self->set_action( $name, $code, caller(0) ); } } - elsif ($action) { - if ( my $p = $self->actions->{plain}->{$action} ) { return [$p] } - elsif ( my $r = $self->actions->{regex}->{$action} ) { return [$r] } - else { - for my $regex ( keys %{ $self->actions->{compiled} } ) { - my $name = $self->actions->{compiled}->{$regex}; - if ( $action =~ $regex ) { - my @snippets; - for my $i ( 1 .. 9 ) { - no strict 'refs'; - last unless ${$i}; - push @snippets, ${$i}; - } - return [ $self->actions->{regex}->{$name}, - $name, \@snippets ]; + return 1; +} + +=item $c->get_action( $action, $namespace ) + +Get an action in a given namespace. + +=cut + +sub get_action { + my ( $c, $action, $namespace ) = @_; + $namespace ||= ''; + if ( $action =~ /^\!(.*)/ ) { + $action = $1; + my $parent = $c->tree; + my @results; + my $result = $c->actions->{private}->{ $parent->getUID }->{$action}; + push @results, [$result] if $result; + my $visitor = Tree::Simple::Visitor::FindByPath->new; + for my $part ( split '/', $namespace ) { + $visitor->setSearchPath($part); + $parent->accept($visitor); + my $child = $visitor->getResult; + my $uid = $child->getUID if $child; + my $match = $c->actions->{private}->{$uid}->{$action} if $uid; + push @results, [$match] if $match; + $parent = $child if $child; + } + return \@results; + } + elsif ( my $p = $c->actions->{plain}->{$action} ) { return [ [$p] ] } + elsif ( my $r = $c->actions->{regex}->{$action} ) { return [ [$r] ] } + else { + for my $regex ( keys %{ $c->actions->{compiled} } ) { + my $name = $c->actions->{compiled}->{$regex}; + if ( $action =~ $regex ) { + my @snippets; + for my $i ( 1 .. 9 ) { + no strict 'refs'; + last unless ${$i}; + push @snippets, ${$i}; } + return [ [ $c->actions->{regex}->{$name}, $name, \@snippets ] ]; } } - return 0; } - else { - return ( - keys %{ $self->actions->{plain} }, - keys %{ $self->actions->{regex} } - ); + return []; +} + +=item $c->set_action( $action, $code, $namespace ) + +Set an action in a given namespace. + +=cut + +sub set_action { + my ( $c, $action, $code, $namespace ) = @_; + + my $prefix = ''; + if ( $action =~ /^\?(.*)$/ ) { + my $prefix = $1 || ''; + $action = $2; + $action = $prefix . _prefix( $namespace, $action ); + $c->actions->{plain}->{$action} = [ $namespace, $code ]; + } + if ( $action =~ /^\/(.*)\/$/ ) { + my $regex = $1; + $c->actions->{compiled}->{qr#$regex#} = $action; + $c->actions->{regex}->{$action} = [ $namespace, $code ]; + } + elsif ( $action =~ /^\!(.*)$/ ) { + $action = $1; + my $parent = $c->tree; + my $visitor = Tree::Simple::Visitor::FindByPath->new; + $prefix = _class2prefix($namespace); + for my $part ( split '/', $prefix ) { + $visitor->setSearchPath($part); + $parent->accept($visitor); + my $child = $visitor->getResult; + unless ($child) { + $child = $parent->addChild( Tree::Simple->new($part) ); + $visitor->setSearchPath($part); + $parent->accept($visitor); + $child = $visitor->getResult; + } + $parent = $child; + } + my $uid = $parent->getUID; + $c->actions->{private}->{$uid}->{$action} = [ $namespace, $code ]; + $action = "!$action"; + } + else { + $c->actions->{plain}->{$action} = [ $namespace, $code ] } + + my $reverse = $prefix ? "$action ($prefix)" : $action; + $c->actions->{reverse}->{"$code"} = $reverse; + + $c->log->debug(qq/"$namespace" defined "$action" as "$code"/) + if $c->debug; } =item $c->benchmark($coderef) @@ -340,42 +389,44 @@ sub forward { $c->log->debug('Nothing to forward to') if $c->debug; return 0; } + my $caller = caller(0); if ( $command =~ /^\?(.*)$/ ) { $command = $1; - my $caller = caller(0); - $command = _prefix( $caller, $command ); - } - elsif ( $command =~ /^\!\?(.*)$/ ) { - $command = $1; - my $caller = caller(0); $command = _prefix( $caller, $command ); - $command = "\!$command"; } - elsif ( $command =~ /^\!(.*)$/ ) { - my $try = $1; - my $caller = caller(0); - my $prefix = _class2prefix($caller); - $try = "!$prefix/$command"; - $command = $try if $c->actions->{plain}->{$try}; + my $namespace = ''; + if ( $command =~ /^\!/ ) { + $namespace = _class2prefix($caller); } - my ( $class, $code ); - if ( my $action = $c->action($command) ) { - if ( $action->[2] ) { - $c->log->debug(qq/Couldn't forward "$command" to regex action/) - if $c->debug; - return 0; + if ( my $results = $c->get_action( $command, $namespace ) ) { + if ( $command =~ /^\!/ ) { + for my $result ( @{$results} ) { + my ( $class, $code ) = @{ $result->[0] }; + $c->state( $c->process( $class, $code ) ); + } + } + else { + return 0 unless my $result = $results->[0]; + if ( $result->[2] ) { + $c->log->debug(qq/Couldn't forward "$command" to regex action/) + if $c->debug; + return 0; + } + my ( $class, $code ) = @{ $result->[0] }; + $class = $c->components->{$class} || $class; + $c->state( $c->process( $class, $code ) ); } - ( $class, $code ) = @{ $action->[0] }; } else { - $class = $command; + my $class = $command; if ( $class =~ /[^\w\:]/ ) { $c->log->debug(qq/Couldn't forward to "$class"/) if $c->debug; return 0; } my $method = shift || 'process'; - if ( $code = $class->can($method) ) { + if ( my $code = $class->can($method) ) { $c->actions->{reverse}->{"$code"} = "$class->$method"; + $c->state( $c->process( $class, $code ) ); } else { $c->log->debug(qq/Couldn't forward to "$class->$method"/) @@ -383,8 +434,7 @@ sub forward { return 0; } } - $class = $c->components->{$class} || $class; - return $c->process( $class, $code ); + return $c->state; } =item $c->handler($r) @@ -400,37 +450,31 @@ sub handler { my $status = -1; eval { my $handler = sub { - my $c = $class->prepare($r); - if ( my $action = $c->action( $c->req->action ) ) { - my ( $begin, $end ); - my $class = ${ $action->[0] }[0]; - my $prefix = _class2prefix($class); - if ($prefix) { - if ( $c->actions->{plain}->{"\!$prefix/begin"} ) { - $begin = "\!$prefix/begin"; - } - elsif ( $c->actions->{plain}->{'!begin'} ) { - $begin = '!begin'; - } - if ( $c->actions->{plain}->{"\!$prefix/end"} ) { - $end = "\!$prefix/end"; - } - elsif ( $c->actions->{plain}->{'!end'} ) { $end = '!end' } + my $c = $class->prepare($r); + my $action = $c->req->action; + my $namespace = ''; + $namespace = join '/', @{ $c->req->args } if $action eq '!default'; + unless ($namespace) { + if ( my $result = $c->get_action($action) ) { + $namespace = _class2prefix( $result->[0]->[0]->[0] ); + } + } + my $results = $c->get_action( $action, $namespace ); + if ( @{$results} ) { + for my $begin ( @{ $c->get_action( '!begin', $namespace ) } ) { + $c->state( $c->process( @{ $begin->[0] } ) ); + } + for my $result ( @{ $c->get_action( $action, $namespace ) } ) { + $c->state( $c->process( @{ $result->[0] } ) ); } - else { - if ( $c->actions->{plain}->{'!begin'} ) { - $begin = '!begin'; - } - if ( $c->actions->{plain}->{'!end'} ) { $end = '!end' } + for my $end ( @{ $c->get_action( '!end', $namespace ) } ) { + $c->state( $c->process( @{ $end->[0] } ) ); } - $c->forward($begin) if $begin; - $c->forward( $c->req->action ) if $c->req->action; - $c->forward($end) if $end; } else { - my $action = $c->req->path; - my $error = $action - ? qq/Unknown resource "$action"/ + my $path = $c->req->path; + my $error = $path + ? qq/Unknown resource "$path"/ : "No default action defined"; $c->log->error($error) if $c->debug; $c->errors($error); @@ -476,7 +520,8 @@ sub prepare { response => Catalyst::Response->new( { cookies => {}, headers => HTTP::Headers->new, status => 200 } ), - stash => {} + stash => {}, + state => 0 }, $class; if ( $c->debug ) { my $secs = time - $START || 1; @@ -525,7 +570,7 @@ sub prepare_action { $c->req->args( \my @args ); while (@path) { $path = join '/', @path; - if ( my $result = $c->action($path) ) { + if ( my $result = ${ $c->get_action($path) }[0] ) { # It's a regex if ($#$result) { @@ -549,17 +594,8 @@ sub prepare_action { unshift @args, pop @path; } unless ( $c->req->action ) { - my $prefix = $c->req->args->[0]; - if ( $prefix && $c->actions->{plain}->{"\!$prefix/default"} ) { - $c->req->match(''); - $c->req->action("\!$prefix/default"); - $c->log->debug('Using prefixed default action') if $c->debug; - } - elsif ( $c->actions->{plain}->{'!default'} ) { - $c->req->match(''); - $c->req->action('!default'); - $c->log->debug('Using default action') if $c->debug; - } + $c->req->action('!default'); + $c->req->match(''); } $c->log->debug( 'Arguments are "' . join( '/', @args ) . '"' ) if ( $c->debug && @args ); @@ -653,29 +689,6 @@ sub process { return $status; } -=item $c->remove_action($action) - -Remove an action. - - $c->remove_action('!foo'); - -=cut - -sub remove_action { - my ( $self, $action ) = @_; - if ( delete $self->actions->{regex}->{$action} ) { - while ( my ( $regex, $name ) = each %{ $self->actions->{compiled} } ) { - if ( $name eq $action ) { - delete $self->actions->{compiled}->{$regex}; - last; - } - } - } - else { - delete $self->actions->{plain}->{$action}; - } -} - =item $c->request =item $c->req @@ -773,10 +786,10 @@ sub _prefix { } sub _class2prefix { - my $class = shift; - $class =~ /^.*::[(M)(Model)(V)(View)(C)(Controller)]+::(.*)$/; - my $prefix = lc $1 || ''; - $prefix =~ s/\:\:/_/g; + my $class = shift || ''; + $class =~ /^.*::([MVC]|Model|View|Controller)?::(.*)$/; + my $prefix = lc $2 || ''; + $prefix =~ s/\:\:/\//g; return $prefix; }