| App::Framework::Extension - Application Extension |
App::Framework::Extension - Application Extension
use App::Framework::Extension ;
Provides the base object from which all Extensions must be derived. Is itself derived from the App::Framework::Core manpage and overrides whichever methods are necessary to modify the application behaviour.
The following fields should be defined either in the call to 'new()', as part of a 'set()' call, or called by their accessor method (which is the same name as the field):
new([%args])
Create a new Extension.
The %args are specified as they would be in the set method.
init_class([%args])
Initialises the object class variables.
Returns HEAP space for the calling module
=cut
sub heap { my $this = shift ; my ($level) = @_ ;
## Get calling package
$level ||= 0 ;
my $pkg = (caller($level))[0] ;
#print "##!!## heap($pkg)\n" ;
#$this->dump_callstack() ;
# Get total heap space
my $heap = $this->extension_heap() ;
# Return this package's area
$heap->{$pkg} ||= {} ;
#$this->prt_data("#!# this=$this pkg=$pkg Heap [$heap->{$pkg}] Total heap [$heap]=", $heap) ;
return $heap->{$pkg} ;
}
# TODO: Specify fn(s) as method name strings that get called on this
#----------------------------------------------------------------------------
Hi-jack the specified application function. %spec is a HASH of:
key = function name
value = CODE ref to subroutine
=cut
sub extend_fn { my $this = shift ; my (%spec) = @_ ;
#$this->debug(2);
#my $pkg = (caller(0))[0] ;
#$this->prt_data("#!# extend_fn() pkg=$pkg (this=$this)", \%spec) if $this->debug ;
my $heap = $this->heap(1) ;
#$this->prt_data("#!# heap [$heap]", $heap) if $this->debug ;
foreach my $fn (keys %spec)
{
# save original
$heap->{'extend_fn'}{$fn} = $this->$fn ;
#print "#!# + pkg=$pkg Extend $fn - saved ($heap->{'extend_fn'}{$fn}), new $fn=($spec{$fn})\n" if $this->debug ;
# update function
$this->$fn($spec{$fn}) ;
}
#$this->prt_data("#!# extend_fn() - END", "HEAP=", $heap) if $this->debug ;
}
#----------------------------------------------------------------------------
Calls the function with specified args. If not extended by the extension then just calls the default function.
NOTE: Application function is always called with:
fn($app, \%options, @args)
=cut
sub call_extend_fn { my $this = shift ; my ($fn, @args) = @_ ;
my $heap = $this->heap(1) ;
my $call = $heap->{'extend_fn'}{$fn} ;
#$this->debug(2);
#my $pkg = (caller(0))[0] ;
#$this->prt_data("#!# pkg=$pkg call_extend_fn($fn) call=$call HEAP [$heap]=", $heap) if $this->debug ;
# get default if not extended
$call ||= $this->$fn ;
#print "#!# + pkg=$pkg call=$call\n" if $this->debug ;
# do call if specified
if ($call)
{
# get options
my %options = $this->options() ;
#print "#!# + pkg=$pkg calling $fn call=$call\n" if $this->debug ;
# do call
&$call($this, \%options, @args) ;
}
}
# ============================================================================================ # END OF PACKAGE
Setting the debug flag to level 1 prints out (to STDOUT) some debug messages, setting it to level 2 prints out more verbose messages.
Steve Price <sdprice at cpan.org>
None that I know of!
| App::Framework::Extension - Application Extension |