Review: Refactoring to Patterns

Refactoring code and design patterns are becoming more common in programming, so why not have a solid understanding of how to refactor existing code into patterns?

Written by Jonathan "JD" Danylko • Last Updated: • Reviews •
Refactoring to Patterns

When I started coding in a corporate environment, I never knew the term "to refactor code" until 2004. I was more concerned about the AJAX movement at the time.

Now, as I've mentioned before with the Top 10 Books every .NET Developer Should Own, design patterns and refactoring books are becoming awesome guides that developers can take and learn from seasoned developers and architects who have experienced every manner of code known to man and write about their thought process on converting that code into something better.

Refactoring to Patterns is one of those books.

Introduction

Refactoring to Patterns (affiliate link) (2004) from Joshua Kerievsky takes the process of refactoring a piece of code and turning them into a proven and tested design pattern.

If you've read the Design Patterns: Elements of Reusable Object-Oriented Software (affiliate link) from the original gang of four (or Design Patterns in C# (affiliate link) for you .NET developers) and also read the Refactoring: Improving the Design of Existing Code (affiliate link) book, Refactoring to Patterns expands on this knowledge.

If these were classes, the Design Patterns book would be 101, the Refactoring book would be 102, and Refactoring to Patterns would be considered a 201 class building off of your design patterns and refactoring knowledge.

But enough about that. Let's get into the review.

The book is broken into 11 chapters:

  1. Why I Wrote This Book
  2. Refactoring
  3. Patterns
  4. Code Smells
  5. A Catalog of Refactorings to Patterns
  6. Creation 
  7. Simplification
  8. Generalization
  9. Protection
  10. Accumulation
  11. Utilities

The last seven serve as reference material once you are done with the book. They have a total of 27 code refactorings and they are based on real-world code.

If you've read the Refactoring book, then you already have a good understanding of what Chapter 2 is like. It discusses why we are motivated to refactor code and some of the refactoring tools available.

As you probably have guessed, Chapter 3 gives an overview of 'what is a design pattern" and some great and not-so-great ways to implement design patterns. If you've read either Design Pattern books above, you could skip this chapter as well (unless you want a refresher on patterns).

Chapter 4 happens to be my favorite because it teaches you how to identify a piece of code that needs refactored. These pieces of code are called Code Smells. Code smells are in everyone's code, they are just masked in different ways. This chapter goes through the different types of code smells:

  1. Duplicated Code
  2. Long Method
  3. Conditional Complexity
  4. Primitive Obsession
  5. Indecent Exposure
  6. Solution Sprawl
  7. Alternative Classes with Different Interfaces
  8. Lazy Class
  9. Large Class
  10. Switch Statements
  11. Combinatorial Explosion
  12. Oddball Solution

Chapter 5 talks about how the rest of the book is formatted for each refactoring.

Catalog Reference

Now we get to the meat of the book.

While I won't go into every single refactoring, I will list all of them in each chapter.

The catalog from here on gives an introduction on how to approach each refactoring. For example, in Chapter 6, they discuss a possible scenario when determining whether to use the Creation refactorings or not.

"If there are too many constructors on a class, clients will have a difficult time knowing which constructor to call. One solution is to the reduce the number of constructors by applying such refactorings as Extract Class or Extract Subclass. If that isn't possible or useful, you can clarify the intention of the constructors by applying Replace Constructor with Creation Methods."

This type of introduction gets into the head of the developer and walks them through possible alternatives to rewriting their code.

Another reason I love the Signature Series.

Chapter 6 talks about the Creation of classes and their relevant refactorings.

  1. Replace Constructors with Creation Methods
  2. Move Creation Knowledge to Factory
  3. Encapsulate Classes with Factory
  4. Introduce Polymorphic Creation with Factory Method
  5. Encapsulate Composite with Builder
  6. Inline Singleton

The Simplification chapter (Chapter 7) takes complex methods and evaluates whether they can be simplified or not using the following refactorings.

  1. Compose Method
  2. Replace Conditional Logic with Strategy
  3. Move Embellishment to Decorator
  4. Replace State-Altering Conditionals with State Pattern
  5. Replace Implicit Tree with Composite
  6. Replace Conditional Dispatcher with Command

When you have a specific piece of code that you want to make into a more general-purpose class, Chapter 8, which covers the Generalization refactorings, provides excellent reference material.

  1. Form Template Method
  2. Extract Composite
  3. Replace One/Many Distinctions with Composite
  4. Replace Hard-Coded Notifications with Observer
  5. Unify Interfaces with Adapter
  6. Extract Adapter
  7. Replace Implicit Language with Interpreter

Even though this is a small chapter, Chapter 9 covers the Protection aspect of your code. The idea is that the refactoring is to improve the protection of existing code and will not alter the behavior of existing code.

  1. Replace Type Code with Class
  2. Limit Instantiation with Singleton
  3. Introduce Null Object

Chapter 10 covers the Accumulation of code. It's meant to target the improvement of code that accumulates information within an object or across several objects.

  1. Move Accumulation to Collecting Parameter
  2. Move Accumulation to Visitor

Finally, Chapter 11 is what I consider a catch-all chapter of Utility refactorings. They are considered low-level transformations used by the higher-level refactorings in the catalog.

  1. Chain Constructors
  2. Unify Interfaces
  3. Extract Parameter

Conclusion

Overall, the book has solid coding techniques and exceptional examples by the author. Even though the examples are in Java, a .NET developer can immediately and easily see the benefit of each refactoring in the book.

The fascination I have with the Addison-Wesley/Pearson signature books are three-fold.

  1. They are called the Signature series for a reason...it's Martin Fowler's signature on the book.
  2. Once you are done reading the book, it serves as a great reference when you have a question about how a particular refactoring should be approached.
  3. They use real-world code examples and real-world code smells (I have seen all of them!)

Again, I would definitely recommend this book for intermediate to advanced developers who are constantly refactoring legacy code and building structured code and design patterns as a result of their refactorings.

References:

Did you like this content? Show your support by buying me a coffee.

Buy me a coffee  Buy me a coffee
Picture of Jonathan "JD" Danylko

Jonathan Danylko is a web architect and entrepreneur who's been programming for over 25 years. He's developed websites for small, medium, and Fortune 500 companies since 1996.

He currently works at Insight Enterprises as an Principal Software Engineer Architect.

When asked what he likes to do in his spare time, he replies, "I like to write and I like to code. I also like to write about code."

comments powered by Disqus