DEV Community

Cover image for Writing Clean Code (Part 2)
Jason McCreary
Jason McCreary

Posted on • Originally published at jason.pureconcepts.net

Writing Clean Code (Part 2)

In Part 1 of Writing Clean Code I outlined three simple practices of formatting, naming, and avoiding nested code. All in an effort to improve code readability.

In Part 2, I want to go a little deeper and cover grouping. When I say grouping, I'm really talking about the Object Oriented Programming paradigm of encapsulation. Whether we group the code into a function or a class is often not important. What is important is did we improve the readability of the code.

To measure our change, we should ask:

Did we improve readability?

Admittedly a bit subjective, but you push yourself to stay objective. I've been pair programming for the last two years. Developers tend to agree on fundamental readability. Where we differ at the edges. These nuances can lead to some pretty great discussion.

What to group is often easy to identify. We can all point out the code we don't like. We said how to group the code is not important. The question that remains is when to group code. When do I clean up the code by grouping?

Let's look at three motivations for grouping code.

Improving communication

Any bit of code which requires additional context is ripe for grouping. I prefer when my code is not written in a way that requires me to know the business logic. No matter how simple the implementation, I'll never understand. By grouping this code, we provide an additional layer of abstraction. A way to shield ourselves and future developers from the inherit complexity of the system.

Consider our previous code sample:

function canView($scope, $owner_id)
{
    if ($scope === 'public') {
        return true;
    }

    if (Auth::user()->hasRole('admin')) {
        return true;
    }

    if ($scope === 'private' && Auth::user()->id === $owner_id) {
        return true;
    }

    return false;
}
Enter fullscreen mode Exit fullscreen mode

While the logic is straightforward, we improve communication by extracting it into contextually named helper methods.

function canView($scope, $owner_id)
{
    if ($scope === 'public') {
        return true;
    }

    if (isAdmin()) {
        return true;
    }

    if ($scope === 'private' && isOwner($owner_id)) {
        return true;
    }

    return false;
}
Enter fullscreen mode Exit fullscreen mode

Methods like isAdmin() and isOwner relay business logic making it easy to understand. Once understood I can apply it easily to other areas of the codebase. In the end, we didn't just improve communication, we also taught the developer about the code.

It's important to point out that I didn't group all of the code. There is a mental cost for every grouping. Each needs to provide enough value to cover its cost. In this case, I didn't group logic into a hasScope() function as it not only didn't improve communication, but the method signature is just as verbose as the expression.

Couple data

Another principle in programming is low coupling. Coupling is not bad. In fact, it's good when data or code truly belongs together. We can identify areas for coupling by spotting logical connections or by a similar rate of change.

Consider the following code sample:

function plot($x, $y, $z)
{
    // ...
}

function transfer($amount, $currency)
{
    // ...
}

function substring($string, $start, $length)
{
    // ...
}
Enter fullscreen mode Exit fullscreen mode

Only the function signatures here as I want to focus on the parameters. You may not see the grouping opportunity right away. No worries, it's because we all suffer from primitive obsession. Nothing wrong with using primitives. But our propensity to only use them may prevent us from grouping this data into an object.

function plot(Point $point)
{
    // ...
}

function transfer(Money $money)
{
    // ...
}

function substring($string, Range $range)
{
    // ...
}
Enter fullscreen mode Exit fullscreen mode

By encapsulating the data within an object, we not only improve the coupling but also provide a place for additional logic. We can move any inline logic related to this data to the object. Take a minute to read Martin Fowler's Range object for a more in-depth example.

Organizing code

Last but not least is simply organization. Don't be afraid to split similar code into its own function or class. So long as it carries its own weight, it will likely improve the codebase.

Spotting these is more high level than spotting data coupling. Here we take more of a visual approach. If something doesn't seem to match the local aesthetics, it may belong elsewhere.

Consider the following code sample:

namespace App\Models;

class User
{
    public function find($id) {}

    public function create() {}

    public function save() {}

    public function destroy() {}

    public function displayName() {}

    public function displaySignature() {}

    public function displaySalutation() {}

    public function createBadge() {}

    public function printBadge() {}
}
Enter fullscreen mode Exit fullscreen mode

Here we have a model. Typically a model primarily contains the CRUD methods (create, read, update, delete). While it's perfectly acceptable for the model to contain additional methods, we may notice relationships between these other methods in the model.

By name alone we can spot methods related to display and other badge methods. We may be able to organize this code elsewhere. In this case, the display methods can be extracted to a Presenter class. The badge methods to a Printer class or into its own Badge object.

Give these motivations a try. Maybe some work for your codebase, maybe some don't. The answer to did we improve code readability may vary from developer to developer and project to project. But always ask the question…

Want to see more clean code? Follow me on Twitter for weekly clean up tips or let's pair up and write some clean code together.

Top comments (7)

Collapse
 
tiso profile image
tiso

in second example you should have:

isOwner($owner_id)
Collapse
 
gonedark profile image
Jason McCreary

Thank you. I have made this update.

Collapse
 
chrisvasqm profile image
Christian Vasquez

<3'ing this series! Keep it up :D

Collapse
 
imthedeveloper profile image
ImTheDeveloper

Heroic series of posts. I love reading about other developers thinking around structure. It's a great insight and I look forward to part 3 hint hint

Collapse
 
asynccrazy profile image
Sumant H Natkar

Simple suggestions which can really improve code readability & maintainability in longer run.

Collapse
 
gonedark profile image
Jason McCreary

Thanks. Exactly what I hoped for.

Collapse
 
kmavrodis profile image
Konstantinos Mavrodis

Excellent ideas, very clearly presented! We will be waiting for Part 3.