From: Sebastian Riedel Date: Fri, 25 Mar 2005 12:15:44 +0000 (+0000) Subject: fixed forwarding to class method pairs and did some cleaning X-Git-Tag: 5.7099_04~1689 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=66d9e175a28989d4454714edf2cc2dab5ad64d96;hp=45374ac6977e9464410a8c7518fb26ab812258cb fixed forwarding to class method pairs and did some cleaning --- diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index 7b07f5d..efdc18d 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -74,105 +74,6 @@ sub action { 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 []; -} - -=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) Takes a coderef with arguments and returns elapsed time as float. @@ -398,7 +299,8 @@ sub forward { if ( $command =~ /^\!/ ) { $namespace = _class2prefix($caller); } - if ( my $results = $c->get_action( $command, $namespace ) ) { + my $results = $c->get_action( $command, $namespace ); + if ( @{$results} ) { if ( $command =~ /^\!/ ) { for my $result ( @{$results} ) { my ( $class, $code ) = @{ $result->[0] }; @@ -426,6 +328,7 @@ sub forward { my $method = shift || 'process'; if ( my $code = $class->can($method) ) { $c->actions->{reverse}->{"$code"} = "$class->$method"; + $class = $c->comp($class) || $class; $c->state( $c->process( $class, $code ) ); } else { @@ -437,6 +340,52 @@ sub forward { return $c->state; } +=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 []; +} + =item $c->handler($r) Handles the request. @@ -713,6 +662,59 @@ Returns a C object. my $res = $c->res; +=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 $class->setup Setup. diff --git a/lib/Catalyst/Engine/HTTP.pm b/lib/Catalyst/Engine/HTTP.pm index 6eb2970..861ec5a 100644 --- a/lib/Catalyst/Engine/HTTP.pm +++ b/lib/Catalyst/Engine/HTTP.pm @@ -20,7 +20,6 @@ Class::Struct::struct 'Catalyst::Engine::HTTP::LWP' => { address => '$' }; - =head1 NAME Catalyst::Engine::HTTP - Catalyst HTTP Engine diff --git a/lib/Catalyst/Engine/HTTP/Daemon.pm b/lib/Catalyst/Engine/HTTP/Daemon.pm index b8e0a09..3ccdfba 100644 --- a/lib/Catalyst/Engine/HTTP/Daemon.pm +++ b/lib/Catalyst/Engine/HTTP/Daemon.pm @@ -50,8 +50,8 @@ sub run { ReuseAddr => 1 ); - unless ( $daemon ) { - die( "Failed to create daemon: $!\n" ); + unless ($daemon) { + die("Failed to create daemon: $!\n"); } printf( "You can connect to your server at %s\n", $daemon->url ); @@ -105,4 +105,3 @@ sub product_tokens { } 1; - diff --git a/lib/Catalyst/Test.pm b/lib/Catalyst/Test.pm index b0776e4..3de24ad 100644 --- a/lib/Catalyst/Test.pm +++ b/lib/Catalyst/Test.pm @@ -41,7 +41,6 @@ Catalyst::Test - Test Catalyst applications ok( get('/foo') =~ /bar/ ); - =head1 DESCRIPTION Test Catalyst applications. @@ -63,7 +62,7 @@ Returns a C object. =cut sub import { - my $self = shift; + my $self = shift; my $class = shift; my ( $get, $request ); @@ -98,7 +97,8 @@ sub remote_request { unless ( ref $request ) { - my $uri = ( $request =~ m/http/i ) + my $uri = + ( $request =~ m/http/i ) ? URI->new($request) : URI->new( 'http://localhost' . $request );