Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Is modifying the symbol table to redefine subroutines evil?

by dragonchild (Archbishop)
on Apr 15, 2007 at 16:38 UTC ( [id://610212]=note: print w/replies, xml ) Need Help??


in reply to Is modifying the symbol table to redefine subroutines evil?

A completely different way to solve this is to use Aspect-Oriented Programming (AOP). Your problem is that you want to do something when foo is called, but before foo executes and only the first time foo executes.

Aspect would be the Perl way to do this, but I don't know how to remove advice with it, so I'll demonstrate using Dojo. This is a Javascript library.

function foo () { ... }; function call_only_once () { dojo.event.disconnect( 'before', foo, call_only_once ); // Do stuff here }; dojo.event.connect( 'before', foo, call_only_once ); foo();

My criteria for good software:
  1. Does it work?
  2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-25 08:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found