avatarMangirdas Kazlauskas

Summary

The provided content discusses the implementation of the Template Method design pattern in Dart and Flutter, focusing on its utility in defining a flexible algorithm structure for BMI calculation with different data sources.

Abstract

The article delves into the Template Method design pattern, a behavioral pattern that allows for defining an algorithm's skeleton while deferring specific steps to subclasses. This pattern is particularly useful for maintaining a consistent algorithm structure while allowing for variations in the implementation details. The author illustrates this with an example in Flutter, where different BMI calculation algorithms are required based on the data source and filtering criteria. The implementation involves an abstract class that outlines the template method, with concrete subclasses providing the necessary customizations for data retrieval and processing. The article also touches on the Hollywood Principle, emphasizing the importance of high-level components calling low-level components, adhering to the SOLID principles and the Dependency Inversion principle.

Opinions

  • The author emphasizes the Template Method's role in code reuse and adherence to the DRY principle, suggesting it as a solution to avoid redundancy and maintain clean, efficient code.
  • The article advocates for the use of the Template Method to enforce a strict algorithm structure while providing the flexibility needed for different implementations, showcasing its practicality in real-world applications like a Flutter app for BMI calculation.
  • By moving the blog to a personal website and providing interactive code examples, the author expresses a commitment to improving the reading experience and educational value for the audience.
  • The author suggests that the Template Method design pattern aligns with the Hollywood Principle, reinforcing the idea that high-level components should dictate the flow of operations, not the low-level details.
  • The article encourages reader engagement and contribution by inviting claps, comments, sharing, following on Medium, and starring the Github repository, indicating a desire for community involvement and feedback.

Flutter Design Patterns: 3 — Template Method

An overview of the Template Method design pattern and its implementation in Dart and Flutter

Previously in the series, I analysed one of the most common and most useful design patterns available — Adapter. In this article, I would like to analyse and implement one of the behavioural design patterns — Template Method.

Update 2022–09–15: I moved this blog to my personal website. For a better reading experience, up to date articles, interactive code examples and some extra content FOR FREE, check kazlauskas.dev.

Table of Contents

  • What is the Template Method design pattern?
  • Analysis
  • Implementation
  • Other articles in this series
  • Your contribution

What is the Template Method design pattern?

The Template Method is a behavioural design pattern, which intention in the GoF book is described like this:

Define the skeleton of an algorithm in an operation, deferring some steps to sub­classes. Template Method lets subclasses redefine certain steps of an algorithm without changing the algorithm’s structure.

The Template method is a fundamental technique for code reuse. Let’s say you have an algorithm that consists of multiple steps:

  1. Reading the data from some kind of data source;
  2. Processing it;
  3. Providing the calculated results.

In one case, you want to get the data from a third-party API, process it and provide the results in the console window. In another case, you would like to read the data from a file in your local disk drive, process it and send the formatted result document via e-mail. Despite the differences between these two cases, these algorithms share the same structure — reading, processing the data and providing the results. That’s where the Template Method design pattern is useful — when you need to allow changing the details of each step or certain steps of the algorithm while enforcing the structure and order of the steps themselves. The question is, how to define this kind of template?

Analysis

The class diagram below shows the general structure of the Template Method design pattern.

Class Diagram — Template Method
  • AbstractClass — contains a templateMethod() operation defining the skeleton of an algorithm. The template method calls primitive operations as well as operations defined in AbstractClass or those of other objects.
  • ConcreteClass — relies on AbstractClass to implement the invariant steps of the algorithm.

Template Method operation types

There are different kinds of operations which are called by the template method:

  • Primitive operations — abstract operations that must be implemented by subclasses; concrete operations that provide a default implementation and can be redefined by subclasses if necessary.
  • Final operations — concrete operations that can not be overridden by subclasses.
  • Hook operations — concrete operations which provide default behaviour that subclasses can extend if necessary. A hook operation often does nothing by default.
  • Template method itself can be declared as final so that it could not be overridden by subclasses.

Note: Template methods need to specify which operations are hooks and which are abstract operations. To do that, you can identify the operations that should be overridden by adding a prefix to their names e.g. the MacApp framework prefixes template method names with “Do-”.

The Hollywood Principle

The Hollywood Principle (source)

The Hollywood Principle is simply stated as:

Don’t call us, we’ll call you!

How this statement is related to the Template Method? The base class of the Template Method is considered a high-level component — clients or concrete implementations of the algorithm should depend on it. The subclasses of the template are the low-level components — they don’t call anything themselves and are only called by the high-level template method. This describes the relationship between high-level and low-level components — abstractions should not depend on details, but the details should depend on abstractions (Dependency Inversion principle, the letter D in SOLID principles). Thus, the Template Method design pattern could state that low-level components don’t call us, we call them!

Applicability

The Template Method design pattern should be used when we want to implement the invariant parts of the algorithm once and let the derived classes implement the steps which may vary. Also, the pattern is useful when we want to extract the common logic among classes to avoid code duplication (DRY principle — Don’t Repeat Yourself).

Implementation

Let’s say, in the Flutter application we want to create an algorithm that calculates the BMI (body mass index) of students. The algorithm retrieves students’ data, applies students’ filtering (if necessary), calculates their BMI and provides the results. Also, we want to retrieve students' information from different data sources and we want to have a separate algorithm that includes only teenage students for the calculations. As you can see, the structure of the algorithm is general, but the implementation details (algorithm steps) vary among different implementations. To implement this algorithm, we would use the Template method design pattern.

Class diagram

The class diagram below shows the implementation of the Template Method design pattern.

Class Diagram — Implementation of the Template Method design pattern

The main class in the diagram is StudentsBmiCalculator. Its primary purpose is to define a template of the BMI calculation algorithm which returns a list of Student objects (with the calculated BMI for each student) as a result via the calculateBmiAndReturnStudentList() method. This abstract class is used as a template (base class) for the concrete implementations of the students’ BMI calculation algorithm — StudentsXmlBmiCalculator, StudentsJsonBmiCalculator and TeenageStudentsJsonBmiCalculator. StudentsXmlBmiCalculator uses the XmlStudentsApi to retrieve students information as an XML string and returns it as a list of Student objects via the overridden getStudentsData() method. Both of the other two implementations (StudentsJsonBmiCalculator and TeenageStudentsJsonBmiCalculator) uses the JsonStudentsApi to retrieve students' information in JSON format and return the parsed data via the overridden getStudentsData() method. However, TeenageStudentsJsonBmiCalculator additionally reimplements (overrides) the doStudentsFiltering() hook method to filter out not teenage students before calculating the BMI values. StudentsSection UI widget uses the StudentsBmiCalculator abstraction to retrieve and represent the calculated results in the TemplateMethodExample widget.

Note: it would make more sense to extract the XML or JSON parsing logic from the getStudentsData() method in the concrete calculation classes to a separate class using the Adapter design pattern, but for the demonstration purposes of the Template Method pattern and to show that the implementation of getStudentsData() may differ among the derived classes of the StudentsXmlBmiCalculator, I have decided to leave logic as it is now.

StudentsBmiCalculator

An abstract (template) class for the BMI calculation algorithm.

students_bmi_calculator.dart

The algorithm consists of several steps:

  1. Retrieve students data — getStudentsData();
  2. Do students filtering (if needed) — doStudentsFiltering();
  3. Calculate the BMI for each student — _calculateStudentsBmi();
  4. Return students data — return studentList.

The first step is mandatory and should be implemented in each concrete implementation of the students BMI calculator — that is, the method getStudentsData() is abstract and must be overridden in the derived class (primitive operation). The students filtering step is optional, yet it could be overridden in the derived class. For this reason, doStudentsFiltering() method has a default implementation that does not change the workflow of the algorithm by default (hook operation). Other steps are defined in the algorithm’s template itself, are common for all implementations and could not be changed (final operations).

StudentsXmlBmiCalculator

A concrete implementation of the BMI calculation algorithm which uses XmlStudentsApi to retrieve data and implements the getStudentsData() method.

students_xml_bmi_calculator.dart

StudentsJsonBmiCalculator

A concrete implementation of the BMI calculation algorithm which uses JsonStudentsApi to retrieve data and implements the getStudentsData() method.

students_json_bmi_calculator.dart

TeenageStudentsJsonBmiCalculator

A concrete implementation of the BMI calculation algorithm which uses JsonStudentsApi to retrieve data and implements the getStudentsData() method.

teenage_students_json_bmi_calculator.dart

Additionally, the doStudentsFiltering() hook method is overridden to filter out not teenage students.

Student

A simple class to store the student’s information.

student.dart

JsonStudentsApi

A fake API which returns students’ information as a JSON string.

json_students_api.dart

XmlStudentsApi

A fake API that returns students’ information as an XML string.

xml_students_api.dart

Example

First of all, a markdown file is prepared and provided as a pattern’s description:

The example itself uses the StudentsSection component which requires a specific BMI calculator of the type StudentsBmiCalculator to be provided via a constructor. For this example, we inject three different implementations of the BMI calculator (StudentsXmlBmiCalculator, StudentsJsonBmiCalculator and TeenageStudentsJsonBmiCalculator) which extend the same template (base class) — StudentsBmiCalculator — to three different StudentsSection widgets.

template_method_example.dart

StudentsSection uses the injected BMI calculator of type StudentsBmiCalculator. The widget does not care about the specific implementation of the BMI calculator as long as it uses (extends) the same template (base class). This lets us provide different students’ BMI calculation algorithms/implementations without making any changes to the UI code.

students_section.dart

The final result of the Template Method’s implementation looks like this:

All of the code changes for the Template Method design pattern and its example implementation could be found here.

Other articles in this series

Your contribution

👏 Press the clap button below to show your support and motivate me to write better! 💬 Leave a response to this article by providing your insights, comments or wishes for the series. 📢 Share this article with your friends, colleagues on social media. ➕ Follow me on Medium. ⭐ Star the Github repository.

Software Design Patterns
Software Engineering
Programming
Flutter
Technology
Recommended from ReadMedium