Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Mutator chaining considered harmful

by diotalevi (Canon)
on Dec 29, 2004 at 08:15 UTC ( [id://417946]=note: print w/replies, xml ) Need Help??


in reply to Re: Mutator chaining considered harmful
in thread Mutator chaining considered harmful

What kind of kid would the 'foo' title have? Would a window even have multiple titles? That code reads like "Get the child of the title currently named 'foo' from $window where the border is already 20. From there get font style of that object's child." There isn't anything in that chain that is a mutator if you read it using perl5 or VB eyes.
  • Comment on Re^2: Mutator chaining considered harmful

Replies are listed 'Best First'.
Re^3: Mutator chaining considered harmful
by eric256 (Parson) on Dec 29, 2004 at 13:36 UTC

    I don't disagree that it can be misread. Anything can be misread. If you are used to mutators that return the object they mutate, then there is nothing confusing about it. If you are not used to that style then it is confusing. That is no different than other styles. With any style different from your own you will have to learn it. Saying that you don't read it correctly because you don't use that style doesn't mean the style is bad.

    There are however some reasons that style is bad. Mostly it makes it difficult to catch errors if those methods fail. A simple although not elegant solution to that would be to store an error code or message in the object when an error occurs. I'm not recommending that or this style. I just think a post saying this style is bad should include more critism than "I don't like it." and "it's hard for me to read" (not exact quotes, just the feeling i get.)

    If that is not how I should read your argument than I would appreciate a better explanation of why its bad. If not for myself then for others who read this node. Like I said, I don't think this is the best style all around but there are cases where it is usefull.


    ___________
    Eric Hodges

      Mostly it makes it difficult to catch errors if those methods fail.

      But not any more difficult that catching an error in *any* chaining call. The OP had no problem with:
      my $label_formatting = $button->child->font_style;
      but if there's an error in the child method, it'll be as hard to catch as in:
      $window->title('foo')->border(20);

      And if your methods just throw exceptions on errors, you can just wrap it all in an eval:

      eval {$window->title('foo')->border(20)}; if ($@) {...do something...}
      If that isn't good enough for you, because you need fine grained control on catching errors, you can always write:
      eval {$window->title('foo')}; if ($@) {....} else {eval {$window->border(20)} if ($@) {....}}
      The point is that mutators returning $self allow for either style. Chaining for those who want it, and fine control for those who want that.

      Returning the argument passed in is IMO not very useful. The OP mentioned "that's how = does it - it allows you to write $foo = $bar = $baz;. That's true, but the OO equivalent would be:

      $obj->foo($obj->bar($baz))
      which, IMO, gets unwieldy very quickly and isn't very readable either. I also have seldomly any use for that.

      Your entire post is predicated on a simple straw man argument. You claim that Aristotle is against method chaining because he isn't "used to" it. Frankly, I think that's condescending and silly, but it's also wrong. The argument isn't that it's hard to "get used to," but that even if you are intimately familiar with it, it's hard to understand code that uses it. Take this code example:

      $foo->bar(2)->baz(3)->qux;

      Versus this one:

      my $bar = $foo->bar(2); $bar->baz(3); $bar->qux;

      The first requires a lot more effort to decipher than the 2nd. If you're not familiar with the methods and their return values in the 1st snippet, you'd have to look them up in the documentation. Even if you knew the method return values off the top of your head, you'd have to trace the chain carefully to make sure you understand what's going on.

      In the 2nd, if you didn't know the return values, you could take a reasonable guess, and probably be right. And if you did know the return values, then it's obvious what's going on without any thought required at all. This is called self documenting code, and it's generally something we strive for.

        You missed one giant and important point. If you are familar with the style then its not more difficult to decipher.

        $foo->bar(2) ->baz(3) ->qux;

        Is no more difficult to read than:

        my $bar = $foo->bar(2); $bar->baz(3); $bar->qux;

        My point all along has been that it is only hard to read if you aren't used to the style. Map, grep and sort used to be nearly impossible for me to read because that wasn't a style I had encountered before. Now I understand and recognize those patterns. If I know that the mutators return the object in order to allow chaining then that code is easy to follow. If I don't know that then a quick check to the POD makes it clear in an instant.

        The first requires a lot more effort to decipher than the 2nd.

        That is only true for those who arn't used to it, or don't use it. It is not true for everyone, it is not an absolute that one is harder or easier to read. Like I said originaly, method chaining (mutators or otherwise) has always made perfect sense to me, maybe it's the way I think or experiences I've had. Either way, arguments that it's bad because it's hard to decipher, read, trace, etc, are all false because it is just a matter of the readers perception/experience.

        Frankly, I' amused you think that's condescending because I think it's condescending to assume that because some people can't read it that it should be considered harmfull by everyone.


        ___________
        Eric Hodges

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://417946]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 03:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found