package Catalyst::Controller::BindLex; use base qw/Catalyst::Controller/; # these won't help... ;-) use strict; use warnings; no warnings 'uninitialized'; # i hate those # dear god use attributes (); use NEXT (); use PadWalker (); use Array::RefElem (); use Devel::Caller (); use Devel::LexAlias (); use Scalar::Util (); use Carp (); our $VERSION = '0.03'; sub bindlex_default_config { map { ucfirst() . 'ed' => $_, ucfirst() => $_} qw/stash session flash/; } sub _bind_lex { my ( $self, $c, $store, $ref, $varname ) = @_; my ( $sigil, $key ) = ( $varname =~ /^([\$\@\%])(.*)/ ); if ( $sigil eq '$' ) { next if ref $$ref and $$ref == $c; if ( exists $store->{$key} ) { # when binding '$x' and 'x' already exists in the hash, we # alias the variable to the value in the hash Devel::LexAlias::lexalias( $Carp::CarpLevel, $varname, \$store->{$key} ); } else { # when binding '$x' and 'x' doesn't exist in the hash yet, we # alias the hash entry to the variable Array::RefElem::hv_store( %$store, $key, $$ref ); } } elsif ( $sigil eq '@' or $sigil eq '%' ) { if ( exists $store->{$key} ) { # we are binding '@x' or '%x' and 'x' is already in the hash if ( my $reftype = ref( my $exists = $store->{$key} ) ) { if ( $sigil eq '@' && $reftype ne 'ARRAY' or $sigil eq '%' and $reftype ne 'HASH' ) { # @x needs to bind to an array ref, %x needs a HASH # otherwise we can't expand Carp::croak( "$varname can't bind to a reference of type $reftype"); } else { # since it already exists and the variable sigil matches # the reference in the hash, we alias the variable to the # value in the hash Devel::LexAlias::lexalias( $Carp::CarpLevel, $varname, $exists ); } } else { # we can't bind a non reference value to a variable that # requires dereferencing Carp::croak("Can't bind $varname to a non-reference value"); } } else { # since the key doesn't exist we alias the hash entry to the variable # for aggregate structures this consist of just setting a reference $store->{$key} = $ref; } } } sub _get_c_obj { # used to find $c from some catalyst action called long long ago # needed in the attribute handlers my $level = shift; # how many levels to go up the stack for ( my $i = 0; $i < 10; $i++ ) { my $c = ( eval { Devel::Caller::caller_args($level + $i) } )[1]; # ( $self, $c )[1] return $c if Scalar::Util::blessed($c) and $c->isa("Catalyst"); # FIXME Catalyst::Context ? } die "panic: Can't find \$c object"; } sub _find_in_pad { # find the name that corresponds to a reference my ( $level, $var_ref ) = @_; # first we need to sub to look in # for some reason peek_my($level) doesn't work here # perhaps it's with respect to the point at which the attribute handler # was invoked, when the variables don't exist yet. my $sub = Devel::Caller::caller_cv($level); my $pad = PadWalker::peek_sub($sub); my %ref_to_name = reverse %$pad; return $ref_to_name{$var_ref} || die "panic: Can't find $var_ref in the the caller's lexical pad"; } BEGIN { # generate generic handler wrappers for all ref types that try to play safe with other plugins for ( qw/ARRAY SCALAR HASH/ ) { eval 'sub MODIFY_' . $_ . '_ATTRIBUTES { my ( $pkg, $ref, @attrs ) = @_; my @remain = $pkg->NEXT::MODIFY_' . $_ . '_ATTRIBUTES( $ref, @attrs ); @remain = @attrs unless @remain; _handle_bindlex_attrs( $pkg, $ref, @remain ); }'; } } # the actual MODIFY_FOO_ATTRIBUTES body sub _handle_bindlex_attrs { my ( $pkg, $ref, @attrs ) = @_; # this is attributes::import + our handler + this + the next local $Carp::CarpLevel = 4; my $c = _get_c_obj($Carp::CarpLevel); my $varname = _find_in_pad( $Carp::CarpLevel, $ref ); # the attributes we didn't handle my @remain; # FIXME this should be gone by 5.7 when config was fixed for subclassing my %config = ( $pkg->bindlex_default_config, %{ $pkg->config->{bindlex} || {} }); foreach my $attr ( @attrs ) { if ( my $handler = $config{$attr} ) { if ( !ref $handler ) { unless ( $c->can( $handler ) ) { $Carp::CarpLevel--; Carp::croak "there's no $handler method in $c"; } $pkg->_bind_lex( $c, $c->$handler, $ref, $varname ); } elsif ( ref $handler eq "CODE" ) { $pkg->_bind_lex( $c, $handler->( $c, $ref, $varname ), $ref, $varname ); } else { die "unknown handler type $handler"; } } else { push @remain, $attr; } } @remain; } 1; __END__ =pod =head1 NAME Catalyst::Controller::BindLex - Stash your lexical goodness. =head1 SYNOPSIS package MyApp::Controller::Moose; use base qw/Catalyst::Controller::BindLex/; sub bar : Local { my ( $self, $c ) = @_; my $x : Stashed; my %y : Stashed; $x = 100; do_something( $c->stash->{x} ); # 100 $c->forward( "gorch" ); } sub gorch : Private { my ( $self, $c ) = @_; my $x : Stashed; do_something( $x ); # still 100 } sub counter : Local { my ( $self, $c ) = @_; my $count : Session; $c->res->body( "request number " . ++$count ); } =head1 DESCRIPTION This plugin lets you put your lexicals on the stash and elsewhere very easily. It uses some funky modules to get it's job done: L, L, L, L and L. In some people's opinion this hurts this plugin's reputation ;-). If you use the same name for two variables with the same storage binding attribute they will be aliased to each other, so you can use this for reading as well as writing values across controller subs. This is almost like sharing your lexical scope. =head1 WHY ISN'T THIS A PLUGIN? The way attributes are handled this can't be a plugin - the MODIFY_SCALAR_ATTRIBUTES methods and friends need to be in the class where the lexical is attributed, and this is typically a controller. =head1 CONFIGURATION You can add attributes to the configaration by mapping attributes to handlers. Handlers are either strings of methods to be called on C<$c> with no arguments, which are expected to return a hash reference (like C, C, etc), or code references invoked with C<$c>, a reference to the variable we're binding, and the name of the variable we're binding, also expected to return a hash reference. =head1 DEFAULT ATTRIBUTES Some default attributes are pre-configured: =over 4 =item Stash, Stashed =item Session, Sessioned =item Flash, Flashed Bind the variable to a key in C, C or C respetively. The latter two require the use of =back =head1 RECIPES =over 4 =item Param To get my $username : Param; add __PACKAGE__->config->{bindlex}{Param} => sub { $_[0]->req->params }; =back =head1 AUTHORS Matt S. Trout Yuval Kogman =head1 SEE ALSO L, L, L, L, L =head1 COPYRIGHT & LICENSE Copyright (c) 2005 the aforementioned authors. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut