Strategy Design Pattern In Kotlin | by Abhishek Saxena | Aug, 2022

Strategy Design Pattern In Kotlin | by Abhishek Saxena | Aug, 2022
Photo by Kenny Eliason on Unsplash

Before understanding the Strategy Design pattern one should appreciate what design patterns are and why we need them in the first place.

Design patterns are the solutions to the common problems in software design.

Aren’t they great as they are the solutions to common problems? Does this mean they are the silver bullet and can be anywhere directly?

The answer is No, they can’t. In the real world, you will have to learn and take inspiration from these solutions to solve your problem but they do help you with shaping your solution.

The intent and the approach of a design pattern help you to solve the problem at hand as you may or may not have to modify the design pattern to reach the solution.

Now coming to Strategy Design Pattern, what is it and why do we need it?

Strategy Design Pattern is a pattern with which we encapsulate a family of algorithms and makes them interchangeable.

The strategy pattern is based on a very important design principle that is, identify the aspects that vary and separate them from what remains the same.

So, what does this mean?

Let’s take 3 different problem statements and solve them using the strategy pattern.

  • Sorting Algorithm (Domain Layer)
  • Multiple Data Source (Data Layer — Fake/Local/Remote)
  • OnClick Listener Strategy (UI Layer — Single/Multiple)

In this problem statement, we have two or more sorting algorithms and we can decide which one to use based on the user’s input.

For simplicity, let’s say we have two algorithms, bubble sort and merge sort.

The above code is a simple implementation of how we can use a different sorting algorithm based on the user’s input.

If you notice carefully, when we want to add/remove sorting algorithms, we’d have to update the else-if ladder to accommodate the changes.

So, I can say that the else-if ladder block is the piece of code that varies.

As per the principle, we have to encapsulate what varies.

Now, when we have to add/remove any algorithm, we’ll add another statement to the when block and add the method containing the sorting algorithm.

The last refactoring made our code look better but didn’t solve the initial issue, we still have to update the when block to run the selected algorithm.

Upon evaluating the methods of the algorithms, you notice that they are pretty much the same as they both take an array of numbers as an input, have a body with the implementation of the algorithm, and have no return type.

This means that we can extract the methods into an interface, say SortStrategy, and each implementation of the interface will have the respective sorting algorithm.

We can use this interface and pass it as an argument to the sort method in the driver.

Using the interface we have completely removed the conditional statements to select the sorting algorithm that will be used to sort the numbers.

Suppose we want to add/remove a sorting algorithm, say Insertion Sort, we can implement the SortStrategy interface with the Insertion Sort algorithm and pass it to the sort method.

Now, we are passing the sorting algorithm along with the numbers to sort them.

We have encapsulated the family of algorithms, here sorting algorithms, and made them interchangeable.

Bonus🎉: We have used all the SOLID principles in the above example.

In this problem statement, we have a repository that is responsible for saving the user data and we want to test the repository.

A simple UserRepositorywith the save method would look like this.

Since the API call to save the user is right inside the repository, it is difficult to test the code in isolation with the fake or mocked results of the API call. This means that we cannot test the UserRepository properly.

In the above example, the code inside the save()is what varies, actual API call for the real data and mocked/fake implementation for testing.

This means that the code inside the save() method is what varies.

Now, that we have identified the part that varies, we have to encapsulate it and make it interchangeable.

Let’s create an interface UserDataSourcethat encapsulates the variable block of code.

Now, we can use these data sources in the UserRepositoryand the implementation of the data source will define its behavior.

The driver method would be

Using strategy pattern we can easily swap between the various data sources, remote and fake.

This approach can even be used when you don’t have the APIs ready but want to work with local data sources. Simply create an implementation with the local or hard-coded data and name it as LocalUserDataSourceand pass it to the UserRepositoryuntil the APIs are ready.

In this problem statement, we have a button in the UI and we want to dynamically set the number of times the user needs to click the button to execute the operation.

Possible number of clicks

  • None (Button is disabled)
  • Single
  • Multiple times (# of clicks can be fixed or random within a range)

Let’s mock a button.

The operation we want to execute when the button is clicked

The driver to show click operation and set up button without Strategy Pattern would be

As you can see the button with a single click is pretty straightforward and we can easily create as many as we want. Still, the buttons with multiple clicks aren’t that easy to create as we’ll have to replicate the logic for multiple clicks every time we want to create such a button.

What if we want to create a button with multiple clicks but the number of clicks should be random in a range of numbers?

This would add more complexity while creating a button that was already difficult in the first place.

So, we can say that the part that varies in this problem statement is the number of clicks required to execute the operation.

To solve this, we will create OnClickStrategy and have multiple implementations for different numbers of clicks.

SingleOnClickStrategy

MutlipleOnClickStrategy

We would also need a ButtonItemto hold the strategy for the button

Let’s assume that you’re using a component-based UI framework – Flutter, React, or Android’s Jetpack Compose.

I am using Android’s Jetpack Compose for this example but the same can be replicated in the other frameworks.

UIButton composable

The ViewModel and the Screen composable

Note: the user’s click behavior is mocked using the also block.

We have used multiple strategies for the buttons on the UI and these strategies can be added to any button on the screen without duplicating the code for the onClick behavior.

Next Post

Most marketers don't expect ad spend drop until next year

Even as some firms report drops in ad expending, most entrepreneurs believe that the worst is however at minimum 6 months absent, in accordance to an IAB survey.  Some 71% imagine U.S. ad invest will lessen inside the future 12 months. Of those people, 84% be expecting ad spend to […]
Most marketers don’t expect ad spend drop until next year

You May Like