I first created the following accessor that works:
sub mk_data_accessors
{
for my $_ (@_) {
eval qq{
sub $_ {
carp "Warning: '$_' takes at most 2 arguments..
+.\n"
if \@_ > 2;
my \$self = shift;
\$self->{data}->{qw($_)} = shift if \@_;
return \$self->{data}->{qw($_)};
}
}; die $@ if $@;
}
}
which I call using:
mk_data_accessors(qw(method1 method2 method3));
I then tried to 'generalize' by allowing the 'path' to the method to be a variable as follows:
sub mk_data_accessors2
{
my $path = shift;
for my $_ (@_) {
eval qq{
sub $_ {
carp "Warning: '$_' takes at most 2 arguments..
+.\n"
if \@_ > 2;
my \$self = shift;
\$self->$path{qw($_)} = shift if \@_;
return \$self->$path{qw($_)};
}
}; die $@ if $@;
}
}
which I called with:
mk_data_accessors2('{data}->', qw(method1 method2 method3));
This gave me errors about %path not being defined -- presumably because $path{qw{$_}} is being interpreted as a hash element.
I imagine the solution requires some additional level of 'eval' +/- quoting but I can't seem to figure this out.
Any suggestions?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.