Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I could call frobnerize($self, ...) instead, but I'd like to use the object syntax for various reasons.

Paraphrasing the next paragraph: And you'd like to make object syntax not work for "everyone else".

It isn't particularly hard to come up with ways to make object syntax for a specific method to only work for some callers (I hope that restating your goals to make how they conflict with each other much clearer also makes the potential solutions much easier to see). And all of those ways suck.

Most of them don't even fix the real problem with breaking encapsulation. That is, you don't want your mix-in to break if it is used by a class that has its own frobnerize() method. So the real conflict in your goals boils down to:

For various reasons, you want $self->frobnerize(...) when written in your code to call your frobnerize(). But, for sound design reasons, you want other instances of $self->frobnerize(...) to call some other method or fail if no such other method exists.

Meanwhile, frobnerize($self,...) solves all of the important problems except the ones that you couldn't bring yourself to admit in public. (:

Just FYI, I'd like to get a pony for various reasons. And I don't want anybody else to be able to get a pony. ;)

BTW, if $self->Mixin::frobnerize(...) is too unwieldy for you (especially since the name of your mix-in is surely much longer than "Mixin"), you could use a code ref and $self->$frobnerize(...) with a simple my $frobnerize= \&frobnerize;. I also suspect that this may violate some of your "various reasons".

Note that I rejected my $frobnerize= sub { ... }; as then stack traces would report calls to such as being to __ANON__ instead of being to Mixin::frobnerize, and I consider that difference important since troubleshooting is too time-consuming compared to coding already.

- tye        


In reply to Re: How to write a Mixin without Exporter mess? (conflict) by tye
in thread How to write a Mixin without Exporter mess? by saintmike

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-16 20:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found