vote up 1 vote down star
1

I'm monkey patching a package using a technique given at the beginning of "How can I monkey-patch an instance method in Perl?". The problem that I'm running into is that the original subroutine used a package-level my variable which the patched subroutine appears not to have access to, either by full path specification or implicit use.

Is there any way to get at the data scoped in this way for use in the patched subroutine?

Thanks in advance!

flag

It could if it were defined global instead of lexical. – Brad Gilbert Jan 23 at 23:17

3 Answers

vote up 6 vote down check

You can obtain lexicals with the PadWalker module. Evil, but it works.

link|flag
search.cpan.org/perldoc?PadWalker – Brad Gilbert Jan 23 at 23:14
Wow, that's interesting. Filthy, but interesting. – j_random_hacker Jan 24 at 0:03
vote up 0 vote down

Lexicals (ie: declared with 'my') are not visible outside the lexical scope (file or block) in which they are declared. That's the whole point of lexical variables.

If there is a subroutine/method which is in the same scope as the lexical var, then it can return the value of the lexical and that can allow indirect access to the var from outside its scope.

There is no such thing as a 'full path specification' for lexical variables. That's for package variables. If the var was declared with 'our' instead of 'my' you could do that.

link|flag
vote up 5 vote down

No. The thing you're mistaken in is that they are not package scoped. A lexical variable is by definition limited to its lexical scope, in other words, the block it is in.

link|flag
Ah, good point -- so if you can't modify the original source file, you're SOL unless some method returns it? – cdleary Jan 23 at 22:47
That's right. And if you're thinking, "Why have two different ways to subdivide a namespace -- by package and by lexical scope? What a godawful way to run a language!", you're also right. – j_random_hacker Jan 24 at 0:02
I disagree. Both work in different ways, and have different uses. Lexicals are the best solution for most problems but there are situations where dynamic scoping better. – Leon Timmermans Jan 24 at 1:54
@Leon: It seems (from this run-in) that lexicals go against the idea of "gentleman's privacy". I'd like to get at those values and have to hack the interpreter to do so. :-( – cdleary Jan 24 at 2:10
There is a reason all common programing languages have lexical scope (I think emacs lisp is the most common exception). Dynamic scope causes major headaches when not used properly (which is hard). Look up dynamic scope on Wikipedia for more information on the issue. – Leon Timmermans Jan 24 at 2:57
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.