Seeing that Uncle Bob is making a new version of Clean Code I decided to try and find this article about the original.

  • Dave.@aussie.zone
    link
    fedilink
    arrow-up
    17
    arrow-down
    1
    ·
    edit-2
    1 month ago

    in which case I will go one level down, to the calculateExtraCommissions() method.

    In which case you will discover that the calculateExtraCommissions() function also has the same nested functions and you eventually find six subfunctions that each calculate some fraction of the extra commission, all of which could have been condensed into three lines of code in the parent function.

    Following the author’s idea of clean code to the letter results in a thick and incomprehensible function soup.

    • dandi8@fedia.io
      link
      fedilink
      arrow-up
      4
      arrow-down
      3
      ·
      1 month ago

      It’s only as incomprehensible as you make it.

      If there are 6 subfunctions, that means there’s 6 levels of abstraction (assuming the method extraction was not done blindly), which further suggests that maybe they should actually be part of a different class (or classes). Why would you be interested in 6 levels of abstraction at once?

      But we’re arguing hypotheticals here. Of course you can make the method implementations a complete mess, the book cannot guarantee that the person applying the principles used their brain, as well.

      • FizzyOrange@programming.dev
        link
        fedilink
        arrow-up
        5
        arrow-down
        1
        ·
        1 month ago

        Why would you be interested in 6 levels of abstraction at once?

        Because there aren’t 6 interesting levels of abstraction. It’s like talking to a child:

        What are you doing?

        Finances

        What does that involve?

        Processing money.

        What kind of processing?

        Summarising

        What kind of summaries?

        Summaries of everything

        What specifically though?

        Summaries

        Ok so you’re just displaying total balance then…

      • BatmanAoD@programming.dev
        link
        fedilink
        arrow-up
        6
        arrow-down
        2
        ·
        1 month ago

        Because abstractions leak. Heck, abstractions are practically lies most of the time.

        What’s the most time-consuming thing in programming? Writing new features? No, that’s easy. It’s figuring out where a bug is in existing code.

        How do abstractions help with that? Can you tell, from the symptoms, which “level of abstraction” contains the bug? Or do you need to read through all six (or however many) “levels”, across multiple modules and functions, to find the error? Far more commonly, it’s the latter.

        And, arguably worse, program misbehavior is often due to unexpected interactions between components that appear to work in isolation. This means that there isn’t a single “level of abstraction” at which the bug manifests, and also that no amount of unit testing would have prevented the bug.

        • dandi8@fedia.io
          link
          fedilink
          arrow-up
          3
          arrow-down
          2
          ·
          1 month ago

          How do abstractions help with that? Can you tell, from the symptoms, which “level of abstraction” contains the bug? Or do you need to read through all six (or however many) “levels”, across multiple modules and functions, to find the error?

          I usually start from the lowest abstraction, where the stack trace points me and don’t need to look at the rest, because my code is written well.

            • dandi8@fedia.io
              link
              fedilink
              arrow-up
              2
              ·
              1 month ago

              I do, and whether I have a good time depends on whether they have written their code well, of which the book’s suggestions are only one metric.

              • BatmanAoD@programming.dev
                link
                fedilink
                arrow-up
                1
                ·
                1 month ago

                I hear you, but here’s my experience:

                I’ve had one coworker whose personal coding style actually somewhat resembled that in the Clean Code examples. He wrote functions as small as possible, used many layers of abstraction, and named everything very verbosely and explicitly.

                Now, to be fair, I don’t think he did that because of Clean Code, and he also didn’t follow most of the good practices that Martin recommends. Most egregiously, he almost never tested things, even manually (!!). He once worked an entire weekend to finish something that I needed for my part of the project, and when he was done, it didn’t work, because he hadn’t actually run it at any point (!!!).

                But even when his software did work, it was horrendous to navigate and modify, specifically because of that style of writing code. I know, because when he retired, I was the only person on the team who could deal with it, so his part of the project fell entirely on me.

                Now, I’ve also had to work with code that had the opposite problem: short names, no abstraction. And a sort of “worst of both” codebase where the functions were exceedingly long and full of near-duplicate functionality, but overall there was a fair amount of modularity and abstraction.

                But in my opinion, it was much harder to deal with the code that hid all of its weirdness behind layers and layers of abstractions, despite those abstractions being carefully documented and explicitly named.

      • FlorianSimon@sh.itjust.works
        link
        fedilink
        arrow-up
        11
        arrow-down
        1
        ·
        1 month ago

        Six levels of abstractions, sure, if you have that many, you may want 6 functions. But that contradicts Martin when he’s saying that there should be one line in an if, and everything more should be promoted to its own function. There’s no way a programmer routinely writes code so terse that you get six levels of abstraction in a dozen of lines of code. Otherwise, Martin doesn’t understand what an abstraction is.

        Managing a stack in your head like a computer is very challenging as far as cognitive load is concerned. You don’t want to jump all over the place. Otherwise, when you reach your destination, you end up forgetting what got you here in the first place.

        This form of code fragmentation makes debugging an absolute nightmare, and finding sources of mutation absurdly frustrating. Good tooling can help you track where a variable is used and in which order mutations happen trivially in code in a single function. It’s not as as helpful when it’s spread all over the place. You can infer so much less statically if you follow Martin’s advice.

        I’m not advocating for 1000-lines functions here, mind you. When functions become too big, other challenges arise. What’s necessary is balance, which Martin’s book fails to teach.