X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine.pm;h=98766fb077643ae9c25f78d0c966d7e330bf9b75;hb=2deb0d7caa969d29055d4bae4151a4d1699ca352;hp=260c9e300d286c68f544fdcc4789508dffd24c50;hpb=23f9d93414eadb11350029f13b51841d8309363b;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index 260c9e3..98766fb 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,58 +68,12 @@ 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; - } - } - 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 ]; - } - } + $self->set_action( $name, $code, caller(0) ); } - return 0; - } - else { - return ( - keys %{ $self->actions->{plain} }, - keys %{ $self->actions->{regex} } - ); } + return 1; } - =item $c->benchmark($coderef) Takes a coderef with arguments and returns elapsed time as float. @@ -337,46 +286,41 @@ If you define a class without method it will default to process(). sub forward { my $c = shift; my $command = shift; + $c->state(0); unless ($command) { $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; + my $results = $c->get_action( $command, $namespace ); + if ( @{$results} ) { + unless ( $command =~ /^\!/ ) { + $results = [ pop @{$results} ]; + if ( $results->[0]->[2] ) { + $c->log->debug(qq/Couldn't forward "$command" to regex action/) + if $c->debug; + return 0; + } } - ( $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"; + $results = [ [ [ $class, $code ] ] ]; } else { $c->log->debug(qq/Couldn't forward to "$class->$method"/) @@ -384,54 +328,103 @@ sub forward { return 0; } } - $class = $c->components->{$class} || $class; - return $c->process( $class, $code ); + for my $result ( @{$results} ) { + my ( $class, $code ) = @{ $result->[0] }; + $class = $c->comp->{$class} || $class; + $c->state( $c->process( $class, $code ) ); + } + 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; + my $local; + for my $part ( split '/', $namespace ) { + $local = undef; + $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; + return [ [$match] ] if ( $match && $match =~ /^?.*/ ); + $local = $c->actions->{private}->{$uid}->{"?$action"} if $uid; + push @results, [$match] if $match; + $parent = $child if $child; + } + return [ [$local] ] if $local; + 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) +=item $c->handler( $class, $r ) Handles the request. =cut -sub handler { +sub handler ($$) { my ( $class, $r ) = @_; # Always expect worst case! 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); @@ -477,7 +470,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; @@ -491,9 +485,13 @@ sub prepare { $c->prepare_path; $c->prepare_cookies; $c->prepare_headers; - my $method = $c->req->method; - my $path = $c->req->path; - $c->log->debug(qq/"$method" request for "$path"/) if $c->debug; + $c->prepare_connection; + my $method = $c->req->method || ''; + my $path = $c->req->path || ''; + my $hostname = $c->req->hostname || ''; + my $address = $c->req->address || ''; + $c->log->debug(qq/"$method" request for "$path" from $hostname($address)/) + if $c->debug; $c->prepare_action; $c->prepare_parameters; @@ -522,7 +520,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) { @@ -546,23 +544,22 @@ 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 ); } -=item $c->prepare_cookies; +=item $c->prepare_connection + +Prepare connection. + +=cut + +sub prepare_connection { } + +=item $c->prepare_cookies Prepare cookies. @@ -642,28 +639,13 @@ sub process { return $status; } -=item $c->remove_action($action) - -Remove an action. +=item $c->run - $c->remove_action('!foo'); +Starts the engine. =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}; - } -} +sub run { } =item $c->request @@ -681,6 +663,53 @@ 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 ]; + } + elsif ( $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. @@ -757,15 +786,16 @@ sub stash { sub _prefix { my ( $class, $name ) = @_; my $prefix = _class2prefix($class); + warn "$class - $name - $prefix"; $name = "$prefix/$name" if $prefix; return $name; } 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; }