http://www.perlmonks.org?node_id=221435


in reply to Re: Re: Re: Re: Class::InsideOut - yet another riff on inside out objects.
in thread Class::InsideOut - yet another riff on inside out objects.

Not generating an accessor: how do you do it now?

I don't generate them by default. You have to ask explicitly for accessors by using Class::InsideOut::Accessor.

I suppose that if you write your own accessor method it will overwrite the generated one, but then you have to make sure it happens in that order, and you have to take pains to zap the ones you don't want.

You would also get nasty errors under strict/warnings due to redefining the sub.

With the current source filter mechanism the "right" way of doing it would be to turn the filter off when you don't want to have any accessors, e.g.:

package Foo; use base qw(Class::InsideOut); use Class::InsideOut::Accessor; # build accessors for Fields use %foo : Field; # foo method built automatically no Class::InsideOut::Accessor; # stop building accessors use %bar : Field; # no accessor sub built sub bar { whatever... };
I think the 5.x attribute mechanism should be extended to get the source name and ref, not just (sometimes) a glob.

This may be possible. I'm not certain whether the difference in visibility of lexicals between 5.6.1 and 5.8 is a bug or not... need to spend some time looking at the code ;-)

<update>See Lexical pad / attribute confusion for more detail on what I find confusing.</update>

As is now, attributes are pretty pointless on lexicals because it doesn't provide a way to associate the attribute with the thing it's attached to!

I think that's an over statement. The vast majority of the time you are interested in applying an attribute to a bit of perl data, and don't give a fig for the variables name. This is the only time I've used attributes where this has been an issue.

Replies are listed 'Best First'.
Re: Re^5: Class::InsideOut - yet another riff on inside out objects.
by John M. Dlugosz (Monsignor) on Dec 20, 2002 at 21:26 UTC
    This may be possible. I'm not certain whether the difference in visibility of lexicals between 5.6.1 and 5.8 is a bug or not... need to spend some time looking at the code ;-)

    I just read in the perldelta,

    Attributes for my variables now handled at run-time. The my EXPR : ATTRS syntax now applies variable attributes at run-time. (Subroutine and our variables still get attributes applied at compile-time.) See attributes for additional details. In particular, however, this allows variable attributes to be useful for tie interfaces, which was a deficiency of earlier releases. Note that the new semantics doesn't work with the Attribute::Handlers module (as of version 0.76).
        Well, escuse me for taking a few minutes to track down this thread again after seeing something that might have interested him.
Re: Re^5: Class::InsideOut - yet another riff on inside out objects.
by John M. Dlugosz (Monsignor) on Dec 20, 2002 at 17:36 UTC
    I mean per-accessor: you want some (most) but not all. Or you want those for public things but not private things.
      That's something an attribute could very elegantly handle:
      my %Mode : Field(rw); # generate accessor + mutator my %Status : Field(ro); # generate only accessor my %Connection : Field; # generate nothing
      I'm also thinking it would be nice if one could also write my %Mode : Field(rw custom); which would not create an accessor, but would test for the existence of one and complain if it didn't find one. That way the code becomes self documenting. Maybe a do-nothing private attribute would be nice to that end as well.

      Makeshifts last the longest.

        my %Mode : Field(rw); # generate accessor + mutator my %Status : Field(ro); # generate only accessor my %Connection : Field; # generate nothing

        Like this a lot.

        my %Mode : Field(rw custom);

        I'd probably avoid this since it's not something that you can guarantee. You could have an accessor/mutator - but with a different name. You could also have a method that wasn't an accessor/mutator with the same name. In either case the "custom" documentation would end up being inaccurate.