Can you intercept a method call in Perl, do something with the arguments, and then execute it?
|
4
|
|||||||||
|
|
|
Yes, you can intercept Perl method calls. I have an entire chapter about that sort of thing in Mastering Perl. Check out the Hook::LexWrap module, which lets you do it without going through all of the details. |
||
|
|
|
|
You can, and Pavel describes a good way to do it, but you should probably elaborate as to why you are wanting to do this in the first place. If you're looking for advanced ways of intercepting calls to arbitrary subroutines, then fiddling with symbol tables will work for you, but if you want to be adding functionality to functions perhaps exported to the namespace you are currently working in, then you might need to know of ways to call functions that exist in other namespaces. Data::Dumper, for example, normally exports the function 'Dumper' to the calling namespace, but you can override or disable that and provide your own Dumper function which then calls the original by way of the fully qualified name. e.g.
Again, this is an alternate solution that may be more appropriate depending on the original problem. A lot of fun can be had when playing with the symbol table, but it may be overkill and could lead to hard to maintain code if you don't need it. |
||||||
|
|
|
Yes. You need three things: The arguments to a call are in Then, Finally So you've got:
which of course prints out:
We can replace foo using
And now we get:
If you wanted to modify
And now we get:
|
||
|
|
|
|
To describe briefly, Perl has the aptitude to modify symbol table. You call a subroutine (method) via symbol table of the package, to which the method belongs. If you modify the symbol table (and this is not considered very dirty), you can substitute most method calls with calling the other methods you specify. This demonstrates the approach:
This also shows that, once someone takes reference of the subroutine and calls it via the reference, you can no longer influence such calls. I am pretty sure there are frameworks to do aspectation in perl, but this, I hope, demonstrates the approach. |
||
|
|
|
|
This looks like a job for Moose! Moose is an object system for Perl that can do that and lots more. The docs will do a much better job at explaining than I can, but what you'll likely want is a Method Modifier, specifically |
||||||||||||
|
