Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: mod_perl and forwarding legacy functions to a global object

by Juerd (Abbot)
on Jun 25, 2004 at 17:51 UTC ( [id://369689]=note: print w/replies, xml ) Need Help??


in reply to mod_perl and forwarding legacy functions to a global object

How can I create a $new_obj for every request in the Legacy package or otherwise solve my problem?

First, I have to say that global objects are imho no better than just a bunch of subs that share variables.

To answer your question: the easiest way is to subclass the handler you're using. For instance, to subclass Apache::Registry:

package Apache::Registry::ThinkOfANiceName; use base 'Apache::Registry'; sub handler { my $r = shift; local $Legacy::new_obj = New->new; $r->SUPER::handler(@_); } 1;

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://369689]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-18 23:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found